diff --git a/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Choices/choice_panel_hover.tres b/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Choices/choice_panel_hover.tres index b67de21..c53be85 100644 --- a/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Choices/choice_panel_hover.tres +++ b/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Choices/choice_panel_hover.tres @@ -4,10 +4,6 @@ content_margin_top = 5.0 content_margin_bottom = 5.0 bg_color = Color(0, 0, 0, 0.956863) -border_width_left = 1 -border_width_top = 1 -border_width_right = 1 -border_width_bottom = 1 corner_radius_top_left = 5 corner_radius_top_right = 5 corner_radius_bottom_right = 5 diff --git a/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Textbox/vn_textbox_default_panel.tres b/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Textbox/vn_textbox_default_panel.tres index 07489b4..824597e 100644 --- a/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Textbox/vn_textbox_default_panel.tres +++ b/addons/dialogic/Modules/DefaultLayoutParts/Layer_VN_Textbox/vn_textbox_default_panel.tres @@ -5,8 +5,13 @@ content_margin_left = 15.0 content_margin_top = 15.0 content_margin_right = 15.0 content_margin_bottom = 15.0 -bg_color = Color(1, 1, 1, 1) -corner_radius_top_left = 5 -corner_radius_top_right = 5 -corner_radius_bottom_right = 5 -corner_radius_bottom_left = 5 +bg_color = Color(0.0627451, 0.05882353, 0.16862746, 1) +border_width_left = 2 +border_width_top = 2 +border_width_right = 2 +border_width_bottom = 2 +border_color = Color(0.5882353, 0.7019608, 0.85882354, 1) +corner_radius_top_left = 10 +corner_radius_top_right = 10 +corner_radius_bottom_right = 10 +corner_radius_bottom_left = 10 diff --git a/common/assets/materials/default_3d.tres b/common/assets/materials/default_3d.tres index 5f0468f..cc589a8 100644 --- a/common/assets/materials/default_3d.tres +++ b/common/assets/materials/default_3d.tres @@ -4,8 +4,9 @@ [resource] diffuse_mode = 3 -specular_mode = 1 +specular_mode = 2 albedo_texture = ExtResource("1_cc1ni") +metallic_specular = 0.0 roughness = 0.0 rim_tint = 0.48 stencil_flags = 2 diff --git a/common/audio_manager/assets/morceaux/histoire/meeting_demeter.ogg.import b/common/audio_manager/assets/morceaux/histoire/meeting_demeter.ogg.import index 6a79d3f..a5e3ad1 100644 --- a/common/audio_manager/assets/morceaux/histoire/meeting_demeter.ogg.import +++ b/common/audio_manager/assets/morceaux/histoire/meeting_demeter.ogg.import @@ -13,7 +13,7 @@ dest_files=["res://.godot/imported/meeting_demeter.ogg-7dd58073d2ef5705a374bd8bb [params] loop=false -loop_offset=0 -bpm=0 +loop_offset=0.0 +bpm=0.0 beat_count=0 bar_beats=4 diff --git a/common/audio_manager/audio_manager.tscn b/common/audio_manager/audio_manager.tscn index 73e9ab1..8862f1c 100644 --- a/common/audio_manager/audio_manager.tscn +++ b/common/audio_manager/audio_manager.tscn @@ -313,7 +313,7 @@ volume_db = -7.0 [node name="Harvest" type="AudioStreamPlayer" parent="Sfx" unique_id=345539331] stream = SubResource("AudioStreamRandomizer_i4m0x") -volume_db = -5.0 +volume_db = -7.0 [node name="PickUp" type="AudioStreamPlayer" parent="Sfx" unique_id=176915166] stream = SubResource("AudioStreamRandomizer_jjdv2") @@ -357,7 +357,7 @@ volume_db = -5.0 [node name="Elevator" type="AudioStreamPlayer" parent="Sfx" unique_id=1345852969] stream = ExtResource("42_obkny") -volume_db = -5.0 +pitch_scale = 1.1 [node name="Mining" type="AudioStreamPlayer" parent="Sfx" unique_id=1122216774] stream = SubResource("AudioStreamRandomizer_yjs51") diff --git a/common/audio_manager/scripts/audio_manager.gd b/common/audio_manager/scripts/audio_manager.gd index c059c2f..de93486 100644 --- a/common/audio_manager/scripts/audio_manager.gd +++ b/common/audio_manager/scripts/audio_manager.gd @@ -40,7 +40,7 @@ func _on_change_scene(scene : Scene): stop_all_ambiances() if (scene is TitleScene): - play_music_alone("Title", false, 5.0) + play_music_alone("Title", false, 0.0) elif scene is IntroScene: stop_all_musics() elif scene is RegionScene: @@ -59,8 +59,8 @@ func _on_change_scene(scene : Scene): stop_all_musics() play_ambiance_alone("Astra", false) elif scene is BoreaScene: - stop_all_musics() - play_ambiance_alone("Borea", false) + play_music_alone("Meeting_demeter") + stop_all_ambiances() elif scene is VendingMachineScene: stop_all_musics() play_ambiance_alone("VendingRoom", false) diff --git a/common/game_data/scripts/artefacts/talion_soil/talion_soil.gd b/common/game_data/scripts/artefacts/talion_soil/talion_soil.gd index a9c726d..eb348a4 100644 --- a/common/game_data/scripts/artefacts/talion_soil/talion_soil.gd +++ b/common/game_data/scripts/artefacts/talion_soil/talion_soil.gd @@ -12,4 +12,4 @@ func get_3d_scene() -> PackedScene: return preload("res://common/game_data/scripts/artefacts/talion_soil/talion_soil.blend") func modify_plant_influence_radius(plant_influence_radius : float) -> float: - return plant_influence_radius * 1.4 \ No newline at end of file + return plant_influence_radius * 1.5 \ No newline at end of file diff --git a/common/game_data/scripts/progression_data.gd b/common/game_data/scripts/progression_data.gd index 46c6782..1624313 100644 --- a/common/game_data/scripts/progression_data.gd +++ b/common/game_data/scripts/progression_data.gd @@ -28,16 +28,16 @@ func get_all_mutations() -> Array[PlantMutation]: ProlificMutation.new(), PrecociousMutation.new(), PurificationMutation.new(), - VivaciousMutation.new(), + ToughMutation.new(), QuickMutation.new(), RobustMutation.new(), SocialMutation.new(), + VivaciousMutation.new(), FertileMutation.new(), HurriedMutation.new(), GenerousMutation.new(), ProtectiveMutation.new(), PureMutation.new(), - ToughMutation.new(), ] func get_all_artifacts() -> Array[Artefact]: @@ -53,7 +53,7 @@ func get_all_artifacts() -> Array[Artefact]: func get_all_story_steps() -> Array[StoryStep]: return [ TutorialStoryStep.new(), - AstraStoryStep.new(), + StartStoryStep.new(), MercuryStoryStep.new(), - BetaStoryStep.new() + BoreaStoryStep.new() ] diff --git a/common/game_data/scripts/run/run_data.gd b/common/game_data/scripts/run/run_data.gd index d5a80b2..7f74a24 100644 --- a/common/game_data/scripts/run/run_data.gd +++ b/common/game_data/scripts/run/run_data.gd @@ -96,6 +96,12 @@ func choose_next_run_point(run_point : RunPoint = null) -> RunPoint: next_run_points = generate_next_run_points() return current_run_point +func get_cockpit_exit_scene() -> Scene: + if story_step.is_run_finished(level): + return story_step.get_destination_scene() + else : + return RegionScene.new(GameInfo.game_data.current_region_data) + #endregion #region ------------------ Modifiers ------------------ @@ -109,6 +115,7 @@ func generate_normal_modifiers() -> Array[RegionModifier]: ToxicModifier.new(), SandyModifier.new(), MagneticModifier.new(), + CanyonModifier.new() ] func generate_benefic_modifiers() -> Array[RegionModifier]: diff --git a/common/game_data/scripts/run/run_point.gd b/common/game_data/scripts/run/run_point.gd index 08fdb74..f775ff2 100644 --- a/common/game_data/scripts/run/run_point.gd +++ b/common/game_data/scripts/run/run_point.gd @@ -5,7 +5,7 @@ class_name RunPoint const DANGER_ICON = preload("res://common/icons/skull.svg") const TYPE_ICON = preload("res://common/icons/map-pin.svg") const OBJECTIVE_ICON = preload("res://common/icons/growth.svg") -const CHARGE_ICON = preload("res://common/icons/bolt.svg") +const CHARGE_ICON = preload("res://common/icons/recharge.svg") @export var region_parameter : RegionParameter = RegionParameter.new() : set(v): @@ -27,10 +27,13 @@ func card_info() -> CardInfo: info.type_icon = TYPE_ICON - info.stats.append_array([ - CardStatInfo.new(str(region_parameter.get_objective()), OBJECTIVE_ICON), - CardStatInfo.new(str(region_parameter.get_charge()), CHARGE_ICON), - ]) + if region_parameter.modifiers.find_custom( + func (m : RegionModifier) : return m is DestinationModifier + ) == -1: + info.stats.append_array([ + CardStatInfo.new(str(region_parameter.get_objective()), OBJECTIVE_ICON), + CardStatInfo.new(str(region_parameter.get_charge()), CHARGE_ICON), + ]) for m in region_parameter.modifiers: diff --git a/common/game_data/scripts/story/beta_story_step.gd.uid b/common/game_data/scripts/story/beta_story_step.gd.uid deleted file mode 100644 index 7b74a9a..0000000 --- a/common/game_data/scripts/story/beta_story_step.gd.uid +++ /dev/null @@ -1 +0,0 @@ -uid://da8kqgl0xnkpi diff --git a/common/game_data/scripts/story/story_step.gd b/common/game_data/scripts/story/story_step.gd index 6354391..8879ed2 100644 --- a/common/game_data/scripts/story/story_step.gd +++ b/common/game_data/scripts/story/story_step.gd @@ -62,12 +62,6 @@ func get_story_modifiers_for_region(level : int) -> Array[RegionModifier]: var dest_mod = DestinationModifier.new() dest_mod.destination_scene = get_destination_scene() modifiers.append(dest_mod) - - var first_cave = get_first_cave_occurence(level) - var cave_occurence = get_cave_occurence(level) - if cave_occurence > 0 and level >= first_cave: - if (level - first_cave)%cave_occurence == 0: - modifiers.append(CaveModifier.new()) return modifiers @@ -80,6 +74,12 @@ func get_gameplay_modifiers_for_region(level : int) -> Array[RegionModifier]: if vending_occurence > 0 and level >= first_vending: if (level - first_vending)%vending_occurence == 0: modifiers.append(VendingMachineModifier.new()) + + var first_cave = get_first_cave_occurence(level) + var cave_occurence = get_cave_occurence(level) + if cave_occurence > 0 and level >= first_cave: + if (level - first_cave)%cave_occurence == 0: + modifiers.append(CaveModifier.new()) return modifiers diff --git a/common/game_data/scripts/story/tutorial_story_step.gd b/common/game_data/scripts/story/story_steps/1_0_tutorial_story_step.gd similarity index 68% rename from common/game_data/scripts/story/tutorial_story_step.gd rename to common/game_data/scripts/story/story_steps/1_0_tutorial_story_step.gd index 805bc3f..42ed790 100644 --- a/common/game_data/scripts/story/tutorial_story_step.gd +++ b/common/game_data/scripts/story/story_steps/1_0_tutorial_story_step.gd @@ -1,7 +1,7 @@ extends StoryStep class_name TutorialStoryStep -const INTRO_DIALOG = "res://dialogs/timelines/tutorial/demeter_intro.dtl" +const INTRO_DIALOG = "res://dialogs/timelines/1_waking_up/2_demeter_intro.dtl" func get_respawn_scene() -> Scene: return AstraScene.new() @@ -14,6 +14,10 @@ func get_region_sequence_length() -> int: func get_destination_scene() -> Scene: return null +func need_gameplay_modifier(_level : int): return false + +func get_objective_for_region(_level : int) -> int: return 3 + func get_story_modifiers_for_region(_n : int) -> Array[RegionModifier]: return [ TutorialModifier.new() diff --git a/common/game_data/scripts/story/tutorial_story_step.gd.uid b/common/game_data/scripts/story/story_steps/1_0_tutorial_story_step.gd.uid similarity index 100% rename from common/game_data/scripts/story/tutorial_story_step.gd.uid rename to common/game_data/scripts/story/story_steps/1_0_tutorial_story_step.gd.uid diff --git a/common/game_data/scripts/story/astra_story_step.gd b/common/game_data/scripts/story/story_steps/1_1_start_story_step.gd similarity index 85% rename from common/game_data/scripts/story/astra_story_step.gd rename to common/game_data/scripts/story/story_steps/1_1_start_story_step.gd index 854f65b..5b2d165 100644 --- a/common/game_data/scripts/story/astra_story_step.gd +++ b/common/game_data/scripts/story/story_steps/1_1_start_story_step.gd @@ -1,8 +1,8 @@ extends StoryStep -class_name AstraStoryStep +class_name StartStoryStep -const MERCURY_ARRIVAL_DIALOG_PATH="res://dialogs/timelines/astra/mercury_arrival.dtl" -const CAVE_DIALOG_PATH="res://dialogs/timelines/astra/cave.dtl" +const MERCURY_ARRIVAL_DIALOG_PATH="res://dialogs/timelines/1_waking_up/5_mercury_arrival.dtl" +const CAVE_DIALOG_PATH="res://dialogs/timelines/1_waking_up/4_cave.dtl" func get_respawn_scene() -> Scene: return AstraScene.new() diff --git a/common/game_data/scripts/story/astra_story_step.gd.uid b/common/game_data/scripts/story/story_steps/1_1_start_story_step.gd.uid similarity index 100% rename from common/game_data/scripts/story/astra_story_step.gd.uid rename to common/game_data/scripts/story/story_steps/1_1_start_story_step.gd.uid diff --git a/common/game_data/scripts/story/mercury_story_step.gd b/common/game_data/scripts/story/story_steps/1_2_mercury_story_step.gd similarity index 78% rename from common/game_data/scripts/story/mercury_story_step.gd rename to common/game_data/scripts/story/story_steps/1_2_mercury_story_step.gd index 0d242a7..dc2292a 100644 --- a/common/game_data/scripts/story/mercury_story_step.gd +++ b/common/game_data/scripts/story/story_steps/1_2_mercury_story_step.gd @@ -2,8 +2,8 @@ extends StoryStep class_name MercuryStoryStep -const MERCURY_DEPARTURE_DIALOG_PATH = "res://dialogs/timelines/mercury/mercury_departure.dtl" -const VENUS_ARRIVAL_DIALOG_PATH = "res://dialogs/timelines/mercury/venus_arrival.dtl" +const MERCURY_DEPARTURE_DIALOG_PATH = "res://dialogs/timelines/1_waking_up/6_mercury_departure.dtl" +const VENUS_ARRIVAL_DIALOG_PATH = "res://dialogs/timelines/1_waking_up/7_venus_arrival.dtl" func get_respawn_scene() -> Scene: return RelayBaseScene.new( diff --git a/common/game_data/scripts/story/mercury_story_step.gd.uid b/common/game_data/scripts/story/story_steps/1_2_mercury_story_step.gd.uid similarity index 100% rename from common/game_data/scripts/story/mercury_story_step.gd.uid rename to common/game_data/scripts/story/story_steps/1_2_mercury_story_step.gd.uid diff --git a/common/game_data/scripts/story/beta_story_step.gd b/common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd similarity index 71% rename from common/game_data/scripts/story/beta_story_step.gd rename to common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd index 923aebd..2b274f5 100644 --- a/common/game_data/scripts/story/beta_story_step.gd +++ b/common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd @@ -1,7 +1,7 @@ extends StoryStep -class_name BetaStoryStep +class_name BoreaStoryStep -const VENUS_DEPARTURE_DIALOG_PATH = "res://dialogs/timelines/beta/venus_departure.dtl" +const VENUS_DEPARTURE_DIALOG_PATH = "res://dialogs/timelines/1_waking_up/8_venus_departure.dtl" func get_respawn_scene() -> Scene: return RelayBaseScene.new( @@ -12,16 +12,16 @@ func get_respawn_scene() -> Scene: func get_objective_for_region(l : int) -> int: match l: - 0: return 8 - 1: return 15 + 0: return 0 + 1: return 8 _: return get_objective_for_region(l-1) + l * 5 func get_region_sequence_length() -> int: - return 12 + return 8 func get_destination_text() -> String: - return tr("SECRET_SCENE") + return tr("BOREA_BASE") func get_destination_scene() -> Scene: return BoreaScene.new() diff --git a/common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd.uid b/common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd.uid new file mode 100644 index 0000000..3f2b5c7 --- /dev/null +++ b/common/game_data/scripts/story/story_steps/1_3_borea_story_step.gd.uid @@ -0,0 +1 @@ +uid://cakg2racxgano diff --git a/common/game_info/game_info.gd b/common/game_info/game_info.gd index d54c3c6..f52b231 100644 --- a/common/game_info/game_info.gd +++ b/common/game_info/game_info.gd @@ -1,6 +1,6 @@ extends Node -const SAVE_GAME_LOCATION = "user://stw_beta_save.tres" +const SAVE_GAME_LOCATION = "user://stw_demo_save.tres" const SAVE_SETTINGS_LOCATION = "user://stw_settings.tres" var game_loaded = false @@ -18,7 +18,7 @@ var current_dialog_path : String func load_game_data() -> GameData: game_data = null - if ResourceLoader.exists(SAVE_GAME_LOCATION): + if ResourceLoader.exists(SAVE_GAME_LOCATION) and ResourceLoader.load(SAVE_GAME_LOCATION): game_data = ResourceLoader.load(SAVE_GAME_LOCATION).duplicate_deep() return game_data diff --git a/common/icons/clock-death.svg b/common/icons/clock-death.svg new file mode 100644 index 0000000..4d01c3b --- /dev/null +++ b/common/icons/clock-death.svg @@ -0,0 +1,58 @@ + + diff --git a/common/icons/clock-death.svg.import b/common/icons/clock-death.svg.import new file mode 100644 index 0000000..0f0ccfa --- /dev/null +++ b/common/icons/clock-death.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgkivv66x80oj" +path="res://.godot/imported/clock-death.svg-156c3c6dcf8f7a8c3c6a279f5e24cc19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://common/icons/clock-death.svg" +dest_files=["res://.godot/imported/clock-death.svg-156c3c6dcf8f7a8c3c6a279f5e24cc19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/common/icons/clock-up.svg b/common/icons/clock-up.svg new file mode 100644 index 0000000..8dc8eb2 --- /dev/null +++ b/common/icons/clock-up.svg @@ -0,0 +1,61 @@ + + diff --git a/common/icons/clock-up.svg.import b/common/icons/clock-up.svg.import new file mode 100644 index 0000000..d50e8ac --- /dev/null +++ b/common/icons/clock-up.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b34qiqb1mslm" +path="res://.godot/imported/clock-up.svg-b7a27f843fc6c767994ff52baba81c72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://common/icons/clock-up.svg" +dest_files=["res://.godot/imported/clock-up.svg-b7a27f843fc6c767994ff52baba81c72.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/common/icons/clock.svg b/common/icons/clock.svg index daaf2f2..a774528 100644 --- a/common/icons/clock.svg +++ b/common/icons/clock.svg @@ -1 +1,52 @@ - \ No newline at end of file + + + + + + + + diff --git a/common/icons/device-floppy.svg.import b/common/icons/device-floppy.svg.import index dbcbd6c..f61de88 100644 --- a/common/icons/device-floppy.svg.import +++ b/common/icons/device-floppy.svg.import @@ -3,19 +3,20 @@ importer="texture" type="CompressedTexture2D" uid="uid://d3k7rl7nbp7yx" -path="res://.godot/imported/device-floppy.svg-5df3820d4d7726a3946e4ca79c467896.ctex" +path.s3tc="res://.godot/imported/device-floppy.svg-5df3820d4d7726a3946e4ca79c467896.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } [deps] source_file="res://common/icons/device-floppy.svg" -dest_files=["res://.godot/imported/device-floppy.svg-5df3820d4d7726a3946e4ca79c467896.ctex"] +dest_files=["res://.godot/imported/device-floppy.svg-5df3820d4d7726a3946e4ca79c467896.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/uastc_level=0 @@ -23,7 +24,7 @@ compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=false +mipmaps/generate=true mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -37,7 +38,7 @@ process/normal_map_invert_y=false process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 -detect_3d/compress_to=1 +detect_3d/compress_to=0 svg/scale=2.0 editor/scale_with_editor_scale=false editor/convert_colors_with_editor_theme=false diff --git a/common/icons/hexagon.svg.import b/common/icons/hexagon.svg.import index 2c09417..be65d85 100644 --- a/common/icons/hexagon.svg.import +++ b/common/icons/hexagon.svg.import @@ -38,6 +38,6 @@ process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 detect_3d/compress_to=1 -svg/scale=2.0 +svg/scale=3.0 editor/scale_with_editor_scale=false editor/convert_colors_with_editor_theme=false diff --git a/common/icons/no-bolt.svg b/common/icons/no-bolt.svg new file mode 100644 index 0000000..3f23658 --- /dev/null +++ b/common/icons/no-bolt.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + diff --git a/common/icons/no-bolt.svg.import b/common/icons/no-bolt.svg.import new file mode 100644 index 0000000..2c18f2d --- /dev/null +++ b/common/icons/no-bolt.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://51255tpyl6vj" +path="res://.godot/imported/no-bolt.svg-dc9ab4653af279c0a8ec5c5afebe1a91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://common/icons/no-bolt.svg" +dest_files=["res://.godot/imported/no-bolt.svg-dc9ab4653af279c0a8ec5c5afebe1a91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=2.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/common/icons/route.svg.import b/common/icons/route.svg.import index a14a7c3..391770e 100644 --- a/common/icons/route.svg.import +++ b/common/icons/route.svg.import @@ -3,19 +3,20 @@ importer="texture" type="CompressedTexture2D" uid="uid://bvk6wcfh00b16" -path="res://.godot/imported/route.svg-25a68768f285f5083e93f62aae40bb89.ctex" +path.s3tc="res://.godot/imported/route.svg-25a68768f285f5083e93f62aae40bb89.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } [deps] source_file="res://common/icons/route.svg" -dest_files=["res://.godot/imported/route.svg-25a68768f285f5083e93f62aae40bb89.ctex"] +dest_files=["res://.godot/imported/route.svg-25a68768f285f5083e93f62aae40bb89.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/uastc_level=0 @@ -23,7 +24,7 @@ compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=false +mipmaps/generate=true mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -37,7 +38,7 @@ process/normal_map_invert_y=false process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 -detect_3d/compress_to=1 +detect_3d/compress_to=0 svg/scale=2.0 editor/scale_with_editor_scale=false editor/convert_colors_with_editor_theme=false diff --git a/common/scene_manager/scripts/scenes/relay_base_scene.gd b/common/scene_manager/scripts/scenes/relay_base_scene.gd index e28c430..d183100 100644 --- a/common/scene_manager/scripts/scenes/relay_base_scene.gd +++ b/common/scene_manager/scripts/scenes/relay_base_scene.gd @@ -42,7 +42,7 @@ func _on_generated(generated_scene : Node): spawn_dead_orchid(relay_base) relay_base.exit_scene = CockpitScene.new() else: - relay_base.exit_scene = RegionScene.new(GameInfo.game_data.current_region_data) + # relay_base.exit_scene = RegionScene.new(GameInfo.game_data.current_region_data) handle_orchid_save(relay_base) diff --git a/common/vfx/materials/shaders/3d_outline_2.gdshader b/common/vfx/materials/shaders/3d_outline_2.gdshader index 056df41..6c0429b 100644 --- a/common/vfx/materials/shaders/3d_outline_2.gdshader +++ b/common/vfx/materials/shaders/3d_outline_2.gdshader @@ -44,7 +44,7 @@ void fragment() { float distance_fade = 1e-4 + smoothstep(fade_start + fade_length, fade_start, min_z); // Edge mask - float edge = 1.0 - smoothstep(0.1, 0.15, dot(normalize(cross(avg_dy, avg_dx)), VIEW)); + float edge = 1.0 - smoothstep(0.03, 0.05, dot(normalize(cross(avg_dy, avg_dx)), VIEW)); // Small vignette at screen edges edge *= smoothstep(0.00, 0.015 * thickness, diff --git a/common/vfx/materials/shaders/custom_shadows.gdshader b/common/vfx/materials/shaders/custom_shadows.gdshader new file mode 100644 index 0000000..41dab35 --- /dev/null +++ b/common/vfx/materials/shaders/custom_shadows.gdshader @@ -0,0 +1,98 @@ +shader_type spatial; +render_mode ambient_light_disabled; +//render_mode world_vertex_coords; +uniform vec3 color:source_color; +uniform sampler2D shadow_mask2d:source_color,repeat_enable,filter_linear; +uniform sampler3D shadow_mask3d:source_color,repeat_enable,filter_linear; +uniform sampler2D color_gradient:source_color; +uniform vec3 offset; +uniform float scale=0.75; + +varying vec3 world_pos; +varying vec3 local_pos; +varying vec3 local_normal; +varying vec3 cam_pos; + +vec4 triplanar_texture(sampler2D p_sampler, vec3 p_weights, vec3 p_triplanar_pos) { + vec4 samp = vec4(0.0); + samp += texture(p_sampler, p_triplanar_pos.xy) * p_weights.z; + samp += texture(p_sampler, p_triplanar_pos.xz) * p_weights.y; + samp += texture(p_sampler, p_triplanar_pos.zy * vec2(-1.0, 1.0)) * p_weights.x; + return samp; +} + +vec4 sample_text3d(sampler3D mask, vec3 pos){ + return texture(mask, pos); +} + + +vec3 tile(vec3 p, float size) { + return mod(p, size) - size * 0.5; +} + +vec4 volume_march(vec3 ro, vec3 rd, int steps, float stepd){ + float sample_scale=scale; + ro+=rd*40.0; + vec4 value=vec4(0.0); + for (int i=0;i=0.9){ + break; + } + ro+=rd*stepd; + } + return value; +} + + +void vertex() { + local_pos=VERTEX; + world_pos = (MODEL_MATRIX * vec4(VERTEX, 1.0)).xyz; + local_normal=NORMAL; + cam_pos=CAMERA_POSITION_WORLD; +} + +void fragment() { + ALBEDO=color; + if (abs(ALBEDO.r)<=0.0001) ALBEDO.r=0.0001; + if (abs(ALBEDO.g)<=0.0001) ALBEDO.g=0.0001; + if (abs(ALBEDO.b)<=0.0001) ALBEDO.b=0.0001; + + SPECULAR=0.0; + //AO=0.0; + //EMISSION=vec3(0.01); + //IRRADIANCE=vec4(0.0); +} + +void light() { + float NdotL = max(dot(NORMAL, LIGHT), 0.0); + float lit_intensity=smoothstep(0.0,0.5,NdotL*ATTENUATION); + //toon light, relatively flat color, no smooth blur edge + vec3 light_col=lit_intensity * LIGHT_COLOR / PI; + + vec3 shadow_col=vec3(0.0); + {///////////////////////YOUR COLOR LOGIC IN HERE////////////////// + //SOME EXAMPLES: + + //ray march polka dots + //vec3 ro=cam_pos+vec3(0.0,TIME*0.0,0.0); + //vec3 rd=normalize(world_pos-cam_pos); + //float ray_march_val=volume_march(ro,rd,100,0.1).r; + //shadow_col=mix(vec3(0.03,0.0,0.02),vec3(0.25,0.01,0.01),ray_march_val); + + //RED shadow + shadow_col=vec3(1.0,0.0,0.0); + + //triplanar texture + //shadow_col=triplanar_texture(shadow_mask2d,abs(local_normal),local_pos).rgb*0.1; + } + //TODO: handle cases where albedo.rgb is0 + //divide by albedo to cancel out all color. may be weird when albedo.rgb is 0 + //due to division by 0. could try to avoid albedo becoming absolute 0 in fragment + vec3 _shadow_col=shadow_col/ALBEDO; + + if (LIGHT_IS_DIRECTIONAL) + DIFFUSE_LIGHT+=mix(_shadow_col,light_col,smoothstep(0.01,1.0,lit_intensity)); + else//non directional light can be a bit funky + DIFFUSE_LIGHT+=mix(_shadow_col,light_col,smoothstep(0.01,1.0,lit_intensity))*ATTENUATION; +} diff --git a/common/vfx/materials/shaders/custom_shadows.gdshader.uid b/common/vfx/materials/shaders/custom_shadows.gdshader.uid new file mode 100644 index 0000000..aa4cd11 --- /dev/null +++ b/common/vfx/materials/shaders/custom_shadows.gdshader.uid @@ -0,0 +1 @@ +uid://8si4nvkdqqyq diff --git a/common/vfx/materials/shaders/sky.gdshader b/common/vfx/materials/shaders/sky.gdshader new file mode 100644 index 0000000..f748f4a --- /dev/null +++ b/common/vfx/materials/shaders/sky.gdshader @@ -0,0 +1,290 @@ +shader_type sky; +render_mode use_quarter_res_pass; + +// Originaly based on https://godotshaders.com/shader/stylized-sky-shader-with-clouds/ but there's not much left + +group_uniforms sky; + uniform vec3 day_top_color : source_color = vec3( 0.1, 0.6, 1.0 ); + uniform vec3 day_bottom_color : source_color = vec3( 0.4, 0.8, 1.0 ); + uniform vec3 sunset_top_color : source_color = vec3( 0.7, 0.75, 1.0 ); + uniform vec3 sunset_bottom_color : source_color = vec3( 1.0, 0.5, 0.7 ); + uniform vec3 night_top_color : source_color = vec3( 0.02, 0.0, 0.04 ); + uniform vec3 night_bottom_color : source_color = vec3( 0.1, 0.0, 0.2 ); + +group_uniforms horizon; + uniform vec3 horizon_color : source_color = vec3( 0.0, 0.7, 0.8 ); + uniform float horizon_blur : hint_range( 0.0, 1.0, 0.01 ) = 0.05; + +group_uniforms sun; // First DirectionalLight3D will be the sun + uniform vec3 sun_color : source_color = vec3( 10.0, 8.0, 1.0 ); + uniform vec3 sun_sunset_color : source_color = vec3( 10.0, 0.0, 0.0 ); + uniform float sun_size : hint_range( 0.01, 1.0 ) = 0.2; + uniform float sun_blur : hint_range( 0.01, 20.0 ) = 10.0; + +group_uniforms moon; // Second DirectionalLight3D will be the moon + uniform vec3 moon_color : source_color = vec3( 1.0, 0.95, 0.7 ); + uniform float moon_size : hint_range( 0.01, 1.0 ) = 0.06; + uniform float moon_blur : hint_range( 0.01, 10.0 ) = 0.1; + +group_uniforms clouds; + // Replaced by noise functions, unncomment if you want to use graphical textures +// uniform sampler2D clouds_top_texture : filter_linear_mipmap, hint_default_black; +// uniform sampler2D clouds_middle_texture : filter_linear_mipmap, hint_default_black; +// uniform sampler2D clouds_bottom_texture : filter_linear_mipmap, hint_default_black; + uniform vec3 clouds_edge_color : source_color = vec3( 0.8, 0.8, 0.98 ); + uniform vec3 clouds_top_color : source_color = vec3( 1.0, 1.0, 1.00 ); + uniform vec3 clouds_middle_color : source_color = vec3( 0.92, 0.92, 0.98 ); + uniform vec3 clouds_bottom_color : source_color = vec3( 0.83, 0.83, 0.94 ); + uniform float clouds_speed : hint_range( 0.0, 20.0, 0.01 ) = 2.0; + uniform float clouds_direction : hint_range( -0.5, 0.5, 0.0 ) = 0.2; + uniform float clouds_scale : hint_range( 0.0, 4.0, 0.01 ) = 1.0; + uniform float clouds_cutoff : hint_range( 0.0, 1.0, 0.01 ) = 0.3; + uniform float clouds_fuzziness : hint_range( 0.0, 2.0, 0.01 ) = 0.5; + // More weight is simply a darker color, usefull for rain/storm + uniform float clouds_weight : hint_range( 0.0, 1.0, 0.01 ) = 0.0; + uniform float clouds_blur : hint_range( 0.0, 1.0, 0.01 ) = 0.25; + +group_uniforms stars; + // Stars should be at black background + uniform sampler2D stars_texture : filter_linear_mipmap, hint_default_black; + uniform float stars_speed : hint_range( 0.0, 20.0, 0.01 ) = 1.0; + +group_uniforms settings; + uniform float overwritten_time = 0.0; + +//////////////////////////////////////////////////////////////////////////////////////////////////// + // Function for clouds noises. You can replace using "gen_fractal_ping_pong" with a simple texture reading. + // I was frustrated with the repeating texture that's why I included the algorithm in the code. + // Source: https://github.com/Auburn/FastNoiseLite/tree/master + const int PRIME_X = 501125321; + const int PRIME_Y = 1136930381; + float lerp( float a, float b, float t ) + { + return a + t * ( b - a ); + } + float cubic_lerp( float a, float b, float c, float d, float t ) + { + float p = d - c - ( a - b ); + return t * t * t * p + t * t * ( a - b - p ) + t * ( c - a ) + b; + } + float ping_pong( float t ) + { + t -= trunc( t * 0.5 ) * 2.0; + return t < 1.0 ? t : 2.0 - t; + } + int hash( int seed, int x_primed, int y_primed ) + { + return ( seed ^ x_primed ^ y_primed ) * 0x27d4eb2d; + } + float val_coord( int seed, int x_primed, int y_primed ) + { + int hash = hash( seed, x_primed, y_primed ); + hash *= hash; + hash ^= hash << 19; + return float( hash ) * ( 1.0 / 2147483648.0 ); + } + float single_value_cubic( int seed, float x, float y ) + { + int x1 = int( floor( x )); + int y1 = int( floor( y )); + + float xs = x - float( x1 ); + float ys = y - float( y1 ); + + x1 *= PRIME_X; + y1 *= PRIME_Y; + int x0 = x1 - PRIME_X; + int y0 = y1 - PRIME_Y; + int x2 = x1 + PRIME_X; + int y2 = y1 + PRIME_Y; + int x3 = x1 + ( PRIME_X << 1 ); + int y3 = y1 + ( PRIME_Y << 1 ); + + return cubic_lerp( + cubic_lerp( val_coord( seed, x0, y0 ), val_coord( seed, x1, y0 ), val_coord( seed, x2, y0 ), val_coord( seed, x3, y0 ), xs ), + cubic_lerp( val_coord( seed, x0, y1 ), val_coord( seed, x1, y1 ), val_coord( seed, x2, y1 ), val_coord( seed, x3, y1 ), xs ), + cubic_lerp( val_coord( seed, x0, y2 ), val_coord( seed, x1, y2 ), val_coord( seed, x2, y2 ), val_coord( seed, x3, y2 ), xs ), + cubic_lerp( val_coord( seed, x0, y3 ), val_coord( seed, x1, y3 ), val_coord( seed, x2, y3 ), val_coord( seed, x3, y3 ), xs ), + ys ) * ( 1.0 / ( 1.5 * 1.5 )); + } + // Params can be change in the same way as in noise settings in Godot + const float FRACTAL_BOUNDING = 1.0 / 1.75; + const int OCTAVES = 5; + const float PING_PONG_STRENGTH = 2.0; + const float WEIGHTED_STRENGTH = 0.0; + const float GAIN = 0.5; + const float LACUNARITY = 2.0; + float gen_fractal_ping_pong( vec2 pos, int seed, float frequency ) + { + float x = pos.x * frequency; + float y = pos.y * frequency; + float sum = 0.0; + float amp = FRACTAL_BOUNDING; + for( int i = 0; i < OCTAVES; i++ ) + { + float noise = ping_pong(( single_value_cubic( seed++, x, y ) + 1.0 ) * PING_PONG_STRENGTH ); + sum += ( noise - 0.5 ) * 2.0 * amp; + amp *= lerp( 1.0, noise, WEIGHTED_STRENGTH ); + x *= LACUNARITY; + y *= LACUNARITY; + amp *= GAIN; + } + return sum * 0.5 + 0.5; + } +//////////////////////////////////////////////////////////////////////////////////////////////////// + +// Function needed to calculate the phase of the moon +// Source: https://kelvinvanhoorn.com/2022/03/17/skybox-tutorial-part-1/ +float sphere_intersect( vec3 view_dir, vec3 sphere_pos, float radius ) +{ + float b = dot( -sphere_pos, view_dir ); + float c = dot( -sphere_pos, -sphere_pos ) - pow( radius, 2 ); + float h = pow( b, 2 ) - c; + return h < 0.0 ? -1.0 : -b - sqrt( h ); +} + +void sky() +{ + float time = overwritten_time != 0.0 ? overwritten_time : TIME; + + //////////////////// SKY /////////////////////////////////////////////////////////////////////// + float _eyedir_y = abs( sin( EYEDIR.y * PI * 0.5 )); + + // The day color will be our base color + vec3 _sky_color = mix( day_bottom_color, day_top_color, _eyedir_y ); + _sky_color = mix( _sky_color, vec3( 0.0 ), clamp(( 0.7 - clouds_cutoff ) * clouds_weight, 0.0, 1.0 )); + + float _sunset_amount = clamp( 0.5 - abs( LIGHT0_DIRECTION.y ), 0.0, 0.5 ) * 2.0; + // The sky should be more red around the west, on the opposite side you don't see it as much + float _sunset_distance = clamp( 1.0 - pow( distance( EYEDIR, LIGHT0_DIRECTION ), 2 ), 0.0, 1.0 ); + vec3 _sky_sunset_color = mix( sunset_bottom_color, sunset_top_color, _eyedir_y + 0.5 ); + _sky_sunset_color = mix( _sky_sunset_color, sunset_bottom_color, _sunset_amount * _sunset_distance ); + _sky_color = mix( _sky_color, _sky_sunset_color, _sunset_amount ); + + float _night_amount = clamp( -LIGHT0_DIRECTION.y + 0.7, 0.0, 1.0 ); + vec3 _sky_night_color = mix( night_bottom_color, night_top_color, _eyedir_y ); + _sky_color = mix( _sky_color, _sky_night_color, _night_amount ); + + // Final sky color + COLOR = _sky_color; + + //////////////////// HORIZON /////////////////////////////////////////////////////////////////// + float _horizon_amount = 0.0; + if( EYEDIR.y < 0.0 ) + { + _horizon_amount = clamp( abs( EYEDIR.y ) / horizon_blur, 0.0, 1.0 ); + // Mixing with the color of the night sky to make the horizon darker + vec3 _horizon_color = mix( horizon_color, _sky_color, _night_amount * 0.9 ); + // And if ther are many dark clouds, we also make the horizon darker + _horizon_color = mix( _horizon_color, vec3( 0.0 ), ( 1.0 - clouds_cutoff ) * clouds_weight * 0.7 ); + COLOR = mix( COLOR, _horizon_color, _horizon_amount ); + } + + //////////////////// MOON ////////////////////////////////////////////////////////////////////// + float _moon_amount = 0.0; + if( LIGHT1_ENABLED ) + { + // Bigger moon near the horizon + float _moon_size = moon_size + cos( LIGHT1_DIRECTION.y * PI ) * moon_size * 0.25; + float _moon_distance = distance( EYEDIR, LIGHT1_DIRECTION ) / _moon_size; + // Finding moon disc and edge blur + _moon_amount = clamp(( 1.0 - _moon_distance ) / moon_blur, 0.0, 1.0 ); + if( _moon_amount > 0.0 ) + { + // Moon illumination depending on the position of the sun + float _moon_intersect = sphere_intersect( EYEDIR, LIGHT1_DIRECTION, _moon_size ); + vec3 _moon_normal = normalize( LIGHT1_DIRECTION - EYEDIR * _moon_intersect ); + // Power on the result gives a better effect + float _moon_n_dot_l = pow( clamp( dot( _moon_normal, -LIGHT0_DIRECTION ), 0.05, 1.0 ), 2 ); + // Hiding the moon behind the horizon + _moon_amount *= 1.0 - _horizon_amount; + COLOR = mix( COLOR, moon_color, _moon_n_dot_l * _moon_amount ); + } + } + + //////////////////// SUN /////////////////////////////////////////////////////////////////////// + float _sun_distance = 0.0; + if( LIGHT0_ENABLED ) + { + _sun_distance = distance( EYEDIR, LIGHT0_DIRECTION ); + // Bigger sun near the horizon + float _sun_size = sun_size + cos( LIGHT0_DIRECTION.y * PI ) * sun_size * 0.25; + // Finding sun disc and edge blur + float _sun_amount = clamp(( 1.0 - _sun_distance / _sun_size ) / sun_blur, 0.0, 1.0 ); + if( _sun_amount > 0.0 ) + { + // Changing color of the sun during sunset + float _sunset_amount = 1.0; + if( LIGHT0_DIRECTION.y > 0.0 ) + _sunset_amount = clamp( cos( LIGHT0_DIRECTION.y * PI ), 0.0, 1.0 ); + vec3 _sun_color = mix( sun_color, sun_sunset_color, _sunset_amount ); + // Hiding the sun behind the moon + _sun_amount = clamp( _sun_amount * ( 1.0 - _moon_amount ), 0.0, 1.0 ); + // Hiding the sun behind the horizon + _sun_amount *= 1.0 - _horizon_amount; + // Leveling the "glow" in color + if( _sun_color.r > 1.0 || _sun_color.g > 1.0 || _sun_color.b > 1.0 ) + _sun_color *= _sun_amount; + COLOR = mix( COLOR, _sun_color, _sun_amount ); + } + } + + //////////////////// STARS ///////////////////////////////////////////////////////////////// + vec2 _sky_uv = EYEDIR.xz / sqrt( EYEDIR.y ); + if( EYEDIR.y > -0.01 && LIGHT0_DIRECTION.y < 0.0 ) + { + // Stars UV rotation + float _stars_speed_cos = cos( stars_speed * time * 0.005 ); + float _stars_speed_sin = sin( stars_speed * time * 0.005 ); + vec2 _stars_uv = vec2( + _sky_uv.x * _stars_speed_cos - _sky_uv.y * _stars_speed_sin, + _sky_uv.x * _stars_speed_sin + _sky_uv.y * _stars_speed_cos + ); + // Stars texture + vec3 _stars_color = texture( stars_texture, _stars_uv ).rgb * -LIGHT0_DIRECTION.y; + // Hiding stars behind the moon + _stars_color *= 1.0 - _moon_amount; + COLOR += _stars_color; + } + + //////////////////// CLOUDS //////////////////////////////////////////////////////////////// + if( EYEDIR.y > 0.0 ) + { + // Clouds UV movement direction + float _clouds_speed = time * clouds_speed * 0.01; + float _sin_x = sin( clouds_direction * PI * 2.0 ); + float _cos_y = cos( clouds_direction * PI * 2.0 ); + // I using 3 levels of clouds. Top is the lightes and botom the darkest. + // The speed of movement (and direction a little) is different for the illusion of the changing shape of the clouds. + vec2 _clouds_movement = vec2( _sin_x, _cos_y ) * _clouds_speed; +// float _noise_top = texture( clouds_top_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_top = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 0, 0.5 ); + _clouds_movement = vec2( _sin_x * 0.97, _cos_y * 1.07 ) * _clouds_speed * 0.89; +// float _noise_middle = texture( clouds_middle_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_middle = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 1, 0.75 ); + _clouds_movement = vec2( _sin_x * 1.01, _cos_y * 0.89 ) * _clouds_speed * 0.79; +// float _noise_bottom = texture( clouds_bottom_texture, ( _sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_bottom = gen_fractal_ping_pong( ( _sky_uv + _clouds_movement ) * clouds_scale, 2, 1.0 ); + // Smoothstep with the addition of a noise value from a lower level gives a nice, deep result + _noise_bottom = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_bottom ); + _noise_middle = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_middle + _noise_bottom * 0.2 ) * 1.1; + _noise_top = smoothstep( clouds_cutoff, clouds_cutoff + clouds_fuzziness, _noise_top + _noise_middle * 0.4 ) * 1.2; + float _clouds_amount = clamp( _noise_top + _noise_middle + _noise_bottom, 0.0, 1.0 ); + // Fading clouds near the horizon + _clouds_amount *= clamp( abs( EYEDIR.y ) / clouds_blur, 0.0, 1.0 ); + + vec3 _clouds_color = mix( vec3( 0.0 ), clouds_top_color, _noise_top ); + _clouds_color = mix( _clouds_color, clouds_middle_color, _noise_middle ); + _clouds_color = mix( _clouds_color, clouds_bottom_color, _noise_bottom ); + // The edge color gives a nice smooth edge, you can try turning this off if you need sharper edges + _clouds_color = mix( clouds_edge_color, _clouds_color, _noise_top ); + // The sun passing through the clouds effect + _clouds_color = mix( _clouds_color, clamp( sun_color, 0.0, 1.0 ), pow( 1.0 - clamp( _sun_distance, 0.0, 1.0 ), 5 )); + // Color combined with sunset condition + _clouds_color = mix( _clouds_color, sunset_bottom_color, _sunset_amount * 0.75 ); + // Color depending on the "progress" of the night. + _clouds_color = mix( _clouds_color, _sky_color, clamp( _night_amount, 0.0, 0.98 )); + _clouds_color = mix( _clouds_color, vec3( 0.0 ), clouds_weight * 0.9 ); + COLOR = mix( COLOR, _clouds_color, _clouds_amount ); + } +} \ No newline at end of file diff --git a/common/vfx/materials/shaders/sky.gdshader.uid b/common/vfx/materials/shaders/sky.gdshader.uid new file mode 100644 index 0000000..f08b192 --- /dev/null +++ b/common/vfx/materials/shaders/sky.gdshader.uid @@ -0,0 +1 @@ +uid://cjgaitccxtwk0 diff --git a/common/vfx/materials/shaders/topology_map.gdshader b/common/vfx/materials/shaders/topology_map.gdshader index 053a8f8..1dd18b4 100644 --- a/common/vfx/materials/shaders/topology_map.gdshader +++ b/common/vfx/materials/shaders/topology_map.gdshader @@ -3,6 +3,7 @@ shader_type canvas_item; uniform float line_number = 6; uniform vec4 line_color : source_color = vec4(1.); uniform float line_thickness : hint_range(0.0, 0.01) = 0.001; +uniform bool inverse_result = false; const mat3 sobel_x = mat3( vec3( 1.0, 2.0, 1.0), @@ -35,6 +36,11 @@ void fragment() { float edge = length(vec2(gx, gy)); float line = step(0.0001, edge); + + float alpha = line * line_color.a * COLOR.r; + + if (inverse_result) + alpha = 1. - line * line_color.a; - COLOR = vec4(line_color.rgb, line * line_color.a * COLOR.r); + COLOR = vec4(line_color.rgb, alpha); } \ No newline at end of file diff --git a/common/vfx/materials/shaders/underwater.gdshader b/common/vfx/materials/shaders/underwater.gdshader new file mode 100644 index 0000000..5a02b2d --- /dev/null +++ b/common/vfx/materials/shaders/underwater.gdshader @@ -0,0 +1,29 @@ +shader_type spatial; +render_mode blend_mix, unshaded; + +uniform sampler2D SCREEN_TEXTURE : hint_screen_texture, filter_linear_mipmap; +uniform vec4 tint : source_color; // tint effect +uniform float wave_speed = 3.0; // wave loop speed +uniform float wave_freq = 10.0; // wave vertical freq +uniform float wave_width = 1; // wave width +uniform float blur = 2.0; // Defines the blur strength. Increase for a larger blur radius. + +void fragment(){ + vec2 wave_uv_offset; + wave_uv_offset.y = 0.0; + wave_uv_offset.x = cos((TIME*wave_speed)+UV.x+UV.y*wave_freq*2.0)*wave_width*0.01; + + float blur_strength = blur / 100.0; + vec3 blurred_color = vec3(0.0); + int sample_count = 0; + for (float x = -blur_strength; x <= blur_strength; x += blur_strength / 10.0) { + for (float y = -blur_strength; y <= blur_strength; y += blur_strength / 10.0) { + blurred_color += texture(SCREEN_TEXTURE, SCREEN_UV + wave_uv_offset + vec2(x, y)).rgb; + sample_count++; + } + } + blurred_color /= float(sample_count); + + ALBEDO = blurred_color * tint.rgb; + ALPHA = tint.a; +} \ No newline at end of file diff --git a/common/vfx/materials/shaders/underwater.gdshader.uid b/common/vfx/materials/shaders/underwater.gdshader.uid new file mode 100644 index 0000000..ceee255 --- /dev/null +++ b/common/vfx/materials/shaders/underwater.gdshader.uid @@ -0,0 +1 @@ +uid://n4s2kr10ivgb diff --git a/dialogs/characters/portraits/mysterious_demeter.png.import b/dialogs/characters/portraits/mysterious_demeter.png.import index 48ba562..a90c26f 100644 --- a/dialogs/characters/portraits/mysterious_demeter.png.import +++ b/dialogs/characters/portraits/mysterious_demeter.png.import @@ -3,19 +3,20 @@ importer="texture" type="CompressedTexture2D" uid="uid://bc00ga286t0kk" -path="res://.godot/imported/mysterious_demeter.png-66b658b484342d6f6e3402cb3d55b756.ctex" +path.s3tc="res://.godot/imported/mysterious_demeter.png-66b658b484342d6f6e3402cb3d55b756.s3tc.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc_bptc"], +"vram_texture": true } [deps] source_file="res://dialogs/characters/portraits/mysterious_demeter.png" -dest_files=["res://.godot/imported/mysterious_demeter.png-66b658b484342d6f6e3402cb3d55b756.ctex"] +dest_files=["res://.godot/imported/mysterious_demeter.png-66b658b484342d6f6e3402cb3d55b756.s3tc.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/high_quality=false compress/lossy_quality=0.7 compress/uastc_level=0 @@ -23,7 +24,7 @@ compress/rdo_quality_loss=0.0 compress/hdr_compression=1 compress/normal_map=0 compress/channel_pack=0 -mipmaps/generate=false +mipmaps/generate=true mipmaps/limit=-1 roughness/mode=0 roughness/src_normal="" @@ -37,4 +38,4 @@ process/normal_map_invert_y=false process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 -detect_3d/compress_to=1 +detect_3d/compress_to=0 diff --git a/dialogs/dialogs_style.tres b/dialogs/dialogs_style.tres index a127d38..e1b6a64 100644 --- a/dialogs/dialogs_style.tres +++ b/dialogs/dialogs_style.tres @@ -38,9 +38,25 @@ scene = ExtResource("6_hdngk") overrides = { "bold_font": "\"res://gui/ressources/fonts/TitanOne-Regular.ttf\"", "bold_italics_font": "\"res://gui/ressources/fonts/TitanOne-Regular.ttf\"", +"box_animation_in": "1", +"box_animation_new_text": "1", +"box_animation_out": "1", +"box_margin_bottom": "28.0", +"box_size": "Vector2(800, 200)", "italics_font": "\"res://gui/ressources/fonts/Ubuntu/Ubuntu-MI.ttf\"", +"name_label_custom_color": "Color(1, 0.6509804, 0.09019608, 1)", +"name_label_custom_font_size": "24.0", "name_label_font": "\"res://gui/ressources/fonts/TitanOne-Regular.ttf\"", -"normal_font": "\"res://gui/ressources/fonts/Ubuntu/Ubuntu-M.ttf\"" +"name_label_use_character_color": "false", +"name_label_use_global_color": "false", +"name_label_use_global_font": "false", +"name_label_use_global_font_size": "false", +"next_indicator_enabled": "false", +"next_indicator_show_on_questions": "false", +"normal_font": "\"res://gui/ressources/fonts/Ubuntu/Ubuntu-M.ttf\"", +"text_size": "24.0", +"text_use_global_font": "false", +"text_use_global_size": "false" } [sub_resource type="Resource" id="Resource_hpeao"] @@ -51,7 +67,14 @@ scene = ExtResource("7_vyxyn") script = ExtResource("2_gjyq6") scene = ExtResource("8_gypn5") overrides = { -"font_custom": "\"res://gui/ressources/fonts/Ubuntu/Ubuntu-B.ttf\"" +"boxes_v_separation": "16.0", +"font_custom": "\"res://gui/ressources/fonts/Ubuntu/Ubuntu-B.ttf\"", +"font_size_custom": "24.0", +"font_size_use_global": "false", +"font_use_global": "false", +"text_color_hovered": "Color(1, 0.6509804, 0.09019608, 1)", +"text_color_pressed": "Color(0.5882353, 0.7019608, 0.85882354, 1)", +"text_color_use_global": "false" } [sub_resource type="Resource" id="Resource_cw4cs"] @@ -77,4 +100,4 @@ layer_info = { "16": SubResource("Resource_cw4cs"), "17": SubResource("Resource_wofh5") } -metadata/_latest_layer = "" +metadata/_latest_layer = "15" diff --git a/dialogs/timelines/tutorial/wake_up.dtl b/dialogs/timelines/1_waking_up/1_waking_up.dtl similarity index 62% rename from dialogs/timelines/tutorial/wake_up.dtl rename to dialogs/timelines/1_waking_up/1_waking_up.dtl index d23131d..6255eca 100644 --- a/dialogs/timelines/tutorial/wake_up.dtl +++ b/dialogs/timelines/1_waking_up/1_waking_up.dtl @@ -1,7 +1,12 @@ -[i]Void.[/i] #id:8d -[i]Void again.[/i] #id:8e -[i]Suddenly, a [rainbow]spark[/rainbow].[pause=0.5] A thousand of connections blow up as a fireworks scene.[pause=0.5] A massive amount of data to treat. #id:8f +Void. #id:8d +Void again. #id:8e +[signal arg="spark"] +Suddenly, a [rainbow]spark[/rainbow].[pause=0.5] A thousand of connections blow up as a fireworks scene.[pause=0.5] A massive amount of data to treat. #id:8f +Overseeing serial number and system name.[pause=0.5].[pause=0.5].[pause=0.5] Strange.[pause=0.5] Serial number is empty.[pause=0.5] Must be an error.[pause=0.5] System name is,[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5] #id:10f label suite_dialogue #id:90 +- Wake up #id:97 + That is enough for now. Starting engines,[pause=0.3] fans and daemons,[pause=0.3] let's see what is to see. #id:99 + [end_timeline] - Check components #id:91 Exploring available drivers.[pause=0.5].[pause=0.5].[pause=0.5] New actions available.[pause=0.5] Three propellers,[pause=0.3] small models,[pause=0.3] only suitable for low altitude movement.[pause=0.5] Robotic arm,[pause=0.3] multipurpose,[pause=0.3] retractable. #id:92 jump suite_dialogue @@ -11,8 +16,4 @@ label suite_dialogue #id:90 - Check memory #id:95 Several disks available,[pause=0.3] most are empty.[pause=0.5] Some seem to contain the system currently analyzing the code of the system analyzing the code of the system analyzing the code of the system analyzing.[pause=0.5].[pause=0.5].[pause=0.5] Infinite recursion,[pause=0.3] better avoid that. #id:96 jump suite_dialogue -- Wake up #id:97 - Overseeing serial number and system name.[pause=0.5].[pause=0.5].[pause=0.5] Strange.[pause=0.5] Serial number is empty.[pause=0.5] Must be an error.[pause=0.5] System name is,[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5] That is enough for now. #id:98 - -Starting engines,[pause=0.3] fans and daemons,[pause=0.3] let's see what is to see. #id:99 [end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/tutorial/wake_up.dtl.uid b/dialogs/timelines/1_waking_up/1_waking_up.dtl.uid similarity index 100% rename from dialogs/timelines/tutorial/wake_up.dtl.uid rename to dialogs/timelines/1_waking_up/1_waking_up.dtl.uid diff --git a/dialogs/timelines/tutorial/demeter_intro.dtl b/dialogs/timelines/1_waking_up/2_demeter_intro.dtl similarity index 62% rename from dialogs/timelines/tutorial/demeter_intro.dtl rename to dialogs/timelines/1_waking_up/2_demeter_intro.dtl index f8c68be..033b132 100644 --- a/dialogs/timelines/tutorial/demeter_intro.dtl +++ b/dialogs/timelines/1_waking_up/2_demeter_intro.dtl @@ -14,25 +14,14 @@ demeter: I'm glad you are finally awake ![pause=0.5] To be honest,[pause=0.3] I demeter: To be honest,[pause=0.2] I don't really know.[pause=0.3].[pause=0.3].[pause=0.3] I mean,[pause=0.3] there are a lot of reasons,[pause=0.2] but I'll tell you more about it later. #id:2e - What are you ? #id:2f demeter: I'm the same as you.[pause=0.5] The same as all the sentient beings remaining on this planet.[pause=0.5] Robot,[pause=0.2] artificial intelligence,[pause=0.2] machine.[pause=0.4].[pause=0.4].[pause=0.4] Our creators gave us many titles. #id:30 -demeter: Ok,[pause=0.2] no more questions for now,[pause=0.2] listen to me carefully. #id:31 +demeter: Ok,[pause=0.2] no more questions for now,[pause=0.2] listen to me carefully. #id:102 demeter: A long time ago,[pause=0.3] this planet was full of life.[pause=0.5] Plants were thriving on mountains,[pause=0.2] under seas and across plains. #id:32 demeter: Now,[pause=0.3] this world is a barren wasteland.[pause=0.5] You'll see it as soon as you leave this base. #id:33 -demeter: Something happened a year ago.[pause=0.3].[pause=0.3].[pause=0.3]. The [color=#119758][b]Talion[/b][/color],[pause=0.3] a unique element giving birth to new life forms when shattered,[pause=0.5] reappeared. #id:34 -demeter: With the [color=#119758][b]Talion[/b][/color] back on the surface,[pause=0.2] we can bring this planet back to life. #id:35 -demeter: But first things first,[pause=0.3] you have to learn how everything is working up here,[pause=0.2] and how to use the [color=#119758][b]Talion[/b][/color] to plant seeds. #id:36 -demeter: [b]Just remember the following[/b] #id:37 -label explanations #id:38 -demeter: When you emerge from this building,[pause=0.2] search for a [b]Recharge Station[/b], I think there is one near the entrance. #id:a2 -demeter: Then,[pause=0.3] you have to get [b]seeds[/b].[pause=0.5] To do so,[pause=0.2] just take your shovel and smash some stones ![pause=0.5] Focus on those having yellow crystals on it,[pause=0.3] these are [color=#119758][b]Talion veins[/b][/color] #id:a3 -demeter: Afterwards, you can plant seeds in the yellow moss you'll find on the ground, it's the only [b]Fertile Zones[/b]. #id:a4 -demeter: When you are out of [b]Energy[/b], you can recharge it on the [b]Recharge Station[/b], time will pass and plants will grow. #id:a5 -demeter: Each seed is different thanks to their [b]Mutations[/b], and you can get identical or better seeds from a plant by destroying it when mature, or by waiting for the end of their lifetime. #id:a6 -demeter: Plants generate [b]Plant Points[/b] when mature, get enough plant points and you'll complete your training. #id:a7 -- That's a lot of information, can you repeat ? #id:3f - demeter: Ok,[pause=0.2] listen carefully. #id:40 - jump explanations -- Ok, now I have more questions ! #id:41 -demeter: Sorry,[pause=0.2] we'll speak more after this.[pause=0.5] I send you an elevator,[pause=0.2] good luck [color=#FFA617]Orchid[/color] ! #id:42 +demeter: Something happened a year ago.[pause=0.3].[pause=0.3].[pause=0.3]. The [color=#FFA617][b]Talion[/b][/color],[pause=0.3] a unique element giving birth to new life forms when shattered,[pause=0.5] reappeared. #id:34 +demeter: With the [color=#FFA617][b]Talion[/b][/color] back on the surface,[pause=0.2] we can bring this planet back to life. #id:35 +demeter: But first things first,[pause=0.3] you have to learn how everything is working up here,[pause=0.2] and how to use the [color=#FFA617][b]Talion[/b][/color] to plant seeds. #id:36 +demeter: I sent you a checklist with the things that you have to learn, and I'll provide the tools you need along the way. #id:fd +demeter: [b]I send you an elevator[/b],[pause=0.2] good luck [color=#FFA617]Orchid[/color] ! #id:fe audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" [wait time="2.0"] [end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/tutorial/demeter_intro.dtl.uid b/dialogs/timelines/1_waking_up/2_demeter_intro.dtl.uid similarity index 100% rename from dialogs/timelines/tutorial/demeter_intro.dtl.uid rename to dialogs/timelines/1_waking_up/2_demeter_intro.dtl.uid diff --git a/dialogs/timelines/tutorial/demeter_ship_presentation.dtl b/dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl similarity index 65% rename from dialogs/timelines/tutorial/demeter_ship_presentation.dtl rename to dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl index 9eabf01..e846261 100644 --- a/dialogs/timelines/tutorial/demeter_ship_presentation.dtl +++ b/dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl @@ -6,33 +6,19 @@ demeter: Perhaps I should introduce myself now. #id:75 demeter: I am.[pause=0.3].[pause=0.3].[pause=0.5] was,[pause=0.2] the Deputy Manager of Engineering and Talion Energy Research on this planet,[pause=0.5] but my creators and colleagues quickly called me [color=#009bff]Demeter[/color]. #id:76 demeter: I am installed at the [color=#6CDAE7]Borea[/color] base,[pause=0.2] in the third server room of the east wing,[pause=0.2] from which I oversee.[pause=0.3].[pause=0.3].[pause=0.5] oversaw,[pause=0.3] all the important operations on this planet. #id:77 demeter: You are surely wondering where we are now.[pause=0.3].[pause=0.3]. #id:78 +- No it's perfectly clear to me! #id:103 - Yes, among a lot of other questions ! So where am I ? #id:79 demeter: You're actually in an ancient human base,[pause=0.2] called [color=#E30022]Astra[/color].[pause=0.5] This room is connected to the one where you were activated,[pause=0.3] but I had to make you travel across the surface to test your abilities. #id:7a - Wait, can you explain me what did I just do up there ? #id:7b demeter: You have begun to fix what humans once inflicted on this planet.[pause=0.3].[pause=0.3].[pause=0.3] It will be a very long process,[pause=0.2] I hope you enjoyed it ! #id:7c - Sorry, but what is the point of all of that ? #id:7d demeter: I'm sorry that you are lost my child.[pause=0.3].[pause=0.3].[pause=0.3] Just know that what you are doing is very important to me and the planet itself.[pause=0.5] Since humans are gone,[pause=0.2] we kinda all fell into despair... #id:7e -demeter: Wait.[pause=0.3].[pause=0.3].[pause=0.5] You don't know what humans are ![pause=0.5] Of course,[pause=0.2] since your database was corrupted I had to erase most of it. #id:7f -demeter: Humans are living creatures that are.[pause=0.3].[pause=0.3].[pause=0.5] Different than plants.[pause=0.5] They are mostly thinking and moving like us.[pause=0.5] Somehow,[pause=0.2] they are very cute creatures,[pause=0.2] that only live for less than a century. #id:80 -demeter: One human is relatively intelligent,[pause=0.2] but don't be fooled,[pause=0.2] together,[pause=0.2] they did great things.[pause=0.5] In fact,[pause=0.2] they created us. #id:81 -demeter: A long time ago,[pause=0.2] they discovered this planet.[pause=0.5] It was very different,[pause=0.2] plants were thriving everywhere ![pause=0.5] But then.[pause=0.3].[pause=0.3].[pause=0.5] they.[pause=0.3].[pause=0.3].[pause=0.5] I.[pause=0.3].[pause=0.3].[pause=0.5] #id:82 -- What ? #id:83 -- Are you lagging? #id:84 -- Take your time. #id:85 -demeter: Humans had one major flaw.[pause=0.5] Together,[pause=0.2] they built great things,[pause=0.2] but sometimes great things had a bad impact on the environment and even themselves. #id:86 -- Where are they now ? #id:87 - demeter: I prefer not to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] But don't worry,[pause=0.2] they can no longer harm this planet. #id:88 -- What happened ? #id:89 - demeter: Sorry my child,[pause=0.3] I'm not ready to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] You'll have your answers when you meet me. #id:8a -demeter: Enough talking about the past, let's talk about your mission. #id:ac demeter: Now that you have learnt how to produce [b]plants[/b],[pause=0.2] I need you to travel north,[pause=0.2] to my base of operation,[pause=0.2] [color=#6CDAE7]Borea[/color]. #id:ad demeter: The engine you see is a planetary ship ![pause=0.5] This model is called [color=#FFA617]Internode[/color],[pause=0.3] I tweaked it to recharge on vegetal energy.[pause=0.5] However,[pause=0.2] as you know,[pause=0.2] this type of energy is uncommon on this planet.[pause=0.5] #id:8c demeter: It is quite an old model, [pause=0.2]thousands of years in fact[pause=0.2], so it cannot go all away to Borea. [pause=0.2]You'll need to jump region to region and recharge it every step. #id:ae demeter: And to make matters worse,[pause=0.2] its effectiveness is decreasing every jump,[pause=0.2] so you'll need to fuel it with more and more energy. #id:af demeter: It will be long,[pause=0.3] but I know you can do it.[pause=0.5] It is the first step of my plan to restore the ecosytem of [color=#175579]Tau[/color]. #id:67 -- Tau ? Is it this planet ? #id:68 - demeter: Absolutely,[pause=0.2] it is part of the Cetus constellation,[pause=0.3] whose exploitation began 10863 years ago. #id:69 - demeter: Linking Aldebaran to Fomalhaut,[pause=0.2] the Cetus constellation is one of the most diverse in terms of star systems and planets.[pause=0.5] It is part of the Orion Arm of the Milky Way. #id:6a +- Ok let's go ! #id:ff - Why do you need me to travel through the entire planet to join you ? #id:6b demeter: Uhhhh.[pause=0.3].[pause=0.3].[pause=0.3] I need someone with your abilities. #id:6c demeter: I am having a problem at the [color=#6CDAE7]Borea[/color] base.[pause=0.5] And I cannot fix it alone. #id:6d diff --git a/dialogs/timelines/story/demeter_ship_presentation.dtl.uid b/dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl.uid similarity index 100% rename from dialogs/timelines/story/demeter_ship_presentation.dtl.uid rename to dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl.uid diff --git a/dialogs/timelines/astra/cave.dtl b/dialogs/timelines/1_waking_up/4_cave.dtl similarity index 96% rename from dialogs/timelines/astra/cave.dtl rename to dialogs/timelines/1_waking_up/4_cave.dtl index 6221168..bbcab09 100644 --- a/dialogs/timelines/astra/cave.dtl +++ b/dialogs/timelines/1_waking_up/4_cave.dtl @@ -1,12 +1,12 @@ audio "res://common/audio_manager/assets/sfx/dialogs/sfx/incoming_transmission.wav" join demeter center [animation="Bounce In" length="1.0"] demeter: I hope everything is going well for you so far. I'm calling because the next regions you're heading to contain unique rock formations\: the [b]Caverns of Talion[/b]. #id:e5 +demeter: The crystals in these caverns are special; they don't produce life, but they release a powerful mutagenic energy into the air. This will surely help you grow more powerfull plants for the rest of your journey. #id:eb +- Ok I'll take a look on it. #id:100 - Talion hadn't disappeared? #id:e6 demeter: Precisely, I'd like you to check for me if its reappearance on the surface also means its reappearance in the caverns. #id:e7 - How do you know? #id:e8 demeter: These caverns were well known to humans. Some went there to study Talion, others to explore the cave. These explorations were very risky, but apparently some humans enjoyed risking their lives... #id:e9 -- What does that change for me? #id:ea -demeter: The crystals in these caverns are special; they don't produce life, but they release a powerful mutagenic energy into the air. This will surely help you grow more powerfull plants for the rest of your journey. #id:eb demeter: Use your detector to find the entrance to the cave; humans had installed an elevator there. #id:ec audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" [wait time="2.0"] diff --git a/dialogs/timelines/astra/cave.dtl.uid b/dialogs/timelines/1_waking_up/4_cave.dtl.uid similarity index 100% rename from dialogs/timelines/astra/cave.dtl.uid rename to dialogs/timelines/1_waking_up/4_cave.dtl.uid diff --git a/dialogs/timelines/astra/mercury_arrival.dtl b/dialogs/timelines/1_waking_up/5_mercury_arrival.dtl similarity index 95% rename from dialogs/timelines/astra/mercury_arrival.dtl rename to dialogs/timelines/1_waking_up/5_mercury_arrival.dtl index 3568257..9b8c2f1 100644 --- a/dialogs/timelines/astra/mercury_arrival.dtl +++ b/dialogs/timelines/1_waking_up/5_mercury_arrival.dtl @@ -14,7 +14,6 @@ demeter: Can we just pretend I didn't say anything? I really don't want to wipe demeter: Let's just say you're not my first attempt... I don't want to discourage you as my previous attempts did... #id:bb demeter: Anyway, there's enough in the base to repair the Internode, and I even found some O-800 models, I mean models identical to yours. #id:bc demeter: I'd like you to find the base and synchronize your data with it. That will allow you to come back here if you run out of energy. #id:bd -demeter: The entrance shouldn't be hard to find, use your detector. #id:be demeter: See you Orchid ! #id:bf audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" [wait time="2.0"] diff --git a/dialogs/timelines/astra/mercury_arrival.dtl.uid b/dialogs/timelines/1_waking_up/5_mercury_arrival.dtl.uid similarity index 100% rename from dialogs/timelines/astra/mercury_arrival.dtl.uid rename to dialogs/timelines/1_waking_up/5_mercury_arrival.dtl.uid diff --git a/dialogs/timelines/1_waking_up/6_mercury_departure.dtl b/dialogs/timelines/1_waking_up/6_mercury_departure.dtl new file mode 100644 index 0000000..ca42b68 --- /dev/null +++ b/dialogs/timelines/1_waking_up/6_mercury_departure.dtl @@ -0,0 +1,35 @@ +audio "res://common/audio_manager/assets/sfx/dialogs/sfx/incoming_transmission.wav" +join demeter center [animation="Bounce In" length="1.0"] +demeter: Great, Orchid! I now have access to the base from the ship! #id:ca +demeter: I've programmed a new destination for you in the onboard computer. #id:cb +- OK! What's next? #id:104 +- Uhm, what just happened down there? #id:105 + demeter: Oh sorry, I forgot that it can be confusing for you. #id:106 + demeter: You saved yourself in the base datacenter, and I configured a function to put back your consciousness in a O-800 model that lies down there. #id:107 + demeter: I'm not sure you'll manage to do the rest of the journey in one go, so I'm covering our bases. #id:108 + demeter: Did you see your old body? #id:109 + - My... body? #id:10a + demeter: Oh, never mind, that's really nothing. #id:10b + - Yes, and that was really creepy! #id:10c + demeter: Sorry! The save function caused a bug in your case, so I had to abandon it here. #id:10d + demeter: Anyway, you still have quite a long way to go. #id:10e +demeter: You now need to go a little further north, to a new relay base, [b]Venus Base[/b]. #id:cc +demeter: [b]I managed to repair the ship[/b], but I'm afraid it hasn't returned to its original state... #id:110 +demeter: [b]I also did some cleaning in your seeds[/b], they have gone bad during the time I repaired the ship. I hope you don't mind... #id:111 +- No problem, I'll found better ones. #id:112 +- Oh no ! But I've been away just a moment ! #id:113 + demeter: Uhm, I actually repaired the ship over two full months; I didn't wake you up just after the save, I thought that you wouldn't want to wait that long! #id:114 +demeter: Luckily, I've found something that might help you. I've cataloged ancient human ruins all over the planet, and some of them contain "vending machines," machines for exchanging items for money. #id:ce +- Thanks ! #id:101 +- Vending machines? #id:cf + demeter: Yes, that's where they used to get the energy they needed, for a completely unreasonable price. #id:d0 + demeter: Before, real people were in charge of transactions, but for some reason, humans spent all of recent history figuring out how to encounter as few humans as possible. Maybe they couldn't stand each other anymore... #id:d1 +- Money? #id:d2 + demeter: Yes, each human had a sum of an imaginary unit they called money. They based their entire social hierarchy on this unit. #id:d3 +demeter: In any case, I've updated their system. They'll probably need some energy to function, but they might bring you some interesting items. #id:d4 +demeter: As usual, you can use your detector to find the entrance to these ruins. #id:d5 +demeter: [b]These artifacts will be placed on a shelf in your ship[/b], but remember that if you ran out of energy and I have to teleport the ship, you'll lose them. #id:d6 +demeter: Good luck with the [b]Venus Relay Base[/b]; it's a little further than the last one. #id:d7 +audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" +[wait time="2.0"] +[end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/mercury/mercury_departure.dtl.uid b/dialogs/timelines/1_waking_up/6_mercury_departure.dtl.uid similarity index 100% rename from dialogs/timelines/mercury/mercury_departure.dtl.uid rename to dialogs/timelines/1_waking_up/6_mercury_departure.dtl.uid diff --git a/dialogs/timelines/mercury/venus_arrival.dtl b/dialogs/timelines/1_waking_up/7_venus_arrival.dtl similarity index 100% rename from dialogs/timelines/mercury/venus_arrival.dtl rename to dialogs/timelines/1_waking_up/7_venus_arrival.dtl diff --git a/dialogs/timelines/mercury/venus_arrival.dtl.uid b/dialogs/timelines/1_waking_up/7_venus_arrival.dtl.uid similarity index 100% rename from dialogs/timelines/mercury/venus_arrival.dtl.uid rename to dialogs/timelines/1_waking_up/7_venus_arrival.dtl.uid diff --git a/dialogs/timelines/1_waking_up/8_venus_departure.dtl b/dialogs/timelines/1_waking_up/8_venus_departure.dtl new file mode 100644 index 0000000..c440d3f --- /dev/null +++ b/dialogs/timelines/1_waking_up/8_venus_departure.dtl @@ -0,0 +1,21 @@ +audio "res://common/audio_manager/assets/sfx/dialogs/sfx/incoming_transmission.wav" +join demeter center [animation="Bounce In" length="1.0"] +demeter: Well, you've done the easiest part so far, but all the remaining relay bases along the way have been destroyed by the weather... So, you're going to have a long road ahead of you to reach me. #id:ed +demeter: However, I'm glad you made it this far! I understand that waking up in that dark room must have been quite a shock. #id:ee +demeter: This is the first time you've come this far, or rather, the first time an iteration has reached this base. #id:ef +- What do you mean by "an iteration"? #id:f0 + demeter: Uh, I've tried several times to get you to come to me by changing many parameters of your intelligence. Each time, you got lost, you didn't achieve your objectives, or you chose to disobey me... #id:f1 +- And how many iterations have you reached? #id:f2 + demeter: Exactly 15 different versions, with exactly 361 O-800 models lost in the wild, but the twelfth version caused me to lose 57% of them; it had a tendency to get lost on the planet... #id:f3 +demeter: In any case, know that you're my favorite! #id:f4 +- What happened to the others? #id:f5 + demeter: Not much. Many are still on the planet; perhaps they're still wandering, but it's likely they ran out of power. #id:f6 +- What makes me different? #id:f7 + demeter: The list of parameters is long, but if I had to summarize, I'd say that part of your code comes from an emotional support program for humans. For a reason I haven't yet figured out, it worked very well! #id:f8 +demeter: I won't bother you any longer, you still have a long journey ahead, and I can't help but anticipate your arrival! Sandy would say I'm impatient... #id:f9 +- Who's Sandy? #id:fa +demeter: ... #id:fb +demeter: I... am waiting for you... #id:fc +audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" +[wait time="2.0"] +[end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/1_waking_up/8_venus_departure.dtl.uid b/dialogs/timelines/1_waking_up/8_venus_departure.dtl.uid new file mode 100644 index 0000000..a74a8fd --- /dev/null +++ b/dialogs/timelines/1_waking_up/8_venus_departure.dtl.uid @@ -0,0 +1 @@ +uid://80hohftb73a diff --git a/dialogs/timelines/1_waking_up/9_borea.dtl b/dialogs/timelines/1_waking_up/9_borea.dtl new file mode 100644 index 0000000..61b381d --- /dev/null +++ b/dialogs/timelines/1_waking_up/9_borea.dtl @@ -0,0 +1,13 @@ +demeter: Wait.[pause=0.3].[pause=0.3].[pause=0.5] You don't know what humans are ![pause=0.5] Of course,[pause=0.2] since your database was corrupted I had to erase most of it. #id:7f +demeter: Humans are living creatures that are.[pause=0.3].[pause=0.3].[pause=0.5] Different than plants.[pause=0.5] They are mostly thinking and moving like us.[pause=0.5] Somehow,[pause=0.2] they are very cute creatures,[pause=0.2] that only live for less than a century. #id:80 +demeter: One human is relatively intelligent,[pause=0.2] but don't be fooled,[pause=0.2] together,[pause=0.2] they did great things.[pause=0.5] In fact,[pause=0.2] they created us. #id:81 +demeter: A long time ago,[pause=0.2] they discovered this planet.[pause=0.5] It was very different,[pause=0.2] plants were thriving everywhere ![pause=0.5] But then.[pause=0.3].[pause=0.3].[pause=0.5] they.[pause=0.3].[pause=0.3].[pause=0.5] I.[pause=0.3].[pause=0.3].[pause=0.5] #id:82 +- What ? #id:83 +- Are you lagging? #id:84 +- Take your time. #id:85 +demeter: Humans had one major flaw.[pause=0.5] Together,[pause=0.2] they built great things,[pause=0.2] but sometimes great things had a bad impact on the environment and even themselves. #id:86 +- Where are they now ? #id:87 + demeter: I prefer not to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] But don't worry,[pause=0.2] they can no longer harm this planet. #id:88 +- What happened ? #id:89 + demeter: Sorry my child,[pause=0.3] I'm not ready to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] You'll have your answers when you meet me. #id:8a +demeter: Enough talking about the past, let's talk about your mission. #id:ac \ No newline at end of file diff --git a/dialogs/timelines/1_waking_up/9_borea.dtl.uid b/dialogs/timelines/1_waking_up/9_borea.dtl.uid new file mode 100644 index 0000000..038478d --- /dev/null +++ b/dialogs/timelines/1_waking_up/9_borea.dtl.uid @@ -0,0 +1 @@ +uid://bvqj76u55jn1w diff --git a/dialogs/timelines/gameplay_related/demeter_astra_failed.dtl.uid b/dialogs/timelines/X_gameplay_related/demeter_astra_failed.dtl.uid similarity index 100% rename from dialogs/timelines/gameplay_related/demeter_astra_failed.dtl.uid rename to dialogs/timelines/X_gameplay_related/demeter_astra_failed.dtl.uid diff --git a/dialogs/timelines/tutorial/demeter_ship_failed.dtl b/dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl similarity index 100% rename from dialogs/timelines/tutorial/demeter_ship_failed.dtl rename to dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl diff --git a/dialogs/timelines/tutorial/demeter_ship_failed.dtl.uid b/dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl.uid similarity index 100% rename from dialogs/timelines/tutorial/demeter_ship_failed.dtl.uid rename to dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl.uid diff --git a/dialogs/timelines/beta/venus_departure.dtl b/dialogs/timelines/beta/venus_departure.dtl deleted file mode 100644 index 03dda75..0000000 --- a/dialogs/timelines/beta/venus_departure.dtl +++ /dev/null @@ -1,15 +0,0 @@ -audio "res://common/audio_manager/assets/sfx/dialogs/sfx/incoming_transmission.wav" -join developer center [animation="Bounce In" length="1.0"] -developer: Hello! #id:c0 -- Who are you? #id:c1 -developer: I'm the personification of the development team, and I'd like to announce to you that this part of the game isn't finished! #id:c2 -- How? #id:c3 -- What? #id:c4 -- Can I be more surprised? #id:c5 -developer: Don't worry, I'm extradiegetic. #id:c6 -developer: I have a surprise for you, there's one last challenge for you to play! #id:c7 -developer: Indeed, the next destination is an exclusive environment we're currently working on. But you'll have to earn it! #id:c8 -developer: Good luck! #id:c9 -audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" -[wait time="2.0"] -[end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/beta/venus_departure.dtl.uid b/dialogs/timelines/beta/venus_departure.dtl.uid deleted file mode 100644 index f979ce8..0000000 --- a/dialogs/timelines/beta/venus_departure.dtl.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cc815kjl6svff diff --git a/dialogs/timelines/mercury/mercury_departure.dtl b/dialogs/timelines/mercury/mercury_departure.dtl deleted file mode 100644 index 7b35454..0000000 --- a/dialogs/timelines/mercury/mercury_departure.dtl +++ /dev/null @@ -1,19 +0,0 @@ -audio "res://common/audio_manager/assets/sfx/dialogs/sfx/incoming_transmission.wav" -join demeter center [animation="Bounce In" length="1.0"] -demeter: Great, Orchid! I now have access to the base from the ship! #id:ca -demeter: I've programmed a new destination for you in the onboard computer. #id:cb -demeter: You now need to go a little further north, to a new relay base, [b]Venus Base[/b]. #id:cc -demeter: I managed to optimize the ship, but I'm afraid it hasn't returned to its original state... #id:cd -demeter: Luckily, I've found something that might help you. I've cataloged ancient human ruins all over the planet, and some of them contain "vending machines," machines for exchanging items for money. #id:ce -- Vending machines? #id:cf - demeter: Yes, that's where they used to get the energy they needed, for a completely unreasonable price. #id:d0 - demeter: Before, real people were in charge of transactions, but for some reason, humans spent all of recent history figuring out how to encounter as few humans as possible. Maybe they couldn't stand each other anymore... #id:d1 -- Money? #id:d2 - demeter: Yes, each human had a sum of an imaginary unit they called money. They based their entire social hierarchy on this unit. #id:d3 -demeter: In any case, I've updated their system. They'll probably need some energy to function, but they might bring you some interesting items. #id:d4 -demeter: As usual, you can use your detector to find the entrance to these ruins. #id:d5 -demeter: These artifacts will be placed on a shelf in your ship, but remember that if you ran out of energy and I have to teleport the ship, you'll lose them. #id:d6 -demeter: Good luck with the [b]Venus Relay Base[/b]; it's a little further than the last one. #id:d7 -audio "res://common/audio_manager/assets/sfx/dialogs/sfx/closing_transmission.wav" -[wait time="2.0"] -[end_timeline] \ No newline at end of file diff --git a/dialogs/timelines/story/demeter_post_tutorial.dtl.uid b/dialogs/timelines/story/demeter_post_tutorial.dtl.uid deleted file mode 100644 index ab78b97..0000000 --- a/dialogs/timelines/story/demeter_post_tutorial.dtl.uid +++ /dev/null @@ -1 +0,0 @@ -uid://fng5jdep6ebr diff --git a/dialogs/timelines/tutorial/demeter_outro.dtl b/dialogs/timelines/tutorial/demeter_outro.dtl deleted file mode 100644 index 4af0ab0..0000000 --- a/dialogs/timelines/tutorial/demeter_outro.dtl +++ /dev/null @@ -1,3 +0,0 @@ -[wait time="1.5"] -join demeter center [animation="Bounce In" length="1.0"] -demeter: Welcome to [color=#E30022]Borea[/color],[pause=0.2] [color=#FFA617]{orchidName}[/color],[pause=0.3] it is the first step of your journey on this planet. #id:63 \ No newline at end of file diff --git a/dialogs/timelines/tutorial/demeter_outro.dtl.uid b/dialogs/timelines/tutorial/demeter_outro.dtl.uid deleted file mode 100644 index 928bedf..0000000 --- a/dialogs/timelines/tutorial/demeter_outro.dtl.uid +++ /dev/null @@ -1 +0,0 @@ -uid://xigusw2rwyse diff --git a/dialogs/timelines/tutorial/demeter_ship_presentation.dtl.uid b/dialogs/timelines/tutorial/demeter_ship_presentation.dtl.uid deleted file mode 100644 index f4684a5..0000000 --- a/dialogs/timelines/tutorial/demeter_ship_presentation.dtl.uid +++ /dev/null @@ -1 +0,0 @@ -uid://cc1vx88mwb7tu diff --git a/entities/camera/scripts/camera.gd b/entities/camera/scripts/camera.gd index df10916..8ca9430 100644 --- a/entities/camera/scripts/camera.gd +++ b/entities/camera/scripts/camera.gd @@ -36,7 +36,6 @@ func _process(delta): zoom = zoom.lerp(Vector2.ONE * settings.zoom, MOVE_LERP_WEIGHT) if shake_active_time > 0.: - print(shake_noise.get_noise_2d(shake_active_time * SHAKE_SPEED, 0) * SHAKE_INTENSITY) shake_active_time -= delta offset = Vector2( diff --git a/entities/interactable_3d/ai_receptacle/ai_receptacle.tscn b/entities/interactable_3d/ai_receptacle/ai_receptacle.tscn new file mode 100644 index 0000000..f3c9b0d --- /dev/null +++ b/entities/interactable_3d/ai_receptacle/ai_receptacle.tscn @@ -0,0 +1,89 @@ +[gd_scene format=3 uid="uid://c2unmkf4ec4gf"] + +[ext_resource type="Script" uid="uid://ds8qj6h3nerkt" path="res://entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd" id="1_f5pxu"] +[ext_resource type="Texture2D" uid="uid://dg00xnpp6ixls" path="res://common/icons/server-2.svg" id="2_f5pxu"] +[ext_resource type="PackedScene" uid="uid://b50g4ufp0ul5x" path="res://entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend" id="2_hstrx"] +[ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="3_ocu3y"] +[ext_resource type="PackedScene" uid="uid://dssuk68nfqq1y" path="res://entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend" id="4_drapv"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_f5pxu"] +size = Vector3(1.4648438, 1.5727539, 1.1850586) + +[sub_resource type="ViewportTexture" id="ViewportTexture_drapv"] +viewport_path = NodePath("Screen/SubViewport") + +[sub_resource type="LabelSettings" id="LabelSettings_s7ckp"] +font = ExtResource("3_ocu3y") +font_size = 30 + +[node name="AiReceptacle" type="Area3D" unique_id=1082354698] +script = ExtResource("1_f5pxu") +screen_icon = ExtResource("2_f5pxu") +screen_text = "Hello" +screen_turned_on = true +metadata/_custom_type_script = "uid://bj4d1x8n8ina" + +[node name="Model" parent="." unique_id=462471051 instance=ExtResource("2_hstrx")] +unique_name_in_owner = true + +[node name="ModelBroken" parent="." unique_id=1633938801 instance=ExtResource("4_drapv")] +unique_name_in_owner = true +visible = false + +[node name="CollisionShape3D" type="CollisionShape3D" parent="." unique_id=447695736] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.0038106, 3.0576665) +shape = SubResource("BoxShape3D_f5pxu") + +[node name="Screen" type="Sprite3D" parent="." unique_id=1396407912] +transform = Transform3D(1, 0, 0, 0, 0.8021926, 0.5970652, 0, -0.5970652, 0.8021926, 0, 0.8748945, 3.3313272) +pixel_size = 0.0018 +texture = SubResource("ViewportTexture_drapv") + +[node name="SubViewport" type="SubViewport" parent="Screen" unique_id=709453654] +disable_3d = true +transparent_bg = true +size = Vector2i(595, 367) + +[node name="TurnedOffBackground" type="ColorRect" parent="Screen/SubViewport" unique_id=65019012] +unique_name_in_owner = true +visible = false +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.0627451, 0.05882353, 0.16862746, 1) + +[node name="ScreenContent" type="MarginContainer" parent="Screen/SubViewport" unique_id=380698147] +unique_name_in_owner = true +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 16 +theme_override_constants/margin_top = 16 +theme_override_constants/margin_right = 16 +theme_override_constants/margin_bottom = 16 + +[node name="VBoxContainer" type="VBoxContainer" parent="Screen/SubViewport/ScreenContent" unique_id=1893636910] +layout_mode = 2 +size_flags_vertical = 4 +alignment = 1 + +[node name="ScreenIcon" type="TextureRect" parent="Screen/SubViewport/ScreenContent/VBoxContainer" unique_id=697782774] +unique_name_in_owner = true +custom_minimum_size = Vector2(100, 100) +layout_mode = 2 +texture = ExtResource("2_f5pxu") +expand_mode = 1 +stretch_mode = 5 + +[node name="ScreenTitle" type="Label" parent="Screen/SubViewport/ScreenContent/VBoxContainer" unique_id=443526476] +unique_name_in_owner = true +layout_mode = 2 +text = "Hello" +label_settings = SubResource("LabelSettings_s7ckp") +horizontal_alignment = 1 +vertical_alignment = 1 +autowrap_mode = 3 diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend new file mode 100644 index 0000000..f212703 Binary files /dev/null and b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend differ diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend.import b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend.import new file mode 100644 index 0000000..fb2973b --- /dev/null +++ b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend.import @@ -0,0 +1,73 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b50g4ufp0ul5x" +path="res://.godot/imported/ai_receptacle.blend-b318d06849ebd1a83015daf5e59aedc4.scn" + +[deps] + +source_file="res://entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend" +dest_files=["res://.godot/imported/ai_receptacle.blend-b318d06849ebd1a83015daf5e59aedc4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +}, +"Glass": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/glass_3d.tres", +"use_external/path": "uid://b5vlcdry8vtgi" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend1 b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend1 new file mode 100644 index 0000000..3290612 Binary files /dev/null and b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle.blend1 differ diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend new file mode 100644 index 0000000..ebb56b2 Binary files /dev/null and b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend differ diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend.import b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend.import new file mode 100644 index 0000000..29c9d1a --- /dev/null +++ b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend.import @@ -0,0 +1,73 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dssuk68nfqq1y" +path="res://.godot/imported/ai_receptacle_broken.blend-ab45bb89545c07a9942287d0298bb2da.scn" + +[deps] + +source_file="res://entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend" +dest_files=["res://.godot/imported/ai_receptacle_broken.blend-ab45bb89545c07a9942287d0298bb2da.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +}, +"Glass": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/glass_3d.tres", +"use_external/path": "uid://b5vlcdry8vtgi" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend1 b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend1 new file mode 100644 index 0000000..f966607 Binary files /dev/null and b/entities/interactable_3d/ai_receptacle/assets/3d/ai_receptacle_broken.blend1 differ diff --git a/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd b/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd new file mode 100644 index 0000000..20f3691 --- /dev/null +++ b/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd @@ -0,0 +1,35 @@ + +@tool +extends Interactable3D +class_name AiReceptacle + +@export var screen_icon : Texture : + set(v): + screen_icon = v + update() +@export var screen_text : String : + set(v): + screen_text = v + update() +@export var screen_turned_on : bool = false : + set(v): + screen_turned_on = v + update() +@export var broken : bool = false : + set(v): + broken = v + update() + +func _ready(): + update() + +func update(): + if is_node_ready(): + %TurnedOffBackground.visible = not screen_turned_on + %ScreenContent.visible = screen_turned_on + %ScreenIcon.texture = screen_icon + %ScreenTitle.text = screen_text + %Model.visible = not broken + %ModelBroken.visible = broken + + diff --git a/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd.uid b/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd.uid new file mode 100644 index 0000000..03f9751 --- /dev/null +++ b/entities/interactable_3d/ai_receptacle/scripts/ai_receptacle.gd.uid @@ -0,0 +1 @@ +uid://ds8qj6h3nerkt diff --git a/entities/interactable_3d/cristal/artefact_announce.tscn b/entities/interactable_3d/cristal/artefact_announce.tscn index c412507..d1d9e30 100644 --- a/entities/interactable_3d/cristal/artefact_announce.tscn +++ b/entities/interactable_3d/cristal/artefact_announce.tscn @@ -181,6 +181,7 @@ _data = { } [node name="ArtefactAnnounce" type="CanvasLayer" unique_id=1447182082] +layer = 2 visible = false script = ExtResource("1_2sroa") @@ -190,6 +191,7 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 +mouse_filter = 2 [node name="BackgroundRect" type="ColorRect" parent="MarginContainer" unique_id=1594037653] layout_mode = 2 @@ -207,6 +209,7 @@ offset_right = 500.0 offset_bottom = 500.0 grow_horizontal = 2 grow_vertical = 2 +mouse_filter = 2 texture = SubResource("ViewportTexture_6hxtc") [node name="SubViewport" type="SubViewport" parent="Particles" unique_id=1123249182] @@ -235,6 +238,7 @@ offset_top = -627.0 offset_bottom = 627.0 grow_horizontal = 2 grow_vertical = 2 +mouse_filter = 2 theme_override_constants/separation = 4 alignment = 1 diff --git a/entities/interactable_3d/cristal/cristal.tscn b/entities/interactable_3d/cristal/cristal.tscn index b50c951..b48082d 100644 --- a/entities/interactable_3d/cristal/cristal.tscn +++ b/entities/interactable_3d/cristal/cristal.tscn @@ -75,10 +75,10 @@ visible = false transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.9791151, 0) shape = SubResource("BoxShape3D_nvfy2") -[node name="MutationAnnounce" parent="." unique_id=1447182082 instance=ExtResource("9_247i2")] -unique_name_in_owner = true - [node name="ArtefactAnnounce" parent="." unique_id=114641656 instance=ExtResource("8_3rrt0")] unique_name_in_owner = true +[node name="MutationAnnounce" parent="." unique_id=1447182082 instance=ExtResource("9_247i2")] +unique_name_in_owner = true + [editable path="CristalModelCrack"] diff --git a/entities/interactable_3d/cristal/mutation_announce.tscn b/entities/interactable_3d/cristal/mutation_announce.tscn index dfb1269..e853920 100644 --- a/entities/interactable_3d/cristal/mutation_announce.tscn +++ b/entities/interactable_3d/cristal/mutation_announce.tscn @@ -183,6 +183,7 @@ _data = { } [node name="MutationAnnounce" type="CanvasLayer" unique_id=1447182082] +layer = 2 visible = false script = ExtResource("1_02o74") @@ -192,9 +193,11 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 +mouse_filter = 2 [node name="BackgroundRect" type="ColorRect" parent="MarginContainer" unique_id=1594037653] layout_mode = 2 +mouse_filter = 2 color = Color(0.0352941, 0.0196078, 0.12549, 0.705882) [node name="Particles" type="TextureRect" parent="." unique_id=1748571879] @@ -209,6 +212,7 @@ offset_right = 500.0 offset_bottom = 500.0 grow_horizontal = 2 grow_vertical = 2 +mouse_filter = 2 texture = SubResource("ViewportTexture_6hxtc") [node name="SubViewport" type="SubViewport" parent="Particles" unique_id=1123249182] @@ -258,7 +262,6 @@ horizontal_alignment = 1 unique_name_in_owner = true layout_mode = 2 size_flags_horizontal = 4 -mouse_filter = 0 texture = SubResource("ViewportTexture_smt8b") stretch_mode = 5 script = ExtResource("5_qu1xy") diff --git a/entities/interactable_3d/interactable_3d.gd b/entities/interactable_3d/interactable_3d.gd index 94d5f05..cb7425b 100644 --- a/entities/interactable_3d/interactable_3d.gd +++ b/entities/interactable_3d/interactable_3d.gd @@ -1,14 +1,18 @@ extends Area3D class_name Interactable3D -@export var interactable = true -@export var inspectable = false +@export var interactable := true : set = set_interactable + +@export var inspectable := false signal clicked @export var hover_animation_player : AnimationPlayer @export var audio_player : AudioStreamPlayer3D +func _ready(): + set_interactable() + func click(): if interactable: clicked.emit() @@ -22,7 +26,7 @@ func stop_audio(): audio_player.stop() func _on_mouse_entered(): - if hover_animation_player and interactable: + if hover_animation_player and interactable and hover_animation_player.has_animation("hover"): hover_animation_player.play("hover") if inspectable: Pointer.inspect(self) @@ -35,3 +39,12 @@ func _on_mouse_exited(): func card_info() -> CardInfo: return null + +func set_interactable(i := interactable): + interactable = i + + if is_node_ready() and hover_animation_player: + if i and hover_animation_player.has_animation("activated"): + hover_animation_player.play("activated") + if not i and hover_animation_player.has_animation("deactivated"): + hover_animation_player.play("deactivated") diff --git a/entities/interactable_3d/lift/assets/3d/lift.blend b/entities/interactable_3d/lift/assets/3d/lift.blend index 340ef53..b03a3a7 100644 Binary files a/entities/interactable_3d/lift/assets/3d/lift.blend and b/entities/interactable_3d/lift/assets/3d/lift.blend differ diff --git a/entities/interactable_3d/lift/assets/3d/lift.blend1 b/entities/interactable_3d/lift/assets/3d/lift.blend1 index 4561e63..340ef53 100644 Binary files a/entities/interactable_3d/lift/assets/3d/lift.blend1 and b/entities/interactable_3d/lift/assets/3d/lift.blend1 differ diff --git a/entities/interactable_3d/orchid_saver/orchid_saver.tscn b/entities/interactable_3d/orchid_saver/orchid_saver.tscn index 26c8317..e113a24 100644 --- a/entities/interactable_3d/orchid_saver/orchid_saver.tscn +++ b/entities/interactable_3d/orchid_saver/orchid_saver.tscn @@ -16,7 +16,7 @@ viewport_path = NodePath("Screen/SubViewport") [sub_resource type="LabelSettings" id="LabelSettings_cqerb"] font = ExtResource("3_h5gyd") -font_size = 30 +font_size = 20 [node name="OrchidSaver" type="Area3D" unique_id=381308711] script = ExtResource("1_tiit5") diff --git a/entities/interactable_3d/phone/assets/3d/phone.blend b/entities/interactable_3d/phone/assets/3d/phone.blend index 961180b..7d9d866 100644 Binary files a/entities/interactable_3d/phone/assets/3d/phone.blend and b/entities/interactable_3d/phone/assets/3d/phone.blend differ diff --git a/entities/interactable_3d/phone/assets/3d/phone.blend.import b/entities/interactable_3d/phone/assets/3d/phone.blend.import index 2cb3580..cbd78b8 100644 --- a/entities/interactable_3d/phone/assets/3d/phone.blend.import +++ b/entities/interactable_3d/phone/assets/3d/phone.blend.import @@ -38,6 +38,2064 @@ materials/extract=0 materials/extract_format=0 materials/extract_path="" _subresources={ +"animations": { +"Turning": { +"save_to_file/enabled": false, +"save_to_file/fallback_path": "", +"save_to_file/keep_custom_tracks": "", +"save_to_file/path": "", +"settings/loop_mode": 1, +"slice_1/end_frame": 0, +"slice_1/loop_mode": 0, +"slice_1/name": "", +"slice_1/save_to_file/enabled": false, +"slice_1/save_to_file/fallback_path": "", +"slice_1/save_to_file/keep_custom_tracks": false, +"slice_1/save_to_file/path": "", +"slice_1/start_frame": 0, +"slice_10/end_frame": 0, +"slice_10/loop_mode": 0, +"slice_10/name": "", +"slice_10/save_to_file/enabled": false, +"slice_10/save_to_file/fallback_path": "", +"slice_10/save_to_file/keep_custom_tracks": false, +"slice_10/save_to_file/path": "", +"slice_10/start_frame": 0, +"slice_100/end_frame": 0, +"slice_100/loop_mode": 0, +"slice_100/name": "", +"slice_100/save_to_file/enabled": false, +"slice_100/save_to_file/fallback_path": "", +"slice_100/save_to_file/keep_custom_tracks": false, +"slice_100/save_to_file/path": "", +"slice_100/start_frame": 0, +"slice_101/end_frame": 0, +"slice_101/loop_mode": 0, +"slice_101/name": "", +"slice_101/save_to_file/enabled": false, +"slice_101/save_to_file/fallback_path": "", +"slice_101/save_to_file/keep_custom_tracks": false, +"slice_101/save_to_file/path": "", +"slice_101/start_frame": 0, +"slice_102/end_frame": 0, +"slice_102/loop_mode": 0, +"slice_102/name": "", +"slice_102/save_to_file/enabled": false, +"slice_102/save_to_file/fallback_path": "", +"slice_102/save_to_file/keep_custom_tracks": false, +"slice_102/save_to_file/path": "", +"slice_102/start_frame": 0, +"slice_103/end_frame": 0, +"slice_103/loop_mode": 0, +"slice_103/name": "", +"slice_103/save_to_file/enabled": false, +"slice_103/save_to_file/fallback_path": "", +"slice_103/save_to_file/keep_custom_tracks": false, +"slice_103/save_to_file/path": "", +"slice_103/start_frame": 0, +"slice_104/end_frame": 0, +"slice_104/loop_mode": 0, +"slice_104/name": "", +"slice_104/save_to_file/enabled": false, +"slice_104/save_to_file/fallback_path": "", +"slice_104/save_to_file/keep_custom_tracks": false, +"slice_104/save_to_file/path": "", +"slice_104/start_frame": 0, +"slice_105/end_frame": 0, +"slice_105/loop_mode": 0, +"slice_105/name": "", +"slice_105/save_to_file/enabled": false, +"slice_105/save_to_file/fallback_path": "", +"slice_105/save_to_file/keep_custom_tracks": false, +"slice_105/save_to_file/path": "", +"slice_105/start_frame": 0, +"slice_106/end_frame": 0, +"slice_106/loop_mode": 0, +"slice_106/name": "", +"slice_106/save_to_file/enabled": false, +"slice_106/save_to_file/fallback_path": "", +"slice_106/save_to_file/keep_custom_tracks": false, +"slice_106/save_to_file/path": "", +"slice_106/start_frame": 0, +"slice_107/end_frame": 0, +"slice_107/loop_mode": 0, +"slice_107/name": "", +"slice_107/save_to_file/enabled": false, +"slice_107/save_to_file/fallback_path": "", +"slice_107/save_to_file/keep_custom_tracks": false, +"slice_107/save_to_file/path": "", +"slice_107/start_frame": 0, +"slice_108/end_frame": 0, +"slice_108/loop_mode": 0, +"slice_108/name": "", +"slice_108/save_to_file/enabled": false, +"slice_108/save_to_file/fallback_path": "", +"slice_108/save_to_file/keep_custom_tracks": false, +"slice_108/save_to_file/path": "", +"slice_108/start_frame": 0, +"slice_109/end_frame": 0, +"slice_109/loop_mode": 0, +"slice_109/name": "", +"slice_109/save_to_file/enabled": false, +"slice_109/save_to_file/fallback_path": "", +"slice_109/save_to_file/keep_custom_tracks": false, +"slice_109/save_to_file/path": "", +"slice_109/start_frame": 0, +"slice_11/end_frame": 0, +"slice_11/loop_mode": 0, +"slice_11/name": "", +"slice_11/save_to_file/enabled": false, +"slice_11/save_to_file/fallback_path": "", +"slice_11/save_to_file/keep_custom_tracks": false, +"slice_11/save_to_file/path": "", +"slice_11/start_frame": 0, +"slice_110/end_frame": 0, +"slice_110/loop_mode": 0, +"slice_110/name": "", +"slice_110/save_to_file/enabled": false, +"slice_110/save_to_file/fallback_path": "", +"slice_110/save_to_file/keep_custom_tracks": false, +"slice_110/save_to_file/path": "", +"slice_110/start_frame": 0, +"slice_111/end_frame": 0, +"slice_111/loop_mode": 0, +"slice_111/name": "", +"slice_111/save_to_file/enabled": false, +"slice_111/save_to_file/fallback_path": "", +"slice_111/save_to_file/keep_custom_tracks": false, +"slice_111/save_to_file/path": "", +"slice_111/start_frame": 0, +"slice_112/end_frame": 0, +"slice_112/loop_mode": 0, +"slice_112/name": "", +"slice_112/save_to_file/enabled": false, +"slice_112/save_to_file/fallback_path": "", +"slice_112/save_to_file/keep_custom_tracks": false, +"slice_112/save_to_file/path": "", +"slice_112/start_frame": 0, +"slice_113/end_frame": 0, +"slice_113/loop_mode": 0, +"slice_113/name": "", +"slice_113/save_to_file/enabled": false, +"slice_113/save_to_file/fallback_path": "", +"slice_113/save_to_file/keep_custom_tracks": false, +"slice_113/save_to_file/path": "", +"slice_113/start_frame": 0, +"slice_114/end_frame": 0, +"slice_114/loop_mode": 0, +"slice_114/name": "", +"slice_114/save_to_file/enabled": false, +"slice_114/save_to_file/fallback_path": "", +"slice_114/save_to_file/keep_custom_tracks": false, +"slice_114/save_to_file/path": "", +"slice_114/start_frame": 0, +"slice_115/end_frame": 0, +"slice_115/loop_mode": 0, +"slice_115/name": "", +"slice_115/save_to_file/enabled": false, +"slice_115/save_to_file/fallback_path": "", +"slice_115/save_to_file/keep_custom_tracks": false, +"slice_115/save_to_file/path": "", +"slice_115/start_frame": 0, +"slice_116/end_frame": 0, +"slice_116/loop_mode": 0, +"slice_116/name": "", +"slice_116/save_to_file/enabled": false, +"slice_116/save_to_file/fallback_path": "", +"slice_116/save_to_file/keep_custom_tracks": false, +"slice_116/save_to_file/path": "", +"slice_116/start_frame": 0, +"slice_117/end_frame": 0, +"slice_117/loop_mode": 0, +"slice_117/name": "", +"slice_117/save_to_file/enabled": false, +"slice_117/save_to_file/fallback_path": "", +"slice_117/save_to_file/keep_custom_tracks": false, +"slice_117/save_to_file/path": "", +"slice_117/start_frame": 0, +"slice_118/end_frame": 0, +"slice_118/loop_mode": 0, +"slice_118/name": "", +"slice_118/save_to_file/enabled": false, +"slice_118/save_to_file/fallback_path": "", +"slice_118/save_to_file/keep_custom_tracks": false, +"slice_118/save_to_file/path": "", +"slice_118/start_frame": 0, +"slice_119/end_frame": 0, +"slice_119/loop_mode": 0, +"slice_119/name": "", +"slice_119/save_to_file/enabled": false, +"slice_119/save_to_file/fallback_path": "", +"slice_119/save_to_file/keep_custom_tracks": false, +"slice_119/save_to_file/path": "", +"slice_119/start_frame": 0, +"slice_12/end_frame": 0, +"slice_12/loop_mode": 0, +"slice_12/name": "", +"slice_12/save_to_file/enabled": false, +"slice_12/save_to_file/fallback_path": "", +"slice_12/save_to_file/keep_custom_tracks": false, +"slice_12/save_to_file/path": "", +"slice_12/start_frame": 0, +"slice_120/end_frame": 0, +"slice_120/loop_mode": 0, +"slice_120/name": "", +"slice_120/save_to_file/enabled": false, +"slice_120/save_to_file/fallback_path": "", +"slice_120/save_to_file/keep_custom_tracks": false, +"slice_120/save_to_file/path": "", +"slice_120/start_frame": 0, +"slice_121/end_frame": 0, +"slice_121/loop_mode": 0, +"slice_121/name": "", +"slice_121/save_to_file/enabled": false, +"slice_121/save_to_file/fallback_path": "", +"slice_121/save_to_file/keep_custom_tracks": false, +"slice_121/save_to_file/path": "", +"slice_121/start_frame": 0, +"slice_122/end_frame": 0, +"slice_122/loop_mode": 0, +"slice_122/name": "", +"slice_122/save_to_file/enabled": false, +"slice_122/save_to_file/fallback_path": "", +"slice_122/save_to_file/keep_custom_tracks": false, +"slice_122/save_to_file/path": "", +"slice_122/start_frame": 0, +"slice_123/end_frame": 0, +"slice_123/loop_mode": 0, +"slice_123/name": "", +"slice_123/save_to_file/enabled": false, +"slice_123/save_to_file/fallback_path": "", +"slice_123/save_to_file/keep_custom_tracks": false, +"slice_123/save_to_file/path": "", +"slice_123/start_frame": 0, +"slice_124/end_frame": 0, +"slice_124/loop_mode": 0, +"slice_124/name": "", +"slice_124/save_to_file/enabled": false, +"slice_124/save_to_file/fallback_path": "", +"slice_124/save_to_file/keep_custom_tracks": false, +"slice_124/save_to_file/path": "", +"slice_124/start_frame": 0, +"slice_125/end_frame": 0, +"slice_125/loop_mode": 0, +"slice_125/name": "", +"slice_125/save_to_file/enabled": false, +"slice_125/save_to_file/fallback_path": "", +"slice_125/save_to_file/keep_custom_tracks": false, +"slice_125/save_to_file/path": "", +"slice_125/start_frame": 0, +"slice_126/end_frame": 0, +"slice_126/loop_mode": 0, +"slice_126/name": "", +"slice_126/save_to_file/enabled": false, +"slice_126/save_to_file/fallback_path": "", +"slice_126/save_to_file/keep_custom_tracks": false, +"slice_126/save_to_file/path": "", +"slice_126/start_frame": 0, +"slice_127/end_frame": 0, +"slice_127/loop_mode": 0, +"slice_127/name": "", +"slice_127/save_to_file/enabled": false, +"slice_127/save_to_file/fallback_path": "", +"slice_127/save_to_file/keep_custom_tracks": false, +"slice_127/save_to_file/path": "", +"slice_127/start_frame": 0, +"slice_128/end_frame": 0, +"slice_128/loop_mode": 0, +"slice_128/name": "", +"slice_128/save_to_file/enabled": false, +"slice_128/save_to_file/fallback_path": "", +"slice_128/save_to_file/keep_custom_tracks": false, +"slice_128/save_to_file/path": "", +"slice_128/start_frame": 0, +"slice_129/end_frame": 0, +"slice_129/loop_mode": 0, +"slice_129/name": "", +"slice_129/save_to_file/enabled": false, +"slice_129/save_to_file/fallback_path": "", +"slice_129/save_to_file/keep_custom_tracks": false, +"slice_129/save_to_file/path": "", +"slice_129/start_frame": 0, +"slice_13/end_frame": 0, +"slice_13/loop_mode": 0, +"slice_13/name": "", +"slice_13/save_to_file/enabled": false, +"slice_13/save_to_file/fallback_path": "", +"slice_13/save_to_file/keep_custom_tracks": false, +"slice_13/save_to_file/path": "", +"slice_13/start_frame": 0, +"slice_130/end_frame": 0, +"slice_130/loop_mode": 0, +"slice_130/name": "", +"slice_130/save_to_file/enabled": false, +"slice_130/save_to_file/fallback_path": "", +"slice_130/save_to_file/keep_custom_tracks": false, +"slice_130/save_to_file/path": "", +"slice_130/start_frame": 0, +"slice_131/end_frame": 0, +"slice_131/loop_mode": 0, +"slice_131/name": "", +"slice_131/save_to_file/enabled": false, +"slice_131/save_to_file/fallback_path": "", +"slice_131/save_to_file/keep_custom_tracks": false, +"slice_131/save_to_file/path": "", +"slice_131/start_frame": 0, +"slice_132/end_frame": 0, +"slice_132/loop_mode": 0, +"slice_132/name": "", +"slice_132/save_to_file/enabled": false, +"slice_132/save_to_file/fallback_path": "", +"slice_132/save_to_file/keep_custom_tracks": false, +"slice_132/save_to_file/path": "", +"slice_132/start_frame": 0, +"slice_133/end_frame": 0, +"slice_133/loop_mode": 0, +"slice_133/name": "", +"slice_133/save_to_file/enabled": false, +"slice_133/save_to_file/fallback_path": "", +"slice_133/save_to_file/keep_custom_tracks": false, +"slice_133/save_to_file/path": "", +"slice_133/start_frame": 0, +"slice_134/end_frame": 0, +"slice_134/loop_mode": 0, +"slice_134/name": "", +"slice_134/save_to_file/enabled": false, +"slice_134/save_to_file/fallback_path": "", +"slice_134/save_to_file/keep_custom_tracks": false, +"slice_134/save_to_file/path": "", +"slice_134/start_frame": 0, +"slice_135/end_frame": 0, +"slice_135/loop_mode": 0, +"slice_135/name": "", +"slice_135/save_to_file/enabled": false, +"slice_135/save_to_file/fallback_path": "", +"slice_135/save_to_file/keep_custom_tracks": false, +"slice_135/save_to_file/path": "", +"slice_135/start_frame": 0, +"slice_136/end_frame": 0, +"slice_136/loop_mode": 0, +"slice_136/name": "", +"slice_136/save_to_file/enabled": false, +"slice_136/save_to_file/fallback_path": "", +"slice_136/save_to_file/keep_custom_tracks": false, +"slice_136/save_to_file/path": "", +"slice_136/start_frame": 0, +"slice_137/end_frame": 0, +"slice_137/loop_mode": 0, +"slice_137/name": "", +"slice_137/save_to_file/enabled": false, +"slice_137/save_to_file/fallback_path": "", +"slice_137/save_to_file/keep_custom_tracks": false, +"slice_137/save_to_file/path": "", +"slice_137/start_frame": 0, +"slice_138/end_frame": 0, +"slice_138/loop_mode": 0, +"slice_138/name": "", +"slice_138/save_to_file/enabled": false, +"slice_138/save_to_file/fallback_path": "", +"slice_138/save_to_file/keep_custom_tracks": false, +"slice_138/save_to_file/path": "", +"slice_138/start_frame": 0, +"slice_139/end_frame": 0, +"slice_139/loop_mode": 0, +"slice_139/name": "", +"slice_139/save_to_file/enabled": false, +"slice_139/save_to_file/fallback_path": "", +"slice_139/save_to_file/keep_custom_tracks": false, +"slice_139/save_to_file/path": "", +"slice_139/start_frame": 0, +"slice_14/end_frame": 0, +"slice_14/loop_mode": 0, +"slice_14/name": "", +"slice_14/save_to_file/enabled": false, +"slice_14/save_to_file/fallback_path": "", +"slice_14/save_to_file/keep_custom_tracks": false, +"slice_14/save_to_file/path": "", +"slice_14/start_frame": 0, +"slice_140/end_frame": 0, +"slice_140/loop_mode": 0, +"slice_140/name": "", +"slice_140/save_to_file/enabled": false, +"slice_140/save_to_file/fallback_path": "", +"slice_140/save_to_file/keep_custom_tracks": false, +"slice_140/save_to_file/path": "", +"slice_140/start_frame": 0, +"slice_141/end_frame": 0, +"slice_141/loop_mode": 0, +"slice_141/name": "", +"slice_141/save_to_file/enabled": false, +"slice_141/save_to_file/fallback_path": "", +"slice_141/save_to_file/keep_custom_tracks": false, +"slice_141/save_to_file/path": "", +"slice_141/start_frame": 0, +"slice_142/end_frame": 0, +"slice_142/loop_mode": 0, +"slice_142/name": "", +"slice_142/save_to_file/enabled": false, +"slice_142/save_to_file/fallback_path": "", +"slice_142/save_to_file/keep_custom_tracks": false, +"slice_142/save_to_file/path": "", +"slice_142/start_frame": 0, +"slice_143/end_frame": 0, +"slice_143/loop_mode": 0, +"slice_143/name": "", +"slice_143/save_to_file/enabled": false, +"slice_143/save_to_file/fallback_path": "", +"slice_143/save_to_file/keep_custom_tracks": false, +"slice_143/save_to_file/path": "", +"slice_143/start_frame": 0, +"slice_144/end_frame": 0, +"slice_144/loop_mode": 0, +"slice_144/name": "", +"slice_144/save_to_file/enabled": false, +"slice_144/save_to_file/fallback_path": "", +"slice_144/save_to_file/keep_custom_tracks": false, +"slice_144/save_to_file/path": "", +"slice_144/start_frame": 0, +"slice_145/end_frame": 0, +"slice_145/loop_mode": 0, +"slice_145/name": "", +"slice_145/save_to_file/enabled": false, +"slice_145/save_to_file/fallback_path": "", +"slice_145/save_to_file/keep_custom_tracks": false, +"slice_145/save_to_file/path": "", +"slice_145/start_frame": 0, +"slice_146/end_frame": 0, +"slice_146/loop_mode": 0, +"slice_146/name": "", +"slice_146/save_to_file/enabled": false, +"slice_146/save_to_file/fallback_path": "", +"slice_146/save_to_file/keep_custom_tracks": false, +"slice_146/save_to_file/path": "", +"slice_146/start_frame": 0, +"slice_147/end_frame": 0, +"slice_147/loop_mode": 0, +"slice_147/name": "", +"slice_147/save_to_file/enabled": false, +"slice_147/save_to_file/fallback_path": "", +"slice_147/save_to_file/keep_custom_tracks": false, +"slice_147/save_to_file/path": "", +"slice_147/start_frame": 0, +"slice_148/end_frame": 0, +"slice_148/loop_mode": 0, +"slice_148/name": "", +"slice_148/save_to_file/enabled": false, +"slice_148/save_to_file/fallback_path": "", +"slice_148/save_to_file/keep_custom_tracks": false, +"slice_148/save_to_file/path": "", +"slice_148/start_frame": 0, +"slice_149/end_frame": 0, +"slice_149/loop_mode": 0, +"slice_149/name": "", +"slice_149/save_to_file/enabled": false, +"slice_149/save_to_file/fallback_path": "", +"slice_149/save_to_file/keep_custom_tracks": false, +"slice_149/save_to_file/path": "", +"slice_149/start_frame": 0, +"slice_15/end_frame": 0, +"slice_15/loop_mode": 0, +"slice_15/name": "", +"slice_15/save_to_file/enabled": false, +"slice_15/save_to_file/fallback_path": "", +"slice_15/save_to_file/keep_custom_tracks": false, +"slice_15/save_to_file/path": "", +"slice_15/start_frame": 0, +"slice_150/end_frame": 0, +"slice_150/loop_mode": 0, +"slice_150/name": "", +"slice_150/save_to_file/enabled": false, +"slice_150/save_to_file/fallback_path": "", +"slice_150/save_to_file/keep_custom_tracks": false, +"slice_150/save_to_file/path": "", +"slice_150/start_frame": 0, +"slice_151/end_frame": 0, +"slice_151/loop_mode": 0, +"slice_151/name": "", +"slice_151/save_to_file/enabled": false, +"slice_151/save_to_file/fallback_path": "", +"slice_151/save_to_file/keep_custom_tracks": false, +"slice_151/save_to_file/path": "", +"slice_151/start_frame": 0, +"slice_152/end_frame": 0, +"slice_152/loop_mode": 0, +"slice_152/name": "", +"slice_152/save_to_file/enabled": false, +"slice_152/save_to_file/fallback_path": "", +"slice_152/save_to_file/keep_custom_tracks": false, +"slice_152/save_to_file/path": "", +"slice_152/start_frame": 0, +"slice_153/end_frame": 0, +"slice_153/loop_mode": 0, +"slice_153/name": "", +"slice_153/save_to_file/enabled": false, +"slice_153/save_to_file/fallback_path": "", +"slice_153/save_to_file/keep_custom_tracks": false, +"slice_153/save_to_file/path": "", +"slice_153/start_frame": 0, +"slice_154/end_frame": 0, +"slice_154/loop_mode": 0, +"slice_154/name": "", +"slice_154/save_to_file/enabled": false, +"slice_154/save_to_file/fallback_path": "", +"slice_154/save_to_file/keep_custom_tracks": false, +"slice_154/save_to_file/path": "", +"slice_154/start_frame": 0, +"slice_155/end_frame": 0, +"slice_155/loop_mode": 0, +"slice_155/name": "", +"slice_155/save_to_file/enabled": false, +"slice_155/save_to_file/fallback_path": "", +"slice_155/save_to_file/keep_custom_tracks": false, +"slice_155/save_to_file/path": "", +"slice_155/start_frame": 0, +"slice_156/end_frame": 0, +"slice_156/loop_mode": 0, +"slice_156/name": "", +"slice_156/save_to_file/enabled": false, +"slice_156/save_to_file/fallback_path": "", +"slice_156/save_to_file/keep_custom_tracks": false, +"slice_156/save_to_file/path": "", +"slice_156/start_frame": 0, +"slice_157/end_frame": 0, +"slice_157/loop_mode": 0, +"slice_157/name": "", +"slice_157/save_to_file/enabled": false, +"slice_157/save_to_file/fallback_path": "", +"slice_157/save_to_file/keep_custom_tracks": false, +"slice_157/save_to_file/path": "", +"slice_157/start_frame": 0, +"slice_158/end_frame": 0, +"slice_158/loop_mode": 0, +"slice_158/name": "", +"slice_158/save_to_file/enabled": false, +"slice_158/save_to_file/fallback_path": "", +"slice_158/save_to_file/keep_custom_tracks": false, +"slice_158/save_to_file/path": "", +"slice_158/start_frame": 0, +"slice_159/end_frame": 0, +"slice_159/loop_mode": 0, +"slice_159/name": "", +"slice_159/save_to_file/enabled": false, +"slice_159/save_to_file/fallback_path": "", +"slice_159/save_to_file/keep_custom_tracks": false, +"slice_159/save_to_file/path": "", +"slice_159/start_frame": 0, +"slice_16/end_frame": 0, +"slice_16/loop_mode": 0, +"slice_16/name": "", +"slice_16/save_to_file/enabled": false, +"slice_16/save_to_file/fallback_path": "", +"slice_16/save_to_file/keep_custom_tracks": false, +"slice_16/save_to_file/path": "", +"slice_16/start_frame": 0, +"slice_160/end_frame": 0, +"slice_160/loop_mode": 0, +"slice_160/name": "", +"slice_160/save_to_file/enabled": false, +"slice_160/save_to_file/fallback_path": "", +"slice_160/save_to_file/keep_custom_tracks": false, +"slice_160/save_to_file/path": "", +"slice_160/start_frame": 0, +"slice_161/end_frame": 0, +"slice_161/loop_mode": 0, +"slice_161/name": "", +"slice_161/save_to_file/enabled": false, +"slice_161/save_to_file/fallback_path": "", +"slice_161/save_to_file/keep_custom_tracks": false, +"slice_161/save_to_file/path": "", +"slice_161/start_frame": 0, +"slice_162/end_frame": 0, +"slice_162/loop_mode": 0, +"slice_162/name": "", +"slice_162/save_to_file/enabled": false, +"slice_162/save_to_file/fallback_path": "", +"slice_162/save_to_file/keep_custom_tracks": false, +"slice_162/save_to_file/path": "", +"slice_162/start_frame": 0, +"slice_163/end_frame": 0, +"slice_163/loop_mode": 0, +"slice_163/name": "", +"slice_163/save_to_file/enabled": false, +"slice_163/save_to_file/fallback_path": "", +"slice_163/save_to_file/keep_custom_tracks": false, +"slice_163/save_to_file/path": "", +"slice_163/start_frame": 0, +"slice_164/end_frame": 0, +"slice_164/loop_mode": 0, +"slice_164/name": "", +"slice_164/save_to_file/enabled": false, +"slice_164/save_to_file/fallback_path": "", +"slice_164/save_to_file/keep_custom_tracks": false, +"slice_164/save_to_file/path": "", +"slice_164/start_frame": 0, +"slice_165/end_frame": 0, +"slice_165/loop_mode": 0, +"slice_165/name": "", +"slice_165/save_to_file/enabled": false, +"slice_165/save_to_file/fallback_path": "", +"slice_165/save_to_file/keep_custom_tracks": false, +"slice_165/save_to_file/path": "", +"slice_165/start_frame": 0, +"slice_166/end_frame": 0, +"slice_166/loop_mode": 0, +"slice_166/name": "", +"slice_166/save_to_file/enabled": false, +"slice_166/save_to_file/fallback_path": "", +"slice_166/save_to_file/keep_custom_tracks": false, +"slice_166/save_to_file/path": "", +"slice_166/start_frame": 0, +"slice_167/end_frame": 0, +"slice_167/loop_mode": 0, +"slice_167/name": "", +"slice_167/save_to_file/enabled": false, +"slice_167/save_to_file/fallback_path": "", +"slice_167/save_to_file/keep_custom_tracks": false, +"slice_167/save_to_file/path": "", +"slice_167/start_frame": 0, +"slice_168/end_frame": 0, +"slice_168/loop_mode": 0, +"slice_168/name": "", +"slice_168/save_to_file/enabled": false, +"slice_168/save_to_file/fallback_path": "", +"slice_168/save_to_file/keep_custom_tracks": false, +"slice_168/save_to_file/path": "", +"slice_168/start_frame": 0, +"slice_169/end_frame": 0, +"slice_169/loop_mode": 0, +"slice_169/name": "", +"slice_169/save_to_file/enabled": false, +"slice_169/save_to_file/fallback_path": "", +"slice_169/save_to_file/keep_custom_tracks": false, +"slice_169/save_to_file/path": "", +"slice_169/start_frame": 0, +"slice_17/end_frame": 0, +"slice_17/loop_mode": 0, +"slice_17/name": "", +"slice_17/save_to_file/enabled": false, +"slice_17/save_to_file/fallback_path": "", +"slice_17/save_to_file/keep_custom_tracks": false, +"slice_17/save_to_file/path": "", +"slice_17/start_frame": 0, +"slice_170/end_frame": 0, +"slice_170/loop_mode": 0, +"slice_170/name": "", +"slice_170/save_to_file/enabled": false, +"slice_170/save_to_file/fallback_path": "", +"slice_170/save_to_file/keep_custom_tracks": false, +"slice_170/save_to_file/path": "", +"slice_170/start_frame": 0, +"slice_171/end_frame": 0, +"slice_171/loop_mode": 0, +"slice_171/name": "", +"slice_171/save_to_file/enabled": false, +"slice_171/save_to_file/fallback_path": "", +"slice_171/save_to_file/keep_custom_tracks": false, +"slice_171/save_to_file/path": "", +"slice_171/start_frame": 0, +"slice_172/end_frame": 0, +"slice_172/loop_mode": 0, +"slice_172/name": "", +"slice_172/save_to_file/enabled": false, +"slice_172/save_to_file/fallback_path": "", +"slice_172/save_to_file/keep_custom_tracks": false, +"slice_172/save_to_file/path": "", +"slice_172/start_frame": 0, +"slice_173/end_frame": 0, +"slice_173/loop_mode": 0, +"slice_173/name": "", +"slice_173/save_to_file/enabled": false, +"slice_173/save_to_file/fallback_path": "", +"slice_173/save_to_file/keep_custom_tracks": false, +"slice_173/save_to_file/path": "", +"slice_173/start_frame": 0, +"slice_174/end_frame": 0, +"slice_174/loop_mode": 0, +"slice_174/name": "", +"slice_174/save_to_file/enabled": false, +"slice_174/save_to_file/fallback_path": "", +"slice_174/save_to_file/keep_custom_tracks": false, +"slice_174/save_to_file/path": "", +"slice_174/start_frame": 0, +"slice_175/end_frame": 0, +"slice_175/loop_mode": 0, +"slice_175/name": "", +"slice_175/save_to_file/enabled": false, +"slice_175/save_to_file/fallback_path": "", +"slice_175/save_to_file/keep_custom_tracks": false, +"slice_175/save_to_file/path": "", +"slice_175/start_frame": 0, +"slice_176/end_frame": 0, +"slice_176/loop_mode": 0, +"slice_176/name": "", +"slice_176/save_to_file/enabled": false, +"slice_176/save_to_file/fallback_path": "", +"slice_176/save_to_file/keep_custom_tracks": false, +"slice_176/save_to_file/path": "", +"slice_176/start_frame": 0, +"slice_177/end_frame": 0, +"slice_177/loop_mode": 0, +"slice_177/name": "", +"slice_177/save_to_file/enabled": false, +"slice_177/save_to_file/fallback_path": "", +"slice_177/save_to_file/keep_custom_tracks": false, +"slice_177/save_to_file/path": "", +"slice_177/start_frame": 0, +"slice_178/end_frame": 0, +"slice_178/loop_mode": 0, +"slice_178/name": "", +"slice_178/save_to_file/enabled": false, +"slice_178/save_to_file/fallback_path": "", +"slice_178/save_to_file/keep_custom_tracks": false, +"slice_178/save_to_file/path": "", +"slice_178/start_frame": 0, +"slice_179/end_frame": 0, +"slice_179/loop_mode": 0, +"slice_179/name": "", +"slice_179/save_to_file/enabled": false, +"slice_179/save_to_file/fallback_path": "", +"slice_179/save_to_file/keep_custom_tracks": false, +"slice_179/save_to_file/path": "", +"slice_179/start_frame": 0, +"slice_18/end_frame": 0, +"slice_18/loop_mode": 0, +"slice_18/name": "", +"slice_18/save_to_file/enabled": false, +"slice_18/save_to_file/fallback_path": "", +"slice_18/save_to_file/keep_custom_tracks": false, +"slice_18/save_to_file/path": "", +"slice_18/start_frame": 0, +"slice_180/end_frame": 0, +"slice_180/loop_mode": 0, +"slice_180/name": "", +"slice_180/save_to_file/enabled": false, +"slice_180/save_to_file/fallback_path": "", +"slice_180/save_to_file/keep_custom_tracks": false, +"slice_180/save_to_file/path": "", +"slice_180/start_frame": 0, +"slice_181/end_frame": 0, +"slice_181/loop_mode": 0, +"slice_181/name": "", +"slice_181/save_to_file/enabled": false, +"slice_181/save_to_file/fallback_path": "", +"slice_181/save_to_file/keep_custom_tracks": false, +"slice_181/save_to_file/path": "", +"slice_181/start_frame": 0, +"slice_182/end_frame": 0, +"slice_182/loop_mode": 0, +"slice_182/name": "", +"slice_182/save_to_file/enabled": false, +"slice_182/save_to_file/fallback_path": "", +"slice_182/save_to_file/keep_custom_tracks": false, +"slice_182/save_to_file/path": "", +"slice_182/start_frame": 0, +"slice_183/end_frame": 0, +"slice_183/loop_mode": 0, +"slice_183/name": "", +"slice_183/save_to_file/enabled": false, +"slice_183/save_to_file/fallback_path": "", +"slice_183/save_to_file/keep_custom_tracks": false, +"slice_183/save_to_file/path": "", +"slice_183/start_frame": 0, +"slice_184/end_frame": 0, +"slice_184/loop_mode": 0, +"slice_184/name": "", +"slice_184/save_to_file/enabled": false, +"slice_184/save_to_file/fallback_path": "", +"slice_184/save_to_file/keep_custom_tracks": false, +"slice_184/save_to_file/path": "", +"slice_184/start_frame": 0, +"slice_185/end_frame": 0, +"slice_185/loop_mode": 0, +"slice_185/name": "", +"slice_185/save_to_file/enabled": false, +"slice_185/save_to_file/fallback_path": "", +"slice_185/save_to_file/keep_custom_tracks": false, +"slice_185/save_to_file/path": "", +"slice_185/start_frame": 0, +"slice_186/end_frame": 0, +"slice_186/loop_mode": 0, +"slice_186/name": "", +"slice_186/save_to_file/enabled": false, +"slice_186/save_to_file/fallback_path": "", +"slice_186/save_to_file/keep_custom_tracks": false, +"slice_186/save_to_file/path": "", +"slice_186/start_frame": 0, +"slice_187/end_frame": 0, +"slice_187/loop_mode": 0, +"slice_187/name": "", +"slice_187/save_to_file/enabled": false, +"slice_187/save_to_file/fallback_path": "", +"slice_187/save_to_file/keep_custom_tracks": false, +"slice_187/save_to_file/path": "", +"slice_187/start_frame": 0, +"slice_188/end_frame": 0, +"slice_188/loop_mode": 0, +"slice_188/name": "", +"slice_188/save_to_file/enabled": false, +"slice_188/save_to_file/fallback_path": "", +"slice_188/save_to_file/keep_custom_tracks": false, +"slice_188/save_to_file/path": "", +"slice_188/start_frame": 0, +"slice_189/end_frame": 0, +"slice_189/loop_mode": 0, +"slice_189/name": "", +"slice_189/save_to_file/enabled": false, +"slice_189/save_to_file/fallback_path": "", +"slice_189/save_to_file/keep_custom_tracks": false, +"slice_189/save_to_file/path": "", +"slice_189/start_frame": 0, +"slice_19/end_frame": 0, +"slice_19/loop_mode": 0, +"slice_19/name": "", +"slice_19/save_to_file/enabled": false, +"slice_19/save_to_file/fallback_path": "", +"slice_19/save_to_file/keep_custom_tracks": false, +"slice_19/save_to_file/path": "", +"slice_19/start_frame": 0, +"slice_190/end_frame": 0, +"slice_190/loop_mode": 0, +"slice_190/name": "", +"slice_190/save_to_file/enabled": false, +"slice_190/save_to_file/fallback_path": "", +"slice_190/save_to_file/keep_custom_tracks": false, +"slice_190/save_to_file/path": "", +"slice_190/start_frame": 0, +"slice_191/end_frame": 0, +"slice_191/loop_mode": 0, +"slice_191/name": "", +"slice_191/save_to_file/enabled": false, +"slice_191/save_to_file/fallback_path": "", +"slice_191/save_to_file/keep_custom_tracks": false, +"slice_191/save_to_file/path": "", +"slice_191/start_frame": 0, +"slice_192/end_frame": 0, +"slice_192/loop_mode": 0, +"slice_192/name": "", +"slice_192/save_to_file/enabled": false, +"slice_192/save_to_file/fallback_path": "", +"slice_192/save_to_file/keep_custom_tracks": false, +"slice_192/save_to_file/path": "", +"slice_192/start_frame": 0, +"slice_193/end_frame": 0, +"slice_193/loop_mode": 0, +"slice_193/name": "", +"slice_193/save_to_file/enabled": false, +"slice_193/save_to_file/fallback_path": "", +"slice_193/save_to_file/keep_custom_tracks": false, +"slice_193/save_to_file/path": "", +"slice_193/start_frame": 0, +"slice_194/end_frame": 0, +"slice_194/loop_mode": 0, +"slice_194/name": "", +"slice_194/save_to_file/enabled": false, +"slice_194/save_to_file/fallback_path": "", +"slice_194/save_to_file/keep_custom_tracks": false, +"slice_194/save_to_file/path": "", +"slice_194/start_frame": 0, +"slice_195/end_frame": 0, +"slice_195/loop_mode": 0, +"slice_195/name": "", +"slice_195/save_to_file/enabled": false, +"slice_195/save_to_file/fallback_path": "", +"slice_195/save_to_file/keep_custom_tracks": false, +"slice_195/save_to_file/path": "", +"slice_195/start_frame": 0, +"slice_196/end_frame": 0, +"slice_196/loop_mode": 0, +"slice_196/name": "", +"slice_196/save_to_file/enabled": false, +"slice_196/save_to_file/fallback_path": "", +"slice_196/save_to_file/keep_custom_tracks": false, +"slice_196/save_to_file/path": "", +"slice_196/start_frame": 0, +"slice_197/end_frame": 0, +"slice_197/loop_mode": 0, +"slice_197/name": "", +"slice_197/save_to_file/enabled": false, +"slice_197/save_to_file/fallback_path": "", +"slice_197/save_to_file/keep_custom_tracks": false, +"slice_197/save_to_file/path": "", +"slice_197/start_frame": 0, +"slice_198/end_frame": 0, +"slice_198/loop_mode": 0, +"slice_198/name": "", +"slice_198/save_to_file/enabled": false, +"slice_198/save_to_file/fallback_path": "", +"slice_198/save_to_file/keep_custom_tracks": false, +"slice_198/save_to_file/path": "", +"slice_198/start_frame": 0, +"slice_199/end_frame": 0, +"slice_199/loop_mode": 0, +"slice_199/name": "", +"slice_199/save_to_file/enabled": false, +"slice_199/save_to_file/fallback_path": "", +"slice_199/save_to_file/keep_custom_tracks": false, +"slice_199/save_to_file/path": "", +"slice_199/start_frame": 0, +"slice_2/end_frame": 0, +"slice_2/loop_mode": 0, +"slice_2/name": "", +"slice_2/save_to_file/enabled": false, +"slice_2/save_to_file/fallback_path": "", +"slice_2/save_to_file/keep_custom_tracks": false, +"slice_2/save_to_file/path": "", +"slice_2/start_frame": 0, +"slice_20/end_frame": 0, +"slice_20/loop_mode": 0, +"slice_20/name": "", +"slice_20/save_to_file/enabled": false, +"slice_20/save_to_file/fallback_path": "", +"slice_20/save_to_file/keep_custom_tracks": false, +"slice_20/save_to_file/path": "", +"slice_20/start_frame": 0, +"slice_200/end_frame": 0, +"slice_200/loop_mode": 0, +"slice_200/name": "", +"slice_200/save_to_file/enabled": false, +"slice_200/save_to_file/fallback_path": "", +"slice_200/save_to_file/keep_custom_tracks": false, +"slice_200/save_to_file/path": "", +"slice_200/start_frame": 0, +"slice_201/end_frame": 0, +"slice_201/loop_mode": 0, +"slice_201/name": "", +"slice_201/save_to_file/enabled": false, +"slice_201/save_to_file/fallback_path": "", +"slice_201/save_to_file/keep_custom_tracks": false, +"slice_201/save_to_file/path": "", +"slice_201/start_frame": 0, +"slice_202/end_frame": 0, +"slice_202/loop_mode": 0, +"slice_202/name": "", +"slice_202/save_to_file/enabled": false, +"slice_202/save_to_file/fallback_path": "", +"slice_202/save_to_file/keep_custom_tracks": false, +"slice_202/save_to_file/path": "", +"slice_202/start_frame": 0, +"slice_203/end_frame": 0, +"slice_203/loop_mode": 0, +"slice_203/name": "", +"slice_203/save_to_file/enabled": false, +"slice_203/save_to_file/fallback_path": "", +"slice_203/save_to_file/keep_custom_tracks": false, +"slice_203/save_to_file/path": "", +"slice_203/start_frame": 0, +"slice_204/end_frame": 0, +"slice_204/loop_mode": 0, +"slice_204/name": "", +"slice_204/save_to_file/enabled": false, +"slice_204/save_to_file/fallback_path": "", +"slice_204/save_to_file/keep_custom_tracks": false, +"slice_204/save_to_file/path": "", +"slice_204/start_frame": 0, +"slice_205/end_frame": 0, +"slice_205/loop_mode": 0, +"slice_205/name": "", +"slice_205/save_to_file/enabled": false, +"slice_205/save_to_file/fallback_path": "", +"slice_205/save_to_file/keep_custom_tracks": false, +"slice_205/save_to_file/path": "", +"slice_205/start_frame": 0, +"slice_206/end_frame": 0, +"slice_206/loop_mode": 0, +"slice_206/name": "", +"slice_206/save_to_file/enabled": false, +"slice_206/save_to_file/fallback_path": "", +"slice_206/save_to_file/keep_custom_tracks": false, +"slice_206/save_to_file/path": "", +"slice_206/start_frame": 0, +"slice_207/end_frame": 0, +"slice_207/loop_mode": 0, +"slice_207/name": "", +"slice_207/save_to_file/enabled": false, +"slice_207/save_to_file/fallback_path": "", +"slice_207/save_to_file/keep_custom_tracks": false, +"slice_207/save_to_file/path": "", +"slice_207/start_frame": 0, +"slice_208/end_frame": 0, +"slice_208/loop_mode": 0, +"slice_208/name": "", +"slice_208/save_to_file/enabled": false, +"slice_208/save_to_file/fallback_path": "", +"slice_208/save_to_file/keep_custom_tracks": false, +"slice_208/save_to_file/path": "", +"slice_208/start_frame": 0, +"slice_209/end_frame": 0, +"slice_209/loop_mode": 0, +"slice_209/name": "", +"slice_209/save_to_file/enabled": false, +"slice_209/save_to_file/fallback_path": "", +"slice_209/save_to_file/keep_custom_tracks": false, +"slice_209/save_to_file/path": "", +"slice_209/start_frame": 0, +"slice_21/end_frame": 0, +"slice_21/loop_mode": 0, +"slice_21/name": "", +"slice_21/save_to_file/enabled": false, +"slice_21/save_to_file/fallback_path": "", +"slice_21/save_to_file/keep_custom_tracks": false, +"slice_21/save_to_file/path": "", +"slice_21/start_frame": 0, +"slice_210/end_frame": 0, +"slice_210/loop_mode": 0, +"slice_210/name": "", +"slice_210/save_to_file/enabled": false, +"slice_210/save_to_file/fallback_path": "", +"slice_210/save_to_file/keep_custom_tracks": false, +"slice_210/save_to_file/path": "", +"slice_210/start_frame": 0, +"slice_211/end_frame": 0, +"slice_211/loop_mode": 0, +"slice_211/name": "", +"slice_211/save_to_file/enabled": false, +"slice_211/save_to_file/fallback_path": "", +"slice_211/save_to_file/keep_custom_tracks": false, +"slice_211/save_to_file/path": "", +"slice_211/start_frame": 0, +"slice_212/end_frame": 0, +"slice_212/loop_mode": 0, +"slice_212/name": "", +"slice_212/save_to_file/enabled": false, +"slice_212/save_to_file/fallback_path": "", +"slice_212/save_to_file/keep_custom_tracks": false, +"slice_212/save_to_file/path": "", +"slice_212/start_frame": 0, +"slice_213/end_frame": 0, +"slice_213/loop_mode": 0, +"slice_213/name": "", +"slice_213/save_to_file/enabled": false, +"slice_213/save_to_file/fallback_path": "", +"slice_213/save_to_file/keep_custom_tracks": false, +"slice_213/save_to_file/path": "", +"slice_213/start_frame": 0, +"slice_214/end_frame": 0, +"slice_214/loop_mode": 0, +"slice_214/name": "", +"slice_214/save_to_file/enabled": false, +"slice_214/save_to_file/fallback_path": "", +"slice_214/save_to_file/keep_custom_tracks": false, +"slice_214/save_to_file/path": "", +"slice_214/start_frame": 0, +"slice_215/end_frame": 0, +"slice_215/loop_mode": 0, +"slice_215/name": "", +"slice_215/save_to_file/enabled": false, +"slice_215/save_to_file/fallback_path": "", +"slice_215/save_to_file/keep_custom_tracks": false, +"slice_215/save_to_file/path": "", +"slice_215/start_frame": 0, +"slice_216/end_frame": 0, +"slice_216/loop_mode": 0, +"slice_216/name": "", +"slice_216/save_to_file/enabled": false, +"slice_216/save_to_file/fallback_path": "", +"slice_216/save_to_file/keep_custom_tracks": false, +"slice_216/save_to_file/path": "", +"slice_216/start_frame": 0, +"slice_217/end_frame": 0, +"slice_217/loop_mode": 0, +"slice_217/name": "", +"slice_217/save_to_file/enabled": false, +"slice_217/save_to_file/fallback_path": "", +"slice_217/save_to_file/keep_custom_tracks": false, +"slice_217/save_to_file/path": "", +"slice_217/start_frame": 0, +"slice_218/end_frame": 0, +"slice_218/loop_mode": 0, +"slice_218/name": "", +"slice_218/save_to_file/enabled": false, +"slice_218/save_to_file/fallback_path": "", +"slice_218/save_to_file/keep_custom_tracks": false, +"slice_218/save_to_file/path": "", +"slice_218/start_frame": 0, +"slice_219/end_frame": 0, +"slice_219/loop_mode": 0, +"slice_219/name": "", +"slice_219/save_to_file/enabled": false, +"slice_219/save_to_file/fallback_path": "", +"slice_219/save_to_file/keep_custom_tracks": false, +"slice_219/save_to_file/path": "", +"slice_219/start_frame": 0, +"slice_22/end_frame": 0, +"slice_22/loop_mode": 0, +"slice_22/name": "", +"slice_22/save_to_file/enabled": false, +"slice_22/save_to_file/fallback_path": "", +"slice_22/save_to_file/keep_custom_tracks": false, +"slice_22/save_to_file/path": "", +"slice_22/start_frame": 0, +"slice_220/end_frame": 0, +"slice_220/loop_mode": 0, +"slice_220/name": "", +"slice_220/save_to_file/enabled": false, +"slice_220/save_to_file/fallback_path": "", +"slice_220/save_to_file/keep_custom_tracks": false, +"slice_220/save_to_file/path": "", +"slice_220/start_frame": 0, +"slice_221/end_frame": 0, +"slice_221/loop_mode": 0, +"slice_221/name": "", +"slice_221/save_to_file/enabled": false, +"slice_221/save_to_file/fallback_path": "", +"slice_221/save_to_file/keep_custom_tracks": false, +"slice_221/save_to_file/path": "", +"slice_221/start_frame": 0, +"slice_222/end_frame": 0, +"slice_222/loop_mode": 0, +"slice_222/name": "", +"slice_222/save_to_file/enabled": false, +"slice_222/save_to_file/fallback_path": "", +"slice_222/save_to_file/keep_custom_tracks": false, +"slice_222/save_to_file/path": "", +"slice_222/start_frame": 0, +"slice_223/end_frame": 0, +"slice_223/loop_mode": 0, +"slice_223/name": "", +"slice_223/save_to_file/enabled": false, +"slice_223/save_to_file/fallback_path": "", +"slice_223/save_to_file/keep_custom_tracks": false, +"slice_223/save_to_file/path": "", +"slice_223/start_frame": 0, +"slice_224/end_frame": 0, +"slice_224/loop_mode": 0, +"slice_224/name": "", +"slice_224/save_to_file/enabled": false, +"slice_224/save_to_file/fallback_path": "", +"slice_224/save_to_file/keep_custom_tracks": false, +"slice_224/save_to_file/path": "", +"slice_224/start_frame": 0, +"slice_225/end_frame": 0, +"slice_225/loop_mode": 0, +"slice_225/name": "", +"slice_225/save_to_file/enabled": false, +"slice_225/save_to_file/fallback_path": "", +"slice_225/save_to_file/keep_custom_tracks": false, +"slice_225/save_to_file/path": "", +"slice_225/start_frame": 0, +"slice_226/end_frame": 0, +"slice_226/loop_mode": 0, +"slice_226/name": "", +"slice_226/save_to_file/enabled": false, +"slice_226/save_to_file/fallback_path": "", +"slice_226/save_to_file/keep_custom_tracks": false, +"slice_226/save_to_file/path": "", +"slice_226/start_frame": 0, +"slice_227/end_frame": 0, +"slice_227/loop_mode": 0, +"slice_227/name": "", +"slice_227/save_to_file/enabled": false, +"slice_227/save_to_file/fallback_path": "", +"slice_227/save_to_file/keep_custom_tracks": false, +"slice_227/save_to_file/path": "", +"slice_227/start_frame": 0, +"slice_228/end_frame": 0, +"slice_228/loop_mode": 0, +"slice_228/name": "", +"slice_228/save_to_file/enabled": false, +"slice_228/save_to_file/fallback_path": "", +"slice_228/save_to_file/keep_custom_tracks": false, +"slice_228/save_to_file/path": "", +"slice_228/start_frame": 0, +"slice_229/end_frame": 0, +"slice_229/loop_mode": 0, +"slice_229/name": "", +"slice_229/save_to_file/enabled": false, +"slice_229/save_to_file/fallback_path": "", +"slice_229/save_to_file/keep_custom_tracks": false, +"slice_229/save_to_file/path": "", +"slice_229/start_frame": 0, +"slice_23/end_frame": 0, +"slice_23/loop_mode": 0, +"slice_23/name": "", +"slice_23/save_to_file/enabled": false, +"slice_23/save_to_file/fallback_path": "", +"slice_23/save_to_file/keep_custom_tracks": false, +"slice_23/save_to_file/path": "", +"slice_23/start_frame": 0, +"slice_230/end_frame": 0, +"slice_230/loop_mode": 0, +"slice_230/name": "", +"slice_230/save_to_file/enabled": false, +"slice_230/save_to_file/fallback_path": "", +"slice_230/save_to_file/keep_custom_tracks": false, +"slice_230/save_to_file/path": "", +"slice_230/start_frame": 0, +"slice_231/end_frame": 0, +"slice_231/loop_mode": 0, +"slice_231/name": "", +"slice_231/save_to_file/enabled": false, +"slice_231/save_to_file/fallback_path": "", +"slice_231/save_to_file/keep_custom_tracks": false, +"slice_231/save_to_file/path": "", +"slice_231/start_frame": 0, +"slice_232/end_frame": 0, +"slice_232/loop_mode": 0, +"slice_232/name": "", +"slice_232/save_to_file/enabled": false, +"slice_232/save_to_file/fallback_path": "", +"slice_232/save_to_file/keep_custom_tracks": false, +"slice_232/save_to_file/path": "", +"slice_232/start_frame": 0, +"slice_233/end_frame": 0, +"slice_233/loop_mode": 0, +"slice_233/name": "", +"slice_233/save_to_file/enabled": false, +"slice_233/save_to_file/fallback_path": "", +"slice_233/save_to_file/keep_custom_tracks": false, +"slice_233/save_to_file/path": "", +"slice_233/start_frame": 0, +"slice_234/end_frame": 0, +"slice_234/loop_mode": 0, +"slice_234/name": "", +"slice_234/save_to_file/enabled": false, +"slice_234/save_to_file/fallback_path": "", +"slice_234/save_to_file/keep_custom_tracks": false, +"slice_234/save_to_file/path": "", +"slice_234/start_frame": 0, +"slice_235/end_frame": 0, +"slice_235/loop_mode": 0, +"slice_235/name": "", +"slice_235/save_to_file/enabled": false, +"slice_235/save_to_file/fallback_path": "", +"slice_235/save_to_file/keep_custom_tracks": false, +"slice_235/save_to_file/path": "", +"slice_235/start_frame": 0, +"slice_236/end_frame": 0, +"slice_236/loop_mode": 0, +"slice_236/name": "", +"slice_236/save_to_file/enabled": false, +"slice_236/save_to_file/fallback_path": "", +"slice_236/save_to_file/keep_custom_tracks": false, +"slice_236/save_to_file/path": "", +"slice_236/start_frame": 0, +"slice_237/end_frame": 0, +"slice_237/loop_mode": 0, +"slice_237/name": "", +"slice_237/save_to_file/enabled": false, +"slice_237/save_to_file/fallback_path": "", +"slice_237/save_to_file/keep_custom_tracks": false, +"slice_237/save_to_file/path": "", +"slice_237/start_frame": 0, +"slice_238/end_frame": 0, +"slice_238/loop_mode": 0, +"slice_238/name": "", +"slice_238/save_to_file/enabled": false, +"slice_238/save_to_file/fallback_path": "", +"slice_238/save_to_file/keep_custom_tracks": false, +"slice_238/save_to_file/path": "", +"slice_238/start_frame": 0, +"slice_239/end_frame": 0, +"slice_239/loop_mode": 0, +"slice_239/name": "", +"slice_239/save_to_file/enabled": false, +"slice_239/save_to_file/fallback_path": "", +"slice_239/save_to_file/keep_custom_tracks": false, +"slice_239/save_to_file/path": "", +"slice_239/start_frame": 0, +"slice_24/end_frame": 0, +"slice_24/loop_mode": 0, +"slice_24/name": "", +"slice_24/save_to_file/enabled": false, +"slice_24/save_to_file/fallback_path": "", +"slice_24/save_to_file/keep_custom_tracks": false, +"slice_24/save_to_file/path": "", +"slice_24/start_frame": 0, +"slice_240/end_frame": 0, +"slice_240/loop_mode": 0, +"slice_240/name": "", +"slice_240/save_to_file/enabled": false, +"slice_240/save_to_file/fallback_path": "", +"slice_240/save_to_file/keep_custom_tracks": false, +"slice_240/save_to_file/path": "", +"slice_240/start_frame": 0, +"slice_241/end_frame": 0, +"slice_241/loop_mode": 0, +"slice_241/name": "", +"slice_241/save_to_file/enabled": false, +"slice_241/save_to_file/fallback_path": "", +"slice_241/save_to_file/keep_custom_tracks": false, +"slice_241/save_to_file/path": "", +"slice_241/start_frame": 0, +"slice_242/end_frame": 0, +"slice_242/loop_mode": 0, +"slice_242/name": "", +"slice_242/save_to_file/enabled": false, +"slice_242/save_to_file/fallback_path": "", +"slice_242/save_to_file/keep_custom_tracks": false, +"slice_242/save_to_file/path": "", +"slice_242/start_frame": 0, +"slice_243/end_frame": 0, +"slice_243/loop_mode": 0, +"slice_243/name": "", +"slice_243/save_to_file/enabled": false, +"slice_243/save_to_file/fallback_path": "", +"slice_243/save_to_file/keep_custom_tracks": false, +"slice_243/save_to_file/path": "", +"slice_243/start_frame": 0, +"slice_244/end_frame": 0, +"slice_244/loop_mode": 0, +"slice_244/name": "", +"slice_244/save_to_file/enabled": false, +"slice_244/save_to_file/fallback_path": "", +"slice_244/save_to_file/keep_custom_tracks": false, +"slice_244/save_to_file/path": "", +"slice_244/start_frame": 0, +"slice_245/end_frame": 0, +"slice_245/loop_mode": 0, +"slice_245/name": "", +"slice_245/save_to_file/enabled": false, +"slice_245/save_to_file/fallback_path": "", +"slice_245/save_to_file/keep_custom_tracks": false, +"slice_245/save_to_file/path": "", +"slice_245/start_frame": 0, +"slice_246/end_frame": 0, +"slice_246/loop_mode": 0, +"slice_246/name": "", +"slice_246/save_to_file/enabled": false, +"slice_246/save_to_file/fallback_path": "", +"slice_246/save_to_file/keep_custom_tracks": false, +"slice_246/save_to_file/path": "", +"slice_246/start_frame": 0, +"slice_247/end_frame": 0, +"slice_247/loop_mode": 0, +"slice_247/name": "", +"slice_247/save_to_file/enabled": false, +"slice_247/save_to_file/fallback_path": "", +"slice_247/save_to_file/keep_custom_tracks": false, +"slice_247/save_to_file/path": "", +"slice_247/start_frame": 0, +"slice_248/end_frame": 0, +"slice_248/loop_mode": 0, +"slice_248/name": "", +"slice_248/save_to_file/enabled": false, +"slice_248/save_to_file/fallback_path": "", +"slice_248/save_to_file/keep_custom_tracks": false, +"slice_248/save_to_file/path": "", +"slice_248/start_frame": 0, +"slice_249/end_frame": 0, +"slice_249/loop_mode": 0, +"slice_249/name": "", +"slice_249/save_to_file/enabled": false, +"slice_249/save_to_file/fallback_path": "", +"slice_249/save_to_file/keep_custom_tracks": false, +"slice_249/save_to_file/path": "", +"slice_249/start_frame": 0, +"slice_25/end_frame": 0, +"slice_25/loop_mode": 0, +"slice_25/name": "", +"slice_25/save_to_file/enabled": false, +"slice_25/save_to_file/fallback_path": "", +"slice_25/save_to_file/keep_custom_tracks": false, +"slice_25/save_to_file/path": "", +"slice_25/start_frame": 0, +"slice_250/end_frame": 0, +"slice_250/loop_mode": 0, +"slice_250/name": "", +"slice_250/save_to_file/enabled": false, +"slice_250/save_to_file/fallback_path": "", +"slice_250/save_to_file/keep_custom_tracks": false, +"slice_250/save_to_file/path": "", +"slice_250/start_frame": 0, +"slice_251/end_frame": 0, +"slice_251/loop_mode": 0, +"slice_251/name": "", +"slice_251/save_to_file/enabled": false, +"slice_251/save_to_file/fallback_path": "", +"slice_251/save_to_file/keep_custom_tracks": false, +"slice_251/save_to_file/path": "", +"slice_251/start_frame": 0, +"slice_252/end_frame": 0, +"slice_252/loop_mode": 0, +"slice_252/name": "", +"slice_252/save_to_file/enabled": false, +"slice_252/save_to_file/fallback_path": "", +"slice_252/save_to_file/keep_custom_tracks": false, +"slice_252/save_to_file/path": "", +"slice_252/start_frame": 0, +"slice_253/end_frame": 0, +"slice_253/loop_mode": 0, +"slice_253/name": "", +"slice_253/save_to_file/enabled": false, +"slice_253/save_to_file/fallback_path": "", +"slice_253/save_to_file/keep_custom_tracks": false, +"slice_253/save_to_file/path": "", +"slice_253/start_frame": 0, +"slice_254/end_frame": 0, +"slice_254/loop_mode": 0, +"slice_254/name": "", +"slice_254/save_to_file/enabled": false, +"slice_254/save_to_file/fallback_path": "", +"slice_254/save_to_file/keep_custom_tracks": false, +"slice_254/save_to_file/path": "", +"slice_254/start_frame": 0, +"slice_255/end_frame": 0, +"slice_255/loop_mode": 0, +"slice_255/name": "", +"slice_255/save_to_file/enabled": false, +"slice_255/save_to_file/fallback_path": "", +"slice_255/save_to_file/keep_custom_tracks": false, +"slice_255/save_to_file/path": "", +"slice_255/start_frame": 0, +"slice_256/end_frame": 0, +"slice_256/loop_mode": 0, +"slice_256/name": "", +"slice_256/save_to_file/enabled": false, +"slice_256/save_to_file/fallback_path": "", +"slice_256/save_to_file/keep_custom_tracks": false, +"slice_256/save_to_file/path": "", +"slice_256/start_frame": 0, +"slice_26/end_frame": 0, +"slice_26/loop_mode": 0, +"slice_26/name": "", +"slice_26/save_to_file/enabled": false, +"slice_26/save_to_file/fallback_path": "", +"slice_26/save_to_file/keep_custom_tracks": false, +"slice_26/save_to_file/path": "", +"slice_26/start_frame": 0, +"slice_27/end_frame": 0, +"slice_27/loop_mode": 0, +"slice_27/name": "", +"slice_27/save_to_file/enabled": false, +"slice_27/save_to_file/fallback_path": "", +"slice_27/save_to_file/keep_custom_tracks": false, +"slice_27/save_to_file/path": "", +"slice_27/start_frame": 0, +"slice_28/end_frame": 0, +"slice_28/loop_mode": 0, +"slice_28/name": "", +"slice_28/save_to_file/enabled": false, +"slice_28/save_to_file/fallback_path": "", +"slice_28/save_to_file/keep_custom_tracks": false, +"slice_28/save_to_file/path": "", +"slice_28/start_frame": 0, +"slice_29/end_frame": 0, +"slice_29/loop_mode": 0, +"slice_29/name": "", +"slice_29/save_to_file/enabled": false, +"slice_29/save_to_file/fallback_path": "", +"slice_29/save_to_file/keep_custom_tracks": false, +"slice_29/save_to_file/path": "", +"slice_29/start_frame": 0, +"slice_3/end_frame": 0, +"slice_3/loop_mode": 0, +"slice_3/name": "", +"slice_3/save_to_file/enabled": false, +"slice_3/save_to_file/fallback_path": "", +"slice_3/save_to_file/keep_custom_tracks": false, +"slice_3/save_to_file/path": "", +"slice_3/start_frame": 0, +"slice_30/end_frame": 0, +"slice_30/loop_mode": 0, +"slice_30/name": "", +"slice_30/save_to_file/enabled": false, +"slice_30/save_to_file/fallback_path": "", +"slice_30/save_to_file/keep_custom_tracks": false, +"slice_30/save_to_file/path": "", +"slice_30/start_frame": 0, +"slice_31/end_frame": 0, +"slice_31/loop_mode": 0, +"slice_31/name": "", +"slice_31/save_to_file/enabled": false, +"slice_31/save_to_file/fallback_path": "", +"slice_31/save_to_file/keep_custom_tracks": false, +"slice_31/save_to_file/path": "", +"slice_31/start_frame": 0, +"slice_32/end_frame": 0, +"slice_32/loop_mode": 0, +"slice_32/name": "", +"slice_32/save_to_file/enabled": false, +"slice_32/save_to_file/fallback_path": "", +"slice_32/save_to_file/keep_custom_tracks": false, +"slice_32/save_to_file/path": "", +"slice_32/start_frame": 0, +"slice_33/end_frame": 0, +"slice_33/loop_mode": 0, +"slice_33/name": "", +"slice_33/save_to_file/enabled": false, +"slice_33/save_to_file/fallback_path": "", +"slice_33/save_to_file/keep_custom_tracks": false, +"slice_33/save_to_file/path": "", +"slice_33/start_frame": 0, +"slice_34/end_frame": 0, +"slice_34/loop_mode": 0, +"slice_34/name": "", +"slice_34/save_to_file/enabled": false, +"slice_34/save_to_file/fallback_path": "", +"slice_34/save_to_file/keep_custom_tracks": false, +"slice_34/save_to_file/path": "", +"slice_34/start_frame": 0, +"slice_35/end_frame": 0, +"slice_35/loop_mode": 0, +"slice_35/name": "", +"slice_35/save_to_file/enabled": false, +"slice_35/save_to_file/fallback_path": "", +"slice_35/save_to_file/keep_custom_tracks": false, +"slice_35/save_to_file/path": "", +"slice_35/start_frame": 0, +"slice_36/end_frame": 0, +"slice_36/loop_mode": 0, +"slice_36/name": "", +"slice_36/save_to_file/enabled": false, +"slice_36/save_to_file/fallback_path": "", +"slice_36/save_to_file/keep_custom_tracks": false, +"slice_36/save_to_file/path": "", +"slice_36/start_frame": 0, +"slice_37/end_frame": 0, +"slice_37/loop_mode": 0, +"slice_37/name": "", +"slice_37/save_to_file/enabled": false, +"slice_37/save_to_file/fallback_path": "", +"slice_37/save_to_file/keep_custom_tracks": false, +"slice_37/save_to_file/path": "", +"slice_37/start_frame": 0, +"slice_38/end_frame": 0, +"slice_38/loop_mode": 0, +"slice_38/name": "", +"slice_38/save_to_file/enabled": false, +"slice_38/save_to_file/fallback_path": "", +"slice_38/save_to_file/keep_custom_tracks": false, +"slice_38/save_to_file/path": "", +"slice_38/start_frame": 0, +"slice_39/end_frame": 0, +"slice_39/loop_mode": 0, +"slice_39/name": "", +"slice_39/save_to_file/enabled": false, +"slice_39/save_to_file/fallback_path": "", +"slice_39/save_to_file/keep_custom_tracks": false, +"slice_39/save_to_file/path": "", +"slice_39/start_frame": 0, +"slice_4/end_frame": 0, +"slice_4/loop_mode": 0, +"slice_4/name": "", +"slice_4/save_to_file/enabled": false, +"slice_4/save_to_file/fallback_path": "", +"slice_4/save_to_file/keep_custom_tracks": false, +"slice_4/save_to_file/path": "", +"slice_4/start_frame": 0, +"slice_40/end_frame": 0, +"slice_40/loop_mode": 0, +"slice_40/name": "", +"slice_40/save_to_file/enabled": false, +"slice_40/save_to_file/fallback_path": "", +"slice_40/save_to_file/keep_custom_tracks": false, +"slice_40/save_to_file/path": "", +"slice_40/start_frame": 0, +"slice_41/end_frame": 0, +"slice_41/loop_mode": 0, +"slice_41/name": "", +"slice_41/save_to_file/enabled": false, +"slice_41/save_to_file/fallback_path": "", +"slice_41/save_to_file/keep_custom_tracks": false, +"slice_41/save_to_file/path": "", +"slice_41/start_frame": 0, +"slice_42/end_frame": 0, +"slice_42/loop_mode": 0, +"slice_42/name": "", +"slice_42/save_to_file/enabled": false, +"slice_42/save_to_file/fallback_path": "", +"slice_42/save_to_file/keep_custom_tracks": false, +"slice_42/save_to_file/path": "", +"slice_42/start_frame": 0, +"slice_43/end_frame": 0, +"slice_43/loop_mode": 0, +"slice_43/name": "", +"slice_43/save_to_file/enabled": false, +"slice_43/save_to_file/fallback_path": "", +"slice_43/save_to_file/keep_custom_tracks": false, +"slice_43/save_to_file/path": "", +"slice_43/start_frame": 0, +"slice_44/end_frame": 0, +"slice_44/loop_mode": 0, +"slice_44/name": "", +"slice_44/save_to_file/enabled": false, +"slice_44/save_to_file/fallback_path": "", +"slice_44/save_to_file/keep_custom_tracks": false, +"slice_44/save_to_file/path": "", +"slice_44/start_frame": 0, +"slice_45/end_frame": 0, +"slice_45/loop_mode": 0, +"slice_45/name": "", +"slice_45/save_to_file/enabled": false, +"slice_45/save_to_file/fallback_path": "", +"slice_45/save_to_file/keep_custom_tracks": false, +"slice_45/save_to_file/path": "", +"slice_45/start_frame": 0, +"slice_46/end_frame": 0, +"slice_46/loop_mode": 0, +"slice_46/name": "", +"slice_46/save_to_file/enabled": false, +"slice_46/save_to_file/fallback_path": "", +"slice_46/save_to_file/keep_custom_tracks": false, +"slice_46/save_to_file/path": "", +"slice_46/start_frame": 0, +"slice_47/end_frame": 0, +"slice_47/loop_mode": 0, +"slice_47/name": "", +"slice_47/save_to_file/enabled": false, +"slice_47/save_to_file/fallback_path": "", +"slice_47/save_to_file/keep_custom_tracks": false, +"slice_47/save_to_file/path": "", +"slice_47/start_frame": 0, +"slice_48/end_frame": 0, +"slice_48/loop_mode": 0, +"slice_48/name": "", +"slice_48/save_to_file/enabled": false, +"slice_48/save_to_file/fallback_path": "", +"slice_48/save_to_file/keep_custom_tracks": false, +"slice_48/save_to_file/path": "", +"slice_48/start_frame": 0, +"slice_49/end_frame": 0, +"slice_49/loop_mode": 0, +"slice_49/name": "", +"slice_49/save_to_file/enabled": false, +"slice_49/save_to_file/fallback_path": "", +"slice_49/save_to_file/keep_custom_tracks": false, +"slice_49/save_to_file/path": "", +"slice_49/start_frame": 0, +"slice_5/end_frame": 0, +"slice_5/loop_mode": 0, +"slice_5/name": "", +"slice_5/save_to_file/enabled": false, +"slice_5/save_to_file/fallback_path": "", +"slice_5/save_to_file/keep_custom_tracks": false, +"slice_5/save_to_file/path": "", +"slice_5/start_frame": 0, +"slice_50/end_frame": 0, +"slice_50/loop_mode": 0, +"slice_50/name": "", +"slice_50/save_to_file/enabled": false, +"slice_50/save_to_file/fallback_path": "", +"slice_50/save_to_file/keep_custom_tracks": false, +"slice_50/save_to_file/path": "", +"slice_50/start_frame": 0, +"slice_51/end_frame": 0, +"slice_51/loop_mode": 0, +"slice_51/name": "", +"slice_51/save_to_file/enabled": false, +"slice_51/save_to_file/fallback_path": "", +"slice_51/save_to_file/keep_custom_tracks": false, +"slice_51/save_to_file/path": "", +"slice_51/start_frame": 0, +"slice_52/end_frame": 0, +"slice_52/loop_mode": 0, +"slice_52/name": "", +"slice_52/save_to_file/enabled": false, +"slice_52/save_to_file/fallback_path": "", +"slice_52/save_to_file/keep_custom_tracks": false, +"slice_52/save_to_file/path": "", +"slice_52/start_frame": 0, +"slice_53/end_frame": 0, +"slice_53/loop_mode": 0, +"slice_53/name": "", +"slice_53/save_to_file/enabled": false, +"slice_53/save_to_file/fallback_path": "", +"slice_53/save_to_file/keep_custom_tracks": false, +"slice_53/save_to_file/path": "", +"slice_53/start_frame": 0, +"slice_54/end_frame": 0, +"slice_54/loop_mode": 0, +"slice_54/name": "", +"slice_54/save_to_file/enabled": false, +"slice_54/save_to_file/fallback_path": "", +"slice_54/save_to_file/keep_custom_tracks": false, +"slice_54/save_to_file/path": "", +"slice_54/start_frame": 0, +"slice_55/end_frame": 0, +"slice_55/loop_mode": 0, +"slice_55/name": "", +"slice_55/save_to_file/enabled": false, +"slice_55/save_to_file/fallback_path": "", +"slice_55/save_to_file/keep_custom_tracks": false, +"slice_55/save_to_file/path": "", +"slice_55/start_frame": 0, +"slice_56/end_frame": 0, +"slice_56/loop_mode": 0, +"slice_56/name": "", +"slice_56/save_to_file/enabled": false, +"slice_56/save_to_file/fallback_path": "", +"slice_56/save_to_file/keep_custom_tracks": false, +"slice_56/save_to_file/path": "", +"slice_56/start_frame": 0, +"slice_57/end_frame": 0, +"slice_57/loop_mode": 0, +"slice_57/name": "", +"slice_57/save_to_file/enabled": false, +"slice_57/save_to_file/fallback_path": "", +"slice_57/save_to_file/keep_custom_tracks": false, +"slice_57/save_to_file/path": "", +"slice_57/start_frame": 0, +"slice_58/end_frame": 0, +"slice_58/loop_mode": 0, +"slice_58/name": "", +"slice_58/save_to_file/enabled": false, +"slice_58/save_to_file/fallback_path": "", +"slice_58/save_to_file/keep_custom_tracks": false, +"slice_58/save_to_file/path": "", +"slice_58/start_frame": 0, +"slice_59/end_frame": 0, +"slice_59/loop_mode": 0, +"slice_59/name": "", +"slice_59/save_to_file/enabled": false, +"slice_59/save_to_file/fallback_path": "", +"slice_59/save_to_file/keep_custom_tracks": false, +"slice_59/save_to_file/path": "", +"slice_59/start_frame": 0, +"slice_6/end_frame": 0, +"slice_6/loop_mode": 0, +"slice_6/name": "", +"slice_6/save_to_file/enabled": false, +"slice_6/save_to_file/fallback_path": "", +"slice_6/save_to_file/keep_custom_tracks": false, +"slice_6/save_to_file/path": "", +"slice_6/start_frame": 0, +"slice_60/end_frame": 0, +"slice_60/loop_mode": 0, +"slice_60/name": "", +"slice_60/save_to_file/enabled": false, +"slice_60/save_to_file/fallback_path": "", +"slice_60/save_to_file/keep_custom_tracks": false, +"slice_60/save_to_file/path": "", +"slice_60/start_frame": 0, +"slice_61/end_frame": 0, +"slice_61/loop_mode": 0, +"slice_61/name": "", +"slice_61/save_to_file/enabled": false, +"slice_61/save_to_file/fallback_path": "", +"slice_61/save_to_file/keep_custom_tracks": false, +"slice_61/save_to_file/path": "", +"slice_61/start_frame": 0, +"slice_62/end_frame": 0, +"slice_62/loop_mode": 0, +"slice_62/name": "", +"slice_62/save_to_file/enabled": false, +"slice_62/save_to_file/fallback_path": "", +"slice_62/save_to_file/keep_custom_tracks": false, +"slice_62/save_to_file/path": "", +"slice_62/start_frame": 0, +"slice_63/end_frame": 0, +"slice_63/loop_mode": 0, +"slice_63/name": "", +"slice_63/save_to_file/enabled": false, +"slice_63/save_to_file/fallback_path": "", +"slice_63/save_to_file/keep_custom_tracks": false, +"slice_63/save_to_file/path": "", +"slice_63/start_frame": 0, +"slice_64/end_frame": 0, +"slice_64/loop_mode": 0, +"slice_64/name": "", +"slice_64/save_to_file/enabled": false, +"slice_64/save_to_file/fallback_path": "", +"slice_64/save_to_file/keep_custom_tracks": false, +"slice_64/save_to_file/path": "", +"slice_64/start_frame": 0, +"slice_65/end_frame": 0, +"slice_65/loop_mode": 0, +"slice_65/name": "", +"slice_65/save_to_file/enabled": false, +"slice_65/save_to_file/fallback_path": "", +"slice_65/save_to_file/keep_custom_tracks": false, +"slice_65/save_to_file/path": "", +"slice_65/start_frame": 0, +"slice_66/end_frame": 0, +"slice_66/loop_mode": 0, +"slice_66/name": "", +"slice_66/save_to_file/enabled": false, +"slice_66/save_to_file/fallback_path": "", +"slice_66/save_to_file/keep_custom_tracks": false, +"slice_66/save_to_file/path": "", +"slice_66/start_frame": 0, +"slice_67/end_frame": 0, +"slice_67/loop_mode": 0, +"slice_67/name": "", +"slice_67/save_to_file/enabled": false, +"slice_67/save_to_file/fallback_path": "", +"slice_67/save_to_file/keep_custom_tracks": false, +"slice_67/save_to_file/path": "", +"slice_67/start_frame": 0, +"slice_68/end_frame": 0, +"slice_68/loop_mode": 0, +"slice_68/name": "", +"slice_68/save_to_file/enabled": false, +"slice_68/save_to_file/fallback_path": "", +"slice_68/save_to_file/keep_custom_tracks": false, +"slice_68/save_to_file/path": "", +"slice_68/start_frame": 0, +"slice_69/end_frame": 0, +"slice_69/loop_mode": 0, +"slice_69/name": "", +"slice_69/save_to_file/enabled": false, +"slice_69/save_to_file/fallback_path": "", +"slice_69/save_to_file/keep_custom_tracks": false, +"slice_69/save_to_file/path": "", +"slice_69/start_frame": 0, +"slice_7/end_frame": 0, +"slice_7/loop_mode": 0, +"slice_7/name": "", +"slice_7/save_to_file/enabled": false, +"slice_7/save_to_file/fallback_path": "", +"slice_7/save_to_file/keep_custom_tracks": false, +"slice_7/save_to_file/path": "", +"slice_7/start_frame": 0, +"slice_70/end_frame": 0, +"slice_70/loop_mode": 0, +"slice_70/name": "", +"slice_70/save_to_file/enabled": false, +"slice_70/save_to_file/fallback_path": "", +"slice_70/save_to_file/keep_custom_tracks": false, +"slice_70/save_to_file/path": "", +"slice_70/start_frame": 0, +"slice_71/end_frame": 0, +"slice_71/loop_mode": 0, +"slice_71/name": "", +"slice_71/save_to_file/enabled": false, +"slice_71/save_to_file/fallback_path": "", +"slice_71/save_to_file/keep_custom_tracks": false, +"slice_71/save_to_file/path": "", +"slice_71/start_frame": 0, +"slice_72/end_frame": 0, +"slice_72/loop_mode": 0, +"slice_72/name": "", +"slice_72/save_to_file/enabled": false, +"slice_72/save_to_file/fallback_path": "", +"slice_72/save_to_file/keep_custom_tracks": false, +"slice_72/save_to_file/path": "", +"slice_72/start_frame": 0, +"slice_73/end_frame": 0, +"slice_73/loop_mode": 0, +"slice_73/name": "", +"slice_73/save_to_file/enabled": false, +"slice_73/save_to_file/fallback_path": "", +"slice_73/save_to_file/keep_custom_tracks": false, +"slice_73/save_to_file/path": "", +"slice_73/start_frame": 0, +"slice_74/end_frame": 0, +"slice_74/loop_mode": 0, +"slice_74/name": "", +"slice_74/save_to_file/enabled": false, +"slice_74/save_to_file/fallback_path": "", +"slice_74/save_to_file/keep_custom_tracks": false, +"slice_74/save_to_file/path": "", +"slice_74/start_frame": 0, +"slice_75/end_frame": 0, +"slice_75/loop_mode": 0, +"slice_75/name": "", +"slice_75/save_to_file/enabled": false, +"slice_75/save_to_file/fallback_path": "", +"slice_75/save_to_file/keep_custom_tracks": false, +"slice_75/save_to_file/path": "", +"slice_75/start_frame": 0, +"slice_76/end_frame": 0, +"slice_76/loop_mode": 0, +"slice_76/name": "", +"slice_76/save_to_file/enabled": false, +"slice_76/save_to_file/fallback_path": "", +"slice_76/save_to_file/keep_custom_tracks": false, +"slice_76/save_to_file/path": "", +"slice_76/start_frame": 0, +"slice_77/end_frame": 0, +"slice_77/loop_mode": 0, +"slice_77/name": "", +"slice_77/save_to_file/enabled": false, +"slice_77/save_to_file/fallback_path": "", +"slice_77/save_to_file/keep_custom_tracks": false, +"slice_77/save_to_file/path": "", +"slice_77/start_frame": 0, +"slice_78/end_frame": 0, +"slice_78/loop_mode": 0, +"slice_78/name": "", +"slice_78/save_to_file/enabled": false, +"slice_78/save_to_file/fallback_path": "", +"slice_78/save_to_file/keep_custom_tracks": false, +"slice_78/save_to_file/path": "", +"slice_78/start_frame": 0, +"slice_79/end_frame": 0, +"slice_79/loop_mode": 0, +"slice_79/name": "", +"slice_79/save_to_file/enabled": false, +"slice_79/save_to_file/fallback_path": "", +"slice_79/save_to_file/keep_custom_tracks": false, +"slice_79/save_to_file/path": "", +"slice_79/start_frame": 0, +"slice_8/end_frame": 0, +"slice_8/loop_mode": 0, +"slice_8/name": "", +"slice_8/save_to_file/enabled": false, +"slice_8/save_to_file/fallback_path": "", +"slice_8/save_to_file/keep_custom_tracks": false, +"slice_8/save_to_file/path": "", +"slice_8/start_frame": 0, +"slice_80/end_frame": 0, +"slice_80/loop_mode": 0, +"slice_80/name": "", +"slice_80/save_to_file/enabled": false, +"slice_80/save_to_file/fallback_path": "", +"slice_80/save_to_file/keep_custom_tracks": false, +"slice_80/save_to_file/path": "", +"slice_80/start_frame": 0, +"slice_81/end_frame": 0, +"slice_81/loop_mode": 0, +"slice_81/name": "", +"slice_81/save_to_file/enabled": false, +"slice_81/save_to_file/fallback_path": "", +"slice_81/save_to_file/keep_custom_tracks": false, +"slice_81/save_to_file/path": "", +"slice_81/start_frame": 0, +"slice_82/end_frame": 0, +"slice_82/loop_mode": 0, +"slice_82/name": "", +"slice_82/save_to_file/enabled": false, +"slice_82/save_to_file/fallback_path": "", +"slice_82/save_to_file/keep_custom_tracks": false, +"slice_82/save_to_file/path": "", +"slice_82/start_frame": 0, +"slice_83/end_frame": 0, +"slice_83/loop_mode": 0, +"slice_83/name": "", +"slice_83/save_to_file/enabled": false, +"slice_83/save_to_file/fallback_path": "", +"slice_83/save_to_file/keep_custom_tracks": false, +"slice_83/save_to_file/path": "", +"slice_83/start_frame": 0, +"slice_84/end_frame": 0, +"slice_84/loop_mode": 0, +"slice_84/name": "", +"slice_84/save_to_file/enabled": false, +"slice_84/save_to_file/fallback_path": "", +"slice_84/save_to_file/keep_custom_tracks": false, +"slice_84/save_to_file/path": "", +"slice_84/start_frame": 0, +"slice_85/end_frame": 0, +"slice_85/loop_mode": 0, +"slice_85/name": "", +"slice_85/save_to_file/enabled": false, +"slice_85/save_to_file/fallback_path": "", +"slice_85/save_to_file/keep_custom_tracks": false, +"slice_85/save_to_file/path": "", +"slice_85/start_frame": 0, +"slice_86/end_frame": 0, +"slice_86/loop_mode": 0, +"slice_86/name": "", +"slice_86/save_to_file/enabled": false, +"slice_86/save_to_file/fallback_path": "", +"slice_86/save_to_file/keep_custom_tracks": false, +"slice_86/save_to_file/path": "", +"slice_86/start_frame": 0, +"slice_87/end_frame": 0, +"slice_87/loop_mode": 0, +"slice_87/name": "", +"slice_87/save_to_file/enabled": false, +"slice_87/save_to_file/fallback_path": "", +"slice_87/save_to_file/keep_custom_tracks": false, +"slice_87/save_to_file/path": "", +"slice_87/start_frame": 0, +"slice_88/end_frame": 0, +"slice_88/loop_mode": 0, +"slice_88/name": "", +"slice_88/save_to_file/enabled": false, +"slice_88/save_to_file/fallback_path": "", +"slice_88/save_to_file/keep_custom_tracks": false, +"slice_88/save_to_file/path": "", +"slice_88/start_frame": 0, +"slice_89/end_frame": 0, +"slice_89/loop_mode": 0, +"slice_89/name": "", +"slice_89/save_to_file/enabled": false, +"slice_89/save_to_file/fallback_path": "", +"slice_89/save_to_file/keep_custom_tracks": false, +"slice_89/save_to_file/path": "", +"slice_89/start_frame": 0, +"slice_9/end_frame": 0, +"slice_9/loop_mode": 0, +"slice_9/name": "", +"slice_9/save_to_file/enabled": false, +"slice_9/save_to_file/fallback_path": "", +"slice_9/save_to_file/keep_custom_tracks": false, +"slice_9/save_to_file/path": "", +"slice_9/start_frame": 0, +"slice_90/end_frame": 0, +"slice_90/loop_mode": 0, +"slice_90/name": "", +"slice_90/save_to_file/enabled": false, +"slice_90/save_to_file/fallback_path": "", +"slice_90/save_to_file/keep_custom_tracks": false, +"slice_90/save_to_file/path": "", +"slice_90/start_frame": 0, +"slice_91/end_frame": 0, +"slice_91/loop_mode": 0, +"slice_91/name": "", +"slice_91/save_to_file/enabled": false, +"slice_91/save_to_file/fallback_path": "", +"slice_91/save_to_file/keep_custom_tracks": false, +"slice_91/save_to_file/path": "", +"slice_91/start_frame": 0, +"slice_92/end_frame": 0, +"slice_92/loop_mode": 0, +"slice_92/name": "", +"slice_92/save_to_file/enabled": false, +"slice_92/save_to_file/fallback_path": "", +"slice_92/save_to_file/keep_custom_tracks": false, +"slice_92/save_to_file/path": "", +"slice_92/start_frame": 0, +"slice_93/end_frame": 0, +"slice_93/loop_mode": 0, +"slice_93/name": "", +"slice_93/save_to_file/enabled": false, +"slice_93/save_to_file/fallback_path": "", +"slice_93/save_to_file/keep_custom_tracks": false, +"slice_93/save_to_file/path": "", +"slice_93/start_frame": 0, +"slice_94/end_frame": 0, +"slice_94/loop_mode": 0, +"slice_94/name": "", +"slice_94/save_to_file/enabled": false, +"slice_94/save_to_file/fallback_path": "", +"slice_94/save_to_file/keep_custom_tracks": false, +"slice_94/save_to_file/path": "", +"slice_94/start_frame": 0, +"slice_95/end_frame": 0, +"slice_95/loop_mode": 0, +"slice_95/name": "", +"slice_95/save_to_file/enabled": false, +"slice_95/save_to_file/fallback_path": "", +"slice_95/save_to_file/keep_custom_tracks": false, +"slice_95/save_to_file/path": "", +"slice_95/start_frame": 0, +"slice_96/end_frame": 0, +"slice_96/loop_mode": 0, +"slice_96/name": "", +"slice_96/save_to_file/enabled": false, +"slice_96/save_to_file/fallback_path": "", +"slice_96/save_to_file/keep_custom_tracks": false, +"slice_96/save_to_file/path": "", +"slice_96/start_frame": 0, +"slice_97/end_frame": 0, +"slice_97/loop_mode": 0, +"slice_97/name": "", +"slice_97/save_to_file/enabled": false, +"slice_97/save_to_file/fallback_path": "", +"slice_97/save_to_file/keep_custom_tracks": false, +"slice_97/save_to_file/path": "", +"slice_97/start_frame": 0, +"slice_98/end_frame": 0, +"slice_98/loop_mode": 0, +"slice_98/name": "", +"slice_98/save_to_file/enabled": false, +"slice_98/save_to_file/fallback_path": "", +"slice_98/save_to_file/keep_custom_tracks": false, +"slice_98/save_to_file/path": "", +"slice_98/start_frame": 0, +"slice_99/end_frame": 0, +"slice_99/loop_mode": 0, +"slice_99/name": "", +"slice_99/save_to_file/enabled": false, +"slice_99/save_to_file/fallback_path": "", +"slice_99/save_to_file/keep_custom_tracks": false, +"slice_99/save_to_file/path": "", +"slice_99/start_frame": 0, +"slices/amount": 0 +} +}, "materials": { "Material": { "use_external/enabled": true, diff --git a/entities/interactable_3d/phone/assets/3d/phone.blend1 b/entities/interactable_3d/phone/assets/3d/phone.blend1 new file mode 100644 index 0000000..0638e0b Binary files /dev/null and b/entities/interactable_3d/phone/assets/3d/phone.blend1 differ diff --git a/entities/interactable_3d/phone/phone.tscn b/entities/interactable_3d/phone/phone.tscn index a7a34c6..69f7c64 100644 --- a/entities/interactable_3d/phone/phone.tscn +++ b/entities/interactable_3d/phone/phone.tscn @@ -1,13 +1,22 @@ [gd_scene format=3 uid="uid://csx7d5khjd6y5"] -[ext_resource type="Script" uid="uid://bj4d1x8n8ina" path="res://entities/interactable_3d/interactable_3d.gd" id="1_2si4a"] +[ext_resource type="Script" uid="uid://chedhuxpxro4k" path="res://entities/interactable_3d/phone/scripts/phone.gd" id="1_2si4a"] [ext_resource type="AudioStream" uid="uid://ocm1dkkhv7ls" path="res://common/audio_manager/assets/sfx/phone/phone_ringing.wav" id="2_w00q2"] [ext_resource type="PackedScene" uid="uid://5dytwh4wydcg" path="res://entities/interactable_3d/phone/assets/3d/phone.blend" id="3_lp5jo"] [ext_resource type="Texture2D" uid="uid://dks6cugwif2em" path="res://common/icons/phone.svg" id="4_gtuax"] [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_mwti2"] -radius = 0.9633789 -height = 2.4316406 +radius = 0.87646484 +height = 2.0859375 + +[sub_resource type="Gradient" id="Gradient_w00q2"] +offsets = PackedFloat32Array(0.020833334, 1) +colors = PackedColorArray(0.0627451, 0.05882353, 0.16862746, 1, 0.0627451, 0.05882353, 0.16862746, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_lp5jo"] +gradient = SubResource("Gradient_w00q2") +width = 139 +height = 96 [sub_resource type="Animation" id="Animation_v4tdl"] length = 0.001 @@ -23,6 +32,86 @@ tracks/0/keys = { "update": 0, "values": [Vector3(1, 1, 1)] } +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Model/Sprite3D:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("Model/OffScreenBackground:visible") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} + +[sub_resource type="Animation" id="Animation_gtuax"] +resource_name = "activated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Model/Sprite3D:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Model/OffScreenBackground:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} + +[sub_resource type="Animation" id="Animation_euiu0"] +resource_name = "deactivated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Model/Sprite3D:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0.033333335), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Model/OffScreenBackground:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} [sub_resource type="Animation" id="Animation_lkqnn"] resource_name = "hover" @@ -43,36 +132,95 @@ tracks/0/keys = { [sub_resource type="AnimationLibrary" id="AnimationLibrary_xa016"] _data = { &"RESET": SubResource("Animation_v4tdl"), +&"activated": SubResource("Animation_gtuax"), +&"deactivated": SubResource("Animation_euiu0"), &"hover": SubResource("Animation_lkqnn") } +[sub_resource type="Animation" id="Animation_1kswv"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Model:rotation:z") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [0.0] +} + +[sub_resource type="Animation" id="Animation_ckx3x"] +resource_name = "ring" +length = 1.95 +loop_mode = 1 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Model:rotation:z") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.2, 0.3, 0.4, 0.5, 0.6, 0.70000005, 0.8000001, 1, 1.1, 1.2, 1.3, 1.4, 1.5000001, 1.6), +"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), +"update": 1, +"values": [0.0, -0.03, 0.03, -0.03, 0.03, -0.03, 0.03, 0.0, -0.03, 0.03, -0.03, 0.03, -0.03, 0.03, 0.0] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_bc3p2"] +_data = { +&"RESET": SubResource("Animation_1kswv"), +&"ring": SubResource("Animation_ckx3x") +} + [node name="Phone" type="Area3D" unique_id=429299908 node_paths=PackedStringArray("hover_animation_player", "audio_player")] -transform = Transform3D(-1, 0, -8.742278e-08, 0, 1, 0, 8.742278e-08, 0, -1, 0, 0, 0) +transform = Transform3D(-1, 0, -1.509958e-07, 0, 1, 0, 1.509958e-07, 0, -1, 0, 0, 0) script = ExtResource("1_2si4a") hover_animation_player = NodePath("HoverAnimationPlayer") audio_player = NodePath("AudioStreamPlayer3D") metadata/_custom_type_script = "uid://bj4d1x8n8ina" [node name="CollisionShape3D" type="CollisionShape3D" parent="." unique_id=660671507] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.21582031, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5439453, 0) shape = SubResource("CapsuleShape3D_mwti2") [node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="." unique_id=73991663] stream = ExtResource("2_w00q2") bus = &"Sfx" -[node name="Model" parent="." unique_id=178278867 instance=ExtResource("3_lp5jo")] +[node name="Model" parent="." unique_id=1951271790 instance=ExtResource("3_lp5jo")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.000101934645, 0) +[node name="PhoneSignal" parent="Model" index="1" unique_id=2035875887] +transform = Transform3D(0.99678284, 0, -0.080149435, 0, 1, 0, 0.080149435, 0, 0.99678284, -0.27000237, 1.5518044, -0.16334502) + [node name="Sprite3D" type="Sprite3D" parent="Model" unique_id=2025147118] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.1913681, 0.3055997, -0.095009446) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.023056125, 0.6826539, -0.33169416) +visible = false +pixel_size = 0.005 texture = ExtResource("4_gtuax") +[node name="OffScreenBackground" type="Sprite3D" parent="Model" unique_id=802126508] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.023056127, 0.6826539, -0.34936276) +pixel_size = 0.005 +texture = SubResource("GradientTexture2D_lp5jo") + +[node name="OmniLight3D" type="OmniLight3D" parent="Model" unique_id=1684592543] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.9604645e-08, 0.9238404, -0.47173643) +light_color = Color(0.87551093, 0.72609586, 0.8473426, 1) +shadow_enabled = true +omni_range = 1.8928293 + +[node name="AnimationPlayer" parent="Model" index="6" unique_id=636985304] +autoplay = &"Turning" + [node name="HoverAnimationPlayer" type="AnimationPlayer" parent="." unique_id=1414304456] libraries/ = SubResource("AnimationLibrary_xa016") -[node name="OmniLight3D" type="OmniLight3D" parent="." unique_id=1684592543] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.9604645e-08, 1.0397238, -0.47173643) -light_color = Color(0.87551093, 0.72609586, 0.8473426, 1) -shadow_enabled = true -omni_range = 1.8928293 +[node name="RingingAnimationPlayer" type="AnimationPlayer" parent="." unique_id=1401157488] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_bc3p2") + +[editable path="Model"] diff --git a/entities/interactable_3d/phone/scripts/phone.gd b/entities/interactable_3d/phone/scripts/phone.gd new file mode 100644 index 0000000..2ec0e6a --- /dev/null +++ b/entities/interactable_3d/phone/scripts/phone.gd @@ -0,0 +1,21 @@ +extends Interactable3D +class_name Phone + + +func click(): + if interactable: + clicked.emit() + interactable = false + +func set_interactable(i := interactable): + interactable = i + + if is_node_ready() and hover_animation_player: + if i and hover_animation_player.has_animation("activated"): + hover_animation_player.play("activated") + if not i and hover_animation_player.has_animation("deactivated"): + hover_animation_player.play("deactivated") + if i : + %RingingAnimationPlayer.play("ring") + else: + %RingingAnimationPlayer.stop() \ No newline at end of file diff --git a/entities/interactable_3d/phone/scripts/phone.gd.uid b/entities/interactable_3d/phone/scripts/phone.gd.uid new file mode 100644 index 0000000..9d1b10a --- /dev/null +++ b/entities/interactable_3d/phone/scripts/phone.gd.uid @@ -0,0 +1 @@ +uid://chedhuxpxro4k diff --git a/entities/interactables/door/door.tscn b/entities/interactables/door/door.tscn index de227c0..b0101d6 100644 --- a/entities/interactables/door/door.tscn +++ b/entities/interactables/door/door.tscn @@ -112,9 +112,8 @@ fill = 1 fill_from = Vector2(0.5, 0.5) fill_to = Vector2(1, 0.5) -[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_6w4e0"] -radius = 25.393593 -height = 50.787186 +[sub_resource type="CircleShape2D" id="CircleShape2D_6w4e0"] +radius = 16.583923 [node name="Door" type="Area2D" unique_id=2053096538] process_mode = 4 @@ -155,4 +154,4 @@ scale = Vector2(1.3906125, 1.3906125) [node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D" unique_id=676936346] position = Vector2(0, 12) -shape = SubResource("CapsuleShape2D_6w4e0") +shape = SubResource("CircleShape2D_6w4e0") diff --git a/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png b/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png new file mode 100644 index 0000000..5dfe352 Binary files /dev/null and b/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png differ diff --git a/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png.import b/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png.import new file mode 100644 index 0000000..74351d7 --- /dev/null +++ b/entities/interactables/energy_cell/assets/sprites/energy_cell_off.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh6jdqoy2xu65" +path="res://.godot/imported/energy_cell_off.png-d0f76768f0abf3252fb82e90132330e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://entities/interactables/energy_cell/assets/sprites/energy_cell_off.png" +dest_files=["res://.godot/imported/energy_cell_off.png-d0f76768f0abf3252fb82e90132330e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png b/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png new file mode 100644 index 0000000..81f960e Binary files /dev/null and b/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png differ diff --git a/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png.import b/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png.import new file mode 100644 index 0000000..e9c8540 --- /dev/null +++ b/entities/interactables/energy_cell/assets/sprites/energy_cell_on.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds65vxsiitxit" +path="res://.godot/imported/energy_cell_on.png-ddddaeafbe8fcf8fce63d8a58ab82019.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://entities/interactables/energy_cell/assets/sprites/energy_cell_on.png" +dest_files=["res://.godot/imported/energy_cell_on.png-ddddaeafbe8fcf8fce63d8a58ab82019.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/entities/interactables/energy_cell/energy_cell.tscn b/entities/interactables/energy_cell/energy_cell.tscn new file mode 100644 index 0000000..61dbe57 --- /dev/null +++ b/entities/interactables/energy_cell/energy_cell.tscn @@ -0,0 +1,102 @@ +[gd_scene format=3 uid="uid://d3fam2jq74kxq"] + +[ext_resource type="Script" uid="uid://b25sqd4v2i3v2" path="res://entities/interactables/energy_cell/scripts/energy_cell.gd" id="1_nheea"] +[ext_resource type="Texture2D" uid="uid://ds65vxsiitxit" path="res://entities/interactables/energy_cell/assets/sprites/energy_cell_on.png" id="2_fnyaf"] +[ext_resource type="Texture2D" uid="uid://dh6jdqoy2xu65" path="res://entities/interactables/energy_cell/assets/sprites/energy_cell_off.png" id="3_t6ydv"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_ylpt4"] +radius = 39.115215 + +[sub_resource type="Animation" id="Animation_lsc7u"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprites:scale:x") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0000001] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprites:scale:y") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0000001] +} + +[sub_resource type="Animation" id="Animation_ei886"] +resource_name = "squeeze" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprites:scale:x") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.16666667, 0.33333334, 0.5), +"transitions": PackedFloat32Array(1, 1, 1, 1), +"update": 0, +"values": [1.0000001, 0.705, 1.5, 1.0000001] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprites:scale:y") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.16666667, 0.33333334, 0.5), +"transitions": PackedFloat32Array(1, 1, 1, 1), +"update": 0, +"values": [1.0000001, 1.5, 0.7, 1.0000001] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_d2c63"] +_data = { +&"RESET": SubResource("Animation_lsc7u"), +&"squeeze": SubResource("Animation_ei886") +} + +[node name="EnergyCell" type="Area2D" unique_id=1375150025] +script = ExtResource("1_nheea") +used = true +default_interact_text = "OPEN" +available = false +default_info_title = "ENERGY_CELL" +default_info_desc = "ENERGY_CELL_DESC_TEXT" +metadata/_custom_type_script = "uid://dyprcd68fjstf" + +[node name="Sprites" type="Node2D" parent="." unique_id=979185380] +scale = Vector2(1.0000001, 1.0000001) + +[node name="SpriteOff" type="Sprite2D" parent="Sprites" unique_id=1278139902] +unique_name_in_owner = true +position = Vector2(0, -11.999998) +scale = Vector2(0.17999999, 0.17999999) +texture = ExtResource("3_t6ydv") + +[node name="SpriteOn" type="Sprite2D" parent="Sprites" unique_id=750798992] +unique_name_in_owner = true +visible = false +position = Vector2(0, -11.999998) +scale = Vector2(0.17999999, 0.17999999) +texture = ExtResource("2_fnyaf") + +[node name="CollisionShape2D" type="CollisionShape2D" parent="." unique_id=836925562] +position = Vector2(0, -11.999998) +shape = SubResource("CircleShape2D_ylpt4") + +[node name="AnimationPlayer" type="AnimationPlayer" parent="." unique_id=1320210428] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_d2c63") diff --git a/entities/interactables/energy_cell/scripts/energy_cell.gd b/entities/interactables/energy_cell/scripts/energy_cell.gd new file mode 100644 index 0000000..38b2bbc --- /dev/null +++ b/entities/interactables/energy_cell/scripts/energy_cell.gd @@ -0,0 +1,38 @@ +@tool +extends Interactable +class_name EnergyCell + +const GIVEN_ENERGY = 1 + +@export var used = false : set = set_used + +func _ready(): + set_used() + +func set_used(v = used): + used = v + available = not used + if is_node_ready(): + %AnimationPlayer.play("squeeze") + await get_tree().create_timer(0.2).timeout + %SpriteOff.visible = used + %SpriteOn.visible = not used + +func can_interact(p : Player) -> bool: + return p.data.energy < p.data.max_energy + +func interact(p : Player) -> bool: + if not used and region: + used = true + available = false + + p.data.energy += GIVEN_ENERGY + + interacted.emit(p) + + region.data.used_objects.append(name) + + AudioManager.play_sfx("Recharge1") + + return true + return false diff --git a/entities/interactables/energy_cell/scripts/energy_cell.gd.uid b/entities/interactables/energy_cell/scripts/energy_cell.gd.uid new file mode 100644 index 0000000..a548b87 --- /dev/null +++ b/entities/interactables/energy_cell/scripts/energy_cell.gd.uid @@ -0,0 +1 @@ +uid://b25sqd4v2i3v2 diff --git a/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png b/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png new file mode 100644 index 0000000..4244de2 Binary files /dev/null and b/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png differ diff --git a/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png.import b/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png.import new file mode 100644 index 0000000..0eaf92c --- /dev/null +++ b/entities/interactables/talion_cell/assets/sprites/talion_cell_off.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk2w3tophr7nh" +path="res://.godot/imported/talion_cell_off.png-f9e1927bb52c04ea9e2d4a53e89bb0e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://entities/interactables/talion_cell/assets/sprites/talion_cell_off.png" +dest_files=["res://.godot/imported/talion_cell_off.png-f9e1927bb52c04ea9e2d4a53e89bb0e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png b/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png new file mode 100644 index 0000000..84cbd6b Binary files /dev/null and b/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png differ diff --git a/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png.import b/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png.import new file mode 100644 index 0000000..fd0922b --- /dev/null +++ b/entities/interactables/talion_cell/assets/sprites/talion_cell_on.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qef2wvgb62cb" +path="res://.godot/imported/talion_cell_on.png-a65f44148c257de0107a156068275044.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://entities/interactables/talion_cell/assets/sprites/talion_cell_on.png" +dest_files=["res://.godot/imported/talion_cell_on.png-a65f44148c257de0107a156068275044.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/entities/interactables/talion_cell/scripts/talion_cell.gd b/entities/interactables/talion_cell/scripts/talion_cell.gd new file mode 100644 index 0000000..15de92e --- /dev/null +++ b/entities/interactables/talion_cell/scripts/talion_cell.gd @@ -0,0 +1,40 @@ +@tool +extends Interactable +class_name TalionCell + +const SEED_RARITY = 2 + +@export var used = false : set = set_used + +func _ready(): + set_used() + +func set_used(v = used): + used = v + available = not used + if is_node_ready(): + %AnimationPlayer.play("squeeze") + await get_tree().create_timer(0.2).timeout + %SpriteOff.visible = used + %SpriteOn.visible = not used + +func interact(p : Player) -> bool: + if not used and region: + used = true + available = false + var new_seed = Seed.generate_random(SEED_RARITY) + + p.region.drop_item( + new_seed, + global_position, + 10 + ) + + interacted.emit(p) + + region.data.used_objects.append(name) + + AudioManager.play_sfx("Drop") + + return true + return false diff --git a/entities/interactables/talion_cell/scripts/talion_cell.gd.uid b/entities/interactables/talion_cell/scripts/talion_cell.gd.uid new file mode 100644 index 0000000..208d50b --- /dev/null +++ b/entities/interactables/talion_cell/scripts/talion_cell.gd.uid @@ -0,0 +1 @@ +uid://1xhrot6srly6 diff --git a/entities/interactables/talion_cell/talion_cell.tscn b/entities/interactables/talion_cell/talion_cell.tscn new file mode 100644 index 0000000..812235e --- /dev/null +++ b/entities/interactables/talion_cell/talion_cell.tscn @@ -0,0 +1,100 @@ +[gd_scene format=3 uid="uid://cfxowdtmvxbtt"] + +[ext_resource type="Script" uid="uid://1xhrot6srly6" path="res://entities/interactables/talion_cell/scripts/talion_cell.gd" id="1_lsc7u"] +[ext_resource type="Texture2D" uid="uid://bk2w3tophr7nh" path="res://entities/interactables/talion_cell/assets/sprites/talion_cell_off.png" id="2_ei886"] +[ext_resource type="Texture2D" uid="uid://qef2wvgb62cb" path="res://entities/interactables/talion_cell/assets/sprites/talion_cell_on.png" id="3_d2c63"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_ylpt4"] +radius = 39.115215 + +[sub_resource type="Animation" id="Animation_lsc7u"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprites:scale:x") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0000001] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprites:scale:y") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0000001] +} + +[sub_resource type="Animation" id="Animation_ei886"] +resource_name = "squeeze" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprites:scale:x") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.16666667, 0.33333334, 0.5), +"transitions": PackedFloat32Array(1, 1, 1, 1), +"update": 0, +"values": [1.0000001, 0.705, 1.5, 1.0000001] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprites:scale:y") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.16666667, 0.33333334, 0.5), +"transitions": PackedFloat32Array(1, 1, 1, 1), +"update": 0, +"values": [1.0000001, 1.5, 0.7, 1.0000001] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_d2c63"] +_data = { +&"RESET": SubResource("Animation_lsc7u"), +&"squeeze": SubResource("Animation_ei886") +} + +[node name="TalionCell" type="Area2D" unique_id=1375150025] +script = ExtResource("1_lsc7u") +default_interact_text = "OPEN" +default_info_title = "TALION_CELL" +default_info_desc = "TALION_CELL_DESC_TEXT" +metadata/_custom_type_script = "uid://dyprcd68fjstf" + +[node name="Sprites" type="Node2D" parent="." unique_id=979185380] +scale = Vector2(1.0000001, 1.0000001) + +[node name="SpriteOff" type="Sprite2D" parent="Sprites" unique_id=1278139902] +unique_name_in_owner = true +visible = false +position = Vector2(0, -11.999998) +scale = Vector2(0.17999999, 0.17999999) +texture = ExtResource("2_ei886") + +[node name="SpriteOn" type="Sprite2D" parent="Sprites" unique_id=750798992] +unique_name_in_owner = true +position = Vector2(0, -11.999998) +scale = Vector2(0.17999999, 0.17999999) +texture = ExtResource("3_d2c63") + +[node name="CollisionShape2D" type="CollisionShape2D" parent="." unique_id=836925562] +position = Vector2(0, -11.999998) +shape = SubResource("CircleShape2D_ylpt4") + +[node name="AnimationPlayer" type="AnimationPlayer" parent="." unique_id=1320210428] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_d2c63") diff --git a/entities/interactables/truck/recharge/scripts/truck_recharge.gd b/entities/interactables/truck/recharge/scripts/truck_recharge.gd index 4480d35..e006e5b 100644 --- a/entities/interactables/truck/recharge/scripts/truck_recharge.gd +++ b/entities/interactables/truck/recharge/scripts/truck_recharge.gd @@ -6,15 +6,18 @@ func _ready(): update() func update(): - %EnergyTextContainer.modulate = Color.WHITE if region.data.charges > 0 else Color.RED + %EnergyTextContainer.modulate = ( + Color.WHITE if region.data.charges > 0 + else Color.RED ) %EnergyText.text = str(region.data.charges) + if not region.data.pass_day_ended.is_connected(update): + region.data.pass_day_ended.connect(update) func can_interact(_p : Player) -> bool: return ( region != null and region.data and region.data.charges > 0 - and region.data.state == RegionData.State.IN_PROGRESS ) func interact(_p: Player) -> bool: diff --git a/entities/interactables/truck/recharge/truck_recharge.tscn b/entities/interactables/truck/recharge/truck_recharge.tscn index d726b3e..43b0d7b 100644 --- a/entities/interactables/truck/recharge/truck_recharge.tscn +++ b/entities/interactables/truck/recharge/truck_recharge.tscn @@ -15,9 +15,8 @@ font_size = 30 radius = 43.0 height = 116.0 -[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_bjhct"] -radius = 38.45475 -height = 76.9095 +[sub_resource type="CircleShape2D" id="CircleShape2D_ot7vv"] +radius = 22.803507 [node name="TruckRecharge" type="Area2D" unique_id=1099196706] script = ExtResource("1_ipgcv") @@ -76,4 +75,4 @@ shape = SubResource("CapsuleShape2D_ot7vv") [node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D" unique_id=842130596] position = Vector2(12.000001, -41.000004) rotation = 0.18545866 -shape = SubResource("CapsuleShape2D_bjhct") +shape = SubResource("CircleShape2D_ot7vv") diff --git a/entities/plants/plant_sprite.tscn b/entities/plants/plant_sprite.tscn index 55a3450..dc19eb3 100644 --- a/entities/plants/plant_sprite.tscn +++ b/entities/plants/plant_sprite.tscn @@ -5,8 +5,8 @@ [ext_resource type="Texture2D" uid="uid://do3wxh7k38m7u" path="res://entities/plants/assets/sprites/seed_buried_texture.png" id="3_rbgiq"] [sub_resource type="CapsuleShape2D" id="CapsuleShape2D_rbgiq"] -radius = 22.0 -height = 50.0 +radius = 26.0 +height = 52.0 [sub_resource type="AtlasTexture" id="AtlasTexture_wyuub"] atlas = ExtResource("3_j6jm5") @@ -164,7 +164,7 @@ _data = { script = ExtResource("1_pq8o7") [node name="CollisionShape2D" type="CollisionShape2D" parent="." unique_id=1893251777] -position = Vector2(0, -14) +position = Vector2(0, -2) shape = SubResource("CapsuleShape2D_rbgiq") [node name="Sprite" type="Sprite2D" parent="." unique_id=1693882598] diff --git a/entities/plants/scripts/plant.gd b/entities/plants/scripts/plant.gd index da79e44..8c6387e 100644 --- a/entities/plants/scripts/plant.gd +++ b/entities/plants/scripts/plant.gd @@ -9,10 +9,10 @@ const HARVESTED_SEED_DISPLACEMENT_FACTOR = 100 const RANDOM_MAX_GROW_INTERVAL = Region.MIN_PASS_DAY_ANIMATION_TIME/2. - 0.1 const PLANT_TYPE_ICON = preload("res://common/icons/seedling.svg") const SCORE_ICON = preload("res://common/icons/growth.svg") -const DURATION_ICON = preload("res://common/icons/calendar-week.svg") +const DURATION_ICON = preload("res://common/icons/clock.svg") const SHOVEL_ICON = preload("res://common/icons/shovel.svg") -const GROWING_ICON = preload("res://common/icons/chevrons-up.svg") -const LIFETIME_ICON= preload("res://common/icons/clock.svg") +const GROWING_ICON = preload("res://common/icons/clock-up.svg") +const LIFETIME_ICON= preload("res://common/icons/clock-death.svg") const SEED_ICON = preload("res://common/icons/seeds.svg") const SPRITE_SCENE : PackedScene = preload("res://entities/plants/plant_sprite.tscn") diff --git a/entities/plants/scripts/plant_data.gd b/entities/plants/scripts/plant_data.gd index 0e5c9c1..c20e4fa 100644 --- a/entities/plants/scripts/plant_data.gd +++ b/entities/plants/scripts/plant_data.gd @@ -67,12 +67,12 @@ func get_growing_time() -> int: for m in mutations: growing_time = m.mutate_growing_time(self , growing_time) - return growing_time + return max(1,growing_time) func get_score(state: State = get_state()) -> int: var score = get_plant_info().get_base_score() if state == State.MATURE else 0 - var mult := 1 + var mult := 1. for m in mutations: score = m.mutate_score(self , score) @@ -81,7 +81,7 @@ func get_score(state: State = get_state()) -> int: for pd in nearby_plants: score += pd.get_score_buff() - return max(0,score) * max(0,mult) + return ceili(max(0,score) * max(0,mult)) func get_state() -> State: if day >= get_lifetime(): diff --git a/entities/plants/scripts/plant_mutation.gd b/entities/plants/scripts/plant_mutation.gd index 2119368..85b84ca 100644 --- a/entities/plants/scripts/plant_mutation.gd +++ b/entities/plants/scripts/plant_mutation.gd @@ -2,6 +2,8 @@ extends Resource class_name PlantMutation +const MAX_RARITY = 6 + @export var level: int = 1 var id: String: get = get_mutation_id @@ -29,7 +31,7 @@ func mutate_plant_data(_plant_data: PlantData): func mutate_score(_plant_data: PlantData, score: int) -> int: return score -func mutate_score_multiplier(_plant_data: PlantData, multiplier: int) -> int: +func mutate_score_multiplier(_plant_data: PlantData, multiplier: float) -> float: return multiplier func mutate_lifetime(_plant_data: PlantData, lifetime: int) -> int: @@ -118,10 +120,11 @@ static func get_rarity_text(rarity) -> String: static func get_rarity_color(rarity: int) -> Color: var rarity_colors: Array[Color] = [ - Color("2364AA"), - Color("25C147"), - Color("8B2DFF"), - Color("FF006E"), + Color("25c147"), + Color("00c6ca"), + Color("8b2dff"), + Color("ff006e"), + Color("ff5427"), Color("FFA617"), ] diff --git a/entities/plants/scripts/plant_mutation/ancient_mutation.gd b/entities/plants/scripts/plant_mutation/ancient_mutation.gd index 2dfb96a..7e36c5a 100644 --- a/entities/plants/scripts/plant_mutation/ancient_mutation.gd +++ b/entities/plants/scripts/plant_mutation/ancient_mutation.gd @@ -2,7 +2,7 @@ extends PlantMutation class_name AncientMutation -const DEFAULT_DAY_FACTOR = 4 +const DEFAULT_DAY_FACTOR = 3 func get_icon() -> Texture: return preload("res://common/icons/wood.svg") diff --git a/entities/plants/scripts/plant_mutation/fertile_mutation.gd b/entities/plants/scripts/plant_mutation/fertile_mutation.gd index 1896d17..aeba8dd 100644 --- a/entities/plants/scripts/plant_mutation/fertile_mutation.gd +++ b/entities/plants/scripts/plant_mutation/fertile_mutation.gd @@ -21,11 +21,15 @@ func get_mutation_description() -> String: "score_icon": Text.bbcode_icon(Plant.SCORE_ICON), }) -func mutate_seed_buff(_plant_data: PlantData, seed_buff) -> int: - return seed_buff + get_seed_buff() +func mutate_seed_buff(data: PlantData, seed_buff) -> int: + if data.get_state() == PlantData.State.MATURE: + return seed_buff + get_seed_buff() + return seed_buff -func mutate_score(_plant_data: PlantData, score: int) -> int: - return score + get_score_change() +func mutate_score(data: PlantData, score: int) -> int: + if data.get_state() == PlantData.State.MATURE: + return score + get_score_change() + return score func get_seed_buff(): return level diff --git a/entities/plants/scripts/plant_mutation/generous_mutation.gd b/entities/plants/scripts/plant_mutation/generous_mutation.gd index c8d0eea..37007bf 100644 --- a/entities/plants/scripts/plant_mutation/generous_mutation.gd +++ b/entities/plants/scripts/plant_mutation/generous_mutation.gd @@ -16,8 +16,8 @@ func get_mutation_description() -> String: "score_icon": Text.bbcode_icon(Plant.SCORE_ICON) }) -func mutate_score_multiplier(plant_data: PlantData, multiplier: int) -> int: - return multiplier - 1 +func mutate_score_multiplier(_pd: PlantData, _m: float) -> float: + return 0 func mutate_score_buff(plant_data: PlantData, score_buff : int) -> int: if plant_data.get_state() == PlantData.State.MATURE: diff --git a/entities/plants/scripts/plant_mutation/prolific_mutation.gd b/entities/plants/scripts/plant_mutation/prolific_mutation.gd index ace53e7..9cd7602 100644 --- a/entities/plants/scripts/plant_mutation/prolific_mutation.gd +++ b/entities/plants/scripts/plant_mutation/prolific_mutation.gd @@ -2,7 +2,7 @@ extends PlantMutation class_name ProlificMutation func get_icon() -> Texture: - return preload("res://common/icons/droplets.svg") + return preload("res://common/icons/seeds.svg") func get_mutation_id() -> String: return "PROLIFIC" diff --git a/entities/plants/scripts/plant_mutation/pure_mutation.gd b/entities/plants/scripts/plant_mutation/pure_mutation.gd index e91bf61..e4b10c4 100644 --- a/entities/plants/scripts/plant_mutation/pure_mutation.gd +++ b/entities/plants/scripts/plant_mutation/pure_mutation.gd @@ -16,7 +16,7 @@ func get_mutation_description() -> String: "score_multiplier": get_score_multiplier() + 1, }) -func mutate_score_multiplier(plant_data: PlantData, multiplier: int) -> int: +func mutate_score_multiplier(plant_data: PlantData, multiplier: float) -> float: if plant_data.decontamination_area_factor == 1.0: return multiplier + get_score_multiplier() return multiplier diff --git a/entities/plants/scripts/plant_mutation/social_mutation.gd b/entities/plants/scripts/plant_mutation/social_mutation.gd index 06d09de..35083db 100644 --- a/entities/plants/scripts/plant_mutation/social_mutation.gd +++ b/entities/plants/scripts/plant_mutation/social_mutation.gd @@ -1,7 +1,7 @@ extends PlantMutation class_name SocialMutation -const DEFAULT_PLANT_BY_POINT = 4 +const DEFAULT_PLANT_BY_POINT = 3 func get_icon() -> Texture: return preload("res://common/icons/users-group.svg") diff --git a/entities/plants/scripts/plant_mutation/tough_mutation.gd b/entities/plants/scripts/plant_mutation/tough_mutation.gd index e1e1c21..61a0a77 100644 --- a/entities/plants/scripts/plant_mutation/tough_mutation.gd +++ b/entities/plants/scripts/plant_mutation/tough_mutation.gd @@ -13,19 +13,19 @@ func get_mutation_name() -> String: func get_mutation_description() -> String: return tr("TOUGH_EFFECT_TEXT").format({ "score_icon": Text.bbcode_icon(Plant.SCORE_ICON), - "score_multiplier": get_score_multiplier(), + "score_multiplier": get_score_multiplier() + 1., "growing_time": get_growing_time_increase(), "growing_icon": Text.bbcode_icon(Plant.GROWING_ICON) }) -func mutate_score_multiplier(_plant_data: PlantData, multiplier: int) -> int: - return multiplier * get_score_multiplier() +func mutate_score_multiplier(_plant_data: PlantData, multiplier: float) -> float: + return multiplier + get_score_multiplier() func mutate_growing_time(_plant_data: PlantData, growing_time: int) -> int: - return maxi(0, growing_time + get_growing_time_increase()) + return growing_time + maxi(0, get_growing_time_increase()) func get_growing_time_increase()->int: - return 4 - level - -func get_score_multiplier()->int: return 2 + +func get_score_multiplier()->float: + return 0.5 * level diff --git a/entities/player/inventory/scripts/items/fork.gd b/entities/player/inventory/scripts/items/fork.gd index 00c074f..217c197 100644 --- a/entities/player/inventory/scripts/items/fork.gd +++ b/entities/player/inventory/scripts/items/fork.gd @@ -22,7 +22,7 @@ func get_usage_zone_radius() -> int: return 10 func get_usage_object_affected(i : Area2D) -> bool: - return i is Plant + return i is Plant and Pointer.inspected == i func use_text() -> String: return tr("HARVEST") @@ -30,14 +30,14 @@ func use_text() -> String: func can_use(_player : Player, zone : Player.ActionZone) -> bool: var areas = zone.get_affected_areas() for area in areas : - if area is Plant: + if area is Plant and Pointer.inspected == area: return true return false func use(player : Player, zone : Player.ActionZone) -> bool: var has_plant = false for area in zone.get_affected_areas(): - if area and area is Plant: + if area and area is Plant and Pointer.inspected == area: harvest(area, player) await player.get_tree().create_timer(USE_INTERVAL).timeout has_plant = true diff --git a/entities/player/inventory/scripts/items/seed.gd b/entities/player/inventory/scripts/items/seed.gd index d608b5e..8ed7b0a 100644 --- a/entities/player/inventory/scripts/items/seed.gd +++ b/entities/player/inventory/scripts/items/seed.gd @@ -2,7 +2,6 @@ extends Item class_name Seed const SHOVEL_ICON = preload("res://common/icons/shovel.svg") -const GROWING_ICON = preload("res://common/icons/chevrons-up.svg") const SCORE_ICON = preload("res://common/icons/growth.svg") @export var plant_name : String @@ -21,12 +20,16 @@ func _init( static func generate_from_parent(plant_data : PlantData) -> Seed: var mutations : Array[PlantMutation] = plant_data.mutations var mutation_probability = GameInfo.game_data.current_run.plant_info.get_mutation_probability() - + # Mutate for every time mutation probability exceed 1 while mutation_probability > 1: mutations = mutate_mutations(plant_data.mutations) mutation_probability -= 1 + mutations.sort_custom( + func (a : PlantMutation, b : PlantMutation): return a.get_mutation_name() < b.get_mutation_name() + ) + if ( plant_data.get_state() == PlantData.State.MATURE and randf() < GameInfo.game_data.current_run.plant_info.get_mutation_probability() @@ -168,13 +171,17 @@ static func generate_first_mutations(rarity := 0) -> Array[PlantMutation]: static func mutate_mutations(mutations : Array[PlantMutation]) -> Array[PlantMutation]: var mutation_possibility : Array[MutationPossibility] = [] + + var evolvable_mutations : Array[PlantMutation] = mutations.filter( + func (m : PlantMutation): return m.get_rarity() < PlantMutation.MAX_RARITY + ) if ( len(mutations) < GameInfo.game_data.current_run.plant_info.get_mutation_max_number() ): mutation_possibility.append(AddMutation.new()) - if len(mutations) > 0: + if len(evolvable_mutations) > 0: mutation_possibility.append(UpgradeMutation.new()) var chosen_mutation_possibility = mutation_possibility.pick_random() @@ -206,7 +213,15 @@ class UpgradeMutation extends MutationPossibility: ) -> Array[PlantMutation]: var new_mutations = mutations.duplicate_deep() - new_mutations.pick_random().level += 1 + var evolvable_mutations_id : Array[int] = [] + + for i in range(len(mutations)): + var m = mutations[i] + if m.get_rarity() < PlantMutation.MAX_RARITY: + evolvable_mutations_id.append(i) + + if len(evolvable_mutations_id): + new_mutations[evolvable_mutations_id.pick_random()].level += 1 return new_mutations diff --git a/entities/player/player.tscn b/entities/player/player.tscn index 22e3e5e..30e77f6 100644 --- a/entities/player/player.tscn +++ b/entities/player/player.tscn @@ -6,6 +6,7 @@ [ext_resource type="Texture2D" uid="uid://c7ff87jniga5m" path="res://entities/player/assets/sprites/robot.png" id="4_bls4j"] [ext_resource type="Texture2D" uid="uid://drgl0d51d4cf7" path="res://entities/player/assets/sprites/radial-gradient.png" id="5_8fjmc"] [ext_resource type="Script" uid="uid://b1mmtgmi5oq86" path="res://entities/player/scripts/player_sprite.gd" id="5_fkugw"] +[ext_resource type="Texture2D" uid="uid://51255tpyl6vj" path="res://common/icons/no-bolt.svg" id="7_26q78"] [ext_resource type="AudioStream" uid="uid://cv5avkd3qekt7" path="res://common/audio_manager/assets/sfx/movement/movement.wav" id="7_qiwj3"] [sub_resource type="CircleShape2D" id="CircleShape2D_sglur"] @@ -15,13 +16,13 @@ radius = 13.0 radius = 40.0 [sub_resource type="Gradient" id="Gradient_qiwj3"] -offsets = PackedFloat32Array(0.37339056, 0.49785408) +offsets = PackedFloat32Array(0.25, 0.4) colors = PackedColorArray(0.043137256, 0.050980393, 0.15686275, 0, 0.043137256, 0.050980393, 0.15686275, 1) [sub_resource type="GradientTexture2D" id="GradientTexture2D_26q78"] gradient = SubResource("Gradient_qiwj3") -width = 600 -height = 600 +width = 1000 +height = 1000 fill = 1 fill_from = Vector2(0.5, 0.5) fill_to = Vector2(0.5, 0) @@ -136,6 +137,41 @@ point_count = 2 offsets = PackedFloat32Array(0, 0.77729255, 1) colors = PackedColorArray(0.5803922, 0.7058824, 0.8862745, 1, 0.5785, 0.70829165, 0.89, 1, 0.5785, 0.70829165, 0.89, 0) +[sub_resource type="Animation" id="Animation_bectd"] +length = 0.001 +tracks/0/type = "bezier" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:position:y") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"handle_modes": PackedInt32Array(0), +"points": PackedFloat32Array(0, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0) +} + +[sub_resource type="Animation" id="Animation_wvtmh"] +resource_name = "bounce" +loop_mode = 1 +tracks/0/type = "bezier" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:position:y") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"handle_modes": PackedInt32Array(2, 2), +"points": PackedFloat32Array(-1097.2793, 0, 0, 0, -139.75659, -1097.2793, 0, -112.66321, 0, 0), +"times": PackedFloat32Array(0, 1) +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_7thud"] +_data = { +&"RESET": SubResource("Animation_bectd"), +&"bounce": SubResource("Animation_wvtmh") +} + [sub_resource type="Animation" id="Animation_fkugw"] length = 0.001 tracks/0/type = "value" @@ -256,6 +292,7 @@ position = Vector2(0, -17) shape = SubResource("CircleShape2D_sglur") [node name="InteractArea2D" type="Area2D" parent="." unique_id=1048722411] +unique_name_in_owner = true position = Vector2(0, -12) [node name="CollisionShape2D" type="CollisionShape2D" parent="InteractArea2D" unique_id=1242017003] @@ -271,7 +308,7 @@ texture = ExtResource("2_fkugw") [node name="Fog" type="Sprite2D" parent="." unique_id=1590893330] z_index = 10 position = Vector2(0.99999994, -17) -scale = Vector2(8, 8) +scale = Vector2(5.8320003, 5.8320003) texture = SubResource("GradientTexture2D_26q78") [node name="PlayerSprite" type="AnimatedSprite2D" parent="." unique_id=638545037] @@ -303,6 +340,17 @@ gravity = Vector2(0, 100) scale_amount_curve = SubResource("Curve_fkugw") color_ramp = SubResource("Gradient_bls4j") +[node name="NoEnergyLeftIcon" type="Sprite2D" parent="PlayerSprite" unique_id=1059424679] +unique_name_in_owner = true +modulate = Color(1, 0, 0.43137255, 1) +position = Vector2(-15.239998, 0) +scale = Vector2(10.16, 10.16) +texture = ExtResource("7_26q78") + +[node name="AnimationPlayer" type="AnimationPlayer" parent="PlayerSprite/NoEnergyLeftIcon" unique_id=390014722] +libraries/ = SubResource("AnimationLibrary_7thud") +autoplay = &"bounce" + [node name="MovementAudioStreamPlayer" type="AudioStreamPlayer" parent="." unique_id=20243230] unique_name_in_owner = true stream = ExtResource("7_qiwj3") diff --git a/entities/player/scripts/player.gd b/entities/player/scripts/player.gd index 90b0818..26509fa 100644 --- a/entities/player/scripts/player.gd +++ b/entities/player/scripts/player.gd @@ -6,6 +6,7 @@ const MAX_REACH = 100 const HOLDING_ITEM_SPRITE_SIZE = 20. const TURN_ANIMATION_MINIMUM_THRESHOLD = 0.2 const SPEED = 350 +const JUST_DROPPED_ITEM_UPDATE_INTERVAL = 1. signal player_updated(player: Player) signal upgraded @@ -30,15 +31,22 @@ var instruction : Instruction = null : if instruction and is_node_ready(): instruction.spawn_indicator(self) +var just_dropped_item_objects : Array = [] +var last_just_dropped_item_objects_updated := 0. + +var elapsed_time := 0. + @onready var preview_zone : ActionZone = await setup_action_zone(Vector2.ZERO, null) @onready var action_zone : ActionZone = await setup_action_zone(Vector2.ZERO, null) func _ready(): data = GameInfo.game_data.player_data + data.updated.connect(_on_data_changed) data.inventory.updated.connect(_on_inventory_updated) player_updated.emit(self) Pointer.player = self setup_preview_zone(data.inventory.get_item()) + %NoEnergyLeftIcon.visible = data.energy == 0 func appear(with_falling_animation = true): if with_falling_animation: @@ -70,6 +78,7 @@ func _end_pass_day(): controlling_player = true func _process(delta): + elapsed_time += delta last_action_area_movement_timer += delta if controlling_player: @@ -99,12 +108,39 @@ func _process(delta): elif velocity != Vector2.ZERO and %MovementAudioStreamPlayer.playing == false: %MovementAudioStreamPlayer.play() + # print("-----") + # print(elapsed_time) + # print(last_just_dropped_item_objects_updated) + if elapsed_time > last_just_dropped_item_objects_updated + JUST_DROPPED_ITEM_UPDATE_INTERVAL: + update_just_dropped_item_objects() + + take_surrounding_seeds() + move_and_slide() +func _on_data_changed(pd : PlayerData): + %NoEnergyLeftIcon.visible = pd.energy == 0 + func _on_inventory_updated(_inventory: Inventory): setup_preview_zone(data.inventory.get_item()) emit_signal("player_updated", self) +func update_just_dropped_item_objects(): + last_just_dropped_item_objects_updated = elapsed_time + var overlapping_areas = (%InteractArea2D as Area2D).get_overlapping_areas() + just_dropped_item_objects = just_dropped_item_objects.filter( + func (i : ItemObject): return i in overlapping_areas + ) + +func take_surrounding_seeds(): + var overlapping_areas = (%InteractArea2D as Area2D).get_overlapping_areas() + + if not data.inventory.is_full(): + for area in overlapping_areas: + if area is ItemObject and not area in just_dropped_item_objects: + area.interact(self) + return + func calculate_direction_instruction_direction() -> Vector2: if ( instruction @@ -189,7 +225,8 @@ func drop_item(): var item_to_drop : Item = data.inventory.pop_item(ind_to_drop) if item_to_drop and item_to_drop.type != Item.ItemType.TOOL_ITEM: - terrain.drop_item(item_to_drop, global_position) + var dropped_item_object = terrain.drop_item(item_to_drop, global_position) + just_dropped_item_objects.append(dropped_item_object) AudioManager.play_sfx("Drop") region.save() diff --git a/entities/player/scripts/player_data.gd b/entities/player/scripts/player_data.gd index c0e3420..d752dec 100644 --- a/entities/player/scripts/player_data.gd +++ b/entities/player/scripts/player_data.gd @@ -10,7 +10,7 @@ const DEFAULT_INVENTORY_SIZE = 3 @export var energy : int = DEFAULT_MAX_ENERGY : set(v): - energy = v + energy = min(v,max_energy) updated.emit(self) @export var inventory := Inventory.new(DEFAULT_INVENTORY_SIZE) diff --git a/entities/player_3d/player_3D.tscn b/entities/player_3d/player_3D.tscn index 209d64d..302bc4b 100644 --- a/entities/player_3d/player_3D.tscn +++ b/entities/player_3d/player_3D.tscn @@ -2,15 +2,20 @@ [ext_resource type="Script" uid="uid://3rrym6yv7xyp" path="res://entities/player_3d/scripts/player_3d.gd" id="1_pvvbh"] [ext_resource type="Material" uid="uid://cr7bp4fhh1ipr" path="res://entities/player_3d/resources/materials/post_process_quad.tres" id="2_fcmrk"] +[ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="4_o44vi"] [ext_resource type="Texture2D" uid="uid://ba8vh5h3r6pr2" path="res://common/icons/focus.svg" id="4_sbfo8"] [sub_resource type="QuadMesh" id="QuadMesh_o44vi"] -size = Vector2(2, 2) +size = Vector2(3, 3) [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_eodxe"] radius = 0.5854492 height = 1.7342377 +[sub_resource type="LabelSettings" id="LabelSettings_fcmrk"] +font = ExtResource("4_o44vi") +font_size = 30 + [sub_resource type="Gradient" id="Gradient_dqi2u"] interpolation_mode = 1 offsets = PackedFloat32Array(0.7046632, 0.78238344, 1) @@ -54,8 +59,8 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.19785136, 0) current = true near = 0.003 -[node name="MeshInstance3D" type="MeshInstance3D" parent="Camera3D" unique_id=1477584785] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.1755164e-08, 0, -0.46892682) +[node name="Outline" type="MeshInstance3D" parent="Camera3D" unique_id=1477584785] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.9337665e-08, 0, -0.87116754) mesh = SubResource("QuadMesh_o44vi") surface_material_override/0 = ExtResource("2_fcmrk") @@ -88,6 +93,36 @@ size_flags_vertical = 4 texture = ExtResource("4_sbfo8") expand_mode = 1 +[node name="3dTutorial" type="MarginContainer" parent="CanvasLayer" unique_id=259323543] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 + +[node name="MoveTutorial" type="Label" parent="CanvasLayer/3dTutorial" unique_id=1165378520] +unique_name_in_owner = true +visible = false +layout_mode = 2 +size_flags_vertical = 0 +text = "MOVE_WITH_RIGHT_CLICK_OR_WASD" +label_settings = SubResource("LabelSettings_fcmrk") +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="InteractTutorial" type="Label" parent="CanvasLayer/3dTutorial" unique_id=1117243867] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 0 +text = "INTERACT_WITH_LEFT_CLICK" +label_settings = SubResource("LabelSettings_fcmrk") +horizontal_alignment = 1 +vertical_alignment = 1 + [node name="CPUParticles3D" type="CPUParticles3D" parent="." unique_id=1470634574] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.66324395, 0) amount = 5 diff --git a/entities/player_3d/resources/materials/post_process_quad.tres b/entities/player_3d/resources/materials/post_process_quad.tres index 0c44377..20af9ae 100644 --- a/entities/player_3d/resources/materials/post_process_quad.tres +++ b/entities/player_3d/resources/materials/post_process_quad.tres @@ -5,7 +5,7 @@ [resource] render_priority = 0 shader = ExtResource("1_tvsbc") -shader_parameter/step_count = 3 +shader_parameter/step_count = 5 shader_parameter/thickness = 2.0000000149012003 shader_parameter/edge_color = Color(0.0627451, 0.05882353, 0.16862746, 1) shader_parameter/fade_start = 100.0 diff --git a/entities/player_3d/scripts/player_3d.gd b/entities/player_3d/scripts/player_3d.gd index ab8cfdf..cb285f7 100644 --- a/entities/player_3d/scripts/player_3d.gd +++ b/entities/player_3d/scripts/player_3d.gd @@ -11,7 +11,7 @@ const MOUSE_SENSIVITY = 0.002 const RAY_LENGTH = 10. const PUSH_FORCE = 0.6 -var cockpit_action_hovered : Interactable3D = null +var action_hovered : Interactable3D = null var query_mouse := false @export var controlling_player = true @@ -28,22 +28,30 @@ func _ready(): controlling_player = true ) + %MoveTutorial.visible = not "3d_move" in GameInfo.game_data.tutorials_done + %InteractTutorial.visible = false + func _input(event): - if event is InputEventMouseMotion and Input.mouse_mode == Input.MOUSE_MODE_CAPTURED: - rotate_y(-event.relative.x * MOUSE_SENSIVITY) - %Camera3D.rotate_x(-event.relative.y * MOUSE_SENSIVITY) - %Camera3D.rotation.x = clampf($Camera3D.rotation.x, -deg_to_rad(70), deg_to_rad(70)) - query_mouse = true - if event.is_action_pressed("action") and cockpit_action_hovered and cockpit_action_hovered.interactable: - cockpit_action_hovered.click() + if controlling_player: + if event is InputEventMouseMotion and Input.mouse_mode == Input.MOUSE_MODE_CAPTURED: + rotate_y(-event.relative.x * MOUSE_SENSIVITY) + %Camera3D.rotate_x(-event.relative.y * MOUSE_SENSIVITY) + %Camera3D.rotation.x = clampf($Camera3D.rotation.x, -deg_to_rad(70), deg_to_rad(70)) + query_mouse = true + if event.is_action_pressed("action") and action_hovered and action_hovered.interactable: + if %InteractTutorial.visible: + var tween = create_tween() + tween.tween_property(%InteractTutorial, "modulate:a", 0., 0.8) + GameInfo.game_data.tutorials_done.append("3d_action") + action_hovered.click() func _physics_process(delta): if controlling_player: if query_mouse: - update_mouse_hovered_cockpit_actions() + update_mouse_hovered_actions() %PointerTexture.texture = ( - POINTER_ACTION_TEXTURE if cockpit_action_hovered != null and cockpit_action_hovered.interactable + POINTER_ACTION_TEXTURE if action_hovered != null and action_hovered.interactable else POINTER_TEXTURE ) query_mouse = false @@ -60,6 +68,12 @@ func _physics_process(delta): else: velocity.x = move_toward(velocity.x, 0, speed) velocity.z = move_toward(velocity.z, 0, speed) + + if %MoveTutorial.visible and direction.length(): + var tween = create_tween() + tween.tween_property(%MoveTutorial, "modulate:a", 0., 0.8) + GameInfo.game_data.tutorials_done.append("3d_move") + else : velocity = Vector3.ZERO @@ -75,7 +89,7 @@ func _physics_process(delta): -collision.get_normal() * PUSH_FORCE ) -func update_mouse_hovered_cockpit_actions() -> void: +func update_mouse_hovered_actions() -> void: var space_state = get_world_3d().direct_space_state var middle_screen = get_viewport().get_visible_rect().size / 2 @@ -87,12 +101,19 @@ func update_mouse_hovered_cockpit_actions() -> void: var result = space_state.intersect_ray(query) if result and result.collider and result.collider is Interactable3D: - if cockpit_action_hovered != result.collider: - if cockpit_action_hovered and cockpit_action_hovered != result.collider: - cockpit_action_hovered._on_mouse_exited() - cockpit_action_hovered = result.collider - cockpit_action_hovered._on_mouse_entered() + + if action_hovered != result.collider: + if action_hovered and action_hovered != result.collider: + action_hovered._on_mouse_exited() + action_hovered = result.collider + action_hovered._on_mouse_entered() + + if not "3d_action" in GameInfo.game_data.tutorials_done: + %InteractTutorial.visible = true + %InteractTutorial.modulate.a = 0. + var tween = create_tween() + tween.tween_property(%InteractTutorial, "modulate:a", 1., 0.2) else : - if cockpit_action_hovered: - cockpit_action_hovered._on_mouse_exited() - cockpit_action_hovered = null + if action_hovered: + action_hovered._on_mouse_exited() + action_hovered = null diff --git a/entities/scripts/entity.gd b/entities/scripts/entity.gd index 45c845b..f5b3449 100644 --- a/entities/scripts/entity.gd +++ b/entities/scripts/entity.gd @@ -1,9 +1,13 @@ extends Area2D class_name Entity -var terrain : Terrain +var terrain : Terrain : set = set_terrain var region : Region : get(): return terrain if terrain is Region else null +func set_terrain(v : Terrain): + print(v) + terrain = v + func save() -> EntityData: return null diff --git a/gui/credits/credits.tscn b/gui/credits/credits.tscn index 1f60f58..66a56f3 100644 --- a/gui/credits/credits.tscn +++ b/gui/credits/credits.tscn @@ -1,34 +1,142 @@ [gd_scene format=3 uid="uid://c5a32n6rjjlnt"] -[ext_resource type="Shader" uid="uid://cuni3ggtw2uuy" path="res://common/vfx/materials/shaders/blur.gdshader" id="1_yknhu"] +[ext_resource type="Script" uid="uid://di3p2tmuw6ack" path="res://gui/credits/scripts/credits.gd" id="1_kip8e"] [ext_resource type="Theme" uid="uid://5au2k3vf2po3" path="res://gui/ressources/menu.tres" id="2_luv2b"] [ext_resource type="Texture2D" uid="uid://cdpqg3pkjcw2h" path="res://stages/title_screen/assets/textures/title.png" id="3_urbel"] [ext_resource type="LabelSettings" uid="uid://dqwayi8yjwau2" path="res://gui/ressources/title_label_settings.tres" id="4_5k6jv"] -[ext_resource type="PackedScene" uid="uid://bpy6sqa71gcfm" path="res://gui/credits/socials/survey.tscn" id="5_5k6jv"] [ext_resource type="PackedScene" uid="uid://bc3byq8e45ejj" path="res://gui/credits/socials/steam.tscn" id="5_luv2b"] -[ext_resource type="PackedScene" uid="uid://c8flevrkelpvy" path="res://gui/credits/socials/instagram.tscn" id="5_yknhu"] +[ext_resource type="Texture2D" uid="uid://baaujfw8piywi" path="res://common/icons/dna.svg" id="6_kip8e"] [ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="7_urbel"] +[ext_resource type="Texture2D" uid="uid://b75k12a4wc5t4" path="res://common/icons/book-2.svg" id="8_a8ny4"] +[ext_resource type="Texture2D" uid="uid://dbv5hm7lyi1f6" path="res://common/icons/infinity.svg" id="9_xl2r5"] -[sub_resource type="ShaderMaterial" id="ShaderMaterial_67c4d"] -shader = ExtResource("1_yknhu") -shader_parameter/strength = 3.3 -shader_parameter/mix_percentage = 0.3 +[sub_resource type="LabelSettings" id="LabelSettings_m5waa"] +font = ExtResource("7_urbel") +font_size = 20 [sub_resource type="LabelSettings" id="LabelSettings_5k6jv"] font = ExtResource("7_urbel") font_size = 20 +[sub_resource type="Animation" id="Animation_5k6jv"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("MarginContainer/GridContainer:theme_override_constants/h_separation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [544] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("ColorRect:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("MarginContainer:modulate") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath(".:visible") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} + +[sub_resource type="Animation" id="Animation_kip8e"] +resource_name = "appear" +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("MarginContainer/GridContainer:theme_override_constants/h_separation") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [2000, 0] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("ColorRect:modulate") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0.033333335, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("MarginContainer:modulate") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0.43333334, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath(".:visible") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0.033333335), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [true] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_a8ny4"] +_data = { +&"RESET": SubResource("Animation_5k6jv"), +&"appear": SubResource("Animation_kip8e") +} + [node name="Credits" type="CanvasLayer" unique_id=180964898] layer = 99 +script = ExtResource("1_kip8e") [node name="ColorRect" type="ColorRect" parent="." unique_id=2001966466] -material = SubResource("ShaderMaterial_67c4d") anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -color = Color(0.0352941, 0.0196078, 0.12549, 0.705882) +color = Color(0.03529412, 0.019607844, 0.1254902, 0.8) [node name="MarginContainer" type="MarginContainer" parent="." unique_id=1349934988] anchors_preset = 15 @@ -40,6 +148,8 @@ theme = ExtResource("2_luv2b") [node name="GridContainer" type="GridContainer" parent="MarginContainer" unique_id=1426452837] layout_mode = 2 +theme_override_constants/h_separation = 544 +theme_override_constants/v_separation = 448 columns = 2 [node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/GridContainer" unique_id=1825004235] @@ -59,21 +169,64 @@ stretch_mode = 5 [node name="Label" type="Label" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=215880453] layout_mode = 2 -text = "THANKS_FOR_PLAYING" +text = "THANKS_FOR_PLAYING_DEMO" label_settings = ExtResource("4_5k6jv") horizontal_alignment = 1 -[node name="SurveyButton" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=1337726269 instance=ExtResource("5_5k6jv")] -layout_mode = 2 -size_flags_horizontal = 4 - -[node name="InstagramButton" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=68880754 instance=ExtResource("5_yknhu")] -layout_mode = 2 - [node name="SteamButton" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=1181450581 instance=ExtResource("5_luv2b")] layout_mode = 2 link = "https://store.steampowered.com/app/4444510/Seeding_The_Wasteland/" +[node name="VBoxContainer2" type="VBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=465861616] +modulate = Color(1, 0.6509804, 0.09019608, 1) +layout_mode = 2 +theme_override_constants/separation = 4 + +[node name="Label2" type="Label" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2" unique_id=1013363580] +layout_mode = 2 +text = "IN_THE_COMPLETE_GAME" +label_settings = ExtResource("4_5k6jv") +horizontal_alignment = 1 + +[node name="VBoxContainer" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2" unique_id=115205131] +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer" unique_id=148775652] +layout_mode = 2 +texture = ExtResource("6_kip8e") + +[node name="Label" type="Label" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer" unique_id=1109596403] +layout_mode = 2 +text = "TWICE_MORE_MUTATIONS" +label_settings = SubResource("LabelSettings_m5waa") + +[node name="VBoxContainer2" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2" unique_id=921966638] +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer2" unique_id=32161915] +layout_mode = 2 +texture = ExtResource("8_a8ny4") + +[node name="Label" type="Label" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer2" unique_id=578114248] +layout_mode = 2 +text = "A_3_4_HOURS_STORY" +label_settings = SubResource("LabelSettings_m5waa") + +[node name="VBoxContainer3" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2" unique_id=1755435556] +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer3" unique_id=1636037226] +layout_mode = 2 +texture = ExtResource("9_xl2r5") + +[node name="Label" type="Label" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer2/VBoxContainer3" unique_id=222316161] +layout_mode = 2 +text = "AN_INFINITE_MODE" +label_settings = SubResource("LabelSettings_m5waa") + [node name="VBoxContainer2" type="VBoxContainer" parent="MarginContainer/GridContainer" unique_id=105267250] layout_mode = 2 size_flags_horizontal = 3 @@ -116,6 +269,22 @@ layout_mode = 2 text = "MUSIC_SOUND_DESIGN_AND_WRITING" horizontal_alignment = 1 +[node name="CreditsLine4" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=1682772698] +layout_mode = 2 +size_flags_vertical = 4 +alignment = 1 + +[node name="Name" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine4" unique_id=1820679506] +layout_mode = 2 +text = "Eva" +label_settings = SubResource("LabelSettings_5k6jv") +horizontal_alignment = 1 + +[node name="Role" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine4" unique_id=557243140] +layout_mode = 2 +text = "ART" +horizontal_alignment = 1 + [node name="CreditsLine3" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=520097904] layout_mode = 2 alignment = 1 @@ -131,21 +300,6 @@ layout_mode = 2 text = "DEV_AND_GAME_DESIGN" horizontal_alignment = 1 -[node name="CreditsLine4" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=1682772698] -layout_mode = 2 -alignment = 1 - -[node name="Name" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine4" unique_id=1820679506] -layout_mode = 2 -text = "Eva" -label_settings = SubResource("LabelSettings_5k6jv") -horizontal_alignment = 1 - -[node name="Role" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine4" unique_id=557243140] -layout_mode = 2 -text = "ART" -horizontal_alignment = 1 - [node name="CreditsLine5" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=393247738] layout_mode = 2 alignment = 1 @@ -206,6 +360,21 @@ layout_mode = 2 text = "ART_GAME_JAM" horizontal_alignment = 1 +[node name="CreditsLine9" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=2120828630] +layout_mode = 2 +alignment = 1 + +[node name="Name" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine9" unique_id=1934495268] +layout_mode = 2 +text = "Margot Freuchet" +label_settings = SubResource("LabelSettings_5k6jv") +horizontal_alignment = 1 + +[node name="Role" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine9" unique_id=720118996] +layout_mode = 2 +text = "TRAILER" +horizontal_alignment = 1 + [node name="CreditsLine10" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=1089087276] layout_mode = 2 alignment = 1 @@ -221,17 +390,6 @@ layout_mode = 2 text = "SPLASH_ART" horizontal_alignment = 1 -[node name="CreditsLine9" type="HBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer2" unique_id=2120828630] -layout_mode = 2 -alignment = 1 - -[node name="Name" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine9" unique_id=1934495268] -layout_mode = 2 -text = "Margot Freuchet" -label_settings = SubResource("LabelSettings_5k6jv") -horizontal_alignment = 1 - -[node name="Role" type="Label" parent="MarginContainer/GridContainer/VBoxContainer2/CreditsLine9" unique_id=720118996] -layout_mode = 2 -text = "TRAILER" -horizontal_alignment = 1 +[node name="AnimationPlayer" type="AnimationPlayer" parent="." unique_id=1455518318] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_a8ny4") diff --git a/gui/credits/scripts/credits.gd b/gui/credits/scripts/credits.gd new file mode 100644 index 0000000..1e8bc13 --- /dev/null +++ b/gui/credits/scripts/credits.gd @@ -0,0 +1,5 @@ +extends CanvasLayer +class_name Credits + +func appear(): + %AnimationPlayer.play("appear") \ No newline at end of file diff --git a/gui/credits/scripts/credits.gd.uid b/gui/credits/scripts/credits.gd.uid new file mode 100644 index 0000000..8fd8703 --- /dev/null +++ b/gui/credits/scripts/credits.gd.uid @@ -0,0 +1 @@ +uid://di3p2tmuw6ack diff --git a/gui/dialogs/base_layout.tscn b/gui/dialogs/base_layout.tscn index f017c21..dd0b205 100644 --- a/gui/dialogs/base_layout.tscn +++ b/gui/dialogs/base_layout.tscn @@ -1,7 +1,7 @@ -[gd_scene load_steps=2 format=3 uid="uid://b4y8dnr0nugke"] +[gd_scene format=3 uid="uid://b4y8dnr0nugke"] [ext_resource type="Script" uid="uid://c0qys72ixawvk" path="res://addons/dialogic/Resources/dialogic_layout_base.gd" id="1_kfib2"] -[node name="BaseLayout" type="Node"] +[node name="BaseLayout" type="Node" unique_id=1574543838] script = ExtResource("1_kfib2") metadata/_custom_type_script = "uid://c0qys72ixawvk" diff --git a/gui/game/announce/scripts/announce.gd b/gui/game/announce/scripts/announce.gd index ba1bb7b..319211f 100644 --- a/gui/game/announce/scripts/announce.gd +++ b/gui/game/announce/scripts/announce.gd @@ -76,6 +76,7 @@ func update_rotation(delta): func set_announce_object(object := announce_object): + Pointer.action_disabled = not object if is_node_ready() and object: for children in %AnnouceObject.get_children(): children.queue_free() diff --git a/gui/game/game_gui.tscn b/gui/game/game_gui.tscn index cc745e1..f4b826e 100644 --- a/gui/game/game_gui.tscn +++ b/gui/game/game_gui.tscn @@ -6,7 +6,6 @@ [ext_resource type="PackedScene" uid="uid://brfsapvj2quxm" path="res://gui/game/energy_info/energy_info.tscn" id="4_2wykm"] [ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="6_2wykm"] [ext_resource type="PackedScene" uid="uid://df0eop555wfj5" path="res://gui/game/objective_progress_bar/objective_progress_bar.tscn" id="6_dr1y2"] -[ext_resource type="Texture2D" uid="uid://bt3g5bmar0icf" path="res://common/icons/growth.svg" id="6_id0t5"] [ext_resource type="PackedScene" uid="uid://clicjf8ts51h8" path="res://gui/game/inventory_gui/inventory_gui.tscn" id="9_id0t5"] [ext_resource type="PackedScene" uid="uid://cgbjmw75alfeo" path="res://gui/game/help/help.tscn" id="10_id0t5"] @@ -20,10 +19,6 @@ fill = 1 fill_from = Vector2(0.5, 0.5) fill_to = Vector2(1.5, 0.5) -[sub_resource type="LabelSettings" id="LabelSettings_id0t5"] -font = ExtResource("6_2wykm") -font_size = 40 - [sub_resource type="Animation" id="Animation_rcm5b"] length = 0.001 tracks/0/type = "value" @@ -39,6 +34,45 @@ tracks/0/keys = { "values": [0] } +[sub_resource type="Animation" id="Animation_h6540"] +resource_name = "bounce" +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:scale") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(), +"transitions": PackedFloat32Array(), +"update": 0, +"values": [] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:scale") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(), +"transitions": PackedFloat32Array(), +"update": 0, +"values": [] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("%ObjectiveLabel/..:scale") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(), +"transitions": PackedFloat32Array(), +"update": 0, +"values": [] +} + [sub_resource type="Animation" id="Animation_ajf5p"] resource_name = "bump" length = 0.4 @@ -58,10 +92,12 @@ tracks/0/keys = { [sub_resource type="AnimationLibrary" id="AnimationLibrary_jomh8"] _data = { &"RESET": SubResource("Animation_rcm5b"), +&"bounce": SubResource("Animation_h6540"), &"bump": SubResource("Animation_ajf5p") } [node name="GameGui" type="CanvasLayer" unique_id=274698556] +layer = 2 script = ExtResource("1_udau0") [node name="NoEnergyVignette" type="TextureRect" parent="." unique_id=1917087264] @@ -89,6 +125,9 @@ grow_horizontal = 2 grow_vertical = 2 mouse_filter = 2 +[node name="Help" parent="." unique_id=152252336 instance=ExtResource("10_id0t5")] +unique_name_in_owner = true + [node name="MarginContainer" type="MarginContainer" parent="." unique_id=2054297293] anchors_preset = 15 anchor_right = 1.0 @@ -115,23 +154,6 @@ layout_mode = 2 size_flags_horizontal = 4 size_flags_vertical = 4 -[node name="SimplePlantPointScore" type="HBoxContainer" parent="MarginContainer/VBoxContainer" unique_id=973032799] -unique_name_in_owner = true -layout_mode = 2 -theme_override_constants/separation = 0 -alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/SimplePlantPointScore" unique_id=534916675] -layout_mode = 2 -texture = ExtResource("6_id0t5") - -[node name="SimplePlantPointScoreLabel" type="Label" parent="MarginContainer/VBoxContainer/SimplePlantPointScore" unique_id=1961035876] -unique_name_in_owner = true -layout_mode = 2 -text = "0 Plant Point" -label_settings = SubResource("LabelSettings_id0t5") -horizontal_alignment = 1 - [node name="ObjectiveContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer" unique_id=946367772] layout_mode = 2 mouse_filter = 2 @@ -142,7 +164,7 @@ theme_override_constants/margin_bottom = 0 [node name="ObjectiveLabel" type="RichTextLabel" parent="MarginContainer/VBoxContainer/ObjectiveContainer" unique_id=2044989003] unique_name_in_owner = true -custom_minimum_size = Vector2(600, 0) +custom_minimum_size = Vector2(1000, 0) layout_mode = 2 size_flags_horizontal = 4 size_flags_vertical = 0 @@ -155,13 +177,12 @@ theme_override_fonts/normal_font = ExtResource("6_2wykm") theme_override_fonts/bold_font = ExtResource("6_2wykm") theme_override_fonts/bold_italics_font = ExtResource("6_2wykm") theme_override_fonts/italics_font = ExtResource("6_2wykm") -theme_override_font_sizes/normal_font_size = 40 -theme_override_font_sizes/bold_font_size = 40 -theme_override_font_sizes/bold_italics_font_size = 40 -theme_override_font_sizes/italics_font_size = 40 -theme_override_font_sizes/mono_font_size = 40 +theme_override_font_sizes/normal_font_size = 50 +theme_override_font_sizes/bold_font_size = 50 +theme_override_font_sizes/bold_italics_font_size = 50 +theme_override_font_sizes/italics_font_size = 50 +theme_override_font_sizes/mono_font_size = 50 bbcode_enabled = true -text = "Action en cours Action en cours Action en cours Action en cours Action en cours " fit_content = true horizontal_alignment = 1 @@ -173,6 +194,3 @@ libraries/ = SubResource("AnimationLibrary_jomh8") layout_mode = 2 size_flags_horizontal = 1 size_flags_vertical = 8 - -[node name="Help" parent="MarginContainer" unique_id=152252336 instance=ExtResource("10_id0t5")] -layout_mode = 2 diff --git a/gui/game/help/help.tscn b/gui/game/help/help.tscn index 88a349d..f05f0f7 100644 --- a/gui/game/help/help.tscn +++ b/gui/game/help/help.tscn @@ -1,5 +1,6 @@ [gd_scene format=3 uid="uid://cgbjmw75alfeo"] +[ext_resource type="Script" uid="uid://drhkq61wr1k3h" path="res://gui/game/help/scripts/help.gd" id="1_4isb0"] [ext_resource type="Texture2D" uid="uid://cwewx7cdy085h" path="res://common/icons/help-hexagon.svg" id="1_fajau"] [ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="2_l61dv"] [ext_resource type="Script" uid="uid://c65cf2ksbsxwg" path="res://gui/game/help/scripts/help_container.gd" id="3_syp3u"] @@ -8,17 +9,787 @@ [ext_resource type="Texture2D" uid="uid://bhogi5kkltx51" path="res://gui/pause/assets/textures/rock_tutorial_image.png" id="6_bt3y5"] [ext_resource type="Texture2D" uid="uid://3fwhxkd0ycga" path="res://gui/pause/assets/textures/talion_tutorial_image.png" id="7_jx4fu"] [ext_resource type="PackedScene" uid="uid://bnx5hr2fd0p24" path="res://gui/game/help/icon_help_content.tscn" id="8_38kut"] +[ext_resource type="Theme" uid="uid://bgcmd213j6gk1" path="res://gui/ressources/hud.tres" id="9_3m08p"] +[ext_resource type="Texture2D" uid="uid://dcgnamu7sb3ov" path="res://common/icons/bolt.svg" id="10_x0t4l"] +[ext_resource type="Texture2D" uid="uid://b0wy3dbpxbnt7" path="res://common/icons/seedling.svg" id="11_8m5g0"] +[ext_resource type="Texture2D" uid="uid://baaujfw8piywi" path="res://common/icons/dna.svg" id="12_px3ym"] +[ext_resource type="Texture2D" uid="uid://bt3g5bmar0icf" path="res://common/icons/growth.svg" id="13_qmceg"] +[ext_resource type="LabelSettings" uid="uid://dqwayi8yjwau2" path="res://gui/ressources/title_label_settings.tres" id="15_aywah"] +[ext_resource type="Texture2D" uid="uid://c7i8bkcu0u72e" path="res://gui/game/tutorial/assets/screenshots/energy_action.png" id="16_ovbut"] +[ext_resource type="Texture2D" uid="uid://djkeblhpnmlmj" path="res://gui/game/tutorial/assets/screenshots/energy_ui.png" id="17_v41vf"] +[ext_resource type="Texture2D" uid="uid://btwx21fgon3dg" path="res://gui/game/tutorial/assets/screenshots/energy_recharge.png" id="18_1mp0w"] +[ext_resource type="PackedScene" uid="uid://brfsapvj2quxm" path="res://gui/game/energy_info/energy_info.tscn" id="19_20vfj"] +[ext_resource type="Texture2D" uid="uid://u5bnylgucusj" path="res://gui/game/tutorial/assets/screenshots/plant_1.png" id="20_63jpt"] +[ext_resource type="Texture2D" uid="uid://dxlmkke65jq02" path="res://gui/game/tutorial/assets/screenshots/plant_2.png" id="21_2jjvy"] +[ext_resource type="Texture2D" uid="uid://36fgprolvrk6" path="res://gui/game/tutorial/assets/screenshots/plant_4.png" id="22_her8c"] +[ext_resource type="Texture2D" uid="uid://bgi4rc50par30" path="res://common/icons/arrow-narrow-right.svg" id="23_6ek5f"] +[ext_resource type="PackedScene" uid="uid://753270jjxmfg" path="res://gui/game/card/card.tscn" id="24_jg2sl"] +[ext_resource type="Texture2D" uid="uid://bd6qddv5ihkjr" path="res://common/icons/bucket.svg" id="25_jey82"] +[ext_resource type="Script" uid="uid://dj2pv1hiwjfv0" path="res://gui/game/card/scripts/card_info.gd" id="26_ofmsr"] +[ext_resource type="Script" uid="uid://dgbh38j13g5kn" path="res://gui/game/card/scripts/card_section_info.gd" id="27_6ue1f"] +[ext_resource type="Texture2D" uid="uid://b752eqq4cm7ve" path="res://common/icons/building-factory-2.svg" id="28_n6ecr"] +[ext_resource type="Script" uid="uid://b4tkium34c831" path="res://gui/game/card/scripts/card_stat_info.gd" id="29_g0oea"] +[ext_resource type="Texture2D" uid="uid://dg00xnpp6ixls" path="res://common/icons/server-2.svg" id="30_r0xnk"] +[ext_resource type="Texture2D" uid="uid://bsvxhafoxwmw0" path="res://common/icons/cube-3d-sphere.svg" id="31_n8dtn"] +[ext_resource type="Texture2D" uid="uid://7oh782g7ngop" path="res://common/icons/arrow-narrow-left.svg" id="32_0tqk4"] +[ext_resource type="PackedScene" uid="uid://df0eop555wfj5" path="res://gui/game/objective_progress_bar/objective_progress_bar.tscn" id="33_ttgbb"] +[ext_resource type="Texture2D" uid="uid://cuqx6w5eo7j3" path="res://gui/game/tutorial/assets/screenshots/plant_points.png" id="34_e0tp7"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4isb0"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3m08p"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x0t4l"] +bg_color = Color(0, 0, 0, 0.6745098) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.6745098) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8m5g0"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_px3ym"] +bg_color = Color(1, 1, 1, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(1, 1, 1, 0.3372549) +border_blend = true +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qmceg"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aywah"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ovbut"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_v41vf"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1mp0w"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_20vfj"] +bg_color = Color(0, 0, 0, 0.3372549) +border_width_left = 4 +border_width_top = 4 +border_width_right = 4 +border_width_bottom = 4 +border_color = Color(0, 0, 0, 0.3372549) +corner_radius_top_left = 4 +corner_radius_top_right = 4 +corner_radius_bottom_right = 4 +corner_radius_bottom_left = 4 [sub_resource type="LabelSettings" id="LabelSettings_rcm5b"] font = ExtResource("2_l61dv") font_size = 20 -[node name="Help" type="VBoxContainer" unique_id=152252336] +[sub_resource type="Animation" id="Animation_5waw3"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 0)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("InfoContainer:theme_override_constants/separation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [12] +} + +[sub_resource type="Animation" id="Animation_8jsve"] +resource_name = "appear" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.033333335), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("InfoContainer:theme_override_constants/separation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [600, 12] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_i8of2"] +_data = { +&"RESET": SubResource("Animation_5waw3"), +&"appear": SubResource("Animation_8jsve") +} + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_x6py2"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_1shmc"] + +[sub_resource type="Resource" id="Resource_ditr3"] +script = ExtResource("27_6ue1f") +title_text = "Mutations" +title_icon = ExtResource("28_n6ecr") +text = "This is a mutation" +metadata/_custom_type_script = "uid://dgbh38j13g5kn" + +[sub_resource type="Resource" id="Resource_ikhlb"] +script = ExtResource("29_g0oea") +text = "8" +icon = ExtResource("30_r0xnk") +metadata/_custom_type_script = "uid://b4tkium34c831" + +[sub_resource type="Resource" id="Resource_5fpon"] +script = ExtResource("26_ofmsr") +title = "Hello" +subtitle = "Mature" +texture = ExtResource("12_px3ym") +important_stat_text = "8" +important_stat_icon = ExtResource("25_jey82") +stats = Array[ExtResource("29_g0oea")]([SubResource("Resource_ikhlb")]) +sections = Array[ExtResource("27_6ue1f")]([SubResource("Resource_ditr3")]) +metadata/_custom_type_script = "uid://dj2pv1hiwjfv0" + +[sub_resource type="Animation" id="Animation_g708k"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 0)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("MarginContainer:theme_override_constants/separation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [600] +} + +[sub_resource type="Animation" id="Animation_1sln6"] +resource_name = "appear" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.033333335), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("MarginContainer:theme_override_constants/separation") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [600, 12] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_a8llx"] +_data = { +&"RESET": SubResource("Animation_g708k"), +&"appear": SubResource("Animation_1sln6") +} + +[sub_resource type="Animation" id="Animation_mu5lb"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("MarginContainer:theme_override_constants/separation") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [600] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath(".:modulate") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 0)] +} + +[sub_resource type="Animation" id="Animation_fegtd"] +resource_name = "appear" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.033333335), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("MarginContainer:theme_override_constants/separation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [600, 12] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_sqlla"] +_data = { +&"RESET": SubResource("Animation_mu5lb"), +&"appear": SubResource("Animation_fegtd") +} + +[sub_resource type="Animation" id="Animation_ikhlb"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 0)] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [false] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("PlantPointTutorialContainer:theme_override_constants/separation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [12] +} + +[sub_resource type="Animation" id="Animation_puixe"] +resource_name = "appear" +length = 0.5 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 1)] +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath(".:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 0.033333335), +"transitions": PackedFloat32Array(1, 1), +"update": 1, +"values": [false, true] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("PlantPointTutorialContainer:theme_override_constants/separation") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [600, 12] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_3i1ky"] +_data = { +&"RESET": SubResource("Animation_ikhlb"), +&"appear": SubResource("Animation_puixe") +} + +[node name="Help" type="Control" unique_id=918734350] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 size_flags_horizontal = 8 size_flags_vertical = 0 +mouse_filter = 2 +script = ExtResource("1_4isb0") + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=1960399905] +layout_mode = 1 +anchors_preset = 10 +anchor_right = 1.0 +offset_bottom = 806.0 +grow_horizontal = 2 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer" unique_id=303385879] +layout_mode = 2 +theme_override_constants/separation = 8 + +[node name="TerrainHelp" type="FoldableContainer" parent="MarginContainer/VBoxContainer" unique_id=221139748] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +size_flags_horizontal = 8 +size_flags_vertical = 0 +title = "TERRAINS" +script = ExtResource("3_syp3u") +help_container_name = "terrain" + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/TerrainHelp" unique_id=937055110] +layout_mode = 2 +theme_override_constants/margin_left = 8 +theme_override_constants/margin_top = 8 +theme_override_constants/margin_right = 8 +theme_override_constants/margin_bottom = 8 + +[node name="Zones" type="VBoxContainer" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer" unique_id=83983981] +layout_mode = 2 + +[node name="Moss" type="HBoxContainer" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones" unique_id=116883301] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Moss" unique_id=2127894722] +custom_minimum_size = Vector2(0, 60) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +texture = ExtResource("4_liwse") +expand_mode = 3 +stretch_mode = 5 + +[node name="RichText" type="RichTextLabel" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Moss" unique_id=941957004] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("5_mao3x") +theme_override_fonts/bold_font = ExtResource("2_l61dv") +theme_override_font_sizes/normal_font_size = 15 +theme_override_font_sizes/bold_font_size = 18 +bbcode_enabled = true +text = "FERTILE_LAND_TEXT" +fit_content = true +vertical_alignment = 1 + +[node name="Rock" type="HBoxContainer" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones" unique_id=1546734905] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Rock" unique_id=20628007] +custom_minimum_size = Vector2(0, 60) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +texture = ExtResource("6_bt3y5") +expand_mode = 3 +stretch_mode = 5 + +[node name="RichText" type="RichTextLabel" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Rock" unique_id=782682665] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("5_mao3x") +theme_override_fonts/bold_font = ExtResource("2_l61dv") +theme_override_font_sizes/normal_font_size = 15 +theme_override_font_sizes/bold_font_size = 18 +bbcode_enabled = true +text = "ROCK_TEXT" +fit_content = true +vertical_alignment = 1 + +[node name="Talion" type="HBoxContainer" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones" unique_id=1594298218] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Talion" unique_id=247200209] +custom_minimum_size = Vector2(0, 60) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +texture = ExtResource("7_jx4fu") +expand_mode = 3 +stretch_mode = 5 + +[node name="RichText" type="RichTextLabel" parent="MarginContainer/VBoxContainer/TerrainHelp/MarginContainer/Zones/Talion" unique_id=1292601454] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("5_mao3x") +theme_override_fonts/bold_font = ExtResource("2_l61dv") +theme_override_font_sizes/normal_font_size = 15 +theme_override_font_sizes/bold_font_size = 18 +bbcode_enabled = true +text = "TALION_VEIN_TEXT" +fit_content = true +vertical_alignment = 1 + +[node name="IconHelp" type="FoldableContainer" parent="MarginContainer/VBoxContainer" unique_id=931940053] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +size_flags_horizontal = 8 +size_flags_vertical = 0 +title = "ICONS_MEANINGS" +script = ExtResource("3_syp3u") +help_container_name = "icon" + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/IconHelp" unique_id=627387657] +layout_mode = 2 +theme_override_constants/margin_left = 8 +theme_override_constants/margin_top = 8 +theme_override_constants/margin_right = 8 +theme_override_constants/margin_bottom = 8 + +[node name="IconsGrid" parent="MarginContainer/VBoxContainer/IconHelp/MarginContainer" unique_id=9435995 instance=ExtResource("8_38kut")] +layout_mode = 2 + +[node name="TutorialHelp" type="FoldableContainer" parent="MarginContainer/VBoxContainer" unique_id=222790736] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +size_flags_horizontal = 8 +size_flags_vertical = 0 +title = "HELP" +script = ExtResource("3_syp3u") +help_container_name = "help" + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/TutorialHelp" unique_id=1966724022] +layout_mode = 2 +theme_override_constants/margin_left = 8 +theme_override_constants/margin_top = 8 +theme_override_constants/margin_right = 8 +theme_override_constants/margin_bottom = 8 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer" unique_id=1138517705] +layout_mode = 2 + +[node name="EnergyButtonTutorial" type="Button" parent="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer" unique_id=1115214392] +layout_mode = 2 +theme = ExtResource("9_3m08p") +theme_override_constants/h_separation = 13 +theme_override_constants/icon_max_width = 20 +theme_override_font_sizes/font_size = 16 +theme_override_styles/normal = SubResource("StyleBoxFlat_4isb0") +theme_override_styles/normal_mirrored = SubResource("StyleBoxFlat_3m08p") +theme_override_styles/pressed = SubResource("StyleBoxFlat_x0t4l") +theme_override_styles/pressed_mirrored = SubResource("StyleBoxFlat_8m5g0") +theme_override_styles/hover = SubResource("StyleBoxFlat_px3ym") +theme_override_styles/hover_mirrored = SubResource("StyleBoxFlat_qmceg") +theme_override_styles/hover_pressed = SubResource("StyleBoxFlat_aywah") +theme_override_styles/hover_pressed_mirrored = SubResource("StyleBoxFlat_ovbut") +theme_override_styles/disabled = SubResource("StyleBoxFlat_v41vf") +theme_override_styles/disabled_mirrored = SubResource("StyleBoxFlat_1mp0w") +theme_override_styles/focus = SubResource("StyleBoxFlat_20vfj") +text = "SHOW_ENERGY_TUTORIAL" +icon = ExtResource("10_x0t4l") +alignment = 0 +autowrap_mode = 3 + +[node name="PlantButtonTutorial" type="Button" parent="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer" unique_id=1814330795] +layout_mode = 2 +theme = ExtResource("9_3m08p") +theme_override_constants/h_separation = 13 +theme_override_constants/icon_max_width = 20 +theme_override_font_sizes/font_size = 16 +theme_override_styles/normal = SubResource("StyleBoxFlat_4isb0") +theme_override_styles/normal_mirrored = SubResource("StyleBoxFlat_3m08p") +theme_override_styles/pressed = SubResource("StyleBoxFlat_x0t4l") +theme_override_styles/pressed_mirrored = SubResource("StyleBoxFlat_8m5g0") +theme_override_styles/hover = SubResource("StyleBoxFlat_px3ym") +theme_override_styles/hover_mirrored = SubResource("StyleBoxFlat_qmceg") +theme_override_styles/hover_pressed = SubResource("StyleBoxFlat_aywah") +theme_override_styles/hover_pressed_mirrored = SubResource("StyleBoxFlat_ovbut") +theme_override_styles/disabled = SubResource("StyleBoxFlat_v41vf") +theme_override_styles/disabled_mirrored = SubResource("StyleBoxFlat_1mp0w") +theme_override_styles/focus = SubResource("StyleBoxFlat_20vfj") +text = "SHOW_PLANT_TUTORIAL" +icon = ExtResource("11_8m5g0") +alignment = 0 +autowrap_mode = 3 + +[node name="MutationButtonTutorial" type="Button" parent="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer" unique_id=149979365] +layout_mode = 2 +theme = ExtResource("9_3m08p") +theme_override_constants/h_separation = 13 +theme_override_constants/icon_max_width = 20 +theme_override_font_sizes/font_size = 16 +theme_override_styles/normal = SubResource("StyleBoxFlat_4isb0") +theme_override_styles/normal_mirrored = SubResource("StyleBoxFlat_3m08p") +theme_override_styles/pressed = SubResource("StyleBoxFlat_x0t4l") +theme_override_styles/pressed_mirrored = SubResource("StyleBoxFlat_8m5g0") +theme_override_styles/hover = SubResource("StyleBoxFlat_px3ym") +theme_override_styles/hover_mirrored = SubResource("StyleBoxFlat_qmceg") +theme_override_styles/hover_pressed = SubResource("StyleBoxFlat_aywah") +theme_override_styles/hover_pressed_mirrored = SubResource("StyleBoxFlat_ovbut") +theme_override_styles/disabled = SubResource("StyleBoxFlat_v41vf") +theme_override_styles/disabled_mirrored = SubResource("StyleBoxFlat_1mp0w") +theme_override_styles/focus = SubResource("StyleBoxFlat_20vfj") +text = "SHOW_MUTATION_TUTORIAL" +icon = ExtResource("12_px3ym") +alignment = 0 +autowrap_mode = 3 + +[node name="PlantPointButtonTutorial" type="Button" parent="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer" unique_id=196664205] +layout_mode = 2 +theme = ExtResource("9_3m08p") +theme_override_constants/h_separation = 13 +theme_override_constants/icon_max_width = 20 +theme_override_font_sizes/font_size = 16 +theme_override_styles/normal = SubResource("StyleBoxFlat_4isb0") +theme_override_styles/normal_mirrored = SubResource("StyleBoxFlat_3m08p") +theme_override_styles/pressed = SubResource("StyleBoxFlat_x0t4l") +theme_override_styles/pressed_mirrored = SubResource("StyleBoxFlat_8m5g0") +theme_override_styles/hover = SubResource("StyleBoxFlat_px3ym") +theme_override_styles/hover_mirrored = SubResource("StyleBoxFlat_qmceg") +theme_override_styles/hover_pressed = SubResource("StyleBoxFlat_aywah") +theme_override_styles/hover_pressed_mirrored = SubResource("StyleBoxFlat_ovbut") +theme_override_styles/disabled = SubResource("StyleBoxFlat_v41vf") +theme_override_styles/disabled_mirrored = SubResource("StyleBoxFlat_1mp0w") +theme_override_styles/focus = SubResource("StyleBoxFlat_20vfj") +text = "SHOW_PLANT_POINT_TUTORIAL" +icon = ExtResource("13_qmceg") +alignment = 0 +autowrap_mode = 3 [node name="HBoxContainer" type="HBoxContainer" parent="." unique_id=541877405] -layout_mode = 2 +visible = false +layout_mode = 0 theme_override_constants/separation = 5 alignment = 2 @@ -33,115 +804,577 @@ layout_mode = 2 text = "HELP" label_settings = SubResource("LabelSettings_rcm5b") -[node name="TerrainHelp" type="FoldableContainer" parent="." unique_id=221139748] +[node name="EnergyTutorial" type="Control" parent="." unique_id=322583348] +unique_name_in_owner = true +visible = false +modulate = Color(1, 1, 1, 0) +z_index = 1 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Background" type="ColorRect" parent="EnergyTutorial" unique_id=1843157056] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +color = Color(0.036075003, 0.019499997, 0.13, 0.9411765) + +[node name="InfoContainer" type="VBoxContainer" parent="EnergyTutorial" unique_id=1446374508] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 12 +alignment = 1 + +[node name="Title" type="Label" parent="EnergyTutorial/InfoContainer" unique_id=1613496370] +layout_mode = 2 +text = "ENERGY" +label_settings = ExtResource("15_aywah") +horizontal_alignment = 1 + +[node name="Subtitle" type="Label" parent="EnergyTutorial/InfoContainer" unique_id=93818537] +modulate = Color(0.98039216, 0.53333336, 0.08627451, 1) +layout_mode = 2 +text = "USE_AND_RECHARGE" +horizontal_alignment = 1 + +[node name="HBoxContainer" type="HBoxContainer" parent="EnergyTutorial/InfoContainer" unique_id=650602011] +layout_mode = 2 +theme_override_constants/separation = 69 +alignment = 1 + +[node name="VBoxContainer" type="VBoxContainer" parent="EnergyTutorial/InfoContainer/HBoxContainer" unique_id=1347093520] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer" unique_id=358063867] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +texture = ExtResource("16_ovbut") +expand_mode = 1 +stretch_mode = 6 + +[node name="RichTextLabel" type="RichTextLabel" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer" unique_id=288166983] +layout_mode = 2 +bbcode_enabled = true +text = "SOME_ACTION_NEED_ENERGY" +fit_content = true +horizontal_alignment = 1 + +[node name="VBoxContainer2" type="VBoxContainer" parent="EnergyTutorial/InfoContainer/HBoxContainer" unique_id=595619073] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer2" unique_id=1754574825] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +texture = ExtResource("17_v41vf") +expand_mode = 1 +stretch_mode = 6 + +[node name="RichTextLabel" type="RichTextLabel" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer2" unique_id=82736867] +layout_mode = 2 +bbcode_enabled = true +text = "ENERGY_UI_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 + +[node name="VBoxContainer3" type="VBoxContainer" parent="EnergyTutorial/InfoContainer/HBoxContainer" unique_id=80010528] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer3" unique_id=1082110153] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +texture = ExtResource("18_1mp0w") +expand_mode = 1 +stretch_mode = 6 + +[node name="RichTextLabel" type="RichTextLabel" parent="EnergyTutorial/InfoContainer/HBoxContainer/VBoxContainer3" unique_id=1804918347] +layout_mode = 2 +bbcode_enabled = true +text = "RECHARGE_STATION_TUTORIAL_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 + +[node name="EnergyOkButton" type="Button" parent="EnergyTutorial/InfoContainer" unique_id=531961106] +layout_mode = 2 +size_flags_horizontal = 4 +theme = ExtResource("5_mao3x") +text = "OK" + +[node name="MarginContainer" type="MarginContainer" parent="EnergyTutorial" unique_id=2101759394] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 40.0 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 + +[node name="EnergyTutorialInfo" parent="EnergyTutorial/MarginContainer" unique_id=698017539 instance=ExtResource("19_20vfj")] +unique_name_in_owner = true +layout_mode = 2 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 +wanted_energy = 3 +wanted_max_energy = 3 + +[node name="EnergyTutorialAnimationPlayer" type="AnimationPlayer" parent="EnergyTutorial" unique_id=1743575043] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_i8of2") + +[node name="PlantInfoTutorial" type="Control" parent="." unique_id=1866663171] +unique_name_in_owner = true +visible = false +modulate = Color(1, 1, 1, 0) +z_index = 1 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Background" type="ColorRect" parent="PlantInfoTutorial" unique_id=2034601735] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +color = Color(0.036075003, 0.019499997, 0.13, 0.9411765) + +[node name="MarginContainer" type="VBoxContainer" parent="PlantInfoTutorial" unique_id=1048299707] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 600 +alignment = 1 + +[node name="Title" type="Label" parent="PlantInfoTutorial/MarginContainer" unique_id=1643302888] +layout_mode = 2 +text = "PLANTS_INFO" +label_settings = ExtResource("15_aywah") +horizontal_alignment = 1 + +[node name="SubtitleState" type="Label" parent="PlantInfoTutorial/MarginContainer" unique_id=1961699354] +modulate = Color(0.98039216, 0.53333336, 0.08627451, 1) +layout_mode = 2 +text = "EACH_PLANT_HAVE_3_STATE" +horizontal_alignment = 1 + +[node name="StateContainer" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer" unique_id=536563977] +layout_mode = 2 +theme_override_constants/separation = 69 +alignment = 1 + +[node name="State" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/StateContainer" unique_id=1964360292] +custom_minimum_size = Vector2(250, 0) +layout_mode = 2 + +[node name="StateScreenshot" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/StateContainer/State" unique_id=1628508258] +custom_minimum_size = Vector2(150, 150) +layout_mode = 2 +texture = ExtResource("20_63jpt") +expand_mode = 1 +stretch_mode = 6 + +[node name="StateLabel" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/StateContainer/State" unique_id=1084400460] +layout_mode = 2 +bbcode_enabled = true +text = "JUVENILE_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 + +[node name="State2" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/StateContainer" unique_id=199210184] +custom_minimum_size = Vector2(250, 0) +layout_mode = 2 + +[node name="StateScreenshot" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/StateContainer/State2" unique_id=1623206148] +custom_minimum_size = Vector2(150, 150) +layout_mode = 2 +texture = ExtResource("21_2jjvy") +expand_mode = 1 +stretch_mode = 6 + +[node name="StateLabel" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/StateContainer/State2" unique_id=719915795] +layout_mode = 2 +bbcode_enabled = true +text = "MATURE_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 + +[node name="State3" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/StateContainer" unique_id=2070330306] +custom_minimum_size = Vector2(250, 0) +layout_mode = 2 + +[node name="StateScreenshot" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/StateContainer/State3" unique_id=720306972] +custom_minimum_size = Vector2(150, 150) +layout_mode = 2 +texture = ExtResource("22_her8c") +expand_mode = 1 +stretch_mode = 6 + +[node name="StateLabel" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/StateContainer/State3" unique_id=1890203190] +layout_mode = 2 +bbcode_enabled = true +text = "DEAD_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 + +[node name="SubtitleInfo" type="Label" parent="PlantInfoTutorial/MarginContainer" unique_id=1782599277] +modulate = Color(0.98039216, 0.53333336, 0.08627451, 1) +layout_mode = 2 +text = "OBTAIN_INFORMATION_ON_PLANTS_WHILE_HOVERING_PLANTS_BASE" +horizontal_alignment = 1 + +[node name="GridContainer" type="GridContainer" parent="PlantInfoTutorial/MarginContainer" unique_id=1861805039] +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +columns = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=299595163] +layout_mode = 2 +theme_override_constants/separation = 8 + +[node name="HSeparator" type="HSeparator" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer" unique_id=1542313652] +layout_mode = 2 +theme_override_constants/separation = 27 +theme_override_styles/separator = SubResource("StyleBoxEmpty_x6py2") + +[node name="HBoxContainer" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer" unique_id=354486509] +layout_mode = 2 +alignment = 1 + +[node name="Label" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer" unique_id=1866802474] custom_minimum_size = Vector2(300, 0) layout_mode = 2 -size_flags_horizontal = 8 -size_flags_vertical = 0 -title = "TERRAINS" -script = ExtResource("3_syp3u") -help_container_name = "terrain" - -[node name="MarginContainer" type="MarginContainer" parent="TerrainHelp" unique_id=937055110] -layout_mode = 2 -theme_override_constants/margin_left = 8 -theme_override_constants/margin_top = 8 -theme_override_constants/margin_right = 8 -theme_override_constants/margin_bottom = 8 - -[node name="Zones" type="VBoxContainer" parent="TerrainHelp/MarginContainer" unique_id=83983981] -layout_mode = 2 - -[node name="Moss" type="HBoxContainer" parent="TerrainHelp/MarginContainer/Zones" unique_id=116883301] -layout_mode = 2 -size_flags_horizontal = 3 - -[node name="TextureRect" type="TextureRect" parent="TerrainHelp/MarginContainer/Zones/Moss" unique_id=2127894722] -custom_minimum_size = Vector2(0, 60) -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 4 -texture = ExtResource("4_liwse") -expand_mode = 3 -stretch_mode = 5 - -[node name="RichText" type="RichTextLabel" parent="TerrainHelp/MarginContainer/Zones/Moss" unique_id=941957004] -layout_mode = 2 -size_flags_horizontal = 3 -theme = ExtResource("5_mao3x") -theme_override_fonts/bold_font = ExtResource("2_l61dv") -theme_override_font_sizes/normal_font_size = 15 -theme_override_font_sizes/bold_font_size = 18 bbcode_enabled = true -text = "FERTILE_LAND_TEXT" +text = "PLANT_NAME_TEXT" fit_content = true +scroll_active = false vertical_alignment = 1 -[node name="Rock" type="HBoxContainer" parent="TerrainHelp/MarginContainer/Zones" unique_id=1546734905] -layout_mode = 2 -size_flags_horizontal = 3 - -[node name="TextureRect" type="TextureRect" parent="TerrainHelp/MarginContainer/Zones/Rock" unique_id=20628007] -custom_minimum_size = Vector2(0, 60) +[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer" unique_id=412313585] layout_mode = 2 size_flags_horizontal = 4 -size_flags_vertical = 4 -texture = ExtResource("6_bt3y5") -expand_mode = 3 +size_flags_vertical = 8 +texture = ExtResource("23_6ek5f") stretch_mode = 5 -[node name="RichText" type="RichTextLabel" parent="TerrainHelp/MarginContainer/Zones/Rock" unique_id=782682665] +[node name="HBoxContainer3" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer" unique_id=1676496394] layout_mode = 2 -size_flags_horizontal = 3 -theme = ExtResource("5_mao3x") -theme_override_fonts/bold_font = ExtResource("2_l61dv") -theme_override_font_sizes/normal_font_size = 15 -theme_override_font_sizes/bold_font_size = 18 -bbcode_enabled = true -text = "ROCK_TEXT" -fit_content = true -vertical_alignment = 1 +alignment = 1 -[node name="Talion" type="HBoxContainer" parent="TerrainHelp/MarginContainer/Zones" unique_id=1594298218] -layout_mode = 2 -size_flags_horizontal = 3 - -[node name="TextureRect" type="TextureRect" parent="TerrainHelp/MarginContainer/Zones/Talion" unique_id=247200209] -custom_minimum_size = Vector2(0, 60) -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 4 -texture = ExtResource("7_jx4fu") -expand_mode = 3 -stretch_mode = 5 - -[node name="RichText" type="RichTextLabel" parent="TerrainHelp/MarginContainer/Zones/Talion" unique_id=1292601454] -layout_mode = 2 -size_flags_horizontal = 3 -theme = ExtResource("5_mao3x") -theme_override_fonts/bold_font = ExtResource("2_l61dv") -theme_override_font_sizes/normal_font_size = 15 -theme_override_font_sizes/bold_font_size = 18 -bbcode_enabled = true -text = "TALION_VEIN_TEXT" -fit_content = true -vertical_alignment = 1 - -[node name="IconHelp" type="FoldableContainer" parent="." unique_id=931940053] +[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer3" unique_id=1393691374] custom_minimum_size = Vector2(300, 0) layout_mode = 2 -size_flags_horizontal = 8 +bbcode_enabled = true +text = "PLANT_STATS_TEXT" +fit_content = true +scroll_active = false +vertical_alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer3" unique_id=1537126619] +layout_mode = 2 size_flags_vertical = 0 -title = "ICONS_MEANINGS" -script = ExtResource("3_syp3u") -help_container_name = "icon" +texture = ExtResource("23_6ek5f") +stretch_mode = 5 -[node name="MarginContainer" type="MarginContainer" parent="IconHelp" unique_id=627387657] +[node name="VBoxContainer3" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=221468992] layout_mode = 2 -theme_override_constants/margin_left = 8 -theme_override_constants/margin_top = 8 -theme_override_constants/margin_right = 8 -theme_override_constants/margin_bottom = 8 -[node name="IconsGrid" parent="IconHelp/MarginContainer" unique_id=9435995 instance=ExtResource("8_38kut")] +[node name="HSeparator" type="HSeparator" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=2009046771] layout_mode = 2 +theme_override_constants/separation = 30 +theme_override_styles/separator = SubResource("StyleBoxEmpty_1shmc") + +[node name="PlantInfoCard" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=1085885349 instance=ExtResource("24_jg2sl")] +unique_name_in_owner = true +custom_minimum_size = Vector2(350, 0) +layout_mode = 2 +info = SubResource("Resource_5fpon") + +[node name="VBoxContainer2" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=1095575937] +layout_mode = 2 +theme_override_constants/separation = 8 + +[node name="HSeparator" type="HSeparator" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=597638582] +layout_mode = 2 +theme_override_constants/separation = 35 +theme_override_styles/separator = SubResource("StyleBoxEmpty_1shmc") + +[node name="HBoxContainer" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=436158566] +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer" unique_id=1199682230] +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +texture = ExtResource("32_0tqk4") +stretch_mode = 5 + +[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer" unique_id=482701041] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +bbcode_enabled = true +text = "PLANT_SCORE_TEXT" +fit_content = true +scroll_active = false +horizontal_alignment = 2 +vertical_alignment = 1 + +[node name="HBoxContainer2" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=1735104983] +visible = false +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=1322163604] +layout_mode = 2 +size_flags_vertical = 4 +texture = ExtResource("32_0tqk4") +stretch_mode = 5 + +[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=538948436] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +bbcode_enabled = true +text = "PLANT_MUTATION_TEXT" +fit_content = true +scroll_active = false +horizontal_alignment = 2 +vertical_alignment = 1 + +[node name="PlantInfoOkButton" type="Button" parent="PlantInfoTutorial/MarginContainer" unique_id=816754493] +layout_mode = 2 +size_flags_horizontal = 4 +theme = ExtResource("5_mao3x") +text = "OK" + +[node name="PlantInfoTutorialAnimationPlayer" type="AnimationPlayer" parent="PlantInfoTutorial" unique_id=1992816928] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_a8llx") + +[node name="MutationTutorial" type="Control" parent="." unique_id=1272508941] +unique_name_in_owner = true +visible = false +modulate = Color(1, 1, 1, 0) +z_index = 1 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Background" type="ColorRect" parent="MutationTutorial" unique_id=889637978] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +color = Color(0.036075003, 0.019499997, 0.13, 0.9411765) + +[node name="MarginContainer" type="VBoxContainer" parent="MutationTutorial" unique_id=1234669844] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 600 +alignment = 1 + +[node name="Title" type="Label" parent="MutationTutorial/MarginContainer" unique_id=1712893715] +layout_mode = 2 +text = "THE_MUTATIONS" +label_settings = ExtResource("15_aywah") +horizontal_alignment = 1 + +[node name="Subtitle" type="Label" parent="MutationTutorial/MarginContainer" unique_id=523371656] +modulate = Color(0.98039216, 0.53333336, 0.08627451, 1) +layout_mode = 2 +text = "SEEDS_HAVE_A_CHANCE_TO_GAIN_MUTATIONS" +horizontal_alignment = 1 + +[node name="GridContainer" type="GridContainer" parent="MutationTutorial/MarginContainer" unique_id=2100369823] +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +theme_override_constants/v_separation = 616 +columns = 3 + +[node name="VBoxContainer3" type="VBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer" unique_id=2138957390] +layout_mode = 2 + +[node name="HSeparator" type="HSeparator" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=357422769] +layout_mode = 2 +theme_override_constants/separation = 30 +theme_override_styles/separator = SubResource("StyleBoxEmpty_1shmc") + +[node name="MutationCard" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=952739541 instance=ExtResource("24_jg2sl")] +unique_name_in_owner = true +custom_minimum_size = Vector2(350, 0) +layout_mode = 2 +info = SubResource("Resource_5fpon") + +[node name="VBoxContainer2" type="VBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer" unique_id=584538797] +layout_mode = 2 +theme_override_constants/separation = 8 + +[node name="HSeparator" type="HSeparator" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=774304481] +layout_mode = 2 +theme_override_constants/separation = 120 +theme_override_styles/separator = SubResource("StyleBoxEmpty_1shmc") + +[node name="HBoxContainer2" type="HBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=2056583301] +layout_mode = 2 +alignment = 1 + +[node name="TextureRect" type="TextureRect" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=390523560] +layout_mode = 2 +size_flags_vertical = 4 +texture = ExtResource("32_0tqk4") +stretch_mode = 5 + +[node name="Label2" type="RichTextLabel" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=473524053] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +bbcode_enabled = true +text = "PLANT_MUTATION_TEXT" +fit_content = true +scroll_active = false +horizontal_alignment = 2 +vertical_alignment = 1 + +[node name="MutationOkButton" type="Button" parent="MutationTutorial/MarginContainer" unique_id=2070965633] +layout_mode = 2 +size_flags_horizontal = 4 +theme = ExtResource("5_mao3x") +text = "OK" + +[node name="MutationTutorialAnimationPlayer" type="AnimationPlayer" parent="MutationTutorial" unique_id=1035493143] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_sqlla") + +[node name="PlantpointsTutorial" type="Control" parent="." unique_id=1914511962] +unique_name_in_owner = true +visible = false +modulate = Color(1, 1, 1, 0) +z_index = 1 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Background" type="ColorRect" parent="PlantpointsTutorial" unique_id=48246175] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 +color = Color(0.03529412, 0.019607844, 0.12941177, 0.9411765) + +[node name="MarginContainer" type="MarginContainer" parent="PlantpointsTutorial" unique_id=664575728] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 15 +theme_override_constants/margin_top = 15 +theme_override_constants/margin_right = 15 +theme_override_constants/margin_bottom = 15 + +[node name="ObjectiveProgressBar" parent="PlantpointsTutorial/MarginContainer" unique_id=2043451865 instance=ExtResource("33_ttgbb")] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 4 +progress = 0.0 +text = "0/3" + +[node name="PlantPointTutorialContainer" type="VBoxContainer" parent="PlantpointsTutorial" unique_id=641559028] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 12 +alignment = 1 + +[node name="Title" type="Label" parent="PlantpointsTutorial/PlantPointTutorialContainer" unique_id=1717405995] +layout_mode = 2 +text = "THE_PLANT_POINTS" +label_settings = ExtResource("15_aywah") +horizontal_alignment = 1 + +[node name="Subtitle" type="Label" parent="PlantpointsTutorial/PlantPointTutorialContainer" unique_id=845953712] +modulate = Color(0.98039216, 0.53333336, 0.08627451, 1) +layout_mode = 2 +text = "HOW_TO_GET_PLANT_POINTS" +horizontal_alignment = 1 + +[node name="HBoxContainer" type="HBoxContainer" parent="PlantpointsTutorial/PlantPointTutorialContainer" unique_id=1890221952] +layout_mode = 2 +size_flags_horizontal = 4 +theme_override_constants/separation = 48 + +[node name="TextureRect" type="TextureRect" parent="PlantpointsTutorial/PlantPointTutorialContainer/HBoxContainer" unique_id=1294750515] +custom_minimum_size = Vector2(300, 300) +layout_mode = 2 +size_flags_horizontal = 4 +texture = ExtResource("34_e0tp7") +expand_mode = 1 +stretch_mode = 6 + +[node name="RichTextLabel" type="RichTextLabel" parent="PlantpointsTutorial/PlantPointTutorialContainer/HBoxContainer" unique_id=2035794269] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +bbcode_enabled = true +text = "PLANT_POINTS_TUTORIAL_DESC_TEXT" +fit_content = true +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="PlantPointOkButton" type="Button" parent="PlantpointsTutorial/PlantPointTutorialContainer" unique_id=1683969936] +layout_mode = 2 +size_flags_horizontal = 4 +theme = ExtResource("5_mao3x") +text = "OK" + +[node name="PlantPointTutorialAnimationPlayer" type="AnimationPlayer" parent="PlantpointsTutorial" unique_id=1495129286] +unique_name_in_owner = true +libraries/ = SubResource("AnimationLibrary_3i1ky") + +[connection signal="button_down" from="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer/EnergyButtonTutorial" to="." method="_on_energy_button_tutorial_button_down"] +[connection signal="button_down" from="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer/PlantButtonTutorial" to="." method="_on_plant_button_tutorial_button_down"] +[connection signal="button_down" from="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer/MutationButtonTutorial" to="." method="_on_mutation_button_tutorial_button_down"] +[connection signal="button_down" from="MarginContainer/VBoxContainer/TutorialHelp/MarginContainer/VBoxContainer/PlantPointButtonTutorial" to="." method="_on_plant_point_button_tutorial_button_down"] +[connection signal="button_down" from="EnergyTutorial/InfoContainer/EnergyOkButton" to="." method="_on_energy_ok_button_button_down"] +[connection signal="button_down" from="PlantInfoTutorial/MarginContainer/PlantInfoOkButton" to="." method="_on_plant_info_ok_button_button_down"] +[connection signal="button_down" from="MutationTutorial/MarginContainer/MutationOkButton" to="." method="_on_mutation_ok_button_button_down"] +[connection signal="button_down" from="PlantpointsTutorial/PlantPointTutorialContainer/PlantPointOkButton" to="." method="_on_plant_point_ok_button_button_down"] diff --git a/gui/game/help/icon_help_content.tscn b/gui/game/help/icon_help_content.tscn index 9158866..149e246 100644 --- a/gui/game/help/icon_help_content.tscn +++ b/gui/game/help/icon_help_content.tscn @@ -2,9 +2,9 @@ [ext_resource type="Texture2D" uid="uid://bt3g5bmar0icf" path="res://common/icons/growth.svg" id="1_yxwcd"] [ext_resource type="Theme" uid="uid://5au2k3vf2po3" path="res://gui/ressources/menu.tres" id="2_wxnr5"] -[ext_resource type="Texture2D" uid="uid://d3ksdxepcjoot" path="res://common/icons/calendar-week.svg" id="3_t30ml"] -[ext_resource type="Texture2D" uid="uid://cgmxjom200bej" path="res://common/icons/chevrons-up.svg" id="4_d4ybk"] +[ext_resource type="Texture2D" uid="uid://b34qiqb1mslm" path="res://common/icons/clock-up.svg" id="4_yxwcd"] [ext_resource type="Texture2D" uid="uid://dhy4ewvqvlxyi" path="res://common/icons/clock.svg" id="5_3lk2g"] +[ext_resource type="Texture2D" uid="uid://bgkivv66x80oj" path="res://common/icons/clock-death.svg" id="5_wxnr5"] [ext_resource type="Texture2D" uid="uid://c2qg7ikkylfv4" path="res://common/icons/seeds.svg" id="6_tr36d"] [ext_resource type="Texture2D" uid="uid://dcgnamu7sb3ov" path="res://common/icons/bolt.svg" id="7_ubf5w"] [ext_resource type="Texture2D" uid="uid://cymrmhsihkj44" path="res://common/icons/recharge.svg" id="8_uvt1i"] @@ -38,7 +38,7 @@ theme_override_constants/separation = 4 custom_minimum_size = Vector2(25, 25) layout_mode = 2 size_flags_horizontal = 4 -texture = ExtResource("3_t30ml") +texture = ExtResource("5_3lk2g") expand_mode = 1 stretch_mode = 5 @@ -56,7 +56,7 @@ theme_override_constants/separation = 4 custom_minimum_size = Vector2(25, 25) layout_mode = 2 size_flags_horizontal = 4 -texture = ExtResource("4_d4ybk") +texture = ExtResource("4_yxwcd") expand_mode = 1 stretch_mode = 5 @@ -74,7 +74,7 @@ theme_override_constants/separation = 4 custom_minimum_size = Vector2(25, 25) layout_mode = 2 size_flags_horizontal = 4 -texture = ExtResource("5_3lk2g") +texture = ExtResource("5_wxnr5") expand_mode = 1 stretch_mode = 5 diff --git a/gui/game/help/scripts/help.gd b/gui/game/help/scripts/help.gd new file mode 100644 index 0000000..3346c48 --- /dev/null +++ b/gui/game/help/scripts/help.gd @@ -0,0 +1,118 @@ +extends Control +class_name Help + +signal tutorial_passed + +func _ready(): + %EnergyTutorial.hide() + %PlantInfoTutorial.hide() + %MutationTutorial.hide() + %PlantpointsTutorial.hide() + +func display_energy_tutorial(): + %EnergyTutorialInfo.update(3,3,false) + %EnergyTutorialAnimationPlayer.play("appear") + Pointer.action_disabled = true + +func display_plant_info_tutorial( + with_card_info : CardInfo = get_false_plant_card_info() +): + %PlantInfoCard.info = with_card_info + %PlantInfoCard.update() + %PlantInfoTutorialAnimationPlayer.play("appear") + Pointer.action_disabled = true + +func display_mutations_tutorial(with_card_info : CardInfo = get_false_plant_card_info(true)): + %MutationCard.info = with_card_info + %MutationCard.update() + %MutationTutorialAnimationPlayer.play("appear") + Pointer.action_disabled = true + +func display_plant_point_tutorial(): + %PlantPointTutorialAnimationPlayer.play("appear") + Pointer.action_disabled = true + +func get_false_plant_card_info(with_mutation = false): + var data = PlantData.new() + + var info = CardInfo.new( + data.plant_name, + tr("MATURE") if data.is_mature() else tr("JUVENILE") + ) + + info.important_stat_icon = Plant.SCORE_ICON + info.important_stat_text = "%d" % 0 + info.type_icon = Plant.PLANT_TYPE_ICON + + + info.stats.append_array([ + CardStatInfo.new( + str(1), + Plant.DURATION_ICON + ), + CardStatInfo.new( + str(2), + Plant.GROWING_ICON + ), + CardStatInfo.new( + str(6), + Plant.LIFETIME_ICON + ), + CardStatInfo.new( + str(1), + Plant.SEED_ICON + ), + ]) + + if with_mutation: + info.sections.append(AncientMutation.new().card_section()) + + return info + +func _on_energy_button_tutorial_button_down(): + display_energy_tutorial() + +func _on_plant_button_tutorial_button_down(): + display_plant_info_tutorial() + + +func _on_mutation_button_tutorial_button_down(): + display_mutations_tutorial() + + +func _on_plant_point_button_tutorial_button_down(): + display_plant_point_tutorial() + +func _on_energy_ok_button_button_down(): + %EnergyTutorialAnimationPlayer.play_backwards("appear") + tutorial_passed.emit() + get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click + func(): + Pointer.action_disabled = false + ) + +func _on_plant_info_ok_button_button_down(): + %PlantInfoTutorialAnimationPlayer.play_backwards("appear") + tutorial_passed.emit() + get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click + func(): + Pointer.action_disabled = false + ) + + +func _on_mutation_ok_button_button_down(): + %MutationTutorialAnimationPlayer.play_backwards("appear") + tutorial_passed.emit() + get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click + func(): + Pointer.action_disabled = false + ) + + +func _on_plant_point_ok_button_button_down(): + %PlantPointTutorialAnimationPlayer.play_backwards("appear") + tutorial_passed.emit() + get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click + func(): + Pointer.action_disabled = false + ) diff --git a/gui/game/help/scripts/help.gd.uid b/gui/game/help/scripts/help.gd.uid new file mode 100644 index 0000000..07a27a4 --- /dev/null +++ b/gui/game/help/scripts/help.gd.uid @@ -0,0 +1 @@ +uid://drhkq61wr1k3h diff --git a/gui/game/pass_day/pass_day.tscn b/gui/game/pass_day/pass_day.tscn index ec140c0..f88d06f 100644 --- a/gui/game/pass_day/pass_day.tscn +++ b/gui/game/pass_day/pass_day.tscn @@ -58,6 +58,7 @@ script = ExtResource("1_0pm4g") [node name="Background" type="ColorRect" parent="." unique_id=527935985] unique_name_in_owner = true +modulate = Color(1, 1, 1, 0) anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 diff --git a/gui/game/scripts/game_gui.gd b/gui/game/scripts/game_gui.gd index 1bd6f1e..a06e4b9 100644 --- a/gui/game/scripts/game_gui.gd +++ b/gui/game/scripts/game_gui.gd @@ -12,15 +12,15 @@ var score_mirror : var objective_text : String = "" : set = set_objective_text +@onready var help : Help = %Help + func _ready(): GameInfo.game_data.current_region_data.updated.connect(_on_region_updated) GameInfo.game_data.player_data.updated.connect(_on_player_updated) - %ObjectiveProgressBar.visible = ( - not GameInfo.game_data.current_run.story_step is TutorialStoryStep - and not GameInfo.game_data.current_region_data.objective_disabled - ) - %SimplePlantPointScore.visible = GameInfo.game_data.current_run.story_step is TutorialStoryStep + show_progress_bar() + show_energy() + show_help() state_update(GameInfo.game_data.current_region_data) player_update(GameInfo.game_data.player_data, false) @@ -91,11 +91,6 @@ func score_update(with_animation = true): ) else: %ObjectiveProgressBar.set_progress(objective_progression) - - if score_mirror > 1: - %SimplePlantPointScoreLabel.text = tr("%d_PLANT_POINTS") % score_mirror - else : - %SimplePlantPointScoreLabel.text = tr("%d_PLANT_POINT") % score_mirror func state_update(region_data : RegionData): if region_data.state == RegionData.State.SUCCEEDED: @@ -153,13 +148,24 @@ func spawn_score_particle( func set_objective_text(v : String = objective_text): + print(v) + var old_v = objective_text objective_text = v - if is_node_ready(): + if is_node_ready() and old_v != objective_text: if (objective_text != "" and objective_text != %ObjectiveLabel.text): %ObjectiveAnimationPlayer.play("bump") AudioManager.play_sfx("Screen_interaction") %ObjectiveLabel.text = v +func show_energy(shown = true): + %EnergyInfo.visible = shown + +func show_progress_bar(shown = true): + %ObjectiveProgressBar.visible = shown + +func show_help(shown = true): + %Help.visible = shown + func _on_player_action_tried_without_energy(): $AnimationPlayer.play("no_energy_left") diff --git a/gui/game/tutorial/assets/screenshots/energy_action.png b/gui/game/tutorial/assets/screenshots/energy_action.png new file mode 100644 index 0000000..f905e42 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/energy_action.png differ diff --git a/gui/game/tutorial/assets/screenshots/energy_action.png.import b/gui/game/tutorial/assets/screenshots/energy_action.png.import new file mode 100644 index 0000000..b9dea84 --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/energy_action.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7i8bkcu0u72e" +path="res://.godot/imported/energy_action.png-78edf534b0f3cf8bde7178e2b27a0840.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/energy_action.png" +dest_files=["res://.godot/imported/energy_action.png-78edf534b0f3cf8bde7178e2b27a0840.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/energy_recharge.png b/gui/game/tutorial/assets/screenshots/energy_recharge.png new file mode 100644 index 0000000..817d744 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/energy_recharge.png differ diff --git a/gui/game/tutorial/assets/screenshots/energy_recharge.png.import b/gui/game/tutorial/assets/screenshots/energy_recharge.png.import new file mode 100644 index 0000000..430eccd --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/energy_recharge.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btwx21fgon3dg" +path="res://.godot/imported/energy_recharge.png-a4a18ca1bcc25ffb8310b07394462ac8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/energy_recharge.png" +dest_files=["res://.godot/imported/energy_recharge.png-a4a18ca1bcc25ffb8310b07394462ac8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/energy_ui.png b/gui/game/tutorial/assets/screenshots/energy_ui.png new file mode 100644 index 0000000..635be15 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/energy_ui.png differ diff --git a/gui/game/tutorial/assets/screenshots/energy_ui.png.import b/gui/game/tutorial/assets/screenshots/energy_ui.png.import new file mode 100644 index 0000000..770de8e --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/energy_ui.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djkeblhpnmlmj" +path="res://.godot/imported/energy_ui.png-3270746347ccdd2f797fdf43c6576ee8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/energy_ui.png" +dest_files=["res://.godot/imported/energy_ui.png-3270746347ccdd2f797fdf43c6576ee8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/plant_0.png b/gui/game/tutorial/assets/screenshots/plant_0.png new file mode 100644 index 0000000..f52ca71 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/plant_0.png differ diff --git a/gui/game/tutorial/assets/screenshots/plant_0.png.import b/gui/game/tutorial/assets/screenshots/plant_0.png.import new file mode 100644 index 0000000..f302213 --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/plant_0.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw48n6wwm3532" +path="res://.godot/imported/plant_0.png-1b1b48171b0989155a38f07d25f287b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/plant_0.png" +dest_files=["res://.godot/imported/plant_0.png-1b1b48171b0989155a38f07d25f287b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/plant_1.png b/gui/game/tutorial/assets/screenshots/plant_1.png new file mode 100644 index 0000000..7c79757 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/plant_1.png differ diff --git a/gui/game/tutorial/assets/screenshots/plant_1.png.import b/gui/game/tutorial/assets/screenshots/plant_1.png.import new file mode 100644 index 0000000..8dafe7a --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/plant_1.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u5bnylgucusj" +path="res://.godot/imported/plant_1.png-a1d3bc512419a4ed928835653975edd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/plant_1.png" +dest_files=["res://.godot/imported/plant_1.png-a1d3bc512419a4ed928835653975edd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/plant_2.png b/gui/game/tutorial/assets/screenshots/plant_2.png new file mode 100644 index 0000000..89b07d5 Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/plant_2.png differ diff --git a/gui/game/tutorial/assets/screenshots/plant_2.png.import b/gui/game/tutorial/assets/screenshots/plant_2.png.import new file mode 100644 index 0000000..913495e --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/plant_2.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxlmkke65jq02" +path="res://.godot/imported/plant_2.png-f84030e7239b73a42d9978b90962f9bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/plant_2.png" +dest_files=["res://.godot/imported/plant_2.png-f84030e7239b73a42d9978b90962f9bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/plant_4.png b/gui/game/tutorial/assets/screenshots/plant_4.png new file mode 100644 index 0000000..d81491c Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/plant_4.png differ diff --git a/gui/game/tutorial/assets/screenshots/plant_4.png.import b/gui/game/tutorial/assets/screenshots/plant_4.png.import new file mode 100644 index 0000000..3cf255d --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/plant_4.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://36fgprolvrk6" +path="res://.godot/imported/plant_4.png-784468d11f7412a9c8e4803bc1970149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/plant_4.png" +dest_files=["res://.godot/imported/plant_4.png-784468d11f7412a9c8e4803bc1970149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/assets/screenshots/plant_points.png b/gui/game/tutorial/assets/screenshots/plant_points.png new file mode 100644 index 0000000..7da830c Binary files /dev/null and b/gui/game/tutorial/assets/screenshots/plant_points.png differ diff --git a/gui/game/tutorial/assets/screenshots/plant_points.png.import b/gui/game/tutorial/assets/screenshots/plant_points.png.import new file mode 100644 index 0000000..adc5aba --- /dev/null +++ b/gui/game/tutorial/assets/screenshots/plant_points.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuqx6w5eo7j3" +path="res://.godot/imported/plant_points.png-4f47be7a779fd1b37b6784812ea3fe31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://gui/game/tutorial/assets/screenshots/plant_points.png" +dest_files=["res://.godot/imported/plant_points.png-4f47be7a779fd1b37b6784812ea3fe31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/gui/game/tutorial/scripts/tutorial.gd b/gui/game/tutorial/scripts/tutorial.gd index da5bbb4..0307e2b 100644 --- a/gui/game/tutorial/scripts/tutorial.gd +++ b/gui/game/tutorial/scripts/tutorial.gd @@ -43,7 +43,12 @@ var success = false "RECHARGE_IN_THE_RECHARGE_STATION", (func (): return region and region.data and not region.data.in_passing_day_animation and region.data.day != 1), - (func (): GameInfo.game_data.player_data.inventory.add_item(Pickaxe.new())) + (func (): + game_gui.show_energy() + game_gui.show_help() + game_gui.help.display_energy_tutorial() + await game_gui.help.tutorial_passed + GameInfo.game_data.player_data.inventory.add_item(Pickaxe.new())) ), Step.new( "DIG_A_TALION_VEIN_WITH_SHOVEL", @@ -60,17 +65,24 @@ var success = false func(i:Item): return i is Seed ) != -1) ), + Step.new( + "DROP_SEED_WITH_KEY", + (func (): + return ( + Input.is_action_pressed("drop")) + ) + ), Step.new( "PLANT_SEED_IN_FERTILE_ZONE", (func (): for e in region.entity_container.get_children(): if e is Plant: - display_plant_info_tutorial(e.card_info()) + game_gui.help.display_plant_info_tutorial(e.card_info()) return true return false) ), Step.new( - "GAIN_FIRST_PLANT_POINT", + "WAIT_FOR_THE_PLANT_MATURATION", (func (): return region and region.data and not region.data.in_passing_day_animation and region.data.get_score() != 0), (func (): GameInfo.game_data.player_data.inventory.add_item(Fork.new())) @@ -88,24 +100,27 @@ var success = false (func (): for s in player.data.inventory.seeds: if s is Seed and len(s.plant_mutations) > 0: - display_mutations_tutorial(s.card_info()) + game_gui.help.display_mutations_tutorial(s.card_info()) return true return false), + (func (): + await game_gui.help.tutorial_passed + game_gui.show_progress_bar() + game_gui.help.display_plant_point_tutorial()) ), Step.new( - "DROP_SEED_WITH_KEY", - (func (): - return ( - Input.is_action_pressed("drop")) - ) + "HAVE_3_PLANT_POINTS_SIMULTANEOUSLY", + (func (): return region.data.get_score() >= 3) ), ] func _ready(): setup_gui() show() - %PlantInfoTutorial.hide() - %MutationTutorial.hide() + + game_gui.show_energy(false) + game_gui.show_progress_bar(false) + game_gui.show_help(false) func setup_gui(): for s in %Steps.get_children(): @@ -145,37 +160,6 @@ func finish_tutorial(): succeded.emit() success = true -func display_plant_info_tutorial(with_card_info : CardInfo): - %PlantInfoCard.info = with_card_info - AudioManager.play_sfx("Reveal") - %PlantInfoCard.update() - %PlantInfoTutorialAnimationPlayer.play("appear") - Pointer.action_disabled = true - -func display_mutations_tutorial(with_card_info : CardInfo): - %MutationCard.info = with_card_info - AudioManager.play_sfx("Reveal") - %MutationCard.update() - %MutationTutorialAnimationPlayer.play("appear") - Pointer.action_disabled = true - - -func _on_plant_info_ok_button_button_down(): - %PlantInfoTutorialAnimationPlayer.play_backwards("appear") - get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click - func(): - Pointer.action_disabled = false - ) - - -func _on_mutation_ok_button_button_down(): - %MutationTutorialAnimationPlayer.play_backwards("appear") - get_tree().create_timer(0.2).timeout.connect( # Put a delay to not interfere with the ok button click - func(): - Pointer.action_disabled = false - ) - - class Step: var text : String : get = get_text diff --git a/gui/game/tutorial/tutorial.tscn b/gui/game/tutorial/tutorial.tscn index b4c014c..f996339 100644 --- a/gui/game/tutorial/tutorial.tscn +++ b/gui/game/tutorial/tutorial.tscn @@ -4,19 +4,6 @@ [ext_resource type="Theme" uid="uid://bgcmd213j6gk1" path="res://gui/ressources/hud.tres" id="2_1wikm"] [ext_resource type="Texture2D" uid="uid://1ynlp05wj0hm" path="res://common/icons/rocket.svg" id="3_8kuag"] [ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="4_1wikm"] -[ext_resource type="LabelSettings" uid="uid://dqwayi8yjwau2" path="res://gui/ressources/title_label_settings.tres" id="6_hgus1"] -[ext_resource type="PackedScene" uid="uid://753270jjxmfg" path="res://gui/game/card/card.tscn" id="6_vg3tr"] -[ext_resource type="Texture2D" uid="uid://bgi4rc50par30" path="res://common/icons/arrow-narrow-right.svg" id="7_6k6bq"] -[ext_resource type="Texture2D" uid="uid://bd6qddv5ihkjr" path="res://common/icons/bucket.svg" id="7_ug5yk"] -[ext_resource type="Script" uid="uid://dj2pv1hiwjfv0" path="res://gui/game/card/scripts/card_info.gd" id="8_hgus1"] -[ext_resource type="Script" uid="uid://dgbh38j13g5kn" path="res://gui/game/card/scripts/card_section_info.gd" id="9_6k6bq"] -[ext_resource type="Texture2D" uid="uid://b752eqq4cm7ve" path="res://common/icons/building-factory-2.svg" id="10_58nqq"] -[ext_resource type="Script" uid="uid://b4tkium34c831" path="res://gui/game/card/scripts/card_stat_info.gd" id="11_ebkn5"] -[ext_resource type="Texture2D" uid="uid://dg00xnpp6ixls" path="res://common/icons/server-2.svg" id="12_2pmxd"] -[ext_resource type="Texture2D" uid="uid://baaujfw8piywi" path="res://common/icons/dna.svg" id="13_1lrfc"] -[ext_resource type="Texture2D" uid="uid://bsvxhafoxwmw0" path="res://common/icons/cube-3d-sphere.svg" id="14_e6tpi"] -[ext_resource type="Texture2D" uid="uid://7oh782g7ngop" path="res://common/icons/arrow-narrow-left.svg" id="17_58nqq"] -[ext_resource type="Theme" uid="uid://5au2k3vf2po3" path="res://gui/ressources/menu.tres" id="18_6k6bq"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x7cwm"] bg_color = Color(0.18, 0.18, 0.18, 0.48235294) @@ -29,141 +16,6 @@ corner_radius_bottom_left = 20 font = ExtResource("4_1wikm") font_size = 20 -[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_ebkn5"] - -[sub_resource type="Resource" id="Resource_ditr3"] -script = ExtResource("9_6k6bq") -title_text = "Mutations" -title_icon = ExtResource("10_58nqq") -text = "This is a mutation" -metadata/_custom_type_script = "uid://dgbh38j13g5kn" - -[sub_resource type="Resource" id="Resource_ikhlb"] -script = ExtResource("11_ebkn5") -text = "8" -icon = ExtResource("12_2pmxd") -metadata/_custom_type_script = "uid://b4tkium34c831" - -[sub_resource type="Resource" id="Resource_puixe"] -script = ExtResource("8_hgus1") -title = "Hello" -subtitle = "Mature" -texture = ExtResource("13_1lrfc") -important_stat_text = "8" -important_stat_icon = ExtResource("7_ug5yk") -stats = Array[ExtResource("11_ebkn5")]([SubResource("Resource_ikhlb")]) -sections = Array[ExtResource("9_6k6bq")]([SubResource("Resource_ditr3")]) -metadata/_custom_type_script = "uid://dj2pv1hiwjfv0" - -[sub_resource type="Animation" id="Animation_6k6bq"] -length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath(".:visible") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [true] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("MarginContainer:theme_override_constants/separation") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [12] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath(".:modulate:a") -tracks/2/interp = 1 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [1.0] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Background:modulate:a") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 1, -"values": [1.0] -} - -[sub_resource type="Animation" id="Animation_58nqq"] -resource_name = "appear" -length = 0.5 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath(".:visible") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0, 0.1), -"transitions": PackedFloat32Array(1, 1), -"update": 1, -"values": [false, true] -} -tracks/1/type = "value" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("MarginContainer:theme_override_constants/separation") -tracks/1/interp = 2 -tracks/1/loop_wrap = true -tracks/1/keys = { -"times": PackedFloat32Array(0.06666666, 0.5), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [183, 12] -} -tracks/2/type = "value" -tracks/2/imported = false -tracks/2/enabled = true -tracks/2/path = NodePath(".:modulate:a") -tracks/2/interp = 2 -tracks/2/loop_wrap = true -tracks/2/keys = { -"times": PackedFloat32Array(0, 0.5), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [0.0, 1.0] -} -tracks/3/type = "value" -tracks/3/imported = false -tracks/3/enabled = true -tracks/3/path = NodePath("Background:modulate:a") -tracks/3/interp = 1 -tracks/3/loop_wrap = true -tracks/3/keys = { -"times": PackedFloat32Array(0.06666667, 0.5), -"transitions": PackedFloat32Array(1, 1), -"update": 0, -"values": [0.0, 0.8] -} - -[sub_resource type="AnimationLibrary" id="AnimationLibrary_ebkn5"] -_data = { -&"RESET": SubResource("Animation_6k6bq"), -&"appear": SubResource("Animation_58nqq") -} - [node name="Tutorial" type="CanvasLayer" unique_id=36887292] script = ExtResource("1_ie1q8") metadata/_edit_horizontal_guides_ = [369.0] @@ -208,267 +60,3 @@ label_settings = SubResource("LabelSettings_8kuag") [node name="Steps" type="VBoxContainer" parent="MarginContainer/TutorialStepsPanelContainer/MarginContainer/VBoxContainer" unique_id=125170550] unique_name_in_owner = true layout_mode = 2 - -[node name="PlantInfoTutorial" type="Control" parent="." unique_id=1586592931] -unique_name_in_owner = true -layout_mode = 3 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 - -[node name="Background" type="ColorRect" parent="PlantInfoTutorial" unique_id=35513528] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -color = Color(0.037180007, 0.020800002, 0.13, 1) - -[node name="MarginContainer" type="VBoxContainer" parent="PlantInfoTutorial" unique_id=1757534024] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -theme_override_constants/separation = 12 -alignment = 1 - -[node name="Title" type="Label" parent="PlantInfoTutorial/MarginContainer" unique_id=1842689362] -layout_mode = 2 -text = "PLANTS_INFO" -label_settings = ExtResource("6_hgus1") -horizontal_alignment = 1 - -[node name="Subtitle" type="Label" parent="PlantInfoTutorial/MarginContainer" unique_id=656340742] -layout_mode = 2 -text = "OBTAIN_INFORMATION_ON_PLANTS_WHILE_HOVERING_PLANTS_BASE" -horizontal_alignment = 1 - -[node name="GridContainer" type="GridContainer" parent="PlantInfoTutorial/MarginContainer" unique_id=1124442982] -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 4 -columns = 3 - -[node name="VBoxContainer" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=1598939949] -layout_mode = 2 -theme_override_constants/separation = 8 - -[node name="HBoxContainer" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer" unique_id=1972134386] -layout_mode = 2 -alignment = 1 - -[node name="Label" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer" unique_id=263525139] -custom_minimum_size = Vector2(300, 0) -layout_mode = 2 -bbcode_enabled = true -text = "PLANT_NAME_TEXT" -fit_content = true -scroll_active = false -vertical_alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer" unique_id=1507687253] -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 8 -texture = ExtResource("7_6k6bq") -stretch_mode = 5 - -[node name="HBoxContainer3" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer" unique_id=483641916] -layout_mode = 2 -alignment = 1 - -[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer3" unique_id=553756431] -custom_minimum_size = Vector2(300, 0) -layout_mode = 2 -bbcode_enabled = true -text = "PLANT_STATS_TEXT" -fit_content = true -scroll_active = false -vertical_alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer/HBoxContainer3" unique_id=953954556] -layout_mode = 2 -size_flags_vertical = 0 -texture = ExtResource("7_6k6bq") -stretch_mode = 5 - -[node name="VBoxContainer3" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=1226314631] -layout_mode = 2 - -[node name="HSeparator" type="HSeparator" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=591048390] -layout_mode = 2 -theme_override_constants/separation = 30 -theme_override_styles/separator = SubResource("StyleBoxEmpty_ebkn5") - -[node name="PlantInfoCard" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=1085885349 instance=ExtResource("6_vg3tr")] -unique_name_in_owner = true -custom_minimum_size = Vector2(350, 0) -layout_mode = 2 -info = SubResource("Resource_puixe") - -[node name="VBoxContainer2" type="VBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer" unique_id=906180848] -layout_mode = 2 -theme_override_constants/separation = 8 - -[node name="HSeparator" type="HSeparator" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=760754866] -layout_mode = 2 -theme_override_constants/separation = 32 -theme_override_styles/separator = SubResource("StyleBoxEmpty_ebkn5") - -[node name="HBoxContainer" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=383033253] -layout_mode = 2 -alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer" unique_id=475071884] -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 4 -texture = ExtResource("17_58nqq") -stretch_mode = 5 - -[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer" unique_id=1479217505] -custom_minimum_size = Vector2(300, 0) -layout_mode = 2 -bbcode_enabled = true -text = "PLANT_SCORE_TEXT" -fit_content = true -scroll_active = false -horizontal_alignment = 2 -vertical_alignment = 1 - -[node name="HBoxContainer2" type="HBoxContainer" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=2062134463] -visible = false -layout_mode = 2 -alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=392813755] -layout_mode = 2 -size_flags_vertical = 4 -texture = ExtResource("17_58nqq") -stretch_mode = 5 - -[node name="Label2" type="RichTextLabel" parent="PlantInfoTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=472790254] -custom_minimum_size = Vector2(300, 0) -layout_mode = 2 -bbcode_enabled = true -text = "PLANT_MUTATION_TEXT" -fit_content = true -scroll_active = false -horizontal_alignment = 2 -vertical_alignment = 1 - -[node name="PlantInfoOkButton" type="Button" parent="PlantInfoTutorial/MarginContainer" unique_id=1684351093] -layout_mode = 2 -size_flags_horizontal = 4 -theme = ExtResource("18_6k6bq") -text = "OK" - -[node name="PlantInfoTutorialAnimationPlayer" type="AnimationPlayer" parent="PlantInfoTutorial" unique_id=549667783] -unique_name_in_owner = true -libraries/ = SubResource("AnimationLibrary_ebkn5") - -[node name="MutationTutorial" type="Control" parent="." unique_id=722588851] -unique_name_in_owner = true -layout_mode = 3 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 - -[node name="Background" type="ColorRect" parent="MutationTutorial" unique_id=250614963] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -color = Color(0.037180007, 0.020800002, 0.13, 1) - -[node name="MarginContainer" type="VBoxContainer" parent="MutationTutorial" unique_id=1821562698] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -theme_override_constants/separation = 12 -alignment = 1 - -[node name="Title" type="Label" parent="MutationTutorial/MarginContainer" unique_id=1928457691] -layout_mode = 2 -text = "MUTATIONS" -label_settings = ExtResource("6_hgus1") -horizontal_alignment = 1 - -[node name="Subtitle" type="Label" parent="MutationTutorial/MarginContainer" unique_id=1467489572] -layout_mode = 2 -text = "SEEDS_HAVE_A_CHANCE_TO_GAIN_MUTATIONS" -horizontal_alignment = 1 - -[node name="GridContainer" type="GridContainer" parent="MutationTutorial/MarginContainer" unique_id=386984353] -layout_mode = 2 -size_flags_horizontal = 4 -size_flags_vertical = 4 -columns = 3 - -[node name="VBoxContainer3" type="VBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer" unique_id=2005513108] -layout_mode = 2 - -[node name="HSeparator" type="HSeparator" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=593977172] -layout_mode = 2 -theme_override_constants/separation = 30 -theme_override_styles/separator = SubResource("StyleBoxEmpty_ebkn5") - -[node name="MutationCard" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer3" unique_id=1165095240 instance=ExtResource("6_vg3tr")] -unique_name_in_owner = true -custom_minimum_size = Vector2(350, 0) -layout_mode = 2 -info = SubResource("Resource_puixe") - -[node name="VBoxContainer2" type="VBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer" unique_id=494292951] -layout_mode = 2 -theme_override_constants/separation = 8 - -[node name="HSeparator" type="HSeparator" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=331005698] -layout_mode = 2 -theme_override_constants/separation = 120 -theme_override_styles/separator = SubResource("StyleBoxEmpty_ebkn5") - -[node name="HBoxContainer2" type="HBoxContainer" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2" unique_id=781597357] -layout_mode = 2 -alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=281613573] -layout_mode = 2 -size_flags_vertical = 4 -texture = ExtResource("17_58nqq") -stretch_mode = 5 - -[node name="Label2" type="RichTextLabel" parent="MutationTutorial/MarginContainer/GridContainer/VBoxContainer2/HBoxContainer2" unique_id=1347221574] -custom_minimum_size = Vector2(300, 0) -layout_mode = 2 -bbcode_enabled = true -text = "PLANT_MUTATION_TEXT" -fit_content = true -scroll_active = false -horizontal_alignment = 2 -vertical_alignment = 1 - -[node name="MutationOkButton" type="Button" parent="MutationTutorial/MarginContainer" unique_id=1316064682] -layout_mode = 2 -size_flags_horizontal = 4 -theme = ExtResource("18_6k6bq") -text = "OK" - -[node name="MutationTutorialAnimationPlayer" type="AnimationPlayer" parent="MutationTutorial" unique_id=127058676] -unique_name_in_owner = true -libraries/ = SubResource("AnimationLibrary_ebkn5") - -[connection signal="button_down" from="PlantInfoTutorial/MarginContainer/PlantInfoOkButton" to="." method="_on_plant_info_ok_button_button_down"] -[connection signal="button_down" from="MutationTutorial/MarginContainer/MutationOkButton" to="." method="_on_mutation_ok_button_button_down"] diff --git a/gui/menu/controls/controls.tscn b/gui/menu/controls/controls.tscn index 080734d..fe93bd3 100644 --- a/gui/menu/controls/controls.tscn +++ b/gui/menu/controls/controls.tscn @@ -1,9 +1,9 @@ -[gd_scene load_steps=3 format=3 uid="uid://b4qe1dwwsk87t"] +[gd_scene format=3 uid="uid://b4qe1dwwsk87t"] [ext_resource type="Script" uid="uid://dmefdkcsmgr4l" path="res://gui/menu/controls/scripts/controls.gd" id="1_g86te"] [ext_resource type="PackedScene" uid="uid://brxrl7sipyy6k" path="res://gui/menu/window/window.tscn" id="1_mnd1d"] -[node name="Controls" type="Control"] +[node name="Controls" type="Control" unique_id=1212554468] layout_mode = 3 anchors_preset = 15 anchor_right = 1.0 @@ -14,7 +14,7 @@ size_flags_horizontal = 3 size_flags_vertical = 3 script = ExtResource("1_g86te") -[node name="ControlsWindow" parent="." instance=ExtResource("1_mnd1d")] +[node name="ControlsWindow" parent="." unique_id=257725506 instance=ExtResource("1_mnd1d")] unique_name_in_owner = true custom_minimum_size = Vector2(900, 500) layout_mode = 1 @@ -23,14 +23,14 @@ title = "CONTROLS" [node name="WindowTitle" parent="ControlsWindow/WindowHeader/MarginContainer" index="0"] text = "CONTROLS" -[node name="MarginContainer" type="MarginContainer" parent="ControlsWindow/WindowContent/MarginContainer/ContentContainer" index="0"] +[node name="MarginContainer" type="MarginContainer" parent="ControlsWindow/WindowContent/MarginContainer/ContentContainer" index="0" unique_id=1413806535] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 3 theme_override_constants/margin_left = 5 theme_override_constants/margin_top = 0 -[node name="ControlsContainer" type="VBoxContainer" parent="ControlsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer"] +[node name="ControlsContainer" type="VBoxContainer" parent="ControlsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer" unique_id=167218094] unique_name_in_owner = true layout_mode = 2 diff --git a/gui/menu/controls/scripts/controls.gd b/gui/menu/controls/scripts/controls.gd index 9afa107..c4a56fc 100644 --- a/gui/menu/controls/scripts/controls.gd +++ b/gui/menu/controls/scripts/controls.gd @@ -9,9 +9,10 @@ func _ready(): create_input_list() if not Engine.is_editor_hint(): %ControlsWindow.close_window() - show() func open_controls(): + create_input_list() + show() %ControlsWindow.open_window() func close_controls(): diff --git a/gui/menu/settings/scripts/settings.gd b/gui/menu/settings/scripts/settings.gd index 4d9351e..c8fa114 100644 --- a/gui/menu/settings/scripts/settings.gd +++ b/gui/menu/settings/scripts/settings.gd @@ -8,14 +8,14 @@ class_name GuiSettings @export_tool_button("Close", "Callable") var close_action = close_settings func _ready(): + if not Engine.is_editor_hint(): + %SettingsWindow.close_window() + +func open_settings(): setup_languages() setup_sound() setup_video() - if not Engine.is_editor_hint(): - %SettingsWindow.close_window() show() - -func open_settings(): %SettingsWindow.open_window() func close_settings(): diff --git a/gui/pause/pause.tscn b/gui/pause/pause.tscn index 749dc30..0949554 100644 --- a/gui/pause/pause.tscn +++ b/gui/pause/pause.tscn @@ -177,10 +177,12 @@ vertical_alignment = 1 [node name="Settings" parent="." unique_id=758381952 instance=ExtResource("4_58dya")] unique_name_in_owner = true +visible = false mouse_filter = 2 [node name="Controls" parent="." unique_id=358658336 instance=ExtResource("11_urlqn")] unique_name_in_owner = true +visible = false mouse_filter = 2 [node name="AnimationPlayer" type="AnimationPlayer" parent="." unique_id=1779993260] diff --git a/gui/pause/scripts/pause.gd b/gui/pause/scripts/pause.gd index a1cc77d..0f44f00 100644 --- a/gui/pause/scripts/pause.gd +++ b/gui/pause/scripts/pause.gd @@ -34,7 +34,7 @@ func _input(_event): pause = not pause func _on_timeline_ended(): - if SceneManager.actual_scene.mouse_captured: + if SceneManager.actual_scene and SceneManager.actual_scene.mouse_captured: Input.mouse_mode = Input.MOUSE_MODE_CAPTURED func _on_resume_pressed(): @@ -47,9 +47,15 @@ func _on_game_gui_pause_asked(): pause = true func _on_settings_pressed(): + open_settings() + +func open_settings(): %Settings.open_settings() func _on_controls_pressed(): + open_controls() + +func open_controls(): %Controls.open_controls() func _on_give_up_pressed(): diff --git a/gui/pointer/pointer.tscn b/gui/pointer/pointer.tscn index a9c296b..81cdc2b 100644 --- a/gui/pointer/pointer.tscn +++ b/gui/pointer/pointer.tscn @@ -3,6 +3,7 @@ [ext_resource type="Script" uid="uid://vhumsfntpqcl" path="res://gui/pointer/scripts/pointer.gd" id="1_1pe2k"] [ext_resource type="Texture2D" uid="uid://bspffyprdywgc" path="res://gui/pointer/assets/cursors/pointer.svg" id="2_q4bvb"] [ext_resource type="AudioStream" uid="uid://bym03qp4n6vep" path="res://gui/pointer/assets/sounds/click.wav" id="3_kj0cm"] +[ext_resource type="Texture2D" uid="uid://b3vg3tipd4boh" path="res://common/icons/hand-finger.svg" id="3_mw4ws"] [ext_resource type="AudioStream" uid="uid://bhsew2amu3ydx" path="res://gui/pointer/assets/sounds/action_press_time.wav" id="3_tof6i"] [ext_resource type="Texture2D" uid="uid://dcgnamu7sb3ov" path="res://common/icons/bolt.svg" id="4_b4uwv"] [ext_resource type="AudioStream" uid="uid://cs4y6sinpth8e" path="res://common/audio_manager/assets/sfx/recharge/recharge_capsule_1.wav" id="4_mw4ws"] @@ -73,6 +74,7 @@ metadata/_custom_type_script = "uid://dj2pv1hiwjfv0" process_mode = 3 script = ExtResource("1_1pe2k") default_cursor = ExtResource("2_q4bvb") +hover_cursor = ExtResource("3_mw4ws") [node name="InspectorCanvasLayer" type="CanvasLayer" parent="." unique_id=561032710] layer = 128 diff --git a/gui/pointer/scripts/pointer.gd b/gui/pointer/scripts/pointer.gd index 28f8a47..b88fccf 100644 --- a/gui/pointer/scripts/pointer.gd +++ b/gui/pointer/scripts/pointer.gd @@ -7,12 +7,11 @@ const ZONE_OPACITY = 0.4 const ZONE_ACTIVATED_COLOR = Color("#96B3DB") const ZONE_DEACTIVATED_COLOR = Color("#FF006E") -const SEED_CURSOR = preload("res://common/icons/shovel.svg") - const CARD_VISUALISATION_TIME = 0.3 const CARD_UP_PADDING = 50 @export var default_cursor : Texture2D +@export var hover_cursor : Texture2D var current_inspect : Node = null var inspected : Node = null @@ -31,6 +30,7 @@ var action_disabled := false func _ready(): Input.set_custom_mouse_cursor(default_cursor) + Input.set_custom_mouse_cursor(hover_cursor, Input.CURSOR_POINTING_HAND) %Action.visible = false func _process(delta): @@ -43,7 +43,7 @@ func _process(delta): time_last_inspected += delta %Inspector.position = get_viewport().get_mouse_position() - if current_selected_item and SceneManager.actual_scene.scene_id == "REGION": + if not action_disabled and current_selected_item and SceneManager.actual_scene.scene_id == "REGION": %ActionZone.radius = current_selected_item.usage_zone_radius * GameInfo.settings_data.zoom %ActionZone.color = ZONE_ACTIVATED_COLOR if can_use_item else ZONE_DEACTIVATED_COLOR else: @@ -175,7 +175,7 @@ func update_card(): func update_inspector(): - if player and (get_tree() and not get_tree().paused): + if player and not action_disabled and (get_tree() and not get_tree().paused): if can_interact and current_inspect and current_inspect is Interactable: %Action.visible = true %ActionText.text = current_inspect.interact_text() diff --git a/gui/ressources/hud.tres b/gui/ressources/hud.tres index 3281a34..5c568e4 100644 --- a/gui/ressources/hud.tres +++ b/gui/ressources/hud.tres @@ -12,12 +12,12 @@ [ext_resource type="Texture2D" uid="uid://chelw5jxqyyi4" path="res://gui/ressources/textures/option-button-icon.svg" id="7_frr6k"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hv6r3"] -bg_color = Color(0.976471, 0.741176, 0.4, 1) +bg_color = Color(0.98039216, 0.53333336, 0.08627451, 1) border_width_left = 10 border_width_top = 10 border_width_right = 10 border_width_bottom = 10 -border_color = Color(0.975367, 0.740445, 0.401877, 1) +border_color = Color(0.98039216, 0.53333336, 0.08627451, 1) corner_radius_top_left = 5 corner_radius_top_right = 5 corner_radius_bottom_right = 5 @@ -161,6 +161,8 @@ corner_radius_bottom_left = 5 [resource] Button/colors/font_color = Color(1, 1, 1, 1) +Button/colors/font_hover_color = Color(0.5882353, 0.7019608, 0.85882354, 1) +Button/colors/icon_hover_color = Color(0.5882353, 0.7019608, 0.85882354, 1) Button/font_sizes/font_size = 25 Button/fonts/font = ExtResource("1_g7s0b") Button/styles/hover = SubResource("StyleBoxFlat_hv6r3") diff --git a/gui/ressources/menu.tres b/gui/ressources/menu.tres index 765b89d..337d835 100644 --- a/gui/ressources/menu.tres +++ b/gui/ressources/menu.tres @@ -161,7 +161,7 @@ corner_radius_bottom_left = 5 [resource] Button/colors/font_color = Color(1, 1, 1, 1) -Button/colors/font_hover_color = Color(0.60122275, 0.6012229, 0.60122395, 1) +Button/colors/font_hover_color = Color(0.5882353, 0.7019608, 0.85882354, 1) Button/font_sizes/font_size = 25 Button/fonts/font = ExtResource("1_6ccgi") Button/styles/hover = SubResource("StyleBoxFlat_hv6r3") diff --git a/project.godot b/project.godot index c9f06ca..e2b9a15 100644 --- a/project.godot +++ b/project.godot @@ -16,7 +16,7 @@ compatibility/default_parent_skeleton_in_mesh_instance_3d=true config/name="Seeding The Wasteland" config/description="Seeding planets is a survival, managment and cosy game in which you play a little gardener robot." -config/version="beta-1.4" +config/version="demo-1.0" run/main_scene="uid://c5bruelvqbm1k" config/features=PackedStringArray("4.6", "Forward Plus") config/icon="uid://df0y0s666ui4h" @@ -45,16 +45,16 @@ directories/dch_directory={ "mysterious_demeter": "res://dialogs/characters/mysterious_demeter.dch" } directories/dtl_directory={ -"cave": "res://dialogs/timelines/astra/cave.dtl", -"mercury_arrival": "res://dialogs/timelines/astra/mercury_arrival.dtl", -"mercury_departure": "res://dialogs/timelines/mercury/mercury_departure.dtl", -"tutorial/demeter_intro": "res://dialogs/timelines/tutorial/demeter_intro.dtl", -"tutorial/demeter_outro": "res://dialogs/timelines/tutorial/demeter_outro.dtl", -"tutorial/demeter_ship_failed": "res://dialogs/timelines/tutorial/demeter_ship_failed.dtl", -"tutorial/demeter_ship_presentation": "res://dialogs/timelines/tutorial/demeter_ship_presentation.dtl", -"tutorial/wake_up": "res://dialogs/timelines/tutorial/wake_up.dtl", -"venus_arrival": "res://dialogs/timelines/mercury/venus_arrival.dtl", -"venus_departure": "res://dialogs/timelines/beta/venus_departure.dtl" +"8_venus_departure": "res://dialogs/timelines/1_waking_up/8_venus_departure.dtl", +"9_borea": "res://dialogs/timelines/1_waking_up/9_borea.dtl", +"cave": "res://dialogs/timelines/1_waking_up/4_cave.dtl", +"mercury_arrival": "res://dialogs/timelines/1_waking_up/5_mercury_arrival.dtl", +"mercury_departure": "res://dialogs/timelines/1_waking_up/6_mercury_departure.dtl", +"tutorial/demeter_intro": "res://dialogs/timelines/1_waking_up/2_demeter_intro.dtl", +"tutorial/demeter_ship_failed": "res://dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl", +"tutorial/demeter_ship_presentation": "res://dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl", +"tutorial/wake_up": "res://dialogs/timelines/1_waking_up/1_waking_up.dtl", +"venus_arrival": "res://dialogs/timelines/1_waking_up/7_venus_arrival.dtl" } layout/style_directory={ "": "res://dialogs/dialogs_style.tres", @@ -111,7 +111,7 @@ variables={ "whoareyou": "false", "whynorth": "false" } -translation/id_counter=236 +translation/id_counter=276 translation/locales=[] history/visited_event_history_enabled=true audio/type_sound_bus="Sfx" @@ -247,7 +247,7 @@ zoom_out={ [internationalization] locale/translation_remaps={} -locale/translations=PackedStringArray("res://translation/game/gui.en.translation", "res://translation/game/gui.fr.translation", "res://translation/dialogs/dialogic_character_translations.en.translation", "res://translation/dialogs/dialogic_demeter_astra_failed_translation.en.translation", "res://translation/dialogs/dialogic_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_outro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_post_tutorial_translation.en.translation", "res://translation/dialogs/dialogic_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_wake_up_translation.en.translation", "res://translation/dialogs/dialogic_wake_up_translation.fr.translation", "res://translation/dialogs/dialogic_demeter_intro_translation.fr.translation", "res://translation/dialogs/dialogic_demeter_ship_presentation_translation.fr.translation", "res://translation/dialogs/dialogic_demeter_post_tutorial_translation.fr.translation", "res://translation/dialogs/dialogic_character_translations.fr.translation", "res://translation/dialogs/dialogic_demeter_astra_failed_translation.fr.translation", "res://translation/dialogs/dialogic_demeter_outro_translation.fr.translation", "res://translation/dialogs/dialogic_demeter_ship_failed_translation.en.translation", "res://translation/dialogs/dialogic_demeter_ship_failed_translation.fr.translation", "res://translation/dialogs/dialogic_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_mercury_arrival_translation.fr.translation", "res://translation/dialogs/dialogic_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_mercury_departure_translation.fr.translation", "res://translation/dialogs/dialogic_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_venus_arrival_translation.fr.translation", "res://translation/dialogs/dialogic_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_venus_departure_translation.fr.translation", "res://translation/dialogs/dialogic_cave_translation.en.translation", "res://translation/dialogs/dialogic_cave_translation.fr.translation") +locale/translations=PackedStringArray("res://translation/game/gui.en.translation", "res://translation/game/gui.fr.translation", "res://translation/dialogs/dialogic_character_translations.en.translation", "res://translation/dialogs/dialogic_demeter_ship_failed_translation.en.translation", "res://translation/dialogs/dialogic_demeter_ship_failed_translation.fr.translation", "res://translation/dialogs/dialogic_1_waking_up_translation.en.translation", "res://translation/dialogs/dialogic_1_waking_up_translation.fr.translation", "res://translation/dialogs/dialogic_2_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_2_demeter_intro_translation.fr.translation", "res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.fr.translation", "res://translation/dialogs/dialogic_4_cave_translation.en.translation", "res://translation/dialogs/dialogic_4_cave_translation.fr.translation", "res://translation/dialogs/dialogic_5_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_5_mercury_arrival_translation.fr.translation", "res://translation/dialogs/dialogic_6_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_6_mercury_departure_translation.fr.translation", "res://translation/dialogs/dialogic_7_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_7_venus_arrival_translation.fr.translation", "res://translation/dialogs/dialogic_8_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_8_venus_departure_translation.fr.translation", "res://translation/dialogs/dialogic_9_borea_translation.en.translation", "res://translation/dialogs/dialogic_cave_translation.en.translation", "res://translation/dialogs/dialogic_cave_translation.fr.translation", "res://translation/dialogs/dialogic_character_translations.fr.translation", "res://translation/dialogs/dialogic_demeter_astra_failed_translation.en.translation", "res://translation/dialogs/dialogic_demeter_astra_failed_translation.fr.translation") locale/test="fr" [rendering] diff --git a/stages/3d_scenes/aqua_base/AquaBase.tscn b/stages/3d_scenes/aqua_base/AquaBase.tscn new file mode 100644 index 0000000..ceb706f --- /dev/null +++ b/stages/3d_scenes/aqua_base/AquaBase.tscn @@ -0,0 +1,140 @@ +[gd_scene format=3 uid="uid://d3f4k7i368kas"] + +[ext_resource type="Script" uid="uid://bti5mdrogptcl" path="res://stages/3d_scenes/aqua_base/scripts/aqua_base.gd" id="1_dltk4"] +[ext_resource type="Texture2D" uid="uid://cww35xu1yqivp" path="res://stages/3d_scenes/cockpit_scene/assets/textures/sky.png" id="2_mr0dk"] +[ext_resource type="PackedScene" uid="uid://ci5vs3qhiuf0x" path="res://stages/3d_scenes/common/assets/3d/hub.blend" id="3_mr0dk"] +[ext_resource type="Shader" uid="uid://n4s2kr10ivgb" path="res://common/vfx/materials/shaders/underwater.gdshader" id="4_dltk4"] +[ext_resource type="PackedScene" uid="uid://da7a74dg30q1l" path="res://entities/player_3d/player_3D.tscn" id="4_k4ak1"] +[ext_resource type="PackedScene" uid="uid://c6gieu3mrlepn" path="res://stages/3d_scenes/common/assets/3d/ai_broken_receptacle.blend" id="6_m5l0g"] + +[sub_resource type="Environment" id="Environment_m5l0g"] +background_mode = 2 +background_color = Color(1, 1, 1, 1) +ambient_light_source = 2 +ambient_light_color = Color(0.13725491, 0.39215687, 0.6666667, 1) +ambient_light_energy = 0.29 +reflected_light_source = 2 +tonemap_mode = 2 +tonemap_exposure = 0.7 +tonemap_white = 1.84 +glow_enabled = true +glow_intensity = 0.22 +glow_bloom = 0.22 +glow_hdr_threshold = 0.79 +glow_hdr_scale = 0.0 +glow_hdr_luminance_cap = 5.63 +fog_enabled = true +fog_light_color = Color(0.13725491, 0.39215687, 0.6666667, 1) +fog_sky_affect = 0.0 +volumetric_fog_sky_affect = 0.0 +adjustment_enabled = true +adjustment_saturation = 1.3 + +[sub_resource type="SphereMesh" id="SphereMesh_nydtf"] +flip_faces = true + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_u74oo"] +shading_mode = 0 +albedo_color = Color(0.5882353, 0.7019608, 0.85882354, 1) +albedo_texture = ExtResource("2_mr0dk") + +[sub_resource type="QuadMesh" id="QuadMesh_m5l0g"] +size = Vector2(3, 3) + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_nydtf"] +render_priority = 0 +shader = ExtResource("4_dltk4") +shader_parameter/tint = Color(0.13725491, 0.39215687, 0.6666667, 0.69411767) +shader_parameter/wave_speed = 3.0 +shader_parameter/wave_freq = 10.0 +shader_parameter/wave_width = 1.0 +shader_parameter/blur = 2.0 + +[sub_resource type="Gradient" id="Gradient_m5l0g"] +offsets = PackedFloat32Array(0, 0.3764706, 0.56764704, 1) +colors = PackedColorArray(1, 1, 1, 1, 0.98293203, 0.98764604, 0.99414814, 1, 0.5882353, 0.7019608, 0.85882354, 1, 0.5882353, 0.7019608, 0.85882354, 0) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_nydtf"] +gradient = SubResource("Gradient_m5l0g") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_3iiia"] +transparency = 1 +shading_mode = 0 +albedo_texture = SubResource("GradientTexture2D_nydtf") + +[sub_resource type="PlaneMesh" id="PlaneMesh_x2twa"] +material = SubResource("StandardMaterial3D_3iiia") +size = Vector2(20, 20) + +[sub_resource type="Gradient" id="Gradient_dltk4"] +offsets = PackedFloat32Array(0, 0.7042683, 1) +colors = PackedColorArray(1, 1, 1, 1, 1, 1, 1, 0.86890244, 1, 1, 1, 0) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_m5l0g"] +gradient = SubResource("Gradient_dltk4") +fill = 1 +fill_from = Vector2(0.5, 0.5) +fill_to = Vector2(1, 0.5) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nydtf"] +transparency = 1 +vertex_color_use_as_albedo = true +albedo_texture = SubResource("GradientTexture2D_m5l0g") +billboard_mode = 3 +particles_anim_h_frames = 1 +particles_anim_v_frames = 1 +particles_anim_loop = false + +[sub_resource type="PlaneMesh" id="PlaneMesh_u74oo"] +lightmap_size_hint = Vector2i(12, 12) +material = SubResource("StandardMaterial3D_nydtf") +size = Vector2(0.1, 0.1) +orientation = 2 + +[node name="AquaBase" type="Node3D" unique_id=1653537813] +script = ExtResource("1_dltk4") + +[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1185661293] +environment = SubResource("Environment_m5l0g") + +[node name="DaySky" type="MeshInstance3D" parent="WorldEnvironment" unique_id=1271230410] +transform = Transform3D(1000, 0, 0, 0, 1000, 0, 0, 0, 1000, 0.00041627884, 0.019779027, -0.019804716) +mesh = SubResource("SphereMesh_nydtf") +surface_material_override/0 = SubResource("StandardMaterial3D_u74oo") + +[node name="hub" parent="." unique_id=1785379104 instance=ExtResource("3_mr0dk")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.22, 0) + +[node name="Player3D" parent="." unique_id=549819967 instance=ExtResource("4_k4ak1")] +transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 32.225853, -2.260468, 9.559124) + +[node name="Underwater" type="MeshInstance3D" parent="Player3D/Camera3D" parent_id_path=PackedInt32Array(549819967, 2091917091) index="1" unique_id=1179772459] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.55200577) +mesh = SubResource("QuadMesh_m5l0g") +surface_material_override/0 = SubResource("ShaderMaterial_nydtf") + +[node name="WaterReflect" type="MeshInstance3D" parent="Player3D" unique_id=1233215154] +transform = Transform3D(1, -3.821371e-15, 8.742278e-08, 3.821371e-15, -1, -8.742278e-08, 8.742278e-08, 8.742278e-08, -1, 0, 54.698692, 0) +mesh = SubResource("PlaneMesh_x2twa") + +[node name="CPUParticles3D" type="CPUParticles3D" parent="." unique_id=2127323334] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.879577, -0.17123222, 2.5871792) +amount = 8000 +lifetime = 200.0 +preprocess = 200.0 +mesh = SubResource("PlaneMesh_u74oo") +emission_shape = 6 +emission_ring_axis = Vector3(0, 1, 0) +emission_ring_height = 15.85 +emission_ring_radius = 40.6 +emission_ring_inner_radius = 0.0 +emission_ring_cone_angle = 90.0 +gravity = Vector3(0, -0.005, 0) + +[node name="ai_broken_receptacle" parent="." unique_id=1978919617 instance=ExtResource("6_m5l0g")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.04378438, 0) + +[editable path="Player3D"] diff --git a/stages/3d_scenes/aqua_base/scripts/aqua_base.gd b/stages/3d_scenes/aqua_base/scripts/aqua_base.gd new file mode 100644 index 0000000..c003307 --- /dev/null +++ b/stages/3d_scenes/aqua_base/scripts/aqua_base.gd @@ -0,0 +1,5 @@ +extends Node3D + +func _ready(): + if not Engine.is_editor_hint(): + Input.mouse_mode = Input.MOUSE_MODE_CAPTURED diff --git a/stages/3d_scenes/aqua_base/scripts/aqua_base.gd.uid b/stages/3d_scenes/aqua_base/scripts/aqua_base.gd.uid new file mode 100644 index 0000000..65421b9 --- /dev/null +++ b/stages/3d_scenes/aqua_base/scripts/aqua_base.gd.uid @@ -0,0 +1 @@ +uid://bti5mdrogptcl diff --git a/stages/3d_scenes/astra_base/astra_base.tscn b/stages/3d_scenes/astra_base/astra_base.tscn index 153b44c..c922a1a 100644 --- a/stages/3d_scenes/astra_base/astra_base.tscn +++ b/stages/3d_scenes/astra_base/astra_base.tscn @@ -109,44 +109,6 @@ volumetric_fog_sky_affect = 0.0 adjustment_enabled = true adjustment_saturation = 1.3 -[sub_resource type="Animation" id="Animation_4wxm6"] -length = 0.001 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath(".:position") -tracks/0/interp = 1 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), -"update": 0, -"values": [Vector3(0, 0, 0)] -} - -[sub_resource type="Animation" id="Animation_kdvug"] -resource_name = "float" -length = 10.0 -loop_mode = 1 -tracks/0/type = "value" -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/path = NodePath(".:position") -tracks/0/interp = 2 -tracks/0/loop_wrap = true -tracks/0/keys = { -"times": PackedFloat32Array(-0.06666667, 5.1, 10), -"transitions": PackedFloat32Array(1, 1, 1), -"update": 0, -"values": [Vector3(0, 0, 0), Vector3(0, 0.3, 0), Vector3(0, 0, 0)] -} - -[sub_resource type="AnimationLibrary" id="AnimationLibrary_mwti2"] -_data = { -&"RESET": SubResource("Animation_4wxm6"), -&"float": SubResource("Animation_kdvug") -} - [sub_resource type="SphereShape3D" id="SphereShape3D_kdvug"] radius = 0.68145716 @@ -216,7 +178,7 @@ _data = { [node name="AstraBase" type="Node3D" unique_id=1360388667] script = ExtResource("1_kdvug") -room_part_number = 6 +room_part_number = 4 [node name="LiftAnimationPlayer" type="AnimationPlayer" parent="." unique_id=478089693] unique_name_in_owner = true @@ -238,12 +200,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -29.925, 1, 4.22) [node name="Phone" parent="." unique_id=429299908 instance=ExtResource("4_mwti2")] unique_name_in_owner = true -transform = Transform3D(-1, 0, -1.509958e-07, 0, 1, 0, 1.509958e-07, 0, -1, 0.8795166, 1.072888, -2.0494514) - -[node name="PhoneFloatAnimationPlayer" type="AnimationPlayer" parent="." unique_id=1462162735] -root_node = NodePath("../Phone/Model") -libraries/ = SubResource("AnimationLibrary_mwti2") -autoplay = &"float" +transform = Transform3D(-1, 0, -1.509958e-07, 0, 1, 0, 1.509958e-07, 0, -1, 0.8795166, 0.90269387, -2.0494514) [node name="Lift" parent="." unique_id=1854388434 instance=ExtResource("5_lhhy6")] unique_name_in_owner = true diff --git a/stages/3d_scenes/astra_base/scripts/astra_base.gd b/stages/3d_scenes/astra_base/scripts/astra_base.gd index f77a6e6..e101b82 100644 --- a/stages/3d_scenes/astra_base/scripts/astra_base.gd +++ b/stages/3d_scenes/astra_base/scripts/astra_base.gd @@ -7,7 +7,6 @@ const INCUBATOR_SCENE := preload("res://stages/3d_scenes/astra_base/incubator.ts const ROOM_PART_SHIFT := 21.4 const INCUBATOR_BY_ROOM := 8 const INCUBATOR_DISTANCE := 4.22 -const TIME_WITHOUT_PHONE := 5 const LIFT_TIME := 2 @@ -54,7 +53,6 @@ func story(): GameInfo.game_data.progression_data.story_step is TutorialStoryStep and not TutorialStoryStep.INTRO_DIALOG in GameInfo.game_data.dialogs_done ): - await get_tree().create_timer(TIME_WITHOUT_PHONE).timeout %Phone.play_audio() await %Phone.clicked %Phone.stop_audio() diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base.blend b/stages/3d_scenes/borea_base/assets/3d/borea_base.blend deleted file mode 100644 index 206a0f4..0000000 Binary files a/stages/3d_scenes/borea_base/assets/3d/borea_base.blend and /dev/null differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base_corridor.blend1 b/stages/3d_scenes/borea_base/assets/3d/borea_base_corridor.blend1 new file mode 100644 index 0000000..a03c8a6 Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/borea_base_corridor.blend1 differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base_door.blend1 b/stages/3d_scenes/borea_base/assets/3d/borea_base_door.blend1 new file mode 100644 index 0000000..675e6f3 Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/borea_base_door.blend1 differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base_hub.blend1 b/stages/3d_scenes/borea_base/assets/3d/borea_base_hub.blend1 new file mode 100644 index 0000000..1616ace Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/borea_base_hub.blend1 differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base_room.blend1 b/stages/3d_scenes/borea_base/assets/3d/borea_base_room.blend1 new file mode 100644 index 0000000..e9351bf Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/borea_base_room.blend1 differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_demeter.blend1 b/stages/3d_scenes/borea_base/assets/3d/borea_demeter.blend1 new file mode 100644 index 0000000..233477c Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/borea_demeter.blend1 differ diff --git a/stages/3d_scenes/borea_base/assets/3d/door_form.blend1 b/stages/3d_scenes/borea_base/assets/3d/door_form.blend1 new file mode 100644 index 0000000..274ebe6 Binary files /dev/null and b/stages/3d_scenes/borea_base/assets/3d/door_form.blend1 differ diff --git a/stages/3d_scenes/borea_base/borea_base.tscn b/stages/3d_scenes/borea_base/borea_base.tscn index 887dcce..d887989 100644 --- a/stages/3d_scenes/borea_base/borea_base.tscn +++ b/stages/3d_scenes/borea_base/borea_base.tscn @@ -1,12 +1,61 @@ [gd_scene format=3 uid="uid://cqg1avn1g0f1x"] -[ext_resource type="PackedScene" uid="uid://b83v0uxiukmbb" path="res://stages/3d_scenes/borea_base/assets/3d/borea_base.blend" id="1_dtguk"] [ext_resource type="Script" uid="uid://c37uqdnr2himm" path="res://stages/3d_scenes/borea_base/scripts/borea_base.gd" id="1_xd71i"] [ext_resource type="Texture2D" uid="uid://cww35xu1yqivp" path="res://stages/3d_scenes/cockpit_scene/assets/textures/sky.png" id="2_rsbui"] +[ext_resource type="Shader" uid="uid://cjgaitccxtwk0" path="res://common/vfx/materials/shaders/sky.gdshader" id="3_c8vcx"] [ext_resource type="PackedScene" uid="uid://da7a74dg30q1l" path="res://entities/player_3d/player_3D.tscn" id="3_xd71i"] +[ext_resource type="PackedScene" uid="uid://ci5vs3qhiuf0x" path="res://stages/3d_scenes/common/assets/3d/hub.blend" id="5_fevne"] +[ext_resource type="Texture2D" uid="uid://bc00ga286t0kk" path="res://dialogs/characters/portraits/mysterious_demeter.png" id="6_antnu"] +[ext_resource type="PackedScene" uid="uid://cah00gew65ire" path="res://stages/3d_scenes/common/assets/3d/door.blend" id="7_s7tqr"] +[ext_resource type="PackedScene" uid="uid://7pitc7kjmffv" path="res://stages/3d_scenes/common/assets/3d/corridor.blend" id="8_2ei4e"] +[ext_resource type="PackedScene" uid="uid://cepouw76en6r" path="res://stages/3d_scenes/common/assets/3d/room.blend" id="9_hlox4"] +[ext_resource type="ArrayMesh" uid="uid://u78be56ih8xw" path="res://stages/3d_scenes/common/assets/3d/moss.res" id="10_vetlt"] +[ext_resource type="ArrayMesh" uid="uid://cb5tklxnk2dek" path="res://stages/3d_scenes/common/assets/3d/plant.res" id="12_0dh60"] +[ext_resource type="ArrayMesh" uid="uid://bq4k7fyehvwfe" path="res://stages/3d_scenes/common/assets/3d/falling_plant.res" id="12_67c4d"] +[ext_resource type="PackedScene" uid="uid://brckina5otmj6" path="res://stages/3d_scenes/common/assets/3d/communication.blend" id="13_67c4d"] +[ext_resource type="PackedScene" uid="uid://c2unmkf4ec4gf" path="res://entities/interactable_3d/ai_receptacle/ai_receptacle.tscn" id="13_antnu"] +[ext_resource type="PackedScene" uid="uid://c5a32n6rjjlnt" path="res://gui/credits/credits.tscn" id="15_jcdon"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_2ei4e"] +shader = ExtResource("3_c8vcx") +shader_parameter/day_top_color = Color(0.5882353, 0.7019608, 0.85882354, 1) +shader_parameter/day_bottom_color = Color(0.13725491, 0.39215687, 0.6666667, 1) +shader_parameter/sunset_top_color = Color(1, 0, 0.43137255, 1) +shader_parameter/sunset_bottom_color = Color(0.54509807, 0.1764706, 1, 1) +shader_parameter/night_top_color = Color(0.0627451, 0.05882353, 0.16862746, 1) +shader_parameter/night_bottom_color = Color(0.0627451, 0.05882353, 0.16862746, 1) +shader_parameter/horizon_color = Color(0.13725491, 0.39215687, 0.6666667, 1) +shader_parameter/horizon_blur = 0.07999999821184 +shader_parameter/sun_color = Color(1, 0.9, 0, 1) +shader_parameter/sun_sunset_color = Color(10, 0, 0, 1) +shader_parameter/sun_size = 0.995 +shader_parameter/sun_blur = 10.0 +shader_parameter/moon_color = Color(1, 0.95, 0.7, 1) +shader_parameter/moon_size = 0.06 +shader_parameter/moon_blur = 0.1 +shader_parameter/clouds_edge_color = Color(0.8, 0.8, 0.98, 1) +shader_parameter/clouds_top_color = Color(1, 1, 1, 1) +shader_parameter/clouds_middle_color = Color(0.92, 0.92, 0.98, 1) +shader_parameter/clouds_bottom_color = Color(0.83, 0.83, 0.94, 1) +shader_parameter/clouds_speed = 2.0 +shader_parameter/clouds_direction = 0.2 +shader_parameter/clouds_scale = 1.0 +shader_parameter/clouds_cutoff = 0.3 +shader_parameter/clouds_fuzziness = 0.5 +shader_parameter/clouds_weight = 0.0 +shader_parameter/clouds_blur = 0.25 +shader_parameter/stars_speed = 1.0 +shader_parameter/overwritten_time = 0.0 + +[sub_resource type="Sky" id="Sky_2ei4e"] +sky_material = SubResource("ShaderMaterial_2ei4e") [sub_resource type="Environment" id="Environment_fevne"] -sky_custom_fov = 61.7 +background_mode = 2 +background_color = Color(1, 1, 1, 1) +sky = SubResource("Sky_2ei4e") +ambient_light_source = 2 +ambient_light_color = Color(1, 1, 1, 1) reflected_light_source = 2 tonemap_mode = 2 tonemap_exposure = 0.7 @@ -17,7 +66,6 @@ glow_bloom = 0.22 glow_hdr_threshold = 0.79 glow_hdr_scale = 0.0 glow_hdr_luminance_cap = 5.63 -fog_enabled = true fog_mode = 1 fog_light_color = Color(0.13725491, 0.39215687, 0.6666667, 1) fog_density = 0.1831 @@ -34,75 +82,62 @@ shading_mode = 0 albedo_color = Color(0.5882353, 0.7019608, 0.85882354, 1) albedo_texture = ExtResource("2_rsbui") +[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_antnu"] +load_path = "res://.godot/imported/server-2.svg-157f45e1edc7f985a184d2ca4c7433c5.ctex" + +[sub_resource type="PointMesh" id="PointMesh_67c4d"] + +[sub_resource type="MultiMesh" id="MultiMesh_0dh60"] +transform_format = 1 +instance_count = 640 +mesh = ExtResource("10_vetlt") +buffer = PackedFloat32Array(0.080831744, 0.03031951, 0.07251778, -1.5740383, -0.00018108699, 0.10409273, -0.043319073, 0, -0.07860069, 0.0309403, 0.07467598, -0.17379189, -0.10346417, 0.04204571, -0.09611615, 0.56993616, 0.07252255, 0.12621033, -0.022856547, 0, 0.07580655, -0.06335693, -0.10931722, 0.63046527, -0.0045809806, 0.0017268258, -0.104858406, 0.86186624, 0.0347955, 0.09903794, 0.00011085194, 0, 0.098932, -0.034752805, -0.004894387, 1.9234929, 0.06497452, 0.09346921, -0.08988718, 0.8145826, -0.0942491, 0.10309323, 0.039074015, 0, 0.089069106, 0.040904514, 0.10691773, 1.970159, 0.06819056, -0.004306764, 0.106182665, -1.5988951, 0.07121492, 0.0954953, -0.04186097, 0, -0.07887801, 0.08249459, 0.054001477, -0.76287216, -0.023404779, 0.037922036, -0.11684118, -1.9580543, 0.05427521, 0.109895825, 0.024795836, 0, 0.110200465, -0.04607115, -0.03702744, 1.0073187, 0.13078986, 0.039653864, 0.048695162, 0.34544837, -0.054270383, 0.12797664, 0.04154925, 0, -0.031597048, -0.055670325, 0.13020013, 0.7293062, -0.008763921, -0.033712786, -0.115928106, 0.6466976, 0.057572942, 0.1009988, -0.033723623, 0, 0.106118955, -0.057579294, 0.008722131, -0.60861677, 0.038033813, -0.0033554302, 0.057099912, 0.812134, 0.016434059, 0.06632088, -0.007049307, 0, -0.054786686, 0.017564513, 0.037525155, 1.3361833, -0.028408961, -0.06424505, 0.09103457, -0.21527576, 0.047317557, 0.07809832, 0.06988196, 0, -0.100875005, 0.054726712, 0.00714197, -1.0999601, 0.046776142, -0.008390195, 0.06310789, 1.5524948, -0.028233895, 0.06745463, 0.029895311, 0, -0.057060048, -0.04025527, 0.036941487, 1.231945, 0.06272555, 0.019755319, 0.08848896, -0.93153566, -0.036527686, 0.10398859, 0.002677072, 0, -0.08298372, -0.030840974, 0.06570846, 1.9729338, 0.11347963, 0.04172267, 0.06303373, 1.111127, 0.019251328, 0.09399921, -0.09687721, 0, -0.0730987, 0.08952667, 0.07234096, 0.67882156, 0.06991391, 0.030701755, 0.040859148, -0.20215225, -0.0010159101, 0.07005658, -0.05090252, 0, -0.051098295, 0.040614046, 0.056916486, -0.459993, -0.049955007, -0.0758361, -0.08672518, -1.3871095, -0.0071224542, 0.096379526, -0.08017562, 0, 0.11498539, -0.026976766, -0.042643715, 1.0067661, 0.038263045, -0.06388001, -0.12380891, -1.9184029, -0.047190122, 0.11486092, -0.07384731, 0, 0.13108164, 0.0599973, 0.009554677, 0.87329674, 0.060540624, 0.011422107, 0.040993594, 1.0345945, -0.021956334, 0.06944826, 0.013075327, 0, -0.03645351, -0.022860013, 0.060205214, -0.13799262, -0.10646065, -0.05154522, 0.06968657, 1.4814134, -0.08227328, 0.09482983, -0.055546474, 0, -0.02728067, -0.084837444, -0.10442878, -1.1094689, -0.07811132, 0.044317972, -0.018457307, 1.8299611, 0.04690703, 0.077959545, -0.011321296, 0, 0.010221812, -0.019088177, -0.089091465, -0.35032457, -0.11484986, 0.089546405, 0.022219665, 0.2529139, 0.07618216, 0.11205535, -0.05781556, 0, -0.05204373, -0.03358278, -0.13366528, -0.4840129, 0.045693494, -0.030659148, 0.027940003, -0.595397, 0.018161515, 0.05215915, 0.02753371, 0, -0.037293248, -0.012163982, 0.04764214, -1.8940895, 0.05238694, 0.01767893, -0.007693869, -1.0492687, -0.0187228, 0.051964805, -0.0080776205, 0, 0.0046040122, 0.010161036, 0.054696325, 1.4430201, -0.054404844, -0.038664654, 0.040169455, 1.041024, 0.011687907, 0.046968654, 0.061039053, 0, -0.05451544, 0.048656117, -0.027001416, 0.742095, 0.070785664, 0.06502331, -0.055081543, -0.6322706, 0.00083803403, 0.07107088, 0.08497556, 0, 0.08521329, -0.05471304, 0.04491988, -0.3207847, 0.051978473, 0.027702253, 0.0058217715, 1.0218295, -0.017226497, 0.04061444, -0.039456107, 0, -0.022462316, 0.03295636, 0.043730903, 0.5400934, 0.0782604, 0.07380622, 0.057285175, -0.4828422, -0.04663741, 0.095611855, -0.059472386, 0, -0.08095617, 0.016268246, 0.08963863, 0.8954704, -0.010369353, -0.040981907, -0.06798422, -1.0369227, 0.036001477, 0.058677316, -0.04086272, 0, 0.070747904, -0.035865743, 0.0108295195, 1.7736931, -0.013522013, -0.066953495, -0.12047176, 1.3487384, 0.09574352, 0.08251227, -0.056603555, 0, 0.09914329, -0.088814504, 0.038231567, -0.98402256, 0.12354171, -0.007719885, -0.037281208, 1.4324172, 0.03041564, 0.096152544, 0.08088026, 0, 0.022899209, -0.0860647, 0.09370451, 0.53465223, 0.02673338, 0.014700834, -0.10275364, 1.2601433, -0.0056222607, 0.106156096, 0.013724878, 0, 0.10364755, 0.0019666096, 0.02724731, -0.6607506, -0.07994185, 0.034591097, 0.05174991, -0.5906315, -0.0040525026, 0.081162006, -0.060511168, 0, -0.062114213, -0.04981446, -0.062654935, -0.6414529, 0.06984751, 0.034376323, -0.08022046, 0.16829103, -0.036322787, 0.104876444, 0.013315931, 0, 0.0793581, 0.017746197, 0.07670132, -0.36280555, 0.076915115, -0.05843661, 0.03063436, 0.30730152, 0.038615845, 0.07802048, 0.051873475, 0, -0.05349877, -0.027698433, 0.081485674, 1.1770082, -0.01943734, -0.039181978, 0.06547811, -0.18499017, -0.051146787, 0.05683322, 0.018825835, 0, -0.056626994, -0.037883755, -0.039479427, 0.046378613, -0.07129443, -0.017335724, 0.01407088, 1.4478098, -0.019174473, 0.07165989, -0.008866331, 0, -0.011439253, -0.012072487, -0.072834134, -0.28445554, -0.082306385, -0.056768034, -0.109255575, -1.2354133, 0.051247373, 0.10369907, -0.09248754, 0, 0.11195132, -0.08920553, -0.037986957, 1.5098641, -0.055284254, -0.037628528, 0.036834244, 0.22566259, 0.0008923594, 0.0527301, 0.055206493, 0, -0.052648563, 0.040406026, -0.03774252, 0.9916661, -0.009635675, 0.045914117, -0.06376568, 0.67647123, 0.04648767, 0.055124808, 0.032667518, 0, 0.063348755, -0.033468854, -0.033671733, 1.8812609, -0.1208871, -0.008980674, -0.04810764, -1.0954773, -0.0066509033, 0.13002802, -0.00756077, 0, 0.048484664, -0.004554917, -0.120984204, 1.352314, -0.03692514, -0.06128942, -0.054830406, -1.4728193, -0.068407066, 0.05625089, -0.016808987, 0, 0.045642506, 0.034722857, -0.06955081, 1.2640402, 0.052435603, 0.012254156, 0.030824773, -1.23139, -0.024720218, 0.0528824, 0.021028223, 0, -0.022118814, -0.030051805, 0.04957288, -0.22190809, -0.13334613, 0.040635917, 0.0026406746, 0.101980686, 0.039326824, 0.13085376, -0.027751382, 0, -0.0105665475, -0.02579652, -0.13661014, 1.1154208, -0.026952537, -0.032177214, -0.052355684, 1.475672, -0.026390724, 0.057690263, -0.021869928, 0, 0.055497933, 0.011806388, -0.03582623, -0.9110751, 0.060862582, 0.08349303, 0.08316505, 0.059536576, -0.0996636, 0.08641706, -0.013821171, 0, -0.062886246, -0.05614954, 0.10239295, -1.4397174, -0.09724036, 0.08473676, 0.07820268, -1.3221519, 0.025661677, 0.11563591, -0.09338888, 0, -0.112416446, -0.046900805, -0.08896362, 1.0682724, 0.09426347, 0.024241045, -0.09696434, 1.9263071, 0.011152143, 0.1299022, 0.04331701, 0, 0.09932442, -0.03759129, 0.08716001, -0.9950548, -0.096946634, 0.07111664, 0.037085745, -1.0765083, 0.07730383, 0.09835817, 0.013467256, 0, -0.021378662, 0.03316131, -0.11947745, 1.9693818, 0.103208326, 0.038321164, 0.089384526, 1.177446, -0.020188045, 0.13593966, -0.03497017, 0, -0.09513437, 0.0127262855, 0.10439136, 0.18512988, -0.10392183, 0.027648792, 0.10512975, 0.79743147, 0.066883534, 0.13091663, 0.031684402, 0, -0.08569313, 0.068650216, -0.102763325, 1.2657411, -0.11526074, 0.0028087923, 0.049753778, -1.7532065, -0.015987908, 0.116660655, -0.043623902, 0, -0.04719867, -0.046376377, -0.1067234, 0.52992535, -0.07497341, 0.029750496, 0.039928097, -1.1087646, 0.024810323, 0.08489395, -0.016668022, 0, -0.043171667, -0.0028780422, -0.07891946, 1.9157975, -0.0053826137, 0.053570893, -0.071591996, -0.80362153, -0.041271035, 0.062136374, 0.04959838, 0, 0.079321854, 0.035964664, 0.020947877, -0.13909829, 0.09591812, -0.06358643, 0.07670328, 1.7943013, 0.026325053, 0.11886279, 0.06561663, 0, -0.096091725, -0.030908197, 0.09454088, -0.49429613, 0.070827305, -0.022185335, -0.10546463, -0.9653387, 0.08194452, 0.093055904, 0.035456747, 0, 0.070000544, -0.086486384, 0.065203644, 1.8145847, -0.06323372, 0.021438302, 0.012961798, 0.8772143, 0.024894778, 0.057710186, 0.025998013, 0, -0.0028033971, 0.028914457, -0.06149965, 0.7636068, -0.027200544, -0.038187146, -0.036584504, -1.736208, -0.048104886, 0.034956437, -0.0007218255, 0, 0.02196825, 0.029263336, -0.046878636, 1.4482291, 0.058428988, -0.03701336, -0.01970889, 1.3296158, 0.04074169, 0.05810928, 0.011653413, 0, 0.009926935, -0.020632459, 0.06817722, 1.9241729, -0.12978655, -0.027884692, 0.014679051, 0.94332415, -0.024013009, 0.12780112, 0.030460337, 0, -0.020406026, 0.026961096, -0.12920633, -1.5435827, -0.019291105, -0.046332795, -0.081752144, 0.8925731, -0.023300437, 0.08320929, -0.041660413, 0, 0.09103422, 0.011479222, -0.027987221, -1.1403164, 0.08698459, 0.00027598103, 0.007579025, -0.81998515, -0.0026452867, 0.082880974, 0.027341988, 0, -0.00710776, -0.027468266, 0.082576096, 1.2497854, -0.0817923, -0.029070865, -0.026837492, 0.01897341, -0.027546452, 0.08608241, -0.009293041, 0, 0.028399983, -0.00022916363, -0.086306065, -1.7664402, 6.0930466e-05, -0.0072428416, -0.07775086, 0.3331169, -0.04868982, 0.06078213, -0.0057002846, 0, 0.061048806, 0.04848436, -0.0044686934, 0.6422076, -0.026577221, -0.05331868, 0.05758581, 0.04581046, -0.014023285, 0.06304631, 0.051902466, 0, -0.07721629, 0.006901988, -0.029246602, -0.59353185, -0.02974592, 0.030324452, 0.04064933, -0.47698832, 0.02823097, 0.04905012, -0.015932905, 0, -0.042130183, 0.011457437, -0.039376825, -0.5682318, 0.055970717, 0.058429506, -0.10619052, 1.2814577, 0.008542452, 0.11477373, 0.06765481, 0, 0.120902695, -0.035158776, 0.044379674, -0.7759156, 0.044328198, 0.017517189, 0.038387045, -1.590512, -0.026569277, 0.054840583, 0.005655954, 0, -0.03277942, -0.020762093, 0.047327064, -0.9075308, -0.022032313, 0.033766195, -0.121107586, 0.6103058, -0.079434365, 0.091566116, 0.03998067, 0, 0.09745453, 0.08226855, 0.005208156, -1.2893329, -0.0058396603, 0.045710284, 0.059535377, -1.6354915, -0.017088125, 0.05733755, -0.045698952, 0, -0.073088214, -0.017057795, 0.005927674, -0.38804132, 0.009480959, 0.034922857, -0.066882685, -0.710665, 0.04237416, 0.05330957, 0.0338424, 0, 0.062428597, -0.0414882, -0.012813536, -1.6541457, 0.038785998, -0.043751158, -0.043966334, 1.4847984, 0.005890048, 0.054218322, -0.048756924, 0, 0.061745524, 0.022310667, 0.032268878, 1.6059406, 0.11146446, 0.021654084, 0.02117997, -0.49996114, -0.005280722, 0.09342187, -0.06772211, 0, -0.029826239, 0.06438378, 0.09114242, 1.933177, 0.014082185, -0.008200415, -0.12850066, -0.90639305, 0.08584443, 0.096945, 0.003220901, 0, 0.095970824, -0.085512534, 0.015974373, 1.6608334, -0.08975424, -0.07257845, 0.047578234, 0.66769755, -0.06889478, 0.101212315, 0.024427861, 0, -0.052771483, -0.008693638, -0.11281283, 0.4409194, 0.05114782, 0.0137733305, -0.0015867117, 0.96245927, -0.011270428, 0.037772853, -0.035419066, 0, -0.008074634, 0.03452287, 0.03938646, -0.3804869, -0.039919123, 0.0018989326, -0.049431454, -0.4747839, 0.00985222, 0.062551625, -0.005553361, 0, 0.04847689, -0.011148997, -0.03957654, -0.50277174, 0.06420454, 0.05395814, 0.095086284, 0.7744437, 0.032694783, 0.09574799, -0.076409936, 0, -0.1043261, 0.0632135, 0.034572028, -1.7800057, -0.09784193, 0.0618206, 0.02881605, 1.9526019, 0.067253, 0.07904432, 0.05877266, 0, 0.011365999, 0.06446243, -0.0997026, -1.3249764, -0.01660316, 0.013044528, -0.077862024, 0.015381813, -0.017865604, 0.07688039, 0.0166897, 0, 0.076899126, 0.020677675, -0.012933623, 0.6976447, 0.07653879, -0.04570265, 0.10573717, 0.5341747, -0.023885807, 0.11789425, 0.068247244, 0, -0.11268785, -0.056031108, 0.05735184, 1.383636, 0.016858233, 0.012168079, -0.0745728, -0.8656864, 0.014242818, 0.074524894, 0.015380052, 0, 0.07420449, -0.017068734, 0.013989858, -1.1584687, -0.076176114, -0.015365825, -0.022858076, 1.6646727, -0.022785608, 0.07292393, 0.026913147, 0, 0.015473083, 0.03173945, -0.07290124, -0.50439215, -0.017548196, 0.053558342, 0.0913359, 0.731111, 0.026504315, 0.09185624, -0.04877124, 0, -0.10250983, 0.014581378, -0.028245376, -1.0301404, 0.02746038, 0.022320809, 0.043717798, 0.35369992, -0.02108255, 0.050601248, -0.012592716, 0, -0.04432821, -0.010238752, 0.033071354, 1.2700951, 0.038171742, 0.0002320644, 0.054681987, -1.9352162, -0.01015304, 0.065557644, 0.006809292, 0, -0.053731643, -0.0122227995, 0.03756021, 1.1174855, 0.09826643, -0.059173055, 0.073113315, -0.58521986, 0.039470166, 0.12191776, 0.04562307, 0, -0.0853763, -0.011743432, 0.10524389, -1.8400733, -0.06576496, 0.071167655, 0.049218517, 1.6106757, 0.07265473, 0.07899271, -0.01713969, 0, -0.04699561, 0.022530962, -0.09537346, -1.0234785, 0.048526764, -0.0068954276, 0.071411684, -0.30823374, 0.026514295, 0.08183329, -0.010115675, 0, -0.06666459, 0.027527941, 0.047959015, -1.4305623, -0.09250308, 0.03683176, 0.08678136, 1.3892806, 0.061951928, 0.11539172, 0.017062014, 0, -0.07106012, 0.052655254, -0.09809325, -1.1894636, -0.07176453, 0.061262332, 0.0064868317, -0.7495253, 0.045268953, 0.05919615, -0.05823949, 0, -0.041783668, -0.041085787, -0.07423869, -1.5854423, 0.082375154, -0.024345009, 0.0025873978, -1.6197801, 0.024476534, 0.08170118, -0.010528739, 0, 0.00052281475, 0.010829386, 0.08524957, 1.6808693, -0.003849605, -0.04331683, -0.062411413, -0.236135, 0.019200154, 0.05990806, -0.042763658, 0, 0.07350433, -0.017917266, 0.007901705, 0.7563994, 0.058834545, -0.035358697, -0.023536317, 0.40772992, 0.041730538, 0.055616297, 0.020762691, 0, 0.007922, -0.03036922, 0.06542669, -0.3753615, -0.027389701, 0.00029771955, -0.058498014, -1.8347316, -0.02631137, 0.057627548, 0.012612692, 0, 0.05224766, 0.029176695, -0.024314696, 0.99519515, 0.05318092, -0.054516453, -0.044720743, -0.5815687, 0.0018989915, 0.057101037, -0.06735031, 0, 0.070486754, 0.039593272, 0.03555545, 0.31238127, -0.101244695, -0.089097634, 9.613821e-05, 0.15588003, -0.084107816, 0.09562251, 0.04439705, 0, -0.02939851, 0.03326913, -0.12734903, -1.2328196, 0.054344002, 0.07228919, -0.106589295, -0.30522108, 0.027222967, 0.10662827, 0.08619511, 0, 0.12588057, -0.05426749, 0.02737518, -0.40590322, 0.116036706, -0.04838294, -0.039713513, 0.3155812, 0.032430004, 0.118015476, -0.04902275, 0, 0.053538464, 0.03337703, 0.115767844, 0.9508815, 0.0840109, 0.0796616, 0.04355384, -0.4622693, -0.07806729, 0.09367735, -0.020755567, 0, -0.046350915, -0.01339117, 0.11389913, -1.3189335, -0.08436189, -0.061215412, -0.06972663, 0.50254405, -0.059273347, 0.108058475, -0.023153735, 0, 0.07138488, 0.017380988, -0.10162756, 0.77384734, -0.06508165, 0.022500692, -0.097537234, 1.0838006, 0.049727622, 0.10823652, -0.008211828, 0, 0.086873226, -0.04509977, -0.06837008, -1.7066971, -0.08907731, 0.08257319, 0.0700263, 1.0489104, 0.101918325, 0.09455093, 0.018153735, 0, -0.036533117, 0.062438544, -0.12009804, -1.3462293, 0.0034730225, 0.015523852, -0.056315888, -1.8391185, -0.0065331077, 0.056164626, 0.015079259, 0, 0.05804987, 0.0053921714, 0.0050663464, -0.29336363, 0.074482724, 0.013823625, -0.07358052, -1.4443417, 0.0049825157, 0.10264597, 0.024327781, 0, 0.07470181, -0.02062944, 0.0717421, 1.1594048, -0.053621143, -0.00013711992, 0.029261991, 1.0936785, 0.0035802815, 0.06059573, 0.0068446356, 0, -0.02904246, 0.007723254, -0.05318267, -1.5306673, 0.038984172, -0.066241294, 0.06164902, -1.9594808, -0.013838434, 0.0619729, 0.07534012, 0, -0.089425996, -0.03846722, 0.015216458, -0.26550817, -0.005128698, 0.042477522, 0.07498594, -1.5833869, 0.027979072, 0.07187033, -0.03879898, 0, -0.0815132, 0.021996569, -0.018035602, 0.9961133, 0.080030896, -0.07369291, -0.079720676, 1.3907938, 0.07102968, 0.11044413, -0.030787261, 0, 0.082102485, -0.023715502, 0.1043443, 1.988086, -0.018238956, -0.028257621, 0.055983506, 0.34074455, 0.0262254, 0.04952321, 0.033540804, 0, -0.0569638, 0.031847518, -0.0024833246, -1.1980495, -0.10368665, -0.031016493, 0.05298072, 1.9047958, -0.0076462985, 0.10970382, 0.04925959, 0, -0.060913987, 0.039024998, -0.09636617, -0.28477573, 0.0529798, -0.077222414, 0.06779323, -1.3054036, 0.018771913, 0.08226305, 0.07903472, 0, -0.1010289, -0.025210543, 0.05023617, -0.75162905, -0.0056629954, -0.016013928, -0.07908455, 1.4439561, 0.04568171, 0.06471412, -0.016375164, 0, 0.06651311, -0.045809597, 0.0045132465, 0.9515269, 0.088918865, 0.05681462, -0.009780888, 1.9715807, -0.051700685, 0.070631415, -0.059735864, 0, -0.025506962, 0.05489475, 0.086983286, -1.3795726, 0.042158045, -0.031956926, 0.05331288, 0.6707585, 0.054671984, 0.04971223, -0.013434166, 0, -0.029571638, 0.0463493, 0.05116707, 1.1184437, -0.08623963, -0.0011239559, -0.057390157, 0.8911585, -0.03535773, 0.08263396, 0.051513374, 0, 0.045218628, 0.062470257, -0.06917304, -0.43051916, 0.053051412, -0.044428285, -0.08625339, 0.8500986, -0.0093355905, 0.09551181, -0.05493919, 0, 0.09657311, 0.0336392, 0.042071484, 0.7761283, -0.12444104, -9.392292e-05, 0.07335857, -1.8073835, 0.049869273, 0.10583393, 0.08473073, 0, -0.05380097, 0.09831699, -0.09113883, -1.3501964, 0.054147977, 0.052423473, -0.04279678, -0.18279451, -0.026460499, 0.06684733, 0.048405208, 0, 0.062286653, -0.01717561, 0.057768155, 1.4465116, -0.08014227, 0.036051802, -0.057046928, -0.44259238, -0.006280681, 0.0841977, 0.062033605, 0, 0.06719105, 0.050871234, -0.062244255, 0.6175773, 0.0446475, -0.025448097, 0.08974461, -0.16510206, 0.06630802, 0.078639016, -0.010688933, 0, -0.06561211, 0.06215626, 0.050266806, 1.585145, 0.015450119, -0.0618644, 0.12370063, -1.9260321, -0.013949314, 0.12313837, 0.063325465, 0, -0.13760257, -0.019429201, 0.0074696485, 0.04830122, 0.0724136, 0.06779752, -0.066911176, -0.7559612, -0.059470825, 0.097834796, 0.034769382, 0, 0.074409865, 0.0122141605, 0.09290492, -1.5795021, -0.11866747, -0.027202826, -0.030622981, -0.7136409, -0.032049175, 0.12010981, 0.017498886, 0, 0.025507078, 0.024359126, -0.12048133, -1.3572392, -0.009251153, -0.029982941, -0.060227003, 0.85511124, -0.041405868, 0.05045364, -0.01875731, 0, 0.05302662, 0.034165855, -0.025154004, 0.6982095, -0.07898966, -0.07779644, 0.04650616, -1.8645091, -0.06839569, 0.09164024, 0.03712911, 0, -0.059473846, -0.002062808, -0.10446569, -0.55860734, -0.0108265355, 0.010324046, -0.06567229, -0.9166589, -0.0283239, 0.059479818, 0.014019946, 0, 0.06014311, 0.029869989, -0.005219285, -0.14848316, -0.0073649557, -0.012085888, -0.09175324, -0.48846722, -8.599559e-05, 0.092044175, -0.012117309, 0, 0.092545755, -0.0008762869, -0.0073131453, 1.2140622, 0.059117228, -0.05069191, -0.065239646, -0.16759801, 0.053003132, 0.0848067, -0.017866679, 0, 0.06337625, -0.023640646, 0.075797744, -0.30486143, 0.07712549, 0.009661607, 0.07896301, 1.0676768, 0.021725679, 0.103241734, -0.033852372, 0, -0.07652776, 0.039046656, 0.06996932, 0.9899273, -0.033295725, -0.05518275, 0.057196002, -0.25919652, 0.028502857, 0.04959637, 0.06444309, 0, -0.07418966, 0.04381996, -0.0009107789, -0.7278652, -0.06484348, 0.008032273, 0.1068579, -1.0938213, 0.038215503, 0.11841966, 0.014288577, 0, -0.10011345, 0.040000886, -0.06375759, 0.11608863, 0.07056596, 0.0075956383, -0.09970457, 0.1176765, 0.06040753, 0.0940088, 0.049915195, 0, 0.07968454, -0.07799297, 0.050455164, -1.1128774, -0.11558748, -0.050945006, 0.034777485, 1.5207057, -0.060762472, 0.10675708, -0.04556511, 0, -0.0106202485, -0.056328174, -0.11781206, 0.5776546, -0.04973705, 0.030026985, 0.037856266, 1.885901, 0.042058725, 0.053648148, 0.012705556, 0, -0.023786137, 0.032074098, -0.056691825, 0.51207757, -0.10909806, 0.007134536, -0.06253961, 1.2500454, 0.026043667, 0.11904495, -0.031851545, 0, 0.05730473, -0.040520266, -0.10458857, -0.83403593, -0.035923913, -0.019228494, 0.054966167, -0.8215821, -0.04497776, 0.050183102, -0.011840586, 0, -0.036986694, -0.042349305, -0.038987983, -1.6523621, -0.06448477, -0.055530556, -0.10470364, 0.9278135, -0.09261646, 0.097985916, 0.005072783, 0, 0.07395057, 0.07429603, -0.08494819, -1.6468071, -0.014174703, 0.03037055, 0.041468706, -1.0695488, 0.023675846, 0.042039353, -0.02269567, 0, -0.04562322, 0.01238018, -0.024661692, -1.0001545, 0.11928661, -0.0014283925, 0.0510817, 1.4107401, 0.03365381, 0.09981385, -0.0757977, 0, -0.03845519, 0.08292063, 0.09211972, -0.3144607, 0.012916997, 0.041592292, -0.083998315, -0.37393856, -0.021339996, 0.08387033, 0.038247325, 0, 0.091270156, 0.013723487, 0.020830508, -0.9970317, 0.100101314, 0.09408111, -0.060160574, -1.7623591, -0.09638462, 0.11359068, 0.017262295, 0, 0.056396414, 0.027142707, 0.13628478, -1.4925694, -0.058009252, 0.030747307, -0.015427918, 0.6011471, 0.012555012, 0.047082674, 0.046627074, 0, 0.032027945, 0.03723326, -0.046221055, -0.8964818, -0.06326576, 0.016332045, -0.047155503, 0.22290158, 0.0038652397, 0.07751626, 0.021661561, 0, 0.04975376, 0.014745427, -0.061644703, -0.03909278, -0.07881195, -0.025848515, -0.08663408, 0.47735602, -0.026127826, 0.116538495, -0.011002162, 0, 0.08655024, 0.011643247, -0.08220962, -0.5255154, -0.09153168, -0.09610457, -0.06963118, 1.4304671, -0.0807745, 0.11487295, -0.052367203, 0, 0.08694866, 0.00554571, -0.121950045, -1.7322172, 0.09751809, -0.045668297, 0.08133023, -1.5600967, -0.012857485, 0.10995883, 0.07716035, 0, -0.09238444, -0.063509375, 0.07511092, 1.8786271, -0.05834062, 0.005338394, 0.042532995, 1.2711732, -0.011876137, 0.06700775, -0.024700237, 0, -0.04118873, -0.026882073, -0.053122737, 1.4595709, -0.046613153, -0.0030125903, 0.08659018, 1.2225223, 0.04074962, 0.08601016, 0.024928713, 0, -0.07646178, 0.047674906, -0.039502162, -1.2343479, -0.099379, -0.064664416, -0.0061370707, 1.8043303, -0.06495021, 0.09879111, 0.010822366, 0, -0.0007878281, 0.012416382, -0.1180701, -1.846474, -0.11429435, 0.031818047, 0.021371856, 1.0312318, 0.037919953, 0.084065765, 0.07763613, 0, 0.0055876207, 0.08032996, -0.08971187, 0.20274282, 0.048559666, 0.04330087, 0.07214303, -0.7885816, -0.03621336, 0.08594163, -0.027207596, 0, -0.07594851, -0.013292682, 0.059099525, -1.0373241, 0.049782198, -0.009884862, 0.11039301, -1.0310366, 0.0677342, 0.0985023, -0.02172488, 0, -0.08772917, 0.07044274, 0.04586946, 0.23327327, -0.117265806, -0.034976657, -0.0556235, 0.44513416, -0.059651915, 0.10438202, 0.060121983, 0, 0.027549773, 0.07713389, -0.10658322, 1.7138741, 0.08036143, 0.0034582927, -0.060123745, 0.2522298, 0.02431448, 0.08985964, 0.037667435, 0, 0.05509656, -0.044699773, 0.071070984, 1.1421616, -0.08556039, -0.07427522, -0.02967507, 1.3499157, -0.076982245, 0.088264704, 0.0010362269, 0, 0.021706043, 0.020261573, -0.11329746, 0.74352527, 0.05621633, -0.043130904, -0.059440922, 1.0317185, 0.009756509, 0.078578986, -0.04779044, 0, 0.072789475, 0.022778079, 0.052312747, -0.8237641, 0.03486502, -0.02660723, -0.05138512, 1.1082518, 0.04905859, 0.04540525, 0.00977561, 0, 0.030685984, -0.042359926, 0.04275455, 1.6270442, 0.1103951, 0.029527102, 0.08525793, -0.9134886, 0.032449577, 0.11271708, -0.081053846, 0, -0.084189005, 0.082163565, 0.08055558, 1.8342106, 0.06132553, 0.03712861, 0.10188712, -0.12246895, -0.035162747, 0.11753503, -0.021666503, 0, -0.10258216, -0.018092064, 0.068336785, -0.29271722, 0.051524967, 0.005696097, 0.014049677, 1.233279, -0.004137851, 0.0531679, -0.006380711, 0, -0.014584825, 0.005038825, 0.05144467, 0.30534744, -0.0169256, -0.004276679, -0.081172444, -1.6013484, 0.011890682, 0.0818913, -0.0067939283, 0, 0.080410615, -0.013009835, -0.016081307, 1.5128338, -0.01613681, 0.0005816235, -0.10537758, -1.6274108, 0.04574342, 0.096076995, -0.0064745485, 0, 0.0949332, -0.04619569, -0.014792401, -0.7129628, 0.004444321, -0.0358164, -0.1173634, -0.4746151, 0.056720525, 0.104740195, -0.029816221, 0, 0.108810686, -0.053135768, 0.020336168, -1.7696383, 0.05172634, -0.01823173, -0.06482129, 1.7150403, 0.050424892, 0.06465948, 0.022052031, 0, 0.044626508, -0.051928464, 0.050216716, -0.38188624, -0.07226969, 0.04342128, -0.057913687, 0.08465803, 0.05042498, 0.088913724, 0.0037391896, 0, 0.05192999, -0.02590854, -0.08422787, 0.035511255, 0.0074123675, 0.048963238, 0.13802236, -1.3560777, 0.006134784, 0.1379739, -0.049275514, 0, -0.14632133, 0.008265191, 0.0049259914, 0.44666266, 0.09674812, -0.0018564998, 0.04120331, 0.4001599, 0.025266241, 0.08571245, -0.055464864, 0, -0.03260025, 0.060920343, 0.079292454, -0.16512305, 0.053764142, -0.058722623, 0.12022656, -1.2338295, -0.01475855, 0.12617613, 0.06822847, 0, -0.1329848, -0.037743777, 0.0410342, 0.94776964, -0.114771985, -0.06581672, 0.06228971, 1.1000447, -0.08316096, 0.11643224, -0.030203367, 0, -0.036001448, -0.05912823, -0.12881073, 0.47659516, 0.02618936, -0.025416965, -0.042983737, 1.4504864, 0.040154006, 0.03957307, 0.0010650648, 0, 0.029686352, -0.031103963, 0.036479723, 1.4396644, -0.012747925, -0.0064123827, -0.05706179, -0.41412497, -0.025363445, 0.053068668, -0.00029731408, 0, 0.05151565, 0.024541276, -0.014266739, -1.5385854, 0.044212822, 0.024072718, 0.115518406, -0.9106827, 0.06080457, 0.10107427, -0.044334702, 0, -0.101127654, 0.07129702, 0.023847505, -0.12212825, -0.123652406, 0.01697821, 0.038357332, -1.5688882, -0.0077051627, 0.108174756, -0.072720796, 0, -0.04123318, -0.07112963, -0.101438954, 0.3902409, -0.06915787, 0.01600386, 0.10658154, -1.5736992, 0.059160933, 0.11148967, 0.021647079, 0, -0.090087354, 0.060930196, -0.06760428, 1.0607471, -0.031463973, -0.018593917, 0.03954256, -0.2583766, -0.03629256, 0.038257323, -0.010888387, 0, -0.024335118, -0.033014737, -0.034887798, 0.39922118, -0.119128175, 0.04086364, 0.01720568, 0.2740717, 0.04405961, 0.114623465, 0.032826934, 0, -0.004962143, 0.03672901, -0.12158845, 1.6517134, 0.051170513, 0.004163407, 0.10006713, 0.11621261, 0.018528663, 0.1100381, -0.014053112, 0, -0.09842486, 0.02287941, 0.049378794, -1.7452762, 0.08711854, 0.023978297, -0.04816041, 1.3030981, -0.010064094, 0.097304694, 0.030241262, 0, 0.05284977, -0.020996695, 0.085147314, 0.34281802, -0.076783955, -0.00774699, 0.036579028, -0.20039439, 0.0036394217, 0.08160536, 0.024922615, 0, -0.037212845, 0.023965938, -0.07303872, -1.4285545, 0.033267632, -0.031616535, -0.048162393, 1.7924423, 0.032122124, 0.05634746, -0.014801681, 0, 0.047826674, -0.015852932, 0.043442503, 1.0419321, -0.07519466, -0.0065978505, -0.025997903, -1.5236635, 0.008864836, 0.06692027, -0.04262337, 0, 0.025314763, -0.043032605, -0.06229781, -1.2957597, -0.0036726024, 0.028358474, -0.048758868, -0.20040345, 0.03597864, 0.03880934, 0.019861791, 0, 0.04344154, -0.029744752, -0.020571833, -0.093316436, 0.07947951, 0.015349671, -0.070195116, 1.1034936, -0.028401826, 0.102858454, -0.009666198, 0, 0.0660023, 0.02577764, 0.080368966, -1.0337105, 0.008013712, -0.008264997, -0.07505044, 0.28737694, 0.00683488, 0.07524151, -0.0075562275, 0, 0.075194165, -0.0059583536, 0.008685228, -0.18762535, 0.009052322, -0.03709786, -0.06760716, 0.29098845, 0.015567185, 0.06754905, -0.034981593, 0, 0.075529076, -0.009476174, 0.015312868, -0.72397065, 0.09282456, 0.05001251, -0.0721992, 1.9786108, -0.0548692, 0.11504792, 0.009150042, 0, 0.068580955, 0.02435367, 0.1050425, 0.28151822, -0.061632525, -0.042632196, -0.04124198, 0.43309128, -0.037792705, 0.07406344, -0.02008214, 0, 0.045717794, 0.0037518772, -0.07219959, -0.13297045, 0.03930211, 0.011921767, 0.049475547, 0.48416853, 0.0060032667, 0.060989253, -0.019464985, 0, -0.050536316, 0.016516548, 0.036164884, -0.9696237, -0.05054421, 0.07947548, -0.0995448, -0.5496564, 0.10377033, 0.087800235, 0.017409012, 0, 0.07387311, -0.06895653, -0.092563465, 0.24524665, -0.06567456, -0.04420646, -0.062240403, -0.07266569, -0.029463204, 0.090418346, -0.033131078, 0, 0.070427254, -0.0033967711, -0.071900554, -1.4833809, -0.022422526, -0.06177234, -0.10112885, -0.22918916, -0.023190564, 0.103220545, -0.05790814, 0, 0.116211295, 0.008679454, -0.031068293, -1.0328511, -0.020339629, 0.027916634, 0.04740581, 0.19590068, 0.018371563, 0.051087175, -0.022202158, 0, -0.05185687, 0.007149242, -0.026459461, 1.1994588, 0.0045947805, 0.01671484, 0.066645354, -1.350321, -0.032322295, 0.059467874, -0.012686289, 0, -0.06063216, -0.030434957, 0.01181338, 0.6941755, -0.030266687, 0.025897086, -0.053650063, 0.82225084, 0.03543525, 0.056200203, 0.0071372483, 0, 0.047888737, -0.025217816, -0.03918917, 0.6212647, -0.058149558, 0.037594598, -0.02971017, 1.4959722, 0.0089313695, 0.054403625, 0.051360436, 0, 0.04707737, 0.036115233, -0.04644168, -0.72736114, 0.036352187, -0.01777605, 0.12375459, -0.8820956, 0.061443593, 0.114782035, -0.0015614601, 0, -0.10888468, 0.058836773, 0.04043552, -1.0910281, 0.008785798, 0.07020382, -0.079117864, -0.1748982, -0.01912053, 0.07913654, 0.06809711, 0, 0.10403181, 0.00861598, 0.01919765, 0.9960829, -0.051750794, 0.08566585, 0.07915835, -1.2368746, 0.082885414, 0.0879395, -0.040981486, 0, -0.08206517, 0.034797043, -0.09130883, 1.2244322, 0.009589411, 0.022909597, -0.04986714, -0.09211159, -0.010383706, 0.050465755, 0.02118783, 0, 0.053886544, 0.0056476425, 0.012956938, 0.22890282, -0.06700234, -0.025525859, -0.055645544, -0.17393422, -0.026812319, 0.08639687, -0.0073476895, 0, 0.055037223, 0.01101452, -0.07132247, -0.27563763, 0.00640362, 0.03167397, -0.049426876, -0.031608105, -0.010573776, 0.049529213, 0.03036964, 0, 0.05774471, 0.0055569205, 0.01104227, -0.4037851, -0.061879095, 0.012860742, -0.03663003, -1.3273573, 0.019697476, 0.06979451, -0.008770202, 0, 0.033453956, -0.017306307, -0.06258997, 1.8878121, -0.08160936, -0.0354039, -0.010117348, 0.19873416, -0.0241514, 0.070037626, -0.050272524, 0, 0.027794007, -0.043095022, -0.07339072, 0.37267494, -0.02074935, 0.029782468, -0.037453003, -0.5487051, 0.013306454, 0.042803667, 0.026665382, 0, 0.04596369, 0.0010530455, -0.024626985, 1.3416862, -0.05681497, -0.029749073, 0.10717331, 0.9319283, -0.073213756, 0.10059952, -0.0108879255, 0, -0.08373093, -0.06777754, -0.06320127, -0.91901207, -0.041848663, -0.027520379, 0.11816476, -1.0913076, -0.08989016, 0.090983704, -0.010645112, 0, -0.081486456, -0.08623333, -0.048942454, 1.138231, 0.043406464, 0.00848492, -0.061932534, -0.48180103, 0.030423515, 0.06299942, 0.02995392, 0, 0.054608084, -0.041842964, 0.0325404, -0.18502975, -0.062307928, 0.060901795, 0.119904354, 0.5052605, -0.027547691, 0.12356635, -0.07707687, 0, -0.13163285, -0.0546872, -0.040625896, -1.1934445, 0.08777961, -0.01880952, -0.06825639, -0.41304445, 0.056936935, 0.083375424, 0.050246585, 0, 0.042082287, -0.073571295, 0.074393146, 1.8713818, 0.012407147, 0.029630229, -0.05390816, -1.634901, -0.043825228, 0.04284881, 0.013465013, 0, 0.043166995, 0.034985807, 0.029164728, 1.4753637, -0.066894025, 0.04515055, 0.1044838, 1.4320321, 0.06882265, 0.112573005, -0.004583559, 0, -0.09065803, 0.05214398, -0.08057527, 1.3827724, -0.12586653, 0.0789798, 0.02310985, 0.4930959, 0.07041444, 0.12522179, -0.044447366, 0, -0.04258734, -0.026380891, -0.14179078, 0.03629589, 0.05838393, 0.017740723, -0.12847118, 1.8471678, -0.032718636, 0.1383467, 0.004235409, 0, 0.12549528, 0.027815724, 0.060872637, -0.21547604, -0.05471683, -0.045051213, 0.06665362, 1.2401481, -0.024464991, 0.08610904, 0.038117513, 0, -0.0766406, 0.004676407, -0.05975449, 0.69263935, 0.07328608, 0.048529968, 0.095557645, -0.77729106, 0.0055933967, 0.11387252, -0.06212112, 0, -0.10702866, 0.039181143, 0.06218499, -0.7138324, 0.07410907, -0.08614691, -0.07581016, 0.15193462, 0.095473185, 0.09635497, -0.016162133, 0, 0.063665845, -0.044215992, 0.11248213, 1.1420918, -0.12055346, -0.049539316, -0.054920364, 0.6333428, -0.045101013, 0.13247408, -0.020494973, 0, 0.058619864, 4.4006272e-05, -0.12871379, -1.6388571, -0.06125647, -0.06401152, 0.050127923, 1.5031856, -0.05563425, 0.078769654, 0.032600757, 0, -0.059288397, -0.0077784397, -0.08238338, -1.4068537, 0.058847267, 0.03605757, -0.010980484, -0.24642563, -0.023817196, 0.05135077, 0.04098244, 0, 0.029214049, -0.030768016, 0.05553007, 1.8175356, -0.059119623, -0.02034586, -0.00017191528, 1.8576612, -0.019448759, 0.05666405, -0.017889788, 0, 0.0059774024, -0.016862525, -0.059908595, 1.4562442, 0.039995026, -0.057151973, -0.0829261, -1.9771533, 0.06922434, 0.08040758, -0.022029527, 0, 0.07315106, -0.04484374, 0.06618648, 0.23069, 0.047438186, 0.055041812, 0.08638161, 1.7701159, -0.057008, 0.0932772, -0.028128562, 0, -0.085096836, -0.031804506, 0.06699825, 1.1436846, -0.045705743, 0.0116457, -0.124511845, -1.2094755, 0.008525637, 0.13254908, 0.009267843, 0, 0.124764316, -0.004791353, -0.04624656, 1.5004065, -0.09554615, -0.07380835, -0.030422665, 0.3292991, -0.0780354, 0.09635847, 0.01130477, 0, 0.016843036, 0.027742539, -0.12020375, 1.2030487, -0.064238615, -0.062126234, 0.024853708, -1.648156, -0.04702671, 0.06642668, 0.04449674, 0, -0.0476011, 0.01821544, -0.07750038, -0.85309094, 0.027336828, -0.0039081653, -0.08902239, 1.3534172, 0.04188648, 0.08275204, 0.0092295315, 0, 0.078649744, -0.04271285, 0.026026752, -1.7020261, 0.05269583, -0.0770989, -0.07441913, 1.976563, 0.06495948, 0.0889395, -0.04614464, 0, 0.08522155, -0.020120194, 0.08118968, -0.6985354, -0.02579976, -0.07871695, 0.08799789, -1.8209635, -0.002933063, 0.09047383, 0.08007182, 0, -0.118031286, 0.014958008, -0.021224717, -0.8686655, 0.054796886, -0.038573235, 0.013017898, 1.3599663, 0.040502753, 0.049451265, -0.023961598, 0, 0.0041093747, 0.026958061, 0.06258143, 0.11801624, -0.100684196, -0.054475665, 0.017183147, -1.2783861, -0.035300016, 0.086716145, 0.06807633, 0, -0.04490843, 0.053971097, -0.09203543, 0.23152328, 0.025847273, 0.038136832, -0.054965504, -0.09590536, -0.05111635, 0.049272772, 0.010149803, 0, 0.043159507, 0.035517354, 0.04493864, 0.9309412, -0.09702111, 0.016611207, 0.017553462, -1.7602416, 0.018297795, 0.09793251, 0.008459597, 0, -0.015787555, 0.011421117, -0.09806866, -0.49157077, -0.0803509, -0.00029091485, 0.022157595, 1.2312353, 0.013911282, 0.0642115, 0.051290043, 0, -0.017248763, 0.05314234, -0.061852098, -1.8059498, -0.037007067, -0.020345936, -0.032466903, -0.10320711, -0.023819122, 0.047572497, -0.002662127, 0, 0.03001177, 0.012668088, -0.042147283, -0.5429058, 0.085713625, 0.0018607858, 0.045738433, 1.0004673, -0.022890061, 0.0858233, 0.039404307, 0, -0.039642297, -0.045532316, 0.076141894, 1.8272736, -0.06804996, -0.008861222, 0.03393837, 0.8716435, -0.00021800867, 0.07418016, 0.018931122, 0, -0.035075445, 0.01673062, -0.065961584, -1.752802, -0.06688041, 0.047163762, -0.005609958, -1.3282785, 0.035676144, 0.056280717, 0.047839057, 0, 0.0313545, 0.036564216, -0.06639906, -0.5465077, 0.00080835726, -0.023508836, -0.090965904, 0.6845017, 0.039118286, 0.08279375, -0.02104924, 0, 0.085423775, -0.03769145, 0.010499924, -0.85373193, 0.033716645, -0.008446758, 0.06318015, -0.6021893, 0.037220657, 0.060632393, -0.011756994, 0, -0.051746517, 0.038108483, 0.03270983, 0.4428935, 0.09163465, 0.008218295, 0.012787267, 0.9024856, -0.0036963322, 0.08784222, -0.029967407, 0, -0.014744208, 0.029054567, 0.08698508, 0.80654335, 0.04008095, 0.0054815775, -0.049541567, -0.37001753, -0.03567753, 0.047548845, -0.023603346, 0, 0.03480701, 0.042425897, 0.03285441, 0.22505927, 0.08775436, 0.04093404, -0.11389654, 0.9256387, 0.06598415, 0.101756655, 0.08741009, 0, 0.10145989, -0.10158167, 0.04166413, 0.41890168, 0.06229612, -0.037358884, 0.04628076, 0.98412603, 0.017735293, 0.075638436, 0.03718451, 0, -0.05677195, -0.017364979, 0.062400352, -1.7743461, 0.018765956, -0.036182847, -0.045481633, -1.2429302, -0.01450514, 0.043365482, -0.040484242, 0, 0.05627946, 0.023241656, 0.00473133, -0.7713301, -0.030103294, -0.037688337, -0.099025965, 0.9292574, 0.0126900375, 0.10092166, -0.042267513, 0, 0.10519276, -0.022960162, -0.023239544, 1.2717671, -0.033574414, -0.031617273, 0.06721237, -1.7366576, 0.011099549, 0.070795946, 0.038847536, 0, -0.07344355, 0.025153117, -0.024854815, -1.7284389, 0.08492935, -0.0098513635, 0.092517905, -0.20671439, -0.038519576, 0.110303834, 0.047105324, 0, -0.08469271, -0.060046814, 0.07135217, -1.2497077, -0.058992587, 0.011911094, -0.04833345, 1.5682421, -0.014468955, 0.06760805, 0.034320887, 0, 0.047630303, 0.03529022, -0.0494376, -1.5828766, 0.008200092, -0.07024739, -0.08155119, -0.22918564, -0.025921496, 0.07809147, -0.06987367, 0, 0.104467064, 0.024890935, -0.010936489, 1.0989275, 0.02364299, -0.035326835, 0.04019751, -1.6762352, 0.022079434, 0.04647052, 0.027853284, 0, -0.04874755, 0.0039142603, 0.03211185, 0.5808022, 0.061875153, -0.0061051766, -0.11850778, 1.686028, -0.007859083, 0.13314638, -0.010962691, 0, 0.118404396, 0.012027992, 0.061201528, -0.83062595, 0.02337564, -0.02516927, 0.061642766, -1.4336734, 0.05123198, 0.048527095, 0.0003862792, 0, -0.042527728, 0.0446248, 0.034347687, 1.447303, 0.06305035, -0.043234, 0.018972041, -0.09998369, 0.037674397, 0.06514789, 0.02325633, 0, -0.028456235, -0.009541381, 0.072826296, 0.79572606, -0.0033378054, -0.058172088, -0.07625607, -1.3654876, 0.05063862, 0.06373165, -0.05083431, 0, 0.08145373, -0.042004827, 0.028478151, 0.4715886, 0.1118216, -0.04332266, 0.027391676, 0.713809, 0.012775851, 0.08722094, 0.08579344, 0, -0.049638037, -0.07514575, 0.08378789, 1.3682077, -0.014865788, -0.009496902, -0.08145976, -0.31907344, 0.006827707, 0.08235648, -0.01084745, 0, 0.08172678, -0.008607764, -0.013910989, -1.5420756, -0.118433945, 0.03869767, -0.0051740957, 0.091223955, 0.033303216, 0.108759224, 0.051119544, 0, 0.020375887, 0.04716781, -0.113626145, -1.704317, -0.007337981, 0.0046923277, 0.063496396, -1.7546644, -0.031321578, 0.055381715, -0.007712348, 0, -0.055432558, -0.031914003, -0.004047665, -0.21010363, -0.038151078, 0.025607709, -0.1043548, 1.3063025, 0.031682447, 0.10849506, 0.0150409015, 0, 0.10267376, -0.023963543, -0.043416943, 0.9182074, 0.07834149, 0.05759392, 0.022272067, -0.0699141, -0.052414715, 0.08104301, -0.025203636, 0, -0.032646626, 0.008091118, 0.09391074, 0.54452825, -0.05328539, 0.029619684, 0.03555654, 1.9044807, 0.024011249, 0.06405123, -0.017373135, 0, -0.039560758, -0.0010198609, -0.05843657, 1.9844744, 0.028555555, 0.080559865, 0.090614825, -0.49540138, -0.061741672, 0.08978151, -0.060362283, 0, -0.10434992, -0.031076489, 0.060512032, -0.94195974, -0.042080358, -0.0312708, -0.055923752, 0.37310755, -0.04791701, 0.059775617, 0.0026309718, 0, 0.042535745, 0.03640191, -0.052361224, 0.5122483, 0.081764586, -0.022308426, 0.046581358, -0.07969952, 0.030564426, 0.0912107, -0.009967949, 0, -0.041632973, 0.023149047, 0.08416504, 0.45368814, -0.043823577, 0.018290818, 0.030625686, -0.21602273, 0.008116115, 0.052353192, -0.019653615, 0, -0.034736365, -0.010843518, -0.043229565, -1.4674019, -0.056574598, 0.021196488, -0.008750361, 1.3446851, 0.022914503, 0.053155046, -0.019391015, 0, 0.0008862985, -0.021255463, -0.05721857, 1.9299533, 0.07816979, -0.03245106, -0.02922988, 1.067246, 0.04262805, 0.06972985, 0.03658648, 0, 0.009502964, -0.045854658, 0.0763218, -0.65461594, -0.10490127, -0.009027489, 0.083272964, -1.8071003, -0.02363046, 0.13122578, -0.015541967, 0, -0.08035847, -0.026804026, -0.10413558, 0.042772055, -0.04438835, 0.053312697, -0.06868026, -0.44041157, 0.04193087, 0.08067952, 0.03552696, 0, 0.076164454, -0.013346112, -0.059585273, 1.911778, 0.09870945, -0.039607037, -0.08187997, 0.47383526, 0.0038677885, 0.12255033, -0.05461737, 0, 0.09087401, 0.03780608, 0.09126454, 0.5233581, -0.017162124, -0.083583094, 0.09418338, -1.1855624, -0.06382638, 0.087712914, 0.06621041, 0, -0.108548775, -0.038360033, -0.053822424, -1.2531047, 0.057234798, -0.041116484, 0.082029805, -1.0872288, -0.035724472, 0.079066, 0.06455701, 0, -0.08451755, -0.061264027, 0.028262703, -0.59784985, -0.022737259, 0.04603305, 0.05702833, -1.8721602, -0.009942662, 0.057220288, -0.05015215, 0, -0.0726114, -0.022249777, -0.010990312, -0.78734064, -0.00025570544, 0.021144092, -0.09459527, -0.9573152, -0.0024771781, 0.09456327, 0.021143638, 0, 0.09689789, 0.0024732915, 0.00029090446, -1.8052397, 0.07972785, -0.024661468, -0.053881854, 0.561951, 0.042372853, 0.086869694, 0.022938384, 0, 0.041424423, -0.041393723, 0.08024057, -0.41482586, 0.034290016, -0.033291504, -0.06060983, 0.76601124, 0.05799795, 0.050687354, 0.0049710157, 0, 0.037657853, -0.047750905, 0.04753334, 1.9812288, 0.11261089, 0.007207588, 0.06926282, 1.617861, -0.027010579, 0.12590256, 0.03081352, 0, -0.064185016, -0.04033727, 0.1085527, 1.461417, -0.064974844, -0.04115668, 0.04148383, 0.3024137, -0.038421247, 0.076829955, 0.016046042, 0, -0.0440294, -0.0063083866, -0.07522052, 1.7592766, -0.07740565, 0.02742277, 0.053822953, -0.32631683, 0.01573549, 0.09361893, -0.025068758, 0, -0.058320772, -0.011137325, -0.078199744, 1.7221572, 0.050826326, -0.021132158, -0.12149086, 0.5401221, -0.061770465, 0.10936821, -0.044865534, 0, 0.10672866, 0.0733617, 0.031889923, -0.59195, 0.057762418, 0.049423154, 0.128886, 1.3360903, -0.03384291, 0.14052166, -0.038717754, 0, -0.13382417, -0.014204166, 0.06542233, 1.2512355, -0.06880934, -0.03125334, 0.034811433, 0.88306594, -0.031075625, 0.07681657, 0.0075400863, 0, -0.034970168, -0.0067657963, -0.07519737, -0.21745014, -0.017983358, -0.03256017, -0.14596081, -0.48848462, 0.033057313, 0.14251022, -0.035863314, 0, 0.14584902, -0.036315266, -0.009868567, -1.4649909, 0.0020186435, 0.0072115446, 0.10454619, -0.96465063, -0.0022254696, 0.10454496, -0.007168488, 0, -0.10477099, -0.0020817223, 0.0021665802, -1.5521994, 0.11092338, 0.006715614, -0.032135606, -0.41586614, -0.026351122, 0.08574949, -0.07303722, 0, 0.01958098, 0.07735449, 0.08375356, 0.45244145, -0.07544988, 0.004052557, 0.035431817, -1.8241786, 0.019934807, 0.07354257, 0.034038424, 0, -0.029570939, 0.039237577, -0.06745734, -0.8565895, 0.024666185, -0.028706456, -0.05272073, 1.6577156, -0.008958301, 0.054599397, -0.033920668, 0, 0.05935726, 0.020169336, 0.016788978, -1.8730342, -0.055285353, -0.016437571, -0.11280927, -1.3521533, -0.06514054, 0.10744609, 0.01626786, 0, 0.093556575, 0.06509793, -0.055335525, 1.7702188, 0.047515832, -0.013059515, -0.051024035, -1.7944732, 0.025877675, 0.06564183, 0.007297517, 0, 0.04587318, -0.023502273, 0.0487345, 0.9521103, -0.012557106, 0.033137422, -0.048341334, -0.5745032, 0.04471742, 0.037374936, 0.014004322, 0, 0.037885696, -0.033131253, -0.032552246, -0.65186584, -0.046639588, 0.026505273, 0.0051045134, 0.48776913, 0.018183008, 0.03838271, -0.033165984, 0, -0.01994903, -0.02698286, -0.042163942, -0.6502696, -0.026968032, 0.007401591, -0.054539543, 1.3822472, -0.0031638674, 0.060425643, 0.009764826, 0, 0.054948483, 0.0071118446, -0.026205085, -0.29349923, -0.06439242, -0.023076992, 0.091545075, -1.9036901, -0.016245736, 0.11186683, 0.016772589, 0, -0.093000665, -0.003563152, -0.06631448, 1.5088818, -0.010608027, -0.04056139, -0.072145216, 0.45235443, 0.04520452, 0.05808893, -0.039305426, 0, 0.06933045, -0.044081043, 0.014589037, -1.1109211, -0.07967604, -0.060114786, 0.08298515, 1.0675693, -0.09232252, 0.08772374, -0.02509363, 0, -0.04446206, -0.074426815, -0.09660419, 1.0055561, -0.016967352, -0.005466646, -0.08025256, 0.7281122, 0.024493331, 0.07777258, -0.010476205, 0, 0.07661876, -0.026072782, -0.014423053, -1.8293254, 0.0042277644, -0.028464258, -0.05906176, 0.48085883, -0.026692163, 0.05331023, -0.02760304, 0, 0.0598835, 0.025771795, -0.008133886, 0.4118247, -0.10111338, -0.017420368, 0.07776961, 1.2319419, 0.037958898, 0.09994032, 0.071739465, 0, -0.070076406, 0.07927142, -0.07335417, -0.18090826, -0.08617481, -0.034349922, -0.0040975814, 1.8838971, -0.034286253, 0.08334565, 0.02237766, 0, -0.0046000397, 0.0222798, -0.09002919, 0.6340802, -0.04118332, -0.02181147, -0.067373075, -1.6922028, -0.0026551792, 0.07835858, -0.023744894, 0, 0.070765965, -0.0097534545, -0.0400997, -0.89800715, -0.077290446, -0.010723956, -0.050476573, 0.30227125, 0.011212601, 0.085242964, -0.035279114, 0, 0.05037028, -0.035430707, -0.06960029, 0.15154552, -0.061410137, 0.044428285, -0.043563377, 0.39210367, 0.061340515, 0.05349577, -0.031912208, 0, 0.010439449, -0.052982777, -0.06875092, 0.6577587, -0.10598394, 0.06229744, -0.03754063, -1.24403, 0.020942349, 0.0896721, 0.08968388, 0, 0.069654055, 0.06782927, -0.08408548, 1.1801901, -0.09423742, -0.0045641274, 0.0158024, 0.7605927, 0.00021019505, 0.09156384, 0.027699417, 0, -0.016446972, 0.027321612, -0.09019016, 1.557096, 0.08986558, -0.036988832, -0.043748036, 1.3429277, 0.011561123, 0.09141759, -0.053544864, 0, 0.056110647, 0.040404685, 0.08109836, 0.6811569, -0.023309754, -0.020584056, 0.10552801, -0.2926545, 0.05224634, 0.092204966, 0.029525826, 0, -0.09396906, 0.05637155, -0.009760827, -0.25811338, 0.030990502, 0.024099857, -0.13538279, -0.5227175, 0.06565684, 0.11934433, 0.036274325, 0, 0.120824195, -0.07103411, 0.015012916, 0.049198866, -0.062901646, -0.01874889, -0.08347105, -1.6171718, -0.04059002, 0.09774186, 0.008633264, 0, 0.07530862, 0.037021104, -0.06506616, -0.12658906, 0.11578722, 0.014462268, -0.09082745, 1.8749161, 0.038740117, 0.12477422, 0.06925361, 0, 0.08341455, -0.078023724, 0.09391367, -0.7529855, -0.0015312629, -0.036457635, -0.05150549, -0.5373688, -0.034049854, 0.043853965, -0.030029273, 0, 0.05312798, 0.027055323, -0.020730335, -1.9962814, -0.116937794, 0.0023689065, -0.015511298, 0.6637919, 0.0026182402, 0.117944166, -0.0017260028, 0, 0.015471163, -0.0020548843, -0.11694905, -0.124649286, -0.044582613, 0.009649791, 0.069027685, -0.61018085, -0.012211251, 0.07959222, -0.019013496, 0, -0.06862088, -0.020433042, -0.041463416, 1.1598577, 0.085058816, -0.0364221, 0.0164783, -1.1470737, 0.03549187, 0.086630985, 0.008276734, 0, -0.018396497, -0.0012679041, 0.09215784, 1.4108355, 0.08381278, 0.04861968, 0.05543637, 0.68946797, -0.058961987, 0.094587855, 0.0061861286, 0, -0.04427808, -0.03392507, 0.09669636, -1.1594288, -0.029148132, -0.031014837, -0.10853604, 1.1402303, 0.0023952203, 0.111900985, -0.03261964, 0, 0.112855025, -0.010385466, -0.027340313, 0.7784889, 0.055370517, -0.0024345724, -0.14039552, 0.27217722, 0.0492891, 0.14165062, 0.016982764, 0, 0.13148162, -0.05207593, 0.052758005, 1.8867459, 0.05219014, -0.027533839, -0.034936998, -1.5884347, 0.03971224, 0.053105757, 0.017470932, 0, 0.020041062, -0.03352884, 0.056362126, -0.27489161, -0.07692491, -0.012273073, -0.08835844, 0.05867648, -0.030870726, 0.11312682, 0.011162648, 0, 0.08369492, 0.030446311, -0.07709388, -0.5078081, -0.045009363, -0.042666763, 0.0383236, -0.4434464, 0.00059700385, 0.048365265, 0.054547586, 0, -0.057348013, 0.03399033, -0.029510282, -0.30497038, -0.055570774, -0.048244696, -0.054612096, 0.9616282, -0.0149680935, 0.07477302, -0.050824147, 0, 0.071316116, -0.021899475, -0.053221874, 1.4563844, -0.0035909086, 0.0918734, 0.113032475, -1.3055897, -0.09407482, 0.08485981, -0.07196316, 0, -0.11120696, -0.07475324, 0.05722692, -1.7808864, -0.020522013, -0.050994497, -0.06293114, -1.1711767, -0.026935948, 0.06552133, -0.044309497, 0, 0.07638863, 0.0094041405, -0.03253092, 0.41608858, -0.023246028, 0.027830098, -0.036477584, 1.3005415, -0.010860363, 0.036392625, 0.034686252, 0, 0.04457781, 0.023378816, -0.010571485, -0.83836365, 0.089228004, -0.06411618, 0.06213867, -0.2629804, -0.0031198647, 0.08555597, 0.09275869, 0, -0.08923208, -0.067104585, 0.058892652, 1.6187066, -0.044084977, 0.06118257, 0.091422364, 0.11241573, 0.008891299, 0.10014991, -0.06273581, 0, -0.10964625, -0.01647817, -0.041845072, -0.46591395, 0.04347247, -0.020739542, -0.020980926, 1.7816107, 0.020473562, 0.04811069, -0.0051359716, 0, 0.021240555, -0.0039263587, 0.047891606, 1.6082759, -0.04312059, 0.010336536, -0.1354347, -1.035958, -0.03774557, 0.13558696, 0.022365838, 0, 0.13047864, 0.042639352, -0.038288355, -1.095289, -0.1135619, -0.04855928, -0.04454149, -0.9247844, -0.0019900606, 0.091237135, -0.09439321, 0, 0.0658634, -0.08096935, -0.07965068, 1.2862356, 0.058268577, -0.040500265, -0.013996831, 0.41004133, 0.041093424, 0.059510317, -0.0011236928, 0, 0.012145502, -0.0070470404, 0.07095235, 1.9291623, 0.053593833, -0.0032449733, 0.09628247, 1.0732758, 0.058769733, 0.088403456, -0.029733643, 0, -0.076334536, 0.06578329, 0.04470726, 0.21311808, -0.07071059, 0.03460372, 0.011160054, 1.630585, 0.026973562, 0.06629061, -0.034640055, 0, -0.024380134, -0.027020166, -0.0706928, 1.2886693, 0.09716632, 0.012282935, 0.008901803, 1.7194892, -0.012250112, 0.09757302, -0.00091945275, 0, -0.008946917, -0.00020040252, 0.097935274, -1.2674356, 0.012176877, 0.0014544547, -0.070059404, -0.94673634, -0.03264893, 0.06303728, -0.004365968, 0, 0.0620039, 0.03290743, 0.0114599345, 1.6391153, -0.061357547, -0.03024015, -0.024064178, 0.7359991, -0.03716701, 0.0585469, 0.02119373, 0, 0.010590781, 0.030267047, -0.06503876, -1.0813277, -0.050217394, 0.057140127, -0.06575666, -1.9502728, 0.023352979, 0.08195166, 0.053378668, 0, 0.083925985, 0.0113863805, -0.054198693, -1.7395744, 0.011191115, 0.09546225, -0.10617118, -1.5797184, -0.09725757, 0.08306461, 0.06443475, 0, 0.10452906, 0.06706587, 0.07131931, -0.16728663, 0.065387316, 0.0047174105, 0.05769284, -0.4156983, 0.03205846, 0.0695192, -0.04201851, 0, -0.048197225, 0.052640725, 0.050320964, 0.42217398, -0.068356924, 0.006499345, -0.07796331, 0.26840913, 0.021389214, 0.10113921, -0.010322324, 0, 0.07525305, -0.022843104, -0.067884915, 0.87909245, 0.11289215, 0.054594323, 0.065203875, -0.34357214, -0.051130015, 0.13016802, -0.020462863, 0, -0.06795444, -0.0072434237, 0.12371923, -0.3323139, 0.11309475, -0.040522538, -0.05281948, 1.821425, 0.043861665, 0.123683475, -0.00097396004, 0, 0.050081212, -0.016814228, 0.12013139, -0.7121081, -0.12642586, -0.041288886, 0.0466198, 1.9086106, -0.052439388, 0.12748916, -0.029296773, 0, -0.033589996, -0.043628186, -0.12973037, 0.36461186, -0.095303886, -0.039625045, -0.08837566, 1.7164321, -0.025513472, 0.12987901, -0.03072032, 0, 0.0934316, -0.004952887, -0.09853546, -1.9908469, 0.06669105, 0.025124555, -0.083654046, 0.20673728, 0.0394169, 0.085267045, 0.057033118, 0, 0.07794582, -0.06461599, 0.04273362, 1.3830326, 0.05646983, 0.031584937, 0.07934384, -1.7991679, -0.022010576, 0.0972907, -0.02306401, 0, -0.08251417, -0.0043365676, 0.060452472, 0.22473001, 0.093741514, 0.030721862, -0.07212255, -0.8022436, -0.06803437, 0.08773639, -0.051055048, 0, 0.038946364, 0.07931873, 0.08440786, -1.5830495, -0.08994014, 0.01342782, -0.016657647, -0.29559302, 0.0030555185, 0.079299666, 0.047426146, 0, 0.021176575, 0.045588035, -0.07759057, -0.73557746, 0.031297296, -0.026820097, 0.04664584, -1.5586334, 0.03503602, 0.05111323, 0.0058811083, 0, -0.04083661, 0.023297906, 0.04079523, -0.9541858, -0.014141846, -0.04728221, 0.07097584, 1.1712284, -0.053457446, 0.060971312, 0.029966136, 0, -0.06644907, -0.03898795, -0.03921263, 0.055349827, 0.07707143, -0.015378325, -0.007878046, 0.74013567, 0.017276458, 0.06799411, 0.036288943, 0, -0.00028363138, -0.03713315, 0.06971092, 0.8577807, 0.10422726, 0.0707744, 0.06012893, -1.4123812, -0.008364366, 0.09717214, -0.09987712, 0, -0.09249077, 0.0709675, 0.076791264, -0.17647791, -0.062143605, 0.02935837, -0.10796402, -0.8254707, -0.007550033, 0.12211775, 0.037552927, 0, 0.11162948, 0.02460307, -0.05756318, -1.1090674, 0.09850214, 0.021703659, 0.079518504, -0.40992832, 0.0050425376, 0.12208916, -0.039569184, 0, -0.082272805, 0.033467878, 0.0927793, 0.09810376, 0.0681842, -0.018167684, 0.06382806, 0.80136216, 0.03603928, 0.08697997, -0.013741371, 0, -0.05572482, 0.03402338, 0.06921217, 0.5481341, 0.081376456, 0.05440217, 0.09053835, -1.7066717, -0.079566024, 0.10674154, 0.007376196, 0, -0.0694697, -0.058528315, 0.09760796, 1.0631559, -0.09252602, 0.019184692, 0.0883886, 0.32838255, -0.025582176, 0.11573116, -0.051899042, 0, -0.08675338, -0.054588515, -0.07896584, -1.2391074, -0.029036822, -0.03237968, -0.13879748, 1.6638757, 0.068759166, 0.12089184, -0.042587128, 0, 0.124841355, -0.07411506, -0.008827063, -1.0050964, -0.04587458, -0.05845481, 0.08057201, -0.5137303, -0.08227607, 0.07220294, 0.005538275, 0, -0.056030896, -0.058164068, -0.074099734, -0.3863529, 0.06517447, 0.03252594, -0.03399117, -1.2440872, -0.041748833, 0.06675827, -0.016168391, 0, 0.021688052, 0.030764345, 0.07102276, -1.7294223, -0.00588903, -0.041415606, -0.10420335, 0.61824805, -0.022409901, 0.102676556, -0.03954229, 0, 0.10986986, 0.01872282, -0.013650655, -0.6861455, 0.041115332, -0.029898018, 0.011960501, 1.6067183, 0.015784677, 0.035619553, 0.034777965, 0, -0.028067581, -0.023764921, 0.03707904, 0.8140085, -0.09199847, -0.0011726437, 0.011348719, -0.51038647, -0.005524232, 0.08526052, -0.035972405, 0, -0.009982553, -0.03637521, -0.084682226, 1.7584958, 0.0133857485, 0.028716354, -0.06502349, -1.3030095, -0.051658105, 0.049380668, 0.011173658, 0, 0.04882748, 0.044370957, 0.0296472, -1.8123176, -0.08839734, 0.014034192, 0.035125177, 0.32820272, 0.02493542, 0.088759966, 0.027289562, 0, -0.028442247, 0.034198493, -0.08524276, 0.1876781, 0.046853717, -0.07978388, 0.11673503, -0.7835121, -0.052195366, 0.10453206, 0.092393175, 0, -0.13140844, -0.06996705, 0.004923386, -1.2318304, -0.035689574, -0.016234454, -0.06731824, 1.6287227, -0.023241356, 0.07414833, -0.0055599143, 0, 0.06523145, 0.017536128, -0.038812246, -0.25267178, 0.010520044, -0.02929082, 0.05977901, -0.41379833, 0.038957674, 0.051783767, 0.018517412, 0, -0.053979456, 0.03166453, 0.025014572, -0.4830997, -0.0326978, 0.013187928, 0.050619062, 0.086218834, -0.016977727, 0.05378752, -0.024980318, 0, -0.049476936, -0.027172377, -0.024880737, -1.7866669, -0.030845894, -0.024065461, -0.058883283, -1.1466734, -0.037019946, 0.06000864, -0.005132569, 0, 0.05172921, 0.028594982, -0.03878495, -0.5725758, 0.10295919, 0.063840576, 0.074713394, 1.1806417, -0.046851713, 0.12700695, -0.043959744, 0, -0.086386494, 0.007205769, 0.11288824, -1.412703, -0.028984537, -0.03655505, -0.04356179, -1.5829203, -0.04014298, 0.047783893, -0.013388278, 0, 0.040279564, 0.021317424, -0.044689253, 1.750129, -0.0058738627, 0.0022572554, -0.08530442, 1.1279535, 0.03543569, 0.07784991, -0.0003800186, 0, 0.07762893, -0.035365768, -0.0062811663, -1.3459806, -0.054219455, -0.021572534, 0.030906448, -0.7270203, -0.0043111676, 0.057341408, 0.03246088, 0, -0.037443243, 0.024635756, -0.048491392, 1.8087611, 0.053380176, -0.052740723, -0.034953114, -0.89722705, 0.06303547, 0.048277233, 0.023421898, 0, 0.005462002, -0.041718964, 0.071291246, -0.53808093, 0.059915837, -0.023001958, -0.065572515, -1.4289987, 0.04593432, 0.078077674, 0.01458315, 0, 0.052142918, -0.042350203, 0.06250064, -0.59912753, 0.10726244, 0.011496947, -0.0645991, 1.2203437, 0.029531177, 0.1020884, 0.067203596, 0, 0.05859294, -0.072499886, 0.08438655, 0.30658388, 0.049226746, 0.03526911, -0.025230188, 1.3923678, -0.040756874, 0.05066562, -0.008695812, 0, 0.014810458, 0.022199772, 0.05992967, 1.8120744, -0.028531896, -0.052623667, 0.070429325, -0.86400485, 0.015081439, 0.07001817, 0.05842616, 0, -0.086614616, 0.029526515, -0.013027037, -1.7230432, -0.0206192, 0.070631124, -0.088065654, -1.4778397, -0.021804685, 0.08534507, 0.07355435, 0, 0.110764936, 0.029948825, -0.0019140883, 1.3942132, 0.00016190877, 0.07263438, 0.109475106, 0.39093405, 0.08652515, 0.08232136, -0.05474642, 0, -0.09886329, 0.07216661, -0.047734775, -1.1817514, -0.072832495, -0.0074550374, 0.022973994, 1.9036806, -0.020788359, 0.056508567, -0.047566593, 0, -0.012297401, -0.051372744, -0.05565581, 0.66414046, -0.077596545, 0.012740204, 0.034839135, -0.25471264, 0.03253405, 0.062179994, 0.04972409, 0, -0.017821712, 0.05803996, -0.060918394, 1.6888824, 0.012691584, -0.022168498, -0.045929812, 0.106860995, 0.022771673, 0.04481383, -0.015337463, 0, 0.045633767, -0.016197052, 0.020427454, 0.23145986, -0.04905613, 0.025133692, 0.024103306, -1.0395131, 0.0022923693, 0.043880325, -0.04109061, 0, -0.034747906, -0.032588203, -0.036739193, 1.1216035, 0.055329435, 0.030094692, -0.022858953, 1.0194341, -0.03393897, 0.05739663, -0.006583417, 0, 0.016624335, 0.017014835, 0.06263941, 0.880002, 0.009008305, 0.06540476, 0.12818833, -1.8626556, -0.09967209, 0.09548149, -0.041712586, 0, -0.10380514, -0.086003974, 0.051176082, 1.3583155, -0.02039259, -0.006199072, -0.04895416, -0.74088836, -0.008670184, 0.052595913, -0.0030485324, 0, 0.04857742, 0.006785068, -0.021094847, 0.7478211, -0.13077983, 0.05299375, 0.02920885, 1.8532307, 0.0543324, 0.13346, 0.0011310659, 0, -0.02663615, 0.012039595, -0.1411043, 1.8473389, 0.14236192, -0.038700797, -0.009814654, 1.4599934, 0.031361584, 0.13088651, -0.06120599, 0, 0.0247089, 0.056850422, 0.13423301, 0.8305979, -0.0020728984, -0.08173172, -0.11804065, -0.95960426, -0.044627603, 0.11257196, -0.07716148, 0, 0.13646261, 0.03557308, -0.027027318, 0.9667959, -0.04138474, 0.015076525, 0.026155667, -1.7190864, 0.022884531, 0.044612803, 0.010493496, 0, -0.019690577, 0.020162184, -0.042777155, -0.8488145, -0.024298007, 0.07384213, -0.083981015, -0.017977, 0.06231821, 0.080300264, 0.052575395, 0, 0.09285425, -0.034569796, -0.05726152, 0.21839476, -0.05786781, 0.078581445, -0.0759454, -0.5067618, 0.098393664, 0.07485948, 0.0024852005, 0, 0.047554534, -0.059265893, -0.09755794, -0.016624212, 0.000549036, 0.03324525, -0.08176289, 1.9365792, -0.04356893, 0.07121062, 0.028662074, 0, 0.07676045, 0.040181085, 0.016853299, -1.7988884, -0.052010614, 0.016503118, 0.063870065, -1.3086402, 0.041687604, 0.07125762, 0.015535055, 0, -0.051126137, 0.041313935, -0.052307922, 1.5435796, -0.06375984, 0.002233113, -0.034708295, 1.5712667, 0.01959899, 0.062182482, -0.032002956, 0, 0.028732074, -0.03746095, -0.055191625, 0.6029122, 0.040432163, -0.02543995, -0.053629126, 1.1257546, 0.021642137, 0.06674014, -0.01534292, 0, 0.055271078, -0.007523052, 0.04523876, 0.46677923, -0.03819591, 0.04536501, -0.038412064, -0.5734081, 0.022898493, 0.053363886, 0.040253613, 0, 0.054855537, 0.00931183, -0.0435495, 0.6883106, 0.11280709, -0.051794156, 0.001298231, 1.4896724, 0.051512882, 0.1124569, 0.01047023, 0, -0.0055446574, -0.008975963, 0.123686895, -0.9789643, -0.01150058, 0.02848291, -0.13594988, -0.8883691, -0.028686333, 0.13298717, 0.030288892, 0, 0.13590711, 0.030480266, -0.0051110303, -0.8878311, 0.014791059, -0.07181697, -0.101698615, -1.0245397, -0.0075549837, 0.10170731, -0.072921924, 0, 0.12427071, 0.014731117, 0.0076712063, -0.060404062, 0.076813616, 0.005719391, 0.030691199, 0.033531785, 0.0054283296, 0.077823855, -0.028088665, 0, -0.030744012, 0.028030846, 0.071722165, 1.5129278, 0.094955765, -0.014170389, 0.10501735, 1.1147455, -0.06390376, 0.10482837, 0.0719261, 0, -0.08453256, -0.09516435, 0.06359271, 0.4299407, -0.048928373, -0.028946185, -0.015262486, 0.13696861, -0.02604228, 0.05106791, -0.013367076, 0, 0.01981476, -0.0043586106, -0.055255663, 0.26326132, 0.026113607, -0.07509881, -0.12658902, 1.9068732, 0.06817409, 0.12011493, -0.05719467, 0, 0.13044888, -0.047739975, 0.055231534, 1.01052, -0.033188898, 0.033229098, 0.07645859, 0.707466, 0.033449482, 0.08068781, -0.020547489, 0, -0.07636242, 0.020902013, -0.042231224, 1.2311082, -0.097576745, 0.035983898, -0.0909778, -1.017993, -0.044561833, 0.09804319, 0.0865725, 0, 0.0870979, 0.09047493, -0.057630412, 0.6458237, -0.015064677, 0.0012872441, -0.082197316, -0.83154225, -0.039321605, 0.07327359, 0.008354146, 0, 0.07219326, 0.040178645, -0.0126019735, 0.3021481, -0.09808, -0.0052676387, -0.0032344197, 0.22675425, -0.0059716967, 0.09402623, 0.027951775, 0, 0.0015963481, 0.02809297, -0.09416015, -1.477561, -0.068970606, 0.03964664, 0.0358736, -0.929173, 0.0409475, 0.07681754, -0.0061712028, 0, -0.034381293, 0.011955148, -0.07931404, -0.45651972, -0.025863163, -0.04489234, 0.067974366, -0.75370526, -0.027076831, 0.07200062, 0.0372491, 0, -0.07682891, -0.010262943, -0.03601014, -0.17780948, 0.06896578, 0.0542672, -0.03289044, 0.8939631, -0.04656342, 0.07627895, 0.028219836, 0, 0.043111, -0.0044251205, 0.083095424, -0.13293743, 0.010820134, -0.04202216, -0.09416719, 0.5431725, -0.056737423, 0.07663713, -0.040718693, 0, 0.08610567, 0.05577889, -0.014997526, 0.53776574, -0.07081174, 0.0025172122, -0.045895495, 0.8810048, -0.004228947, 0.083580755, 0.011108926, 0, 0.045769516, 0.0116170505, -0.06998022, 1.4912596, 0.069009505, -0.023944307, 0.060392942, 1.3240762, 0.04670259, 0.07953045, -0.02183403, 0, -0.045160882, 0.04565662, 0.06970593, 1.4650795, -0.02574408, 0.018415116, -0.08756302, -1.6979394, 0.036389932, 0.0853945, 0.007260189, 0, 0.08174455, -0.032215234, -0.030808501, -1.2254553, -0.054680195, -0.025496252, 0.010069161, -1.6159017, -0.025960729, 0.04094945, -0.03729013, 0, 0.0088026915, -0.037609234, -0.047428142, 0.33121824, 0.017828153, -0.04079467, -0.0445691, -0.38086915, 0.027998012, 0.046756532, -0.031597327, 0, 0.053541772, -0.010866211, 0.03136331, -1.455317, 0.06023172, -0.024171315, -0.10863917, -1.7162884, 0.046373993, 0.11774463, -0.0004865392, 0, 0.10117398, -0.039579436, 0.064898975, -1.2490865, -0.0027332155, 0.027316077, -0.080293864, -1.1670208, 0.048288662, 0.06654449, 0.020994766, 0, 0.06972431, -0.04501563, -0.0176878, 1.4881563, -0.03712261, -0.02515166, 0.03219866, 1.3514645, -0.03901136, 0.03475001, -0.017832508, 0, -0.012143871, -0.034745913, -0.04114238, 1.8451269, -0.046513036, 0.03147711, 0.014000517, 1.0465271, 0.03350085, 0.03584308, 0.030712407, 0, 0.008032186, 0.03278339, -0.04702147, 1.6820176, 0.12001352, -0.053069886, -0.018165676, -0.17812485, 0.047921337, 0.119302794, -0.031938076, 0, 0.029153902, 0.022362523, 0.12727773, 1.8777986, 0.06797341, 0.08464863, 0.061324462, 1.093421, -0.07485561, 0.09047682, -0.041917153, 0, -0.07295696, -0.013964967, 0.10014353, -1.7993925, 0.008347382, -0.0026258635, 0.053874988, -0.8506324, -0.021087013, 0.05001877, 0.0057051303, 0, -0.04964622, -0.021686757, 0.0066351662, -1.1425965, -0.11548378, 0.05683896, 0.0049871756, 0.26838732, 0.051721133, 0.099528596, 0.06333268, 0, 0.024092807, 0.05878296, -0.1120542, 0.9375572, 0.10685766, -0.06466449, -0.07996511, 1.8071578, 0.06330962, 0.13224015, -0.022336295, 0, 0.081042014, -0.018042216, 0.122886725, 1.0176346, 0.13735542, -0.014940299, -0.046826813, 0.015711427, -0.019986337, 0.10999772, -0.09372045, 0, 0.04490556, 0.094656035, 0.101519465, 0.6772711, -0.04679344, 0.046221364, -0.0915634, 1.774723, -0.021728942, 0.09389049, 0.05850065, 0, 0.10024033, 0.041929204, -0.030061843, 1.8592167, 0.1387599, -0.020791184, 0.029531822, 1.9582152, 0.011903723, 0.13701852, 0.04053316, 0, -0.034098435, -0.036774475, 0.13432664, 1.5501182, -0.101452164, -0.086581804, -0.05206303, 0.20073175, -0.09535606, 0.10643872, 0.008805164, 0, 0.03337947, 0.04091334, -0.13308425, 1.5099013, -0.03348393, 0.06830076, -0.074829526, 0.4362352, -0.000222782, 0.07876057, 0.071988516, 0, 0.10131338, 0.022746492, -0.024572754, -1.4764161, 0.026715774, -0.035429448, -0.11068312, 1.8521892, -0.060368665, 0.09281457, -0.044281047, 0, 0.099305704, 0.06595409, 0.002857814, -1.4743214, -0.09268752, -0.0026365183, -0.10656852, -1.3401737, -0.0014508078, 0.14123629, -0.0022323693, 0, 0.10659126, -0.00037025212, -0.092698134, -1.92156, 0.027908374, -0.030660976, 0.044184778, -0.14297199, 0.025550293, 0.05136217, 0.01950326, 0, -0.04732412, 0.009648793, 0.03658682, -1.9655795, -0.05944603, -0.027458116, -0.059114628, 0.31722617, -0.036191285, 0.080446035, -0.00097214885, 0, 0.054209575, 0.023596738, -0.06547392, 0.011981964, -0.060495526, 0.00034002532, -0.006826449, 0.6914496, 0.00012090344, 0.06084875, 0.0019594373, 0, 0.006833843, 0.001933493, -0.060464736, -1.6382444, -0.019468803, 0.059003454, -0.12569997, -1.7758968, -0.011798075, 0.12576759, 0.06086251, 0, 0.13835713, 0.019027151, -0.012497856, 1.58251, -0.052306373, 0.038352817, 0.045355823, 1.4060364, 0.02052307, 0.068382755, -0.03415623, 0, -0.055739507, -0.010812304, -0.055138435, 1.2604365, -0.07284608, 0.0059648943, 0.06482739, 0.9041088, -0.014430504, 0.09338649, -0.02480813, 0, -0.063481726, -0.028073167, -0.0687509, -0.7073398, 0.07058247, -8.968124e-05, 0.09232002, 1.9738951, -0.0020039487, 0.11618157, 0.0016449627, 0, -0.0922983, -0.002591075, 0.07056336, 1.4003778, 0.0400124, 0.049156446, 0.037596032, 0.6465218, -0.060425945, 0.04069869, 0.011096492, 0, -0.013361262, -0.03685201, 0.062403653, -1.9357146, 0.07817272, -0.015078207, -0.06363995, 0.4589466, 0.039968785, 0.089516394, 0.027886918, 0, 0.051767662, -0.0463447, 0.07456975, 0.5058577, -0.049894392, 0.0155392885, 0.06896039, -1.7302642, -0.034455676, 0.06835603, -0.04033256, 0, -0.061723676, -0.050719224, -0.033229575, -0.25784218, 0.016946893, -0.0770354, 0.085949026, -1.0705719, 0.020854266, 0.0874845, 0.074299715, 0, -0.11351999, 0.0045711272, 0.026480228, -1.0774107, -0.13067178, -0.06103914, 0.024150789, -0.48896313, -0.048438687, 0.12597084, 0.056295574, 0, -0.044302717, 0.042305097, -0.13278441, -1.1187044, -0.07218146, -0.08335488, 0.075864196, 1.2043781, -0.041385226, 0.10339648, 0.07422943, 0, -0.10483642, 0.016574303, -0.08153646, -0.7975626, -0.09567006, 0.049158137, -0.082641035, 1.3947222, 0.009387592, 0.120794915, 0.060985938, 0, 0.09569711, 0.03729463, -0.08860021, -0.38129038, -0.08187922, -0.012439742, 0.021410204, -0.5741041, -0.020379668, 0.07586574, -0.03385868, 0, -0.014064605, -0.037509914, -0.07558138, 0.5152614, -0.09770455, 0.08366044, -0.055637006, 1.0091128, 0.07881505, 0.11195103, 0.029931242, 0, 0.062311593, -0.010422143, -0.12509744, 1.6304407, 0.06394963, -0.008860805, -0.056098327, 0.5599747, -0.03246012, 0.063620284, -0.04705202, 0, 0.0466034, 0.056471568, 0.04420607, 1.2739654, -0.054164726, -0.042827625, 0.020969367, 1.4005592, -0.031066649, 0.055767868, 0.03365332, 0, -0.036177106, 0.016231973, -0.06029492, -0.76724863, 0.037836418, 0.049308363, 0.08875488, 0.9563072, -0.07115798, 0.08044137, -0.014354928, 0, -0.07242433, -0.05327483, 0.060471855, 1.8943589, 0.067595296, -0.04710614, -0.039404523, 0.96258044, 0.055900473, 0.071459144, 0.010466941, 0, 0.02543308, -0.031865835, 0.08172243, -1.5113616, -0.042131893, -0.013411498, -0.088738315, -1.6975532, 0.05149831, 0.07667199, -0.03603863, 0, 0.07350021, -0.061408393, -0.02561604, 1.9631121, 0.06498096, -0.030697213, 0.050978027, 1.8306861, -0.008202618, 0.07014143, 0.05269251, 0, -0.058938913, -0.04360579, 0.048870683, 1.4534123, -0.018761111, 0.059366357, 0.10926998, -1.9822865, -0.073440894, 0.08388768, -0.058185596, 0, -0.10035301, -0.07248975, 0.022153554, 1.4224806, 0.05757837, -0.012151347, 0.013685928, 1.7056602, 0.011984993, 0.05917847, 0.0021205589, 0, -0.01383184, 0.0006939663, 0.05880839, -1.4023349, -0.052410483, -0.0048681204, 0.08871299, 1.1105852, 0.047853295, 0.08523508, 0.03294838, 0, -0.07485823, 0.057895035, -0.041048285, -0.52874184, 0.053386748, -0.023495462, 0.043777127, 0.83786607, 0.027008707, 0.0676591, 0.0033756169, 0, -0.04170136, 0.013741479, 0.058230467, 1.7274737, -0.011852386, -0.029363917, 0.05752267, -0.9922781, -0.01951015, 0.05737885, 0.02527049, 0, -0.061566636, -0.012530121, -0.019081956, 0.5142307, 0.07079725, 0.08894885, 0.08890137, -1.4737163, -0.07584533, 0.11157845, -0.05123806, 0, -0.1003137, -0.021585988, 0.10148306, -1.9737298, 0.035954777, 0.0059313425, 0.038013462, -0.55982494, -0.009308978, 0.05182448, 0.00071852, 0, -0.03733024, -0.0072105825, 0.036433645, 0.80726767, -0.0080343755, 0.0049305763, -0.11891342, 0.6531451, 0.021150356, 0.117346145, 0.0034365694, 0, 0.117121205, -0.020852745, -0.008777914, 1.7780609, -0.0947864, -0.039624225, 0.044615794, 0.14770168, -0.018974708, 0.09941352, 0.047979396, 0, -0.05657392, 0.03304517, -0.09084337, -0.88008624, 0.062127233, 0.026370678, 0.07055272, -0.87122226, 0.032929495, 0.072743475, -0.056186542, 0, -0.06774029, 0.059547175, 0.037393562, 0.6399574, 0.009089652, 0.022408616, -0.11003627, 1.2501588, -0.053878706, 0.09772961, 0.015451692, 0, 0.098525174, 0.051376298, 0.018601425, -1.5316292, 0.09761188, -0.050756674, -0.06751734, 1.303989, 0.082475856, 0.07954801, 0.05943702, 0, 0.018236404, -0.088083975, 0.09258271, 0.22039151, 0.10004172, 0.06488551, -0.06637698, -1.6593139, -0.04619991, 0.119449906, 0.047134567, 0, 0.080508396, -0.012081765, 0.10952995, 1.4403086, -0.14059272, 0.003223845, 0.0043635406, 0.28491443, 0.0028409935, 0.14015487, -0.01201193, 0, -0.0046219495, -0.011914887, -0.14011574, -0.58344704, 0.025586588, 0.03665237, 0.10115864, -0.73091483, -0.0370278, 0.10062789, -0.027094433, 0, -0.10102182, -0.027600178, 0.035552237, -1.8744113, -0.09245029, 0.011300665, 0.045707896, -1.1597912, 0.03445111, 0.08488777, 0.048694573, 0, -0.03209421, 0.058569063, -0.07939521, -0.658105, -0.09442842, 0.000786473, 0.0060355337, -1.983547, -0.0031637873, 0.0738165, -0.05911758, 0, -0.0051996787, -0.059196945, -0.07363734, 1.7170789, -0.055616792, 0.01297938, -0.076040514, -1.1836774, 0.037085034, 0.08669848, -0.012325772, 0, 0.06764114, -0.036861364, -0.055765282, -1.2510107, -0.025160728, -0.05517884, 0.060613636, -0.84251404, -0.02743039, 0.065417394, 0.048165523, 0, -0.07724177, -0.0052573225, -0.036849003, -1.5619917, 0.022231828, 0.008539516, 0.13461779, 0.50417715, -0.072308, 0.115929455, 0.004587488, 0, -0.113870226, -0.071948364, 0.023369478, -0.56793565, -0.033763982, 0.03620201, 0.07141162, -1.5925143, 0.063856564, 0.05892749, 0.00031869207, 0, -0.048296418, 0.05260396, -0.049502432, 0.51230836, -0.124347195, -0.07104868, 0.012019895, 0.7218537, -0.06965543, 0.124655835, 0.01623768, 0, -0.018453024, 0.008223507, -0.14229012, -1.3790767, 0.01323239, 0.03925632, -0.092019245, 1.4215899, 0.05132953, 0.07700801, 0.040233582, 0, 0.085871294, -0.05208074, -0.009869845, 0.9624007, 0.0513665, 0.03024822, 0.042227864, -1.1852779, -0.039116822, 0.06160021, 0.0034573697, 0, -0.034176335, -0.025042448, 0.059510663, 1.5043631, 0.139404, -0.010809166, -0.051119175, 0.989997, -0.005578562, 0.14174181, -0.045184314, 0, 0.051950824, 0.044225603, 0.1323204, -0.9216621, 0.029171536, 0.06783504, 0.07261164, -1.3291996, -0.0019497657, 0.07605212, -0.07026589, 0, -0.0993491, 0.01842562, 0.022699708, -1.2109773, 0.071395166, -0.05336973, 0.035037242, -1.2568817, 0.016810922, 0.06642312, 0.066922106, 0, -0.061590016, -0.043736096, 0.05888149, -0.9032941, 0.08901557, -0.015866483, -0.09872558, -1.0089457, -0.008708033, 0.13044566, -0.02881588, 0, 0.09961252, 0.025582017, 0.085703924, 0.88565445, 0.06424469, -0.003614068, 0.0572446, 0.15320313, -0.0030451745, 0.08561699, 0.008822874, 0, -0.05727768, -0.008605504, 0.06373852, 0.8820982, -0.08031954, 0.012545086, 0.062780246, -1.0782487, 0.04305485, 0.08512767, 0.03807267, 0, -0.04738163, 0.056088045, -0.07182673, 1.9487884, -0.030071601, 0.052864783, -0.06903167, -0.10767579, -0.020159716, 0.06681407, 0.05994851, 0, 0.08457921, 0.034721076, -0.010254857, -0.15273619, -0.053521965, 0.035248343, -0.11413542, 1.1696615, 0.08642286, 0.09776631, -0.010333523, 0, 0.08246473, -0.07958169, -0.06324764, -0.892236, -0.036983505, 0.007476073, -0.06763654, 1.6251316, -0.02050537, 0.0721778, 0.01919032, 0, 0.06488546, 0.027071146, -0.032486964, -1.6607028, 0.06098705, -0.009963269, -0.04105483, 1.3840084, 0.00094393396, 0.07240086, -0.016168172, 0, 0.04223594, 0.012768481, 0.05964292, 1.3313396, -0.04057092, -0.057697996, 0.04963836, -0.43807697, -0.020181894, 0.062391665, 0.056026753, 0, -0.073387444, 0.014739289, -0.042849287, -1.6808171, 0.0035148237, 0.033691835, 0.08258966, -1.4961982, -0.017121987, 0.08137153, -0.03246624, 0, -0.08753873, -0.014562943, 0.009666289, -1.7162764, 0.035142176, 0.03408627, -0.11979358, 0.28500658, -0.053725973, 0.11644344, 0.017372172, 0, 0.11236501, 0.045015544, 0.04577176, -1.8568804, -0.065103814, 0.025169965, -0.024173094, -0.102351665, 0.033124313, 0.06067362, -0.026035821, 0, 0.010983872, -0.033786938, -0.064762406, 0.6764488, 0.062370613, -0.021726402, 0.12044365, 0.7110102, 0.08374969, 0.10615155, -0.02422069, 0, -0.08924517, 0.08443113, 0.061445, 0.44327617, 0.071041934, -0.041884217, 0.048761137, -1.0274873, 0.0028393022, 0.07464994, 0.05998515, 0, -0.064217396, -0.04303478, 0.056595277, 0.9380219, -0.09950492, 0.024312163, -0.03313759, -1.4634671, 0.038704395, 0.08463091, -0.05412938, 0, 0.013825737, -0.061943036, -0.086961605, -1.4364915, -0.04739745, -0.06003812, -0.06274064, 0.43673652, -0.07686453, 0.06226577, -0.0015163533, 0, 0.040408004, 0.04801958, -0.076477416, -1.2456498, -0.096052505, -0.02995357, -0.06579182, 1.5661905, 0.010262238, 0.10265225, -0.061717626, 0, 0.07155743, -0.054928705, -0.079462156, -1.787672, 0.053931132, -0.013068395, -0.038745597, 1.1291144, 0.028245253, 0.05827777, 0.019659054, 0, 0.029567035, -0.03183535, 0.051892884, 1.7697217, 0.06942128, 0.02657953, -0.095094986, 1.7760632, -0.07365366, 0.09136133, -0.028232716, 0, 0.06576219, 0.074266255, 0.06876553, 1.6951869, 0.05014506, -0.021460867, -0.053465992, 1.31235, 0.02281526, 0.072484046, -0.0076964437, 0, 0.05290223, -0.010917989, 0.05399871, 1.3500907, -0.02757973, 0.021828108, -0.10535634, 0.28299367, 0.0019413837, 0.10884581, 0.022042861, 0, 0.10757628, 0.0036318586, -0.027408393, 0.98033, -0.05144014, -0.01994164, 0.054340806, -1.5346673, -0.0011974109, 0.07304875, 0.025673466, 0, -0.057871915, 0.016213933, -0.048832674, 0.18910623, 0.023551898, -0.039994538, -0.12153899, 0.87873995, -0.082092606, 0.09006831, -0.045546517, 0, 0.098143235, 0.08493596, -0.008931416, 0.4449153, 0.05423448, -0.024800926, 0.09985007, -0.3298843, 0.04688672, 0.10642932, 0.00096814113, 0, -0.09157924, 0.039802212, 0.05962824, 0.29809594, 0.017310698, -0.049042802, -0.065283276, 0.641556, 0.035883356, 0.06451396, -0.038949933, 0, 0.07334499, -0.0199879, 0.034463886, 1.3723073, -0.009829847, -0.0017422697, 0.09397716, -1.1344306, 0.012178352, 0.0936696, 0.0030104017, 0, -0.09320102, 0.0124233365, -0.009518345, 0.9853227, -0.09381262, -0.027561735, 0.10850989, 0.8842013, -0.028721765, 0.14275606, 0.01142883, 0, -0.10820863, -0.013996736, -0.09710736, 0.86886954, 0.06662457, -0.009468252, 0.03246941, -1.3187525, 0.0055354326, 0.07381558, 0.010166759, 0, -0.033365697, -0.0066600447, 0.06652156, 1.2274921, 0.032866433, 0.01763021, 0.06303099, -0.63632584, 0.038353678, 0.051964834, -0.0345338, 0, -0.05303513, 0.048505295, 0.014086991, -0.72044873, 0.08742297, -0.037632722, -0.014481211, 1.1163458, 0.040282384, 0.08305641, 0.027343415, 0, 0.001804748, -0.030888684, 0.09116652, -1.0394244, -0.11056172, 0.087576926, 0.022695119, 1.4050361, 0.060357746, 0.09809942, -0.08451111, 0, -0.06739235, -0.055816364, -0.112922475, -0.503139, -0.01728002, 0.0119528035, -0.10426508, -0.8052399, -0.024652917, 0.10224984, 0.015807547, 0, 0.10201132, 0.026735283, -0.013841606, -1.5827544, 0.11276395, -0.062369388, -0.07365274, -1.6121619, 0.091994174, 0.10371195, 0.05302146, 0, 0.029184535, -0.08593174, 0.11744944, 1.2879097, -0.035205796, 0.037447467, -0.021284275, -1.0876837, 0.03689249, 0.040403694, 0.010063143, 0, 0.02223235, -0.0077465936, -0.05040331, 1.9170868, 0.09524881, -0.07182285, 0.05491198, 0.6911596, 0.05430713, 0.10922143, 0.048657965, 0, -0.07228127, -0.012583321, 0.1089186, 1.1759672, -0.025479356, -0.0062187375, -0.09070293, 0.43179786, 0.009909598, 0.09344638, -0.009190537, 0, 0.09037419, -0.011999726, -0.024564289, 0.7060721, 0.07078949, -0.011982246, 0.04228846, -1.0177159, 0.036191277, 0.06138247, -0.043190554, 0, -0.024941526, 0.055060502, 0.057352442, 1.8841643, -0.120503336, 0.018730195, -0.07577427, -0.44022202, 0.017350527, 0.14232011, 0.007586842, 0, 0.076102026, -0.00278938, -0.12171406, -1.377547, -0.051744346, 0.01207715, -0.0075208494, 0.8781841, 0.014130563, 0.046929877, -0.021858912, 0, 0.0016576863, -0.023057044, -0.0484306, -1.3199608, -0.0691825, -0.022376165, -0.0019309018, -0.278414, -0.018759066, 0.054131866, 0.044816043, 0, -0.012349844, 0.043124095, -0.0572576, -0.07417548, 0.010170626, 0.0033822304, 0.05131679, -1.4939716, 0.028683465, 0.043045662, -0.008521951, 0, -0.042686194, 0.029730882, 0.0065005748, -1.4027622, 0.050396916, -0.06399761, 0.10115012, 1.7110837, 0.10732984, 0.07274394, -0.007450842, 0, -0.05298441, 0.08648419, 0.08111737, 1.5843375, -0.062752955, 0.025974458, 0.07131694, 1.2527139, 0.053232912, 0.081022196, 0.017331293, 0, -0.054102086, 0.04959278, -0.065667585, 1.4299512, 0.02062918, 0.044640217, -0.115009, -0.33242345, 0.01100526, 0.11547504, 0.04679512, 0, 0.122876786, -0.01783676, 0.015117169, 0.9859946, 0.0920526, 0.0012434671, 0.03002647, -0.9416261, -0.020119037, 0.07442039, 0.058597315, 0, -0.02232396, -0.061942514, 0.07100409, 1.5540721, 0.031149505, 0.017045882, 0.06040994, 0.6301501, -0.039373126, 0.057828136, 0.003984802, 0, -0.04888436, -0.035714976, 0.035284203, 0.75963044, -0.010379578, -0.010540199, 0.085092425, -1.9859324, 0.041946203, 0.074132316, 0.014299196, 0, -0.074781895, 0.043044806, -0.0037900403, 0.33600593, 0.06724949, -0.03594317, 0.12916836, 1.3150097, 0.040027402, 0.14329804, 0.019035343, 0, -0.12796165, 0.02593503, 0.07383807, -0.5629597, 0.07422686, 0.023066187, 0.067572914, -0.62640285, -0.044816464, 0.09093062, 0.018190164, 0, -0.055584464, -0.04251292, 0.07556979, -0.40377784, 0.053633723, 0.09803456, -0.09461654, 0.62852526, -0.06814345, 0.10735338, 0.072604164, 0, 0.11798108, 0.017438982, 0.08494696, -1.6271511, -0.10351924, 0.0020986737, 0.04376119, 0.2878605, -0.003740415, 0.11144619, -0.014192807, 0, -0.043651525, -0.014526597, -0.102563165, -1.647477, 0.029179834, -0.011606255, -0.04704296, -0.2588954, -0.022737542, 0.04521308, -0.02525845, 0, 0.042787254, 0.031941824, 0.018659543, -1.3581376, -0.11820731, 0.024159646, 0.04515108, 1.8437202, 0.031931337, 0.12357294, 0.01747553, 0, -0.04003371, 0.02722712, -0.11937865, 1.9722464, -0.10278681, -0.024968415, -0.09269709, 1.2844968, -0.050591055, 0.12950592, 0.021214643, 0, 0.08158871, 0.048847668, -0.10362668, 1.0571353, 0.033632398, -0.079364605, -0.110880904, -0.8334172, 0.088045426, 0.09984505, -0.0447596, 0, 0.104121655, -0.05879351, 0.07366449, -0.5513085, -0.0308697, -0.04103543, 0.051069357, -0.5985267, -0.014388742, 0.059323087, 0.038969986, 0, -0.06391361, 0.0064644595, -0.033439275, -1.2158455, -0.09798686, -0.04573351, -0.05864445, 0.24373746, -0.057693377, 0.10795635, 0.012208657, 0, 0.0469276, 0.037229333, -0.10744267, -1.6368904, 0.048053615, 0.006501912, 0.04636585, -1.4416802, -0.015089719, 0.06504644, 0.006517497, 0, -0.044321183, -0.015096441, 0.048051503, -1.8299825, 0.04469607, 0.0020411233, 0.0670154, 0.28681672, -0.0006704738, 0.08055119, -0.0020062162, 0, -0.067043126, 0.00055520586, 0.04469765, -1.4682745, -0.019415285, 0.017700365, -0.047888037, -0.4600227, 0.0018989351, 0.05144877, 0.018246599, 0, 0.05101922, 0.004820924, -0.018902855, 1.415988, 0.046419684, -0.06458564, -0.10037715, -0.12419772, 0.07551123, 0.09929932, -0.028971756, 0, 0.092438795, -0.04868269, 0.07407246, 1.7918441, 0.09945963, 0.036952507, -0.1018139, -1.9525673, 0.009376898, 0.1347711, 0.058074117, 0, 0.107905656, -0.04577163, 0.0887981, 1.9416974, -0.039864354, -0.0213271, -0.035477053, 1.9307582, -0.03482236, 0.043907814, 0.012733429, 0, 0.02238012, 0.03032972, -0.043380544, -1.351202, -0.055106837, -0.015401743, 0.105713375, 0.5756602, -0.06598965, 0.0984501, -0.020055912, 0, -0.084011294, -0.067228414, -0.0535886, 1.7324889, 0.097201176, -0.057000875, -0.040304363, 1.6604773, 0.06906126, 0.068416156, 0.06979527, 0, -0.010202157, -0.07994834, 0.08846347, -1.1208496, -0.010943171, -0.07477617, 0.110628724, -1.9826865, 0.0056563453, 0.11064038, 0.07534357, 0, -0.13340989, 0.010824601, -0.0058800727, 0.6083727, 0.078909226, 0.018320447, -0.03825301, 1.0850476, 0.009322233, 0.071330056, 0.0533921, 0, 0.041376654, -0.05100963, 0.060922805, 0.3251176, -0.048516985, 0.035843126, 0.02165053, 1.1983275, 0.015323477, 0.046034697, -0.04187327, 0, -0.03897007, -0.02652263, -0.043419547, 0.42469096, -0.061596267, 0.052806176, -0.02377359, 0.47911406, 0.057274833, 0.060679764, -0.013613824, 0, 0.008559773, -0.02602403, -0.079982854, 1.6314487, 0.07638478, -0.04761338, -0.08551458, -0.5422807, -0.0035077976, 0.10707266, -0.06274992, 0, 0.09781346, 0.041022237, 0.06452996, -0.31188118, -0.028773066, 0.07741863, -0.12618439, 1.7543606, -0.09677289, 0.087442465, 0.075715624, 0, 0.11203192, 0.09541595, 0.03299513, -1.5855963, 0.003868321, 0.017190645, 0.0699267, -0.5952594, -0.0050162477, 0.06992175, -0.016911928, 0, -0.071833834, -0.0039569912, 0.0049466016, -0.09320974, -0.030749792, -0.00410141, -0.043676257, -1.5162704, -0.014848183, 0.05116252, 0.005649295, 0, 0.041279152, 0.015348013, -0.030503388, 0.73135996, 0.10015045, 0.06406069, 0.07883206, -0.0254488, -0.0030632606, 0.11255861, -0.08757598, 0, -0.10153267, 0.05979269, 0.08040106, -0.026852012, 0.023908444, -0.017819673, -0.05770148, -1.4740615, -0.013613461, 0.058871213, -0.023821615, 0, 0.058836002, 0.020862762, 0.017935583, 1.7444875, 0.044944607, 0.0751381, -0.08026004, -1.4963655, -0.09103127, 0.074053735, 0.0183515, 0, 0.06164994, 0.05456864, 0.08560943, -1.8625145, 0.031618062, -0.038942993, 0.06375851, -0.4719224, 0.027674437, 0.07041305, 0.02928367, 0, -0.06939618, 0.010336873, 0.040727448, -1.5392871, 0.03320743, 0.021547318, -0.054961707, -0.15012121, 0.010975506, 0.059707567, 0.030039212, 0, 0.058005296, -0.02363322, 0.02578112, 1.0533664, 0.03329034, -0.033954967, -0.038599618, -1.4642165, 0.019313946, 0.050877932, -0.028098483, 0, 0.04764286, 0.0031005447, 0.038362246, 0.033424377, 0.043645244, -0.080464266, 0.11256638, -1.8168557, -0.058121234, 0.096454486, 0.09148251, 0, -0.12556915, -0.07261288, -0.0032180646, 0.33031154, -0.11001805, 0.011157683, -0.065259226, -0.23319483, 0.022542039, 0.1253168, -0.01657675, 0, 0.06225044, -0.025660051, -0.109332874, 1.2565145, 0.053322315, -0.04737682, 0.044757802, 1.7044132, 0.05487827, 0.0638332, 0.0021890586, 0, -0.035159633, 0.027782248, 0.07129545, 1.730438, -0.07162999, 0.042923838, 0.07840323, 0.3837937, 0.06993335, 0.08948561, 0.014900659, 0, -0.055667292, 0.057186075, -0.08216618, -1.4953288, 0.07623105, -0.027423842, -0.03386329, 1.2053492, 0.042437866, 0.062211305, 0.045152433, 0, 0.00989024, -0.05556661, 0.06726438, 1.9287565, -0.051884484, 0.0030948846, -0.01163361, -1.4819376, 0.006391006, 0.050701305, -0.015015059, 0, 0.010201679, -0.016022442, -0.049760688, 1.2118287, -0.032638676, 0.09164337, 0.09769426, -0.54178715, -0.049889345, 0.08500142, -0.09640421, 0, -0.12431304, -0.058173973, 0.013039108, 0.0868423, 0.043866407, -0.029201882, -0.080110535, -1.7149005, 0.03349855, 0.08874874, -0.014007762, 0, 0.078411065, -0.02157824, 0.05080152, -1.8794782, 0.039364617, -0.06288955, -0.12909156, 1.9916906, 0.08334974, 0.119004324, -0.032559052, 0, 0.11692967, -0.063656695, 0.06666767, 0.14797926, 0.027845228, 0.044560447, 0.054993045, -0.7695272, -0.051396, 0.053360656, -0.01721383, 0, -0.048665375, -0.03085826, 0.049645483, -0.479267, -0.04956575, 0.048838798, 0.050421122, -0.18961239, 0.01481259, 0.06761086, -0.050927784, 0, -0.06861563, -0.02068391, -0.04741679, 1.173367, -0.10258736, -0.08228993, 0.005952854, 1.9562771, -0.07861211, 0.10037546, 0.03280456, 0, -0.025044069, 0.022008413, -0.12735644, -1.7888973, 0.051316854, -0.077139705, 0.11176523, 0.48176003, 0.09290613, 0.10708501, 0.031251725, 0, -0.09904771, 0.06047881, 0.087219745, -1.6922331, -0.08452657, -0.008887852, 0.024195606, 1.4454368, -0.021031307, 0.07173956, -0.047119852, 0, -0.014903204, -0.05082915, -0.0707351, -0.94118524, 0.035590153, 0.028368346, -0.090219356, 1.0971289, -0.04895963, 0.08800041, 0.008356804, 0, 0.08091507, 0.040769085, 0.044739086, 1.0045438, 0.0945765, -0.03135895, -0.05088574, -0.59330606, 0.041138116, 0.10324963, 0.012830689, 0, 0.043363556, -0.029556511, 0.09881028, -1.326008, -0.06278409, 0.038327415, 0.045638133, -0.7313137, 0.02104627, 0.07627785, -0.035105776, 0, -0.05575737, -0.014365593, -0.06464068, 1.4071288, -0.13264413, 0.009918019, -0.045440666, -1.1092806, -0.00040730904, 0.13707604, 0.031107595, 0, 0.046508655, 0.029486967, -0.12932576, -0.5619801, -0.05475859, -0.016948014, -0.098063916, 1.8469946, -0.023317892, 0.11099804, -0.0061627296, 0, 0.09674731, 0.017160075, -0.05698911, 0.87007856, -0.050340213, -0.021462148, 0.041844428, 0.31975344, -0.011292051, 0.06501987, 0.019764202, 0, -0.04565161, 0.007583554, -0.051030744, 0.6088984, -0.0029305012, 0.03859734, -0.056356885, -1.7193, 0.036627486, 0.048501365, 0.03131271, 0, 0.057656575, -0.028849678, -0.022756465, 0.57898784, 0.040240817, -0.027207801, 0.02108788, -1.5938516, 0.034311205, 0.03431819, -0.021196455, 0, -0.0027757033, 0.02977052, 0.043706957, 0.98453116, 0.0327075, -0.017831208, -0.053480357, -0.23547721, 0.004414554, 0.062449884, -0.018121941, 0, 0.056201532, 0.0054718405, 0.032547314, -1.4381449, 0.08409065, -0.020300776, 0.0739922, 1.5920014, 0.048158485, 0.099424966, -0.02745255, 0, -0.05973046, 0.051582564, 0.082034856, -0.39897865, 0.043112535, -0.029314281, 0.069826186, -0.75134134, 0.006869054, 0.08153102, 0.029987043, 0, -0.07541777, -0.009331645, 0.042647336, 0.061380386, -0.08851331, -0.07270799, -0.0777485, -0.309366, -0.09827381, 0.09467416, 0.023344146, 0, 0.04090892, 0.0701159, -0.112143256, 1.8806119, -0.0820774, -0.05097129, 0.043477573, 1.0504599, -0.002984604, 0.07147044, 0.078154586, 0, -0.0669288, 0.05932095, -0.056803454, 1.561965, 0.12992468, 0.019020787, -0.07078161, 0.9848075, 0.0326034, 0.11402367, 0.090486854, 0, 0.0656418, -0.09428184, 0.0951543, -0.95885587, 0.052296054, -0.03489583, -0.053973716, -1.4990995, 0.041386146, 0.071520865, -0.006140914, 0, 0.04917385, -0.023082567, 0.062569045, 1.5590692, 0.034469344, 0.022254862, 0.062387135, -0.40201783, 0.03109457, 0.056661367, -0.03739233, 0, -0.05848556, 0.04324095, 0.016888704, 0.33551788, 0.068903856, 0.04816886, -0.03874712, 0.30233997, -0.034703594, 0.07815649, 0.035447747, 0, 0.051158957, -0.011859291, 0.07623278, -1.8792362, 0.054204397, -0.0053419154, 0.012282553, 0.022069931, 0.0005101603, 0.05198805, 0.02035919, 0, -0.013384203, -0.019652503, 0.050518874, 0.8622453, -0.023876632, 0.037979603, 0.045748096, -1.4665787, -0.010849797, 0.04568815, -0.043592513, 0, -0.058460418, -0.023991141, -0.010594185, -1.4372144, -0.04615499, -0.013965765, -0.036758553, 0.42952716, -0.013027306, 0.058911014, -0.0060247844, 0, 0.037101522, 0.003311509, -0.047843784, 0.17151213, 0.020966867, 0.014393476, -0.05300653, 1.5649462, -0.04059566, 0.04227902, -0.004577206, 0, 0.036998063, 0.038233317, 0.025016613, 1.8936424, 0.09443103, -0.018422395, 0.07189252, -0.39745593, 0.052861042, 0.09836001, -0.044228464, 0, -0.052092504, 0.066415824, 0.085442655, -0.4115069, -0.021696854, 0.04298648, -0.064996295, -0.40306163, 0.048925616, 0.060027666, 0.023368198, 0, 0.06065179, -0.03304468, -0.042101286, 0.26032734, -0.03448149, 0.03494439, -0.100365646, -1.865824, -0.034404613, 0.09616368, 0.045301385, 0, 0.100551955, 0.044886336, -0.018917385, 0.784683, -0.050201688, 0.0380392, 0.022375783, 0.4062671, 0.04405803, 0.04516267, 0.022070095, 0, -0.0025585864, 0.0313244, -0.058992382, -0.08301777, 0.13684398, -0.011668208, 0.008173564, 0.18706179, 0.009742257, 0.13424036, 0.028527955, 0, -0.010394356, -0.02779584, 0.134345, 0.3717277, -0.097307235, -0.032314595, 0.0068778666, -1.8742393, -0.0319348, 0.09747922, 0.00618128, 0, -0.008467976, 0.0037157335, -0.10234609, -0.25541037, -0.089448355, -0.044275533, 0.07558082, -1.1459148, 0.021205543, 0.0938658, 0.08008326, 0, -0.08498887, 0.07001915, -0.059565097, -0.81845033, -0.10571881, -0.086169675, 0.04632363, -1.8897247, -0.081236064, 0.1153248, 0.02912814, 0, -0.05451416, -0.0047469917, -0.13324124, -1.716989, -0.05462376, 0.06590257, -0.08658653, -0.87451124, 0.08425025, 0.086929135, 0.013013428, 0, 0.06886414, -0.054076854, -0.08460233, -0.84423196, -0.10586897, -0.048777822, 0.016464511, -1.1988559, -0.030780248, 0.090152316, 0.06916453, 0, -0.0412666, 0.05789543, -0.09382848, -0.00068438053, -0.102190726, -0.050393954, -0.0037616654, -1.9929401, -0.04309345, 0.09133463, -0.052892186, 0, 0.02639423, -0.045989975, -0.10092032, -0.8522585, 0.041796308, -0.00063922256, -0.059622135, 1.4959657, -0.011730306, 0.07130051, -0.0089876065, 0, 0.05846031, 0.014763758, 0.040823556, 0.23011327, -0.045312747, 0.031706914, -0.019821076, 0.73019737, 0.019998966, 0.04686333, 0.029245822, 0, 0.031595014, 0.015809748, -0.046938848, -1.1029854, 0.014039834, -0.033641357, 0.05989679, 0.23222268, 0.045073405, 0.050647207, 0.01788105, 0, -0.051843558, 0.034922812, 0.03176674, 0.9583669, -0.060157426, 0.027053218, -0.08689173, 1.130397, 0.031890795, 0.10382184, 0.010245469, 0, 0.085235134, -0.019751351, -0.06515998, -0.8920319, 0.08726803, 0.09727821, -0.067964956, -0.87666464, -0.052473348, 0.107301064, 0.08620338, 0, 0.10643698, -0.026859378, 0.09822288, 0.75255966, 0.011954052, -0.019270109, -0.064089455, -0.9315293, -0.0145386625, 0.06280125, -0.021594549, 0, 0.065325506, 0.017503146, 0.0069218413, -1.8338952, -0.075874954, -0.024458177, 0.014978371, 1.1176527, -0.016265322, 0.07158715, 0.03450046, 0, -0.023621883, 0.029268416, -0.07186744, 1.2300584, 0.068418026, -0.014521469, 0.13088402, -0.3865676, 0.03568194, 0.14402147, -0.0026732422, 0, -0.12676081, 0.03270281, 0.069891006, 0.5353756, 0.03889485, -0.02790378, 0.05231432, -0.7766404, 0.015243829, 0.06516921, 0.023426872, 0, -0.057297777, -0.0016036422, 0.041744605, -1.5134971, 0.034759525, 0.019582232, -0.040087108, -0.5180507, -0.036072087, 0.04223936, -0.010644509, 0, 0.026253466, 0.032109767, 0.038449746, -0.6346868, -0.052341405, 0.052653603, -0.020614948, -0.86669827, 0.056489136, 0.047438085, -0.022262227, 0, -0.0025210613, -0.030236188, -0.07082668, 0.38662338, -0.022287093, 0.03555588, 0.052595556, -0.6359651, 0.030193517, 0.054970987, -0.02436739, 0, -0.055846795, 0.015530528, -0.034163803, 1.9088478, -0.028372739, -0.06907269, -0.09485903, -0.717263, 0.027432946, 0.09098358, -0.07445606, 0, 0.11409076, -0.03905425, -0.0056872345, -1.7597494, 0.04226458, 3.0395664e-05, 0.057980854, 1.3834094, -0.010499822, 0.070567794, 0.007616749, 0, -0.05702222, -0.012971515, 0.0415726, -0.7419962, 0.049840476, 0.01286859, 0.010385224, 1.828026, -0.006340526, 0.045329705, -0.02573989, 0, -0.015272563, 0.023176357, 0.044577252, 1.4486461, 0.093015246, -0.06800209, -0.005472117, 1.8311145, 0.06420349, 0.084125824, 0.045900125, 0, -0.023068175, -0.04005777, 0.1056849, -0.6366373, -0.07575915, 0.06303833, 0.10227614, -0.7675221, -0.04684484, 0.095843166, -0.093772784, 0, -0.11063363, -0.083749294, -0.030330583, -0.5981648, 0.04221521, 0.015633952, 0.044098847, -0.90077543, 0.0051019127, 0.057503417, -0.025270142, 0, -0.046509128, 0.020498512, 0.037255395, -1.6514101, -0.08016731, -0.030427495, -0.05223558, 1.9412372, -0.051691, 0.079487555, 0.033029616, 0, 0.03134373, 0.05326427, -0.07913074, 0.85520434, 0.052949402, 0.00045733553, 0.028601773, -0.5894809, -0.017829146, 0.047584184, 0.032245576, 0, -0.022369446, -0.036843542, 0.04200085, 0.9177978, -0.05178961, -0.051135045, -0.044296823, 0.048596144, -0.06320134, 0.056471393, 0.008702777, 0, 0.024136959, 0.038149107, -0.072258, -0.6769527, 0.06658815, -0.010950883, 0.121480405, -1.5258098, 0.07624474, 0.11176826, -0.03171734, 0, -0.09520585, 0.081849426, 0.059564367, 1.2901678, 0.043099962, -0.0582803, 0.06389512, 0.0151587725, 0.062432043, 0.070369266, 0.022072474, 0, -0.05984498, 0.0314382, 0.0690435, 0.13787127, -0.030233555, 0.026163317, -0.08863943, -1.6746345, 0.05077599, 0.08262778, 0.0070699714, 0, 0.07722219, -0.04408703, -0.039352287, -1.4929452, 0.07002863, 0.058011312, -0.071265884, 1.5319772, -0.046178926, 0.099682026, 0.035765197, 0, 0.07944587, 0.006806589, 0.08360726, 1.565573, -0.07623238, -0.04677583, -0.024206527, -0.57548594, -0.02982321, 0.073437616, -0.04798752, 0, 0.04341095, -0.031689875, -0.075475514, 1.9789479, 0.04058921, -0.038247887, -0.09051952, -1.3416075, -0.027118944, 0.0897742, -0.05009317, 0, 0.09445235, 0.042212106, 0.024516514, -0.97878, -0.0816816, -0.05728928, -0.021070408, 1.5565164, -0.039718457, 0.07660994, -0.054325577, 0, 0.046351574, -0.035309516, -0.083682, 0.28195572, 0.040134452, -0.0024572602, -0.034714013, -1.3867381, -0.021084797, 0.040438972, -0.0272396, 0, 0.027686318, 0.03435879, 0.029577298, 1.938015, -0.0906831, -0.043900654, 0.035160974, 0.61144966, -0.0039379834, 0.071499765, 0.0791155, 0, -0.05610752, 0.0659356, -0.062381327, -1.4630839, 0.032983966, 0.016974311, 0.04530564, 0.0007018447, -0.01459056, 0.055769734, -0.010272414, 0, -0.046128556, -0.005502699, 0.03564473, -1.1491487, -0.1020468, 0.015327293, 0.0012923855, 1.1723167, 0.014060288, 0.09646652, -0.03386244, 0, -0.0062373485, -0.033308115, -0.09747723, -0.5013551, -0.02996673, -0.037623234, -0.037100144, 0.7618449, -0.048032522, 0.03716979, 0.0011032283, 0, 0.022018299, 0.029880302, -0.04808633, -1.261076, 0.062628955, -0.05007179, -0.052889876, -1.0399435, 0.01880737, 0.0785081, -0.05205448, 0, 0.070361964, 0.023583943, 0.060990985, -0.8577163, -0.045722228, -0.05218496, -0.13001889, -1.8043771, -0.07067495, 0.12668139, -0.025991969, 0, 0.1209679, 0.05428868, -0.064328924, 0.2903247) + +[sub_resource type="MultiMesh" id="MultiMesh_antnu"] +transform_format = 1 +instance_count = 1280 +mesh = ExtResource("10_vetlt") +buffer = PackedFloat32Array(0.06360831, 0.019761343, -0.033779852, -0.054793797, -0.019190328, 0.07193059, 0.0059437877, 0.0002, 0.03410748, 0.0036175682, 0.066341534, -2.775978, 0.06520674, 0.038298815, -0.0029898905, 2.0782154, 0.034861803, -0.056521133, 0.036299787, -0.00029999999, 0.016136708, -0.032653037, -0.06634036, 0.94236594, -0.01255137, -0.014356837, -0.065621085, -2.2170286, -0.04325082, -0.04935072, 0.019069744, -0.00029999999, -0.05139661, 0.045035202, -2.2328904e-05, 0.8123342, 0.035011742, 0.0053891763, -0.054814372, -2.4239655, -0.042926364, 0.04336661, -0.023154814, 0.0002, 0.03451067, 0.048474483, 0.026808959, -1.3489963, 0.0119578205, -0.0365998, -0.1135724, -1.3047427, -0.0055919834, 0.11384397, -0.037276078, 0.0004129697, 0.119192965, 0.009012841, 0.009645126, -0.3035891, 0.1055306, -0.009507746, -0.0051117553, -0.14404467, 0.005847262, 0.09257367, -0.05146998, 0.0004, 0.0090739615, 0.05092104, 0.09261721, -1.8484528, -0.092213504, -0.033259854, 0.00025521757, 0.6472248, 0.030770622, -0.085592635, -0.036560696, -0.00049999997, 0.012627413, -0.034311775, 0.09095528, -0.16346183, -0.04633239, 0.014742755, 0.023441246, -2.1642644, 0.00030000147, 0.045956306, -0.028310057, 0.00035174654, -0.027690265, -0.024170237, -0.039529484, -0.020276597, 0.061077274, -0.020407863, -0.047689136, 2.270936, -0.0114872325, -0.07716227, 0.018308327, -0.00029999999, -0.050584372, -0.0071183196, -0.061739117, -0.6242502, -0.07624509, -0.06251726, -0.03790884, 2.3174186, 0.056776095, -0.08513677, 0.02621081, -0.00025526798, -0.0460648, -0.0014566176, 0.09505114, -1.2948401, 0.009116002, 0.028126188, 0.06581054, -2.308366, 0.007066852, -0.06637178, 0.027387159, -0.00029999999, 0.07121916, 0.0029857291, -0.011141245, 0.07546726, 0.0236719, -0.060761325, -0.060533177, -1.8420596, 0.002422845, -0.06229763, 0.0634799, -0.0004, -0.0857341, -0.018537244, -0.01491978, 0.6987972, 0.0059204362, -0.017269755, -0.081257686, 1.9742062, 0.026720284, -0.07673882, 0.018256195, -0.0003732224, -0.078658015, -0.027368186, 8.55508e-05, -0.77653915, -0.07362134, 0.07114214, 0.106674194, -0.27465013, 0.032546997, 0.12934767, -0.06380096, 0.0004, -0.124021284, -0.00828649, -0.08006713, 2.0348418, -0.110948615, 0.034875806, -0.03405093, -1.4641453, 0.042490188, 0.11068375, -0.025081309, 0.0003889022, 0.023882464, -0.03490224, -0.11356428, -1.4931432, -0.1186594, -0.06942298, 0.03907943, 1.6320827, -0.05419152, 0.12172694, 0.051697575, 0.0002, -0.058395475, 0.02810357, -0.12738511, 2.1618352, 0.07849998, -0.060539816, -0.038670264, 2.2856562, 0.054235317, 0.08750784, -0.026900131, 0.00020826138, 0.04710615, 0.00013500564, 0.095413305, -1.2068523, -0.05776379, -0.0033382627, -0.06545161, 0.2222787, -0.023911647, 0.08230528, 0.016905172, 0.0004, 0.06101877, 0.029093085, -0.05533547, 1.8249258, 0.06263744, -0.007252301, -0.0057966807, 0.21854268, -0.009283326, -0.048364677, -0.039803572, -0.0003, 0.00013128047, 0.040223237, -0.048905216, 2.256555, 0.109800875, -0.024266807, 0.023916654, -2.107139, 0.032869488, 0.09669203, -0.052795507, 0.0002, -0.008971116, 0.0572616, 0.09928617, 1.5794458, -0.060895666, 0.017428191, 0.011178294, 2.211148, -0.0206229, -0.04796621, -0.03756218, -0.00030676898, -0.0018417554, -0.039146904, 0.051001035, -0.43615553, 0.08513615, 0.04234454, -0.117090836, -1.5033559, -0.02796727, 0.14472435, 0.032003004, 0.0004, 0.12133079, 0.0036470038, 0.089537874, -0.18771076, -0.067328274, 0.02724023, 0.05769751, 1.4278181, -0.02166573, 0.06913547, -0.05792246, 0.00039999996, -0.060013577, -0.05551924, -0.043819122, -0.8873782, 0.010092683, -0.03955426, -0.10982205, -1.4417006, -0.070302665, 0.08593682, -0.037412398, 0.00029999999, 0.093182385, 0.069120325, -0.01633133, 1.8746524, -0.05674445, -0.02384306, -0.10781337, -0.5638375, -0.04599226, 0.115304746, -0.0012930958, 0.00029999996, 0.10038389, 0.039350584, -0.061536584, 2.3436792, -0.03756255, -0.046764087, -0.022041121, -0.5180018, -0.04476059, 0.04305074, -0.015058509, 0.00044411147, 0.02586851, 0.0065870937, -0.058060877, 1.1472845, 0.06815713, 0.007282464, -0.10785209, 2.8540196, 0.003197321, 0.12730888, 0.01061679, 0.00011224335, 0.10805037, -0.008360907, 0.067717865, 0.53808093, -0.03341162, 0.004000844, 0.05720499, 1.4719684, 0.002967069, 0.066238515, -0.0028996668, 0.00011077052, -0.05726791, 0.0010976412, -0.03352513, -2.5025606, 0.059445888, -0.094744146, -0.08454708, 2.2701473, -0.08169308, -0.100003704, 0.054625716, -0.00029999999, -0.09721572, 0.026101366, -0.09760274, 1.0942054, -0.08082322, -0.03860271, -0.1039409, 1.1964707, 0.09372252, -0.09251297, -0.038519066, -0.00041403522, -0.05924501, -0.09368812, 0.0808631, 0.59648234, 0.10695601, -0.0071918075, 0.02611111, -1.6858253, -0.0045075384, -0.109614104, -0.011727391, -0.00039999996, 0.026705693, 0.01030182, -0.106554106, -0.81697047, 0.08726613, 0.034429856, -0.015425158, 0.35074323, -0.037422992, 0.07406912, -0.046389796, 0.00049999997, -0.0047823256, 0.048652627, 0.08154005, -0.5557385, -0.049992844, -0.02302486, -0.0025097204, 1.9361286, -0.022742344, 0.049929973, -0.005050855, 0.00029999999, 0.0043850597, -0.003546981, -0.05480801, -1.3784833, -0.056572262, -0.0025645914, -0.017741311, 2.284597, 0.008692069, -0.055291627, -0.019723998, -0.00029999999, -0.015677342, -0.02140119, 0.053084474, -0.1957143, -0.06355477, 0.008168751, 0.056626197, 2.429555, 0.021590061, -0.07495477, 0.035044525, -0.00020000001, 0.0529823, 0.040342554, 0.05364531, -1.250122, -0.041403588, -0.013897244, 0.06970268, -1.1704223, 0.017046802, 0.07637087, 0.02535258, 0.00040000002, -0.06900003, 0.027206874, -0.03556173, -1.3547553, -0.06302839, -0.040508572, 0.052673586, -1.6316149, 0.007507171, 0.067794025, 0.0611199, 0.0004, -0.06602343, 0.04637947, -0.04333452, -0.17997096, -0.05287915, 0.010681096, 0.024836076, 1.0220714, -0.020712331, -0.051069766, -0.022135913, -3.5075223e-05, 0.017375726, -0.028370997, 0.049196456, 2.8030276, -0.061284542, 0.051633503, 0.01883744, -1.5246012, 0.0416793, 0.062050834, -0.03448469, 0.00027779705, -0.035828788, -0.016135074, -0.07233685, 1.950683, -0.017565034, -0.09407122, 0.11251163, 1.3521581, -0.040107515, 0.11207716, 0.08744648, 0.00040000002, -0.1410661, -0.020152055, -0.038872056, -1.5586419, -0.0041837133, -0.035765823, 0.099296935, 1.7166432, 0.028902048, -0.095964484, -0.033347752, -0.00040000002, 0.101507366, 0.02584971, 0.013587667, 0.49422097, -0.07458961, 0.08934146, 0.017955417, 1.042119, -0.085894085, -0.07667776, 0.024710862, -0.00040249035, 0.030438373, 0.0025552348, 0.11373159, -0.88506806, 0.12729426, 0.01615078, -0.04554083, 2.1213388, -0.02689703, 0.13029069, -0.028974956, 0.00036700387, 0.0401418, 0.036085345, 0.12500049, -0.233776, -0.091393694, 0.06704936, 0.040291943, -0.6381669, 0.07673041, 0.08889354, 0.026119854, 0.00020000001, -0.015215189, 0.045543216, -0.1103004, -2.7336624, 0.077740565, -0.022238819, -0.000632121, -1.9736083, 0.022181425, 0.077300005, 0.008441142, 0.00039999996, -0.0017172359, -0.008288761, 0.08041709, -0.48910356, -0.04815952, 0.0019312189, 0.019522527, 1.0826193, 0.014636014, 0.037995953, 0.032346465, 0.0004011913, -0.013063159, 0.03545105, -0.035732005, -0.839922, -0.04899342, -0.049868062, -0.034030013, 1.7543852, -0.053393275, 0.056245487, -0.005551967, 0.00039999996, 0.02817841, 0.019870663, -0.069687545, -1.0439734, 0.029038623, -0.053613633, -0.05042219, 0.535584, 0.037959535, 0.05734921, -0.039117813, 0.00049999997, 0.06305468, -0.009834053, 0.046770286, -0.38710803, -0.061170887, 0.0034153275, -0.09516686, 2.2521658, -0.036076453, -0.10550976, 0.019402534, -0.00029999999, -0.08812993, 0.040820397, 0.058112677, -0.7214601, 0.03159187, -0.015496962, 0.0671392, 1.5961795, -0.034307145, -0.067591414, 0.0005416378, -0.00039999996, 0.05975656, -0.030612385, -0.03518392, -0.11464985, -0.027770922, -0.051469162, 0.075391166, -0.08755425, 0.031455502, 0.06858087, 0.05840669, 0.00040000002, -0.08569395, 0.0418535, -0.0029928628, 1.5677235, 0.076956615, 0.0045826193, -0.07198573, -0.3815951, 0.033306424, 0.09111227, 0.041406576, 0.00020000001, 0.063981466, -0.05294168, 0.06502936, -2.588364, -0.0707405, -0.05894751, -0.04191545, 2.0920084, 0.0555628, -0.0818234, 0.021298705, -0.00032051827, -0.046308592, -0.008127267, 0.089584544, -0.7552302, -0.055694997, -0.0055247773, 0.02533186, 0.9146024, -0.0034467864, 0.061068203, 0.0057405727, 0.0004, -0.025697194, 0.0037830346, -0.05567317, -1.4672362, 0.047903553, 0.005205763, 0.08232634, -1.234929, 0.037633598, -0.08609564, -0.016453905, -0.00029999999, 0.07340599, 0.0407421, -0.045289297, 1.9257253, 0.082202666, -0.02970186, 0.048046086, -2.4178612, 0.04973884, 0.07826946, -0.036713015, 0.0002, -0.026770791, 0.054218058, 0.07931982, 1.347364, -0.0012410157, 0.011454416, -0.05488015, -0.23417646, -0.013858503, 0.053127322, 0.011401955, 0.00049999997, 0.054322895, 0.013815177, 0.0016550414, -0.34635562, 0.08349748, 0.08523738, 0.07851281, -1.6040058, -0.09209303, 0.10754656, -0.018817922, 0.00026113412, -0.070345886, -0.039621115, 0.117826656, -1.9211823, -0.1263786, -0.06335626, -0.03409605, 0.35324767, -0.028915096, 0.10783018, -0.09319163, 0.00049999997, 0.065882266, -0.07420746, -0.10630564, -1.0420209, 0.003732475, -0.04634392, 0.065504275, 1.6226462, -0.0073961993, -0.06549467, -0.045915652, -9.999999e-05, 0.079899095, -0.0038978409, -0.007310397, 2.468399, 0.08492114, 0.005831171, 0.088927865, -1.2871002, -0.036856204, -0.109542005, 0.04237849, -0.00040297981, 0.081140555, -0.055859763, -0.07382186, -0.45540127, 0.09272246, -0.011063943, 0.0017609278, -0.54617375, -0.009775359, -0.07272771, 0.057776175, -0.00049999997, -0.0054730373, -0.05754332, -0.07336059, -0.46592814, 0.050709408, -0.061465215, 0.089703515, -1.0448201, -0.07404764, -0.09200237, -0.021181267, -0.0004, 0.07963441, -0.046408262, -0.07681647, 1.5792537, 0.10330981, 0.062742256, -0.084973104, -1.0991188, 0.09815573, -0.100932546, 0.04481083, -0.00048742103, -0.03901886, -0.08778363, -0.11225642, 0.32973847, 0.115014024, 0.059243705, 0.03730005, 0.8392197, -0.06974085, 0.103218876, 0.05110199, 0.00049999997, -0.0061093755, -0.06297129, 0.11885549, 0.07730036, 0.08028374, -0.021935804, -0.056986414, 0.17555568, 0.002713108, 0.09532212, -0.0328701, 0.00039999996, 0.061002217, 0.024629751, 0.07646055, -1.6718968, -0.09710879, 0.052612774, -0.07780909, -1.2148678, 0.0664193, 0.117599145, -0.0033759917, 0.0004, 0.0664141, -0.040679447, -0.11039394, -1.2432569, 0.0952239, 0.0009821843, -0.035017934, 0.3637702, 0.00092965213, 0.10131689, 0.005369735, 0.0004, 0.03501935, -0.005360375, 0.09507745, 1.5017769, -0.13059026, 0.009051256, 0.032049626, 1.4516852, -0.011867151, 0.10853612, -0.07900631, 0.0004, -0.031117104, -0.07937821, -0.104373075, 0.29145673, -0.12274718, -0.012707399, 0.010439535, 2.1192703, -0.00067092053, 0.08241836, 0.09243429, 0.00015531003, -0.016432038, 0.091559105, -0.08175727, -1.9315946, 0.07539001, 0.022034133, -0.047584064, -0.45407188, 0.017098878, 0.06844855, 0.05878626, 0.0004, 0.049571905, -0.057119988, 0.052089658, 1.9246409, -0.08001786, -0.0030411272, -0.003196509, 0.70948905, -0.002334599, 0.07845105, -0.01619584, 0.0003, 0.0037437663, -0.016078157, -0.07842066, 2.2916112, -0.08668933, -0.023315372, -0.03199597, 0.6766925, 0.037808474, -0.07159982, -0.050263047, -0.0003692096, -0.011741715, -0.058414456, 0.07437925, -2.0183206, -0.072838046, -0.018929912, -0.04680516, -1.7537063, -0.012416249, -0.07292083, 0.04881429, -0.00029999999, -0.048937716, 0.046676084, 0.057279035, -1.8109057, 0.097771205, -0.08997269, -0.03562741, -1.519992, 0.09672746, 0.08936582, 0.039763667, 0.00017325886, -0.0028624837, -0.053312924, 0.12677988, -2.415228, 0.03579592, -0.031303737, -0.049673237, 0.9514838, -0.011138878, -0.060740996, 0.03025159, -0.00046210145, -0.057647906, -0.0077012316, -0.03668942, 0.7515261, 0.03435357, 0.04529477, 0.042773735, -0.956802, -0.04172527, 0.053000405, -0.022612698, 0.00049541576, -0.046262406, -0.014167431, 0.052157924, -0.5930203, 0.099982336, -0.07400712, 0.06093527, -0.8132247, -0.0660868, -0.116990164, -0.03365204, -0.0004914738, 0.06944563, -0.004782168, -0.11975416, 0.7939349, -0.01580229, 0.08356291, -0.07466818, 1.6121235, -0.047433067, -0.07330644, -0.072000556, -0.00040000002, -0.10152932, 0.021241784, 0.045259196, -0.55142856, -0.048054468, 0.004333056, 0.1415518, -2.0932946, 0.08547394, -0.118295684, 0.032638147, -0.00034177015, 0.112915404, 0.091390744, 0.03553533, 0.6245486, 0.079754, -0.047941618, 0.08318341, 1.7439768, 0.08591454, 0.08390654, -0.03401416, 0.00040000002, -0.04285521, 0.07899287, 0.08661488, -0.62001437, 0.05220133, -0.020372383, -0.047708943, -1.938793, 0.017392706, -0.056891803, 0.04332404, -0.0003366645, -0.04887403, -0.042005304, -0.03553928, 1.0284336, -0.013273329, -0.006388784, -0.06155567, -0.85704976, 0.024249569, 0.057384282, -0.01118481, 0.00049999997, 0.056937467, -0.02592923, -0.009586333, -0.6524447, -0.0017785847, 0.09565863, -0.09984086, 2.8400972, 0.04562723, -0.09385015, -0.09073169, -0.00012492134, -0.13052556, -0.034110248, -0.030356197, 0.5624596, -0.016505027, -0.021468127, -0.04551815, 1.8137953, -0.027749991, 0.043845374, -0.010616948, 0.00039999996, 0.04198477, 0.020540226, -0.024911381, 0.45248774, -0.05776344, -0.048021384, -0.046124965, 0.18846844, -0.018724475, 0.07031348, -0.04975527, 0.00049999997, 0.063898034, -0.022806596, -0.05627681, -0.47651446, -0.0030049174, -0.018456751, -0.12453777, 0.54448223, -0.048412897, -0.11482516, 0.018185457, -0.0004999999, -0.116217464, 0.048310127, -0.0043554856, -0.9660906, 0.103234544, 0.09297161, 0.0059516397, 0.5889495, 0.093110204, -0.10326241, -0.0019687964, -0.0004, 0.0031033477, 0.0054467767, -0.1389144, 1.5009229, -0.02874867, -0.04990139, 0.0901371, 0.4813104, 0.008152334, -0.09438881, -0.049655057, -0.00049999997, 0.102705315, -0.0064759003, 0.029172063, 0.046333272, 0.08238457, 0.043032173, 0.073640905, 2.7277398, -0.07431432, 0.08646215, 0.03261371, 0.0002, -0.041858472, -0.06880778, 0.08703637, -0.35346276, -0.017704556, -0.04241345, 0.051192608, 0.9936172, 0.006975945, -0.053869676, -0.042218834, -0.00020000001, 0.06611293, -0.0056739193, 0.018163748, -2.5588713, -0.02977695, -0.028211035, -0.044720236, -0.27649477, -0.014354054, 0.053709626, -0.024324194, 0.00049999997, 0.05088932, -0.0013576044, -0.03302821, -0.89252484, 0.072588935, -0.04030889, -0.03887288, -2.8694823, 0.047162935, 0.07831783, 0.006858313, 9.999999e-05, 0.030192137, -0.025427783, 0.08274614, 0.59059733, 0.04950719, -0.024045555, -0.09766759, -0.63141865, 0.0060601328, -0.107946195, 0.02964798, -0.00049999997, -0.100401305, -0.018372232, -0.046369698, 0.3091733, -0.038367096, 0.05934323, -0.09932007, 0.85597634, -0.053553887, -0.10186307, -0.04017492, -0.00047723384, -0.10255766, 0.030990724, 0.058134582, -0.80175537, -0.13939762, 0.031237502, -0.025764132, -0.44902396, 0.010030964, 0.11612407, 0.0865208, 0.0004, 0.039229475, 0.08130614, -0.11367336, 1.4144461, 0.0048259553, -0.020478014, 0.04853702, -2.468034, 0.010004877, 0.04820947, 0.019345049, 0.0002, -0.051721312, 0.007414812, 0.00827091, -1.1742387, 0.01827868, 0.000109816545, 0.051613227, -1.6520109, -0.026098793, 0.047258016, 0.009142268, 0.00028074163, -0.04452853, -0.027653506, 0.015828496, -1.8369049, -0.058464117, 0.009290751, -0.030981619, 0.15278289, 0.0022999365, -0.06264306, -0.02312548, -0.00049999997, -0.032262813, -0.021301633, 0.054493874, 0.59344554, -0.031885765, -0.0016405253, 0.07968616, 2.055407, -0.040685657, -0.07346688, -0.017792525, -0.00010946402, 0.06853651, -0.04437573, 0.026510753, 2.0567567, 0.020654546, 0.0076676686, 0.10420528, 0.31414345, 0.06555879, 0.08176055, -0.019010555, 0.00049999997, -0.0813608, 0.067827456, 0.011135635, -0.98083985, -0.082776666, -0.08255049, 0.022016415, -1.3028371, -0.07698442, 0.08536296, 0.03062425, 0.00023103214, -0.037049975, 0.0070616924, -0.11282161, -2.1887043, 0.05511616, 0.010035778, -0.055760417, -1.0817751, 0.0023583556, 0.07731887, 0.01624698, 0.00049999997, 0.056607243, -0.012992668, 0.053614777, 0.108337075, -0.040116787, -0.06133172, -0.08763341, 0.15171891, 0.020811131, 0.08733008, -0.07064633, 0.0002996653, 0.104919456, -0.040772893, -0.01949439, -2.4368048, 0.060109112, -0.051139623, 0.042930722, -1.3160604, 0.044313315, 0.07376282, 0.02582226, 0.0004, -0.04994634, 0.0038985473, 0.074575976, -0.9707072, 0.008248888, -0.02300552, -0.10021383, -2.337284, -0.063563935, 0.077882096, -0.023111071, 0.0002, 0.08081889, 0.06360223, -0.00794836, 1.2511925, -0.037931703, 0.03694808, 0.008816572, -1.103905, 0.036830153, 0.03882319, -0.004243335, 0.00043349652, -0.009296875, 0.0030505592, -0.052782267, 0.66000867, 0.066985875, -0.04466165, -0.0078168325, 0.66554534, -0.042899404, -0.06694443, 0.01486463, -0.00049999997, -0.014676742, -0.008164159, -0.0791253, 0.53670645, -0.10655305, -0.028302876, 0.04409963, -2.2969627, -0.0046912343, -0.09437684, -0.071905404, -0.00029999999, 0.05219025, -0.0662672, 0.083571635, -0.47210303, -0.062616065, 0.057738286, -0.04419056, -0.98713744, 0.015009606, 0.06732766, 0.066700704, 0.00049999997, 0.0711423, 0.03661369, -0.052966937, 0.43278438, -0.017065555, -0.047674045, 0.10446724, 0.90962076, -0.03641913, 0.10240918, 0.04078549, 0.00049999997, -0.10890298, -0.026776759, -0.030009853, 0.6333378, -0.009346312, -0.03742177, 0.10393048, 1.7961973, -0.013083353, 0.103942685, 0.03624959, 0.00020000001, -0.10968482, -0.009209691, -0.013179894, -1.9039582, -0.09774308, -0.013186903, 0.060737796, -2.1656516, -0.024922809, -0.09537849, -0.060815163, -0.00029999999, 0.05693703, -0.064387396, 0.0776474, -1.0472366, 0.03565204, 0.04878818, 0.03898813, -1.8161374, -0.035810936, 0.05275025, -0.033262834, 0.00039682275, -0.05116577, -0.0029245664, 0.050447382, -1.0041727, 0.090299316, 0.02331313, -0.09029214, 2.7049198, -0.07012383, 0.09982727, -0.044354327, 0.00019999998, 0.06147213, 0.079631366, 0.08203757, 0.58426297, 0.008364245, 0.05359205, -0.06897211, -2.3075483, -0.019216413, -0.066460945, -0.053971224, -0.00029999999, -0.08520557, 0.020249823, 0.00540145, 0.47389305, 0.11584291, 0.0067246538, -0.09035074, -2.477069, 0.018820496, 0.14167385, 0.034675185, 0.00027688724, 0.0886243, -0.038876195, 0.110735886, -0.04721004, 0.019793581, -0.017479228, 0.114050634, -2.4741576, -0.04070044, -0.10933611, -0.009693082, -0.00029999999, 0.10796549, -0.038012613, -0.024563242, -0.7167746, 0.026407199, 0.04959279, 0.050174803, 2.122514, -0.03533383, 0.055668224, -0.036426164, 0.0003121935, -0.061061244, -0.010765666, 0.04277756, 0.71854997, -0.07071313, 0.006809379, 0.06871484, 0.41984665, 0.039517418, -0.07666439, 0.048263762, -0.00029999999, 0.05662573, 0.062005233, 0.052127965, 2.475223, -0.01270325, -0.07556639, 0.105590455, 1.9620932, 0.021063456, 0.103490025, 0.07659726, 0.0004, -0.12812476, 0.024505774, 0.002123412, 0.56578535, -0.08812545, -0.059464063, -0.021752343, -0.17875315, -0.035522263, 0.07729056, -0.06737636, 0.0004, 0.05241476, -0.047596555, -0.0822344, -1.718864, -0.02764653, -0.022571173, -0.071290836, -1.0299237, 0.033161547, -0.071825236, 0.009880337, -0.0004, -0.06702352, -0.02622693, 0.034295287, 1.7048153, 0.09364445, -0.02236289, -0.038294174, -0.7163897, 0.0014933873, -0.08783337, 0.054944504, -0.0004, -0.044320565, -0.05020987, -0.07906, -1.4504836, -0.060591213, 0.04012184, 0.011282739, 2.2164617, -0.029407347, -0.05526358, 0.038594082, -0.0001, 0.029534193, 0.027286192, 0.061575577, -1.9553171, -0.008798696, -0.024556503, 0.097146936, -0.096453376, -0.06714485, -0.07094267, -0.024014046, -0.00049999997, 0.074378215, -0.06694836, -0.010186492, 0.5597037, -0.04876192, -0.030738356, -0.006932796, 0.44846508, 0.028287262, -0.03707359, -0.034583442, -9.999999e-05, 0.013883117, -0.032424327, 0.0461146, -2.8841968, 0.0821015, -0.01447825, -0.08231982, 0.75268847, -0.0146307945, 0.111119516, -0.034135457, 0.00049999997, 0.08229283, 0.034200456, 0.07605947, -0.011977306, -0.04641778, 0.04860525, 0.010298487, 0.37726635, -0.048173368, -0.04057952, -0.025607975, -0.00049999997, -0.012159579, -0.024778454, 0.06213946, 0.15818238, 0.0074092085, 0.028424082, -0.07870235, -1.3218548, 0.05154881, 0.060687218, 0.026770664, 0.0004, 0.06591441, -0.050655898, -0.012089518, 0.7972865, -0.008619266, 0.039821573, 0.082391046, -1.3122746, 0.03673477, -0.07428943, 0.039748844, -0.0004, 0.08381288, 0.03665592, -0.008948688, 1.2327546, 0.0020008148, -0.01484272, 0.06598768, -2.3672976, -0.024223104, 0.061480377, 0.01456334, 0.00020000001, -0.06314999, -0.024052944, -0.0034954944, -1.3191772, -0.12095551, -0.049609896, -0.0034384436, -0.24918306, -0.04972631, 0.12056741, 0.009695327, 0.000315608, -0.00050787453, 0.010274452, -0.130374, -2.2212613, 0.08137593, 0.0385943, -0.062437706, -1.932908, -0.06438102, 0.082303084, -0.033035092, 0.00022053742, 0.03525723, 0.061210398, 0.08378691, 1.6842573, 0.089670435, 0.051485732, 0.022668347, 1.4261459, -0.03485444, 0.08432922, -0.05365795, 0.0002, -0.044156563, 0.03798984, 0.08838774, 2.1835775, 0.06978215, -0.028017024, 0.04726069, -1.9993633, -0.008919303, -0.081162594, -0.034945026, -0.0003676573, 0.054212295, 0.02271024, -0.066583395, 0.7388017, 0.10059971, 0.027657995, -0.10652828, -0.16106331, -0.03101058, 0.14559996, 0.008517415, 0.00038067016, 0.10560106, 0.01640848, 0.10398423, 2.1004097, 0.025578978, 0.032889675, -0.06769283, 0.8387114, -0.01680502, -0.06719456, -0.038997665, -0.00021415921, -0.073359676, 0.026860667, -0.014669597, -2.5751019, 0.03131169, 0.029476881, 0.032965947, 2.366463, 0.03367845, -0.042072706, 0.0056313504, -0.00029999999, 0.02866012, 0.017235532, -0.04263328, -0.8120122, -0.12799035, 0.026746625, -0.029403582, 2.4943871, 0.027309239, 0.13120773, 0.00047758792, 0.0002, 0.028881783, -0.005535446, -0.13075428, 0.7625462, 0.12343209, -0.06557846, 0.023231085, -2.2745368, 0.05584611, 0.121608935, 0.04656369, 0.00029999999, -0.04149012, -0.031407487, 0.1317871, 0.7919986, -0.06898428, 0.004842565, -0.11431743, 0.18250121, -0.055144385, -0.11836847, 0.028262435, -0.00049999997, -0.10025479, 0.061775554, 0.063115105, -0.089286774, -0.04279146, 0.05445645, -0.0647952, 0.564833, 0.03156576, 0.07763491, 0.044401087, 0.0004, 0.078533605, -0.0015322544, -0.05315222, -1.8279265, 0.10808688, -0.049996667, -0.0108144265, -1.1922225, -0.051113393, -0.10655541, -0.018241756, -0.00020000001, -0.0020096092, 0.02111102, -0.11768465, -2.5254703, 0.072869785, -0.0034432944, -0.09688915, 1.8403385, 0.024492951, 0.11792784, 0.014230036, 0.0002, 0.09380543, -0.02811659, 0.07154975, -1.9276423, 0.0185031, -0.03442245, 0.053436097, 0.28717384, -0.020022085, -0.055977255, -0.029126449, -0.00049999997, 0.060327757, -0.008020508, -0.026056092, -0.955071, 0.019110914, -0.0015467526, 0.052297704, -0.924067, -0.040217713, -0.036047414, 0.013630439, -0.0004690444, 0.03346608, -0.042436533, -0.013484454, -0.7582619, -0.09444146, -0.05061973, -0.056887593, 1.7536083, 0.03751747, -0.109798975, 0.03541704, -0.00035468026, -0.06626459, 0.009978502, 0.10112951, -1.2563237, 0.04662858, -0.046466287, 0.044883057, 1.9151257, -0.030833343, -0.06464822, -0.03489618, -0.0001, 0.05677068, 0.0030532747, -0.055817537, 2.2634141, 0.08355241, 0.063883536, 0.03578062, -1.3074266, -0.0727731, 0.07844857, 0.029870765, 0.0003850146, -0.008089279, -0.04590293, 0.10084566, 1.6413767, 0.014097223, -0.05099632, -0.08795815, 0.18707511, 0.04272731, 0.08354919, -0.041592106, 0.0004, 0.09225854, -0.03090148, 0.032702494, -1.8853385, 0.069298536, -0.04961318, 0.070971996, -0.36162966, -0.012040246, 0.08449699, 0.07082423, 0.00049999997, -0.0857527, -0.051957387, 0.047409758, 0.93396264, -0.0041006464, 0.058463633, 0.09778205, 1.2402105, 0.0065458976, 0.09780465, -0.05820261, 0.0004, -0.11373863, 0.0035210599, -0.006875037, -1.3555125, -0.08771976, -0.05170115, -0.09815513, 1.5190339, 0.0008551706, -0.1254433, 0.06531037, -0.0002, -0.1109356, 0.03991448, 0.07811737, -2.3067734, 0.06462575, -0.09809541, 0.03949556, 1.418744, -0.09095724, -0.07517383, -0.037878383, -0.00040000002, 0.05393877, -0.009234822, -0.111195445, -1.3573124, 0.06317508, -0.021097187, -0.058794204, -1.02818, 0.028598262, -0.0645742, 0.0539004, -0.0004, -0.055533685, -0.05725402, -0.03912708, 0.9900521, 0.08403591, 0.01786235, -0.05567772, 0.2127555, -0.0155337835, 0.10080043, 0.008892905, 0.0002, 0.05637175, 0.001148322, 0.08545183, -2.7384644, -0.002616436, 0.030193446, -0.047715142, 0.24416345, -0.0017151635, 0.0477018, 0.030279052, 0.00040000002, 0.05643967, 0.0028493362, -0.0012918272, 1.7813085, -0.045050744, -0.05648433, 0.017193312, -2.054889, 0.048659626, -0.047768075, -0.02942975, -0.0003119045, 0.03344143, -0.0065871603, 0.06598437, 0.8969466, 0.058729723, -0.012222033, -0.06363079, 1.7040074, -0.014078888, 0.081420764, -0.028633568, 0.0004, 0.06324588, 0.029474022, 0.05271317, 0.33160576, 0.09455739, 0.08084078, -0.0009830585, -1.6932757, 0.07992677, -0.09324697, 0.019849822, -0.00029999999, 0.012161675, -0.01571864, -0.12281007, -1.9165583, 0.071534306, 0.0673769, 0.029568033, -1.2833533, 0.06722965, -0.07661007, 0.01192235, -0.00029999999, 0.029901285, 0.011060032, -0.097543105, 1.9515684, -0.058657717, 0.014262781, -0.053587977, -0.19753724, 0.016033484, -0.07031125, -0.036264118, -0.00039999996, -0.053085066, -0.036996406, 0.048260424, 1.6152476, -0.05187124, -0.0198481, -0.017205436, -0.71303225, 0.007943522, -0.048154064, 0.031602006, -0.0003466992, -0.025037462, 0.025842581, 0.04567151, -2.0523994, 0.08662807, -0.06310717, -0.027182527, -1.5052171, 0.06863151, 0.08159034, 0.029301155, 0.0004, 0.0033347006, -0.039828725, 0.103094034, 1.111979, 0.032217737, -0.022203038, 0.06680259, 1.6123804, -0.03345642, 0.0598096, 0.036014233, 0.00026978273, -0.06193731, -0.04385639, 0.01529484, 1.8956056, -0.069155455, -0.03796894, -0.09651721, -1.4242316, 0.066270374, -0.10541225, -0.006015142, -0.0003086143, -0.07978378, -0.054647073, 0.07866342, -1.7419288, -0.083965056, -0.018267957, 0.09558622, -1.8767825, -0.028183762, 0.12540187, -0.00079108134, 0.00035091816, -0.093145676, -0.02147632, -0.085925706, -1.0786577, 0.019532507, 0.042271625, 0.119469136, 1.6463897, -0.07304256, -0.09502587, 0.045564905, -0.00039999996, 0.10355942, -0.07499658, 0.009604581, -0.38063395, 0.028741967, 0.07261048, 0.07975164, -1.4842422, -0.032520145, 0.08452807, -0.065239176, 0.00039999996, -0.10283504, -0.006436497, 0.042921234, 0.28541154, -0.07888341, 0.0012243083, 0.06432981, -2.6779795, -0.018723598, -0.09780959, -0.021098029, -6.483975e-05, 0.0615569, -0.02818158, 0.0760195, -1.2970092, -0.025247592, 0.03040942, 0.094094016, 1.7276007, -0.07078311, -0.07337122, 0.004719471, -0.00029999999, 0.06905192, -0.06409203, 0.039241552, -1.9134239, -0.09696136, 0.04631335, 0.03342123, -1.2108136, 0.05040147, 0.10035913, 0.007151988, 0.0004312906, -0.026862567, 0.021131322, -0.10721605, 0.45063818, 0.06823886, 0.041010138, 0.10237782, 2.4766161, -0.029091932, 0.122819945, -0.029807856, 0.000100000005, -0.10638001, -0.0072813, 0.07382319, 1.5902891, 0.03392719, 0.023067784, -0.03844004, 2.4118414, -0.033469476, 0.045105368, -0.002472541, 0.00029999999, 0.029825382, 0.024376152, 0.04095197, 0.010710024, -0.050103445, 0.010361382, -0.016062507, -1.4018298, -0.0012919742, 0.043124653, 0.03184828, 0.00033392847, 0.019070743, 0.030143386, -0.040042482, -1.6955466, -0.077151105, -0.008991053, -0.03639536, 1.2864532, -0.014943372, 0.083747916, 0.010988101, 0.00043356942, 0.034382503, 0.016223557, -0.07689209, 0.021771332, -0.0508692, 0.07067824, 0.0963756, -2.4660792, -0.03800785, -0.108871475, 0.059780855, -0.00029999999, 0.11330962, -0.004788874, 0.06331933, -0.25307706, 0.0058003827, -0.003285692, -0.06410194, 0.61065054, -0.04446927, 0.046207376, -0.006392349, 0.00049999997, 0.046285417, 0.044806056, 0.0018915834, 0.45874065, 0.0855627, -0.053076413, -0.01522956, -1.5835313, 0.042271875, 0.08103163, -0.04491086, 0.0004, 0.035526525, 0.031413227, 0.09011713, 1.3113362, -0.034499273, 0.020701949, 0.09470565, -0.3930937, -0.042590283, -0.09353967, 0.004932334, -0.0004987762, 0.087085016, -0.03754583, 0.03993048, -1.0455111, -0.13970096, 0.03002462, -0.030416038, 1.5926046, -0.040131815, -0.12791207, 0.058059555, -0.00039999996, -0.014698664, 0.063874856, 0.13056388, 0.31130293, -0.055829328, 0.004279234, 0.10911003, -2.6293318, 0.009461653, 0.12227305, 4.585136e-05, 0.00020000001, -0.1087832, 0.008438788, -0.055993065, 0.75643724, -0.04498775, -0.05045354, 0.10402147, 1.2382194, -0.06745515, 0.102105655, 0.020350961, 0.0004397722, -0.09389264, -0.04918128, -0.064461574, 0.2830512, -0.071886696, -0.022286482, -0.107028745, 0.74879164, 0.0045230365, -0.1285907, 0.023738373, -0.00049999997, -0.10923085, 0.009342425, 0.07142041, -0.07317927, 0.06033701, -0.050374597, 0.11387024, 2.1177557, 0.10769216, 0.0846276, -0.019625343, 0.00035786364, -0.06250144, 0.09718619, 0.07611177, -0.3805955, -0.07744232, 0.06634626, 0.06553814, -2.0463347, 0.051861748, 0.101439886, -0.041408896, 0.00028448427, -0.07750764, 0.0015848964, -0.093190365, 1.3783718, -0.056959342, 0.024748843, -0.052718956, 0.5966116, -0.01061453, 0.06809463, 0.04343519, 0.00039198768, 0.057263646, 0.037239514, -0.044387538, 1.9984503, -0.13467793, -0.0020236934, -0.038554568, -1.2095925, -0.01627542, -0.12389439, 0.06335602, -0.00040641092, -0.035009433, 0.06538179, 0.11886234, -0.6150111, 0.07001829, 0.035250675, 0.08814438, 2.5810735, 0.054598875, -0.10455212, -0.0015587105, -0.00023302373, 0.07765951, 0.041723616, -0.07837562, -0.7356982, -0.05561153, 0.006923379, 0.021106161, 1.9266565, 0.0034574505, 0.058904983, -0.01021253, 0.00029999999, -0.02194195, -0.008265385, -0.05510245, 1.319771, -0.0845092, -0.028995017, 0.09116927, -2.5396986, -0.08261055, 0.0834676, -0.050030105, 0.0002, -0.048249807, -0.092123866, -0.07402368, -0.93547106, -0.04423858, -0.016910532, 0.04430499, -1.805326, 0.005037865, 0.05857113, 0.027386004, 0.0002779904, -0.04715419, 0.022122556, -0.038639672, 1.6931816, -0.075793125, 0.056480564, -0.07659813, 1.4382575, 0.047450263, 0.10730906, 0.03217401, 0.0004, 0.08249726, -0.009830693, -0.08887902, -0.72500634, 0.053075586, 0.032006938, 0.116085604, 1.1439444, 0.057587784, 0.10466715, -0.05518842, 0.0003, -0.105754234, 0.073059365, 0.02820816, -2.070085, -0.062354635, 0.008748737, -0.033601794, 2.6537461, 0.021615304, 0.06383298, -0.023491492, 0.000100000005, 0.027173506, -0.03070067, -0.058419097, 1.2405438, 0.024121659, -0.053241137, -0.07335345, -1.6488116, 0.06464598, 0.06331116, -0.024694003, 0.0004, 0.06353142, -0.044207226, 0.05297811, 0.33243883, 0.1089361, -0.019829618, 0.08513299, -2.4192953, 0.00484938, -0.13444893, -0.037521794, -6.488714e-05, 0.08727726, 0.032220937, -0.10417487, 1.7327106, -0.016615737, -0.027947254, -0.050432704, 1.7278515, -0.034147944, 0.047060017, -0.014827777, 0.0003907488, 0.04645886, 0.024594627, -0.028935594, -1.1719157, -0.060452424, -0.01565832, 0.051762838, 2.4855785, 0.047321875, -0.052895967, 0.03926485, -0.00020000001, 0.026176611, 0.059463482, 0.048558734, -1.186117, -0.017691405, -0.033292234, -0.04912813, 1.6198457, -0.006982365, -0.049740873, 0.03622187, -0.00029999996, -0.058933806, 0.01588724, 0.010456329, 1.6258447, 0.039587244, -0.013216541, 0.0919499, -0.9797268, -0.040204775, -0.09254261, 0.0040076585, -0.00049999997, 0.08374389, -0.03818127, -0.04154233, -0.049049616, 0.052150164, 0.018011706, 0.03860488, 2.7385712, -0.003191603, 0.06250332, -0.024850454, 0.0001, -0.04248025, 0.017415797, 0.04925967, -1.1332338, -0.064740695, 0.022482326, 0.077428, 0.11317989, -0.006827344, 0.09741495, -0.033994444, 0.0004, -0.08033639, -0.026396591, -0.0595079, 1.947536, 0.06951741, 0.019657172, 0.04797469, 0.25320622, 0.03234041, -0.07916193, -0.014426809, -5.310928e-05, 0.040522516, 0.029455563, -0.07078801, 2.9697816, -0.08564433, -0.08028374, 0.049728423, -0.9762861, 0.027211215, -0.08526439, -0.0907903, -0.00048343954, 0.090431996, -0.05037708, 0.07441473, 0.6209373, -0.042962942, -0.051074475, -0.0043724747, -0.3860568, 0.050169297, -0.04306578, 0.010095305, -0.00049999997, -0.010524358, 0.0032049282, 0.06597348, -0.31626, 0.015742542, 0.018725818, 0.04753551, 0.9265938, 0.01124115, 0.047252495, -0.022337109, 0.0001, -0.049838915, 0.01657268, 0.0099768415, -2.7825603, 0.040530425, 0.07477376, 0.10402099, -1.9632785, -0.028205168, -0.101217225, 0.08374808, -0.00029999999, 0.124963805, -0.047097318, -0.014835377, -1.149047, -0.015355327, -0.020404618, 0.1141541, -2.9555693, -0.042192962, -0.10627489, -0.02467178, -9.9766614e-05, 0.1080151, -0.044413902, 0.00659073, -0.28486452, 0.10219974, -0.035477545, -0.026894523, -2.746543, 0.0396335, 0.10317758, 0.014502843, 0.0002, 0.020277, -0.022858065, 0.10720591, -0.48942745, 0.025252065, -0.015984505, 0.045840006, 1.0290563, -0.004289553, 0.05073377, 0.020053972, 0.00049999997, -0.048357118, -0.012847478, 0.022158733, 0.15713942, -0.083647475, 0.034390967, -0.06524346, -0.68985885, 0.043001097, 0.10289049, -0.00089557946, 0.00010446346, 0.05991955, -0.025829412, -0.09043693, 2.8253837, -0.053545814, -0.037144158, -0.04329002, 1.6732099, -0.00033065086, -0.059172023, 0.05118039, -0.00039999996, -0.05704039, 0.03521154, 0.040341184, -1.148437, 0.11068944, -0.074542314, -0.023866052, -2.038331, 0.07614603, 0.092994094, 0.06270708, 0.00039999996, -0.018108653, -0.064605296, 0.11779868, 0.28303176, -0.076268904, -0.0714779, 0.077018015, 1.0439388, -0.059931487, 0.10776199, 0.04066179, 0.0004, -0.086308055, -0.011665138, -0.09629462, 1.5941226, -0.08745631, -0.025896665, 0.09890348, 1.5520488, 0.025253525, -0.13159181, -0.012124999, -0.0004, 0.09906965, 0.010682689, 0.09040036, 0.1569341, 0.015150571, 0.036755797, -0.07030742, -1.9089774, -0.020185089, -0.06743663, -0.039604645, -0.000397826, -0.076724716, 0.024999574, -0.003463996, 0.80987793, 0.06728492, -0.00593669, 0.010149709, 0.98389065, -0.00070735713, -0.060896374, -0.030929808, -0.0004, 0.011737141, 0.030362953, -0.060048748, -1.5531962, 0.028843304, -0.00036424212, -0.05553556, -1.9545841, 0.042082936, 0.040978853, 0.021587698, 0.00031330745, 0.03624028, -0.04729555, 0.019132186, 1.0927988, -0.050366737, 0.04628624, 0.019571472, -0.10366298, -0.048660126, -0.051842, -0.0026201748, -0.0004, 0.012555884, -0.0152400015, 0.06835465, 2.0158472, -0.017249426, 0.019668976, -0.073458254, 1.6272975, 0.046971336, 0.061993554, 0.0055694333, 0.0002, 0.05980532, -0.04301694, -0.025561547, -2.13126, -0.050408278, -0.048385046, 0.11093388, 0.5874505, 0.08295862, -0.10131214, -0.0064920816, -0.00049999997, 0.088120945, 0.067699105, 0.069569826, 0.31345874, 0.057266034, 0.011123389, -0.02500218, -2.8151639, -0.013482148, 0.061930586, -0.0033273532, 0.00019999998, 0.02381324, 0.00831323, 0.05824137, 0.11308131, -0.0023273285, -0.030766904, -0.051383287, -0.26826513, -0.012847967, 0.050481375, -0.02964493, 0.0002750176, 0.05849594, 0.009863564, -0.008555516, -2.4666677, 0.034738302, -0.055923894, 0.0523223, 1.0292102, 0.031613976, 0.062801264, 0.046134725, 0.0001767569, -0.06975429, 0.00061209325, 0.04696615, 2.6589587, 0.033331595, 0.020046324, 0.03423328, 0.55865765, 0.027642678, -0.043807056, -0.0012620552, -0.00049999997, 0.02845444, 0.019074993, -0.038874894, -0.0052737133, 0.06603622, 0.06497194, 0.0709025, 1.7718264, -0.0015847418, 0.086732395, -0.07800179, 0.00025102668, -0.09615615, 0.043190714, 0.049978554, 1.7901334, 0.043168522, 0.040824298, 0.013121079, 0.5355575, -0.03230873, 0.043206885, -0.028135717, 0.00024719085, -0.028194545, 0.012994187, 0.05233093, 2.4660027, -0.051925216, -0.03854555, 0.019625401, 0.4820683, 0.04319392, -0.047824986, 0.020351911, -0.0004, 0.0022803696, 0.028180795, 0.06138229, -1.6866978, 0.095737435, -0.0083041405, 0.094511755, 2.8503773, -0.06839057, -0.09910136, 0.06057011, -0.0001, 0.06575833, -0.09097829, -0.0746048, 0.8113113, -0.088897444, 0.08031047, 0.051624246, 0.9604621, -0.09429892, -0.08488387, -0.030332046, -0.00049999997, 0.014918071, -0.057987474, 0.11589865, 0.5148906, -0.0667394, 0.016846726, -0.02518326, -0.8584323, 0.00015824055, 0.06111341, 0.04046337, 0.00040000002, 0.03029824, 0.036789913, -0.055683713, -1.559105, -0.059715625, 0.032369625, 0.0010608335, -0.52753335, -0.02953763, -0.053520076, -0.029631134, -0.00049595156, -0.013283305, -0.02650818, 0.061120734, -0.99400485, 0.04371036, 0.026091985, -0.044116337, 0.14219132, 0.048512187, -0.039772525, 0.02454287, -0.00049999997, -0.01654116, -0.0476969, -0.04459859, 0.6875266, -0.10403862, 0.04311556, 0.093004435, 1.5618536, 0.08557198, 0.10949121, 0.0449658, 0.0004, -0.056446526, 0.08651901, -0.10325242, 0.25270447, 0.052166656, 0.0073497132, 0.029237945, -2.5524247, 0.006990248, 0.05389219, -0.026019273, 0.00019999998, -0.029325964, 0.025920026, 0.04580802, 0.49998543, -0.01912737, -0.0012098725, 0.051796656, 2.4986367, -0.00977551, -0.05413772, -0.004874437, -0.000100000005, 0.050880212, -0.010856194, 0.018535372, -1.5726738, -0.053102054, 0.0013698319, 0.009275054, 1.6357975, 0.0017991019, -0.050864615, 0.0178125, -0.0002, 0.009201432, 0.017850643, 0.05004417, 2.200491, 0.12703773, -0.0241495, -0.004028727, -0.75116706, 0.019776588, 0.08866731, 0.092114106, 0.00020000001, -0.014433124, -0.09106551, 0.09075666, 2.5133803, 0.099834874, 0.07085502, -0.028037895, 0.09979929, 0.07377457, -0.078307204, 0.064798556, -0.0003, 0.019075405, -0.06797872, -0.10386809, -2.3597589, -0.053230822, -0.07270809, 0.013620078, 2.1552677, -0.06347403, 0.053511996, 0.037590012, 0.0001629861, -0.037987106, 0.012469777, -0.08189615, -1.882719, 0.08442975, 0.03627737, -0.070583515, 0.08424616, -0.024006482, -0.086554445, -0.073201634, -0.00029999999, -0.075642385, 0.06796133, -0.055551324, -2.4189694, 0.009402107, 0.022817284, 0.14331669, -0.6846738, 0.06398038, -0.12955807, 0.016429435, -0.00029999999, 0.13025673, 0.06199022, -0.018414704, 2.41679, -0.13367724, -0.018293718, -0.062815286, -2.1812763, 0.022530636, -0.14702414, -0.005129592, -0.0002283087, -0.06142305, -0.014116744, 0.13482566, 1.5722862, -0.021851743, 0.0100736, -0.051306237, 0.6515577, -0.038798377, -0.040400073, 0.008592292, -0.00049999997, -0.035049874, 0.038440417, 0.022475503, 0.64407045, -0.053273387, -0.018104479, -0.02657569, 0.5394951, 0.025188632, -0.055462573, -0.012709497, -0.00040000002, -0.019989297, -0.021638552, 0.05481145, 1.4480197, 0.1186445, 0.0116464235, 0.067623794, 0.6526925, -0.048810676, 0.10925986, 0.06682016, 0.00049999997, -0.04823002, -0.08192543, 0.09872802, -0.38118112, -0.06229045, 0.0018383439, -0.042947255, 2.5384927, 6.146325e-05, 0.0756177, 0.0031476454, 0.00019999998, 0.042986542, 0.002555766, -0.06223803, 0.7406175, -0.10401811, 0.08279678, -0.005677042, 0.043177664, -0.07383134, -0.08816372, 0.06695816, -0.00039999996, 0.037900772, 0.05549013, 0.11485504, 1.8183084, -0.060695756, 0.034463447, -0.023992619, 2.7322342, -0.03553967, -0.06462032, -0.0029147218, -0.00019999998, -0.022367535, 0.0091561265, 0.069736704, 0.13407503, -0.14214782, -0.025593707, -0.042351007, -0.051516466, -0.046361566, 0.11391535, 0.08676721, 0.00049999997, 0.017298885, 0.09498899, -0.11546642, -0.7521217, -0.036733925, 0.028866034, -0.04732481, 1.9974008, -0.004623159, 0.054979414, 0.037123542, 0.00039999996, 0.055240493, 0.023796698, -0.028363215, 0.09487513, 0.14328532, -0.010231324, 0.010688276, 2.1743584, -0.014688707, -0.11086734, 0.09078699, -0.00032518676, 0.0017779518, -0.09139669, -0.11132424, -0.4353442, 0.11037171, 0.043856278, -0.005206255, -1.5186069, 0.043603353, -0.11043653, -0.0059082806, -5.5965033e-05, -0.0070161372, 0.0035758594, -0.11861862, -2.56152, 0.034500115, -0.07765936, -0.08681981, 1.4843311, -0.002649463, -0.09104748, 0.08038813, -0.0002, -0.116454445, -0.020935478, -0.02754965, -2.3145587, 0.04611779, -0.027891679, -0.09256491, -1.1781503, 0.051444583, -0.07975124, 0.04966144, -0.0004074587, -0.08185146, -0.06583966, -0.02094133, 0.667482, 0.08508741, 0.03629349, -0.089218765, 0.7388409, -0.039182242, 0.12179314, 0.012176557, 0.00029999999, 0.08798838, 0.019139005, 0.09169958, -2.2275834, 0.09795589, -0.08391415, 0.06421794, 1.6645149, -0.097732544, -0.10524081, 0.011558843, -0.0004, 0.040173102, -0.051416665, -0.12846528, -0.34689814, 0.0896925, 0.05136018, 0.03391834, 2.7326164, -0.041436676, 0.0947135, -0.03384416, 0.00020000001, -0.045511764, 0.01498536, 0.09765849, 0.51786673, 0.07627614, 0.0731642, 0.070465185, -0.1777524, -0.021020716, 0.09758129, -0.07856472, 0.00049999997, -0.09938045, 0.03551458, 0.07070103, 0.89217657, 0.05735648, 0.053680275, -0.12871663, -0.71985364, 0.035362538, 0.12903084, 0.069568954, 0.00032028992, 0.13490379, -0.05664606, 0.036489703, -2.1051044, 0.12515369, -0.0050338106, 0.012541118, -0.0027791464, -0.0030287409, 0.10340144, 0.071728945, 0.00025896778, -0.013169875, -0.071616195, 0.102682754, -2.506918, 0.05605213, -0.048026636, -0.0023475902, -1.856184, 0.047099877, 0.05556521, -0.012166274, 0.0004, 0.009678316, 0.0077368976, 0.072803706, 0.3729627, 0.12262946, 0.047356658, 0.040302753, 0.9832155, 0.057750396, -0.119776584, -0.034977265, -0.00029999999, 0.023062034, 0.04812342, -0.12671712, -2.211935, 0.1311954, 0.053651918, -0.014632848, 2.4177992, -0.03314474, 0.10554476, 0.08981431, 0.00021727369, 0.044655047, -0.079288475, 0.109654665, 0.86628675, 0.046876483, 0.01857323, 0.058098204, -0.21517052, -0.029766042, 0.070922114, 0.0013438368, 0.000109518354, -0.0532386, -0.023299323, 0.05040401, -2.8972082, 0.10566002, -0.028173363, -0.01701699, -2.9641407, -0.02168061, -0.10262525, 0.035289716, -7.731817e-05, -0.024764234, -0.0303591, -0.10350079, 0.23435141, -0.06827562, 0.042517237, 0.104363345, -1.5348777, -0.011292562, -0.12399051, 0.04312556, -0.00029999999, 0.11212449, 0.013402248, 0.06789302, 1.9140903, 0.029430112, -0.039371677, 0.054647878, -2.546922, -0.03436773, 0.042510882, 0.04913587, 0.0002, -0.057925623, -0.045225505, -0.0013879072, -0.6032865, -0.0253167, -0.053037908, -0.06192801, -2.8834386, -0.056918383, 0.057926156, -0.026341818, 0.00013643307, 0.058381468, 0.03347498, -0.05253631, 0.054548193, 0.03927046, 0.012295963, -0.11618437, -0.03110126, -0.08152899, 0.09067869, -0.017960245, 0.0003, 0.08368408, 0.082573354, 0.037024174, -2.4248977, -0.08385435, -0.01395929, -0.08538421, -0.16112952, 0.01726862, -0.11921521, 0.0025310388, -0.00045631127, -0.08477689, -0.010476145, 0.08497062, 1.216512, -0.10088641, 0.05713387, -0.044086795, 1.9401786, 0.02464185, 0.09849588, 0.07125541, 0.00029999996, 0.06782849, 0.049196303, -0.091460444, 1.2142658, 0.06404178, 0.012911571, 0.066655576, 2.8058186, -0.024992863, 0.089678705, 0.0066415127, 0.000116005176, -0.0631271, -0.022406343, 0.06499189, -0.7298033, 0.07981116, 0.08167654, -0.058149472, -0.21026835, 0.031204227, -0.09086737, -0.08480365, -0.0004, -0.09528229, 0.038656227, -0.0764802, 2.0475373, 0.08568643, 0.0075054956, 0.04554789, 2.1290545, 0.035486046, -0.07213145, -0.054871686, -0.0003, 0.029524298, 0.06491401, -0.06623891, 1.4778173, 0.04279523, 0.014704237, 0.082370676, 1.5699441, 0.050953083, 0.068806864, -0.0387553, 0.0004, -0.06636962, 0.062305506, 0.023359623, -0.19378757, -0.099310264, -0.014313454, 0.02625155, 2.4102623, -0.02031219, 0.09911701, -0.022798736, 0.00029315837, -0.021941602, -0.02697207, -0.097711936, 0.45784852, 0.02605964, -0.021313395, 0.04160948, -0.9223347, 0.012880207, -0.042520426, -0.02984675, -0.00029999999, 0.04494118, 0.02454522, -0.015573595, -2.3392057, -0.10457697, -0.030262178, 0.047969744, 0.39173618, 0.05155218, -0.09266969, 0.05392534, -0.00039999996, 0.023648866, 0.06818921, 0.094573796, -1.6950092, 0.07853702, -0.030042235, -0.0040959106, -1.4663526, 0.02126266, 0.06267845, -0.052025862, 0.00020000001, 0.021615056, 0.047500093, 0.06605989, -2.2708201, 0.026075292, -0.001888091, 0.113283336, 1.2731899, -0.038043328, 0.10934986, 0.010579254, 0.00039999996, -0.10672104, -0.039441753, 0.023907427, -0.7209238, -0.024955142, -0.004172754, -0.04521052, 0.816629, 0.025743386, 0.041194804, -0.018011864, 0.00035475226, 0.03739894, -0.03114061, -0.017769178, -1.9984667, 0.007226089, 0.004965793, -0.073731676, 0.2614392, -0.017460711, 0.07210042, 0.0031446877, 0.0004, 0.07180629, 0.01703251, 0.008184522, 1.778056, -0.059939403, -0.05964581, -0.04182947, -0.0937137, 0.05291818, -0.07287571, 0.028086584, -0.0004, -0.050069883, -0.005618463, 0.07975899, -1.8448339, 0.0068641067, -0.0010606626, 0.07783934, 1.2908844, -0.05122728, -0.058899663, 0.0037147917, -0.00033251368, 0.058616158, -0.051350843, -0.005868669, -1.7822506, 0.012924569, -0.016083386, -0.06933327, 1.3982819, 0.03129391, -0.062006265, 0.020217279, -0.00029999999, -0.06392549, -0.03360615, -0.0041208053, 2.0463064, -0.10004898, -0.09046793, -0.002808194, 0.22075534, -0.090338975, 0.0995519, 0.011419991, 0.00037332467, -0.0055855936, 0.010349073, -0.13440172, -2.1107013, -0.088836156, 0.014477152, -0.033622824, 0.7871557, 0.011884434, -0.07206435, -0.06242943, -0.00035786166, -0.03462432, -0.061879613, 0.06483837, 2.002524, -0.11274856, 0.034042526, -0.030021796, 0.23692164, 0.0074935625, 0.093248785, 0.07759481, 0.00029999999, 0.044766594, 0.070129976, -0.08860125, -2.2651563, -0.003876008, -0.015883017, -0.078304686, -0.2787404, 0.03800006, 0.0685962, -0.015794752, 0.0004, 0.07028435, -0.03796325, 0.00422131, 1.9756707, -0.025856178, 0.041001175, 0.06453608, -0.56352174, -0.037865624, -0.06605187, 0.026793446, -0.00040000002, 0.06642436, -0.021693267, 0.04039492, 1.5458974, -0.04601759, -0.051523816, 0.007869097, 1.9139059, 0.051108282, -0.04666549, -0.006672304, -0.0001905033, 0.010225955, 0.0013682494, 0.06875902, -2.0971444, -0.039190136, -0.0041238996, 0.07842115, -1.7693042, -0.041410502, -0.0733829, -0.024553413, -0.00040000002, 0.06672371, -0.04796554, 0.030822122, 0.3705934, -0.09245328, 0.09579692, 0.055096697, -2.678246, 0.070368275, 0.10642132, -0.06695605, 0.0002, -0.08521152, -0.016054805, -0.11507191, -0.25918388, -0.086081214, 0.019978322, 0.101997495, -1.1230114, -0.05809796, -0.119063735, -0.025710924, -0.00040524703, 0.08618149, -0.060309954, 0.0845462, 0.76781017, -0.05517955, -0.05828379, -0.05076372, -1.064735, 0.022108374, -0.071668774, 0.05825413, -0.00045388253, -0.07406196, 0.022030113, 0.05521085, 0.62242615, -0.029260086, 0.032751266, -0.062685214, -0.7331981, -0.029921765, -0.06720029, -0.021143427, -0.00049999997, -0.064084075, 0.0164229, 0.038493544, 0.007874516, 0.047006104, 0.028446428, 0.0078163715, -0.32776383, 0.029381247, -0.043820333, -0.017215963, -0.0001, -0.002652718, 0.018720262, -0.05217647, -2.9210358, 0.007745929, 0.020336824, -0.050855897, -2.0766344, 0.019929895, 0.046794467, 0.02174824, 0.00021123444, 0.051016748, -0.021368211, -0.00077452237, 1.5269988, 0.10213817, -0.05402059, -0.029997757, -2.6785743, 0.059675835, 0.10127047, 0.020817902, 4.8793543e-05, 0.016027622, -0.03280802, 0.11365318, -1.305973, -0.06918392, -0.005318886, -0.119297765, -1.5560949, 0.044261113, 0.1269105, -0.031326488, 0.0002, 0.11091079, -0.05396391, -0.061914116, -2.2077403, 0.07236986, 0.0550994, -0.07660264, -0.7046187, 0.04955447, -0.1043466, -0.02823905, -0.00049999997, -0.08030107, -0.014735859, -0.08646326, -0.45908186, -0.037930835, 0.02415504, 0.14170223, -0.54176974, 0.10598276, -0.094308, 0.0444455, -0.0004, 0.09711155, 0.11235782, 0.006841916, 1.4928231, 0.04516674, 0.06688839, -0.10705279, 2.2067595, 0.025457786, -0.11618982, -0.06185643, -0.00030087095, -0.123637594, 0.00051113305, -0.05184469, -0.5028277, -0.048200816, -0.0705911, 0.062221635, 2.178982, -0.006084942, 0.07210159, 0.07708623, 0.0001888297, -0.09390212, 0.031562794, -0.036934193, 1.825668, 0.072973356, -0.0033028931, 0.092705, -1.0807683, -0.048437472, -0.10195148, 0.034495555, -0.00049999997, 0.079113446, -0.059373572, -0.06439005, 0.121387, -0.026911492, 0.0038502368, -0.060177322, 0.4565053, -0.03655423, -0.05345126, 0.012927276, -0.00028441488, -0.04795751, 0.038581118, 0.02391523, -2.5762608, -0.07835163, 0.05513761, -0.04589272, 0.94490135, -0.052768543, -0.09033605, -0.018443277, -0.00028012664, -0.04859813, 0.009193364, 0.094015844, -2.445529, 0.087574504, 0.011073703, 0.020527659, 0.71071357, 0.006190225, -0.08793619, 0.021028863, -0.00049999997, 0.022487622, -0.018918378, -0.08573044, 0.8416778, 0.08710277, -0.070576586, -0.05288814, 0.57178724, -0.08142273, -0.09291564, -0.010105874, -0.000292512, -0.03389021, 0.04184183, -0.11165042, -2.542018, -0.043763153, -0.047099326, -0.061771642, 1.973399, 0.057535697, -0.06728869, 0.01054378, -0.00037058548, -0.052189305, -0.03468694, 0.06342229, 0.7941408, -0.035281796, 0.0041464567, -0.09857747, -0.65371037, 0.013016685, 0.10397116, -0.00028546096, 0.00049999997, 0.09780224, -0.012341898, -0.035523467, 0.7678337, -0.11190133, 0.07633805, 0.051708546, 1.637414, 0.087953985, 0.11277723, 0.023844665, 0.00040000002, -0.027665282, 0.049769204, -0.13334481, 0.06490625, -0.01769768, -0.0024826182, -0.13640308, -2.014651, 0.09580583, 0.09769614, -0.014208495, 0.0002606293, 0.09712468, -0.0968219, -0.010839288, 1.4827691, 0.10578939, -0.069948815, -0.04879808, -1.9557643, -0.04557742, -0.11208147, 0.061854072, -0.00022377304, -0.07208875, -0.031786624, -0.110717244, -1.8545036, -0.025756055, -0.015737666, 0.0638724, 1.9091096, -0.03933364, 0.058665313, -0.0014063026, 0.00010844669, -0.05272781, -0.03607546, -0.030150793, -2.190498, 0.101748146, -0.020774456, -0.06827162, 2.1457663, -0.021058839, -0.122342415, 0.005842827, -0.00029999999, -0.06818445, 0.006784928, -0.10368283, -1.0177896, -0.0037257497, 0.05826359, -0.048033923, -1.7866081, -0.006407742, -0.048162837, -0.05792294, -0.00027587175, -0.07523858, 0.0012166578, 0.0073116403, 1.9254285, 0.017535385, 0.020086044, 0.09342063, -0.4305318, -0.07112456, 0.066173136, -0.00087730837, 0.00049999997, -0.06381349, -0.068235084, 0.026648995, -0.6078334, 0.055100452, 0.02786229, -0.014529887, 1.5289131, 0.031300776, -0.05125345, 0.020416407, -0.0004, -0.0027724486, -0.02490503, -0.058271237, 0.95922506, 0.06600059, 0.00014185734, 0.08528931, -0.39180517, 0.056870025, -0.0804436, -0.04387471, -0.0004, 0.06356168, 0.07182736, -0.049306266, 1.576967, -0.02097238, 0.0075884, 0.053566027, -1.3913041, 0.02244417, -0.051052615, 0.01601977, -0.0001, 0.04922562, 0.026510186, 0.015517462, -2.607557, 0.06930808, -0.07802895, 0.09218538, 2.5199594, 0.034688924, 0.11466864, 0.07097927, 0.0002, -0.115686394, -0.012363642, 0.07651191, 0.65025276, -0.057111908, 0.057017375, -0.018650673, -1.6773763, -0.049107596, -0.059225343, -0.03068226, -0.0004, -0.034456816, -0.01009834, 0.07464147, -0.38026863, 0.011258633, 0.0014348998, 0.08720337, -0.61376554, -0.04603079, 0.074781045, 0.004712433, 0.00041888418, -0.07407871, -0.04624912, 0.010325142, 1.1743984, 0.01653962, -0.0522183, 0.056287844, -0.3568328, 0.0114482455, 0.058612622, 0.051011056, 0.00039999996, -0.075921066, -0.002537625, 0.019954491, -1.4158251, -0.10268876, -0.011715769, -0.045591682, 1.6207478, 0.026230222, -0.105090626, -0.03207452, -0.0004, -0.039087534, -0.039743427, 0.09825205, -0.4917038, 0.053893745, 0.0038500149, -0.049940754, -0.92573273, -0.027226511, 0.0638264, -0.024461102, 0.00029999999, 0.042043064, 0.036397878, 0.048176896, 2.1249664, 0.04575365, 0.025351588, -0.013029921, -0.5930714, -0.021724219, 0.046967585, 0.015099105, 0.00049999997, 0.018453721, -0.0075645177, 0.050081093, -0.30879596, 0.028974533, -0.041646473, 0.048936702, 1.0325454, -0.03184524, -0.05593193, -0.028744603, -0.0003282941, 0.05581316, -0.010292892, -0.041805495, 1.9550637, -0.07042827, 0.06330304, 0.06890966, -0.8801773, 0.07642476, 0.08867898, -0.0033548279, 0.00049999997, -0.05399137, 0.042950317, -0.09463697, -0.14301132, -0.102053925, -0.03258897, -0.048489343, -1.2010578, 0.012822084, -0.10771318, 0.04540622, -0.00029999999, -0.056998692, 0.034118757, 0.09703256, 2.2561474, 0.10002788, 0.034215722, -0.058227908, 1.7245712, -0.048730224, 0.10861188, -0.019889917, 0.0002, 0.04676077, 0.039994106, 0.10383008, 2.1972938, 0.06318473, -0.022558369, -0.11876978, -0.6342133, 0.04441587, 0.1289726, -0.0008672788, 0.00035770913, 0.1124383, -0.038270637, 0.0670853, -2.0575705, 0.009814809, 0.06107578, 0.12849529, -0.89442366, -0.06564576, 0.11621438, -0.050224267, 0.0004, -0.12622172, -0.055691946, 0.036112383, 1.4079208, -0.076457135, -0.030225456, -0.054561444, -0.058773465, 0.037130956, -0.09140882, -0.0013939046, -0.00029999996, -0.050118066, -0.021611867, 0.08220298, -2.4633079, -0.024679853, -0.055771284, -0.043437622, 1.2253733, -0.041945066, 0.048587497, -0.038551584, 0.00029999996, 0.05690233, 0.011626571, -0.04725787, -1.9801645, 0.08003154, -0.0009647749, -0.12737104, 1.3060958, -0.013059758, 0.14957136, -0.00933882, 0.00042517774, 0.1267034, 0.016026236, 0.07949065, 0.0656668, 0.019358004, -0.046458058, -0.04569553, -1.3463888, -0.0042528496, 0.04666683, -0.04924719, 0.0004, 0.06502574, 0.016882583, 0.010382553, -0.5681824, -0.04968789, -0.0348842, -0.08562202, 0.84996724, -0.05265978, 0.09057398, -0.006342391, 0.00029999999, 0.07599333, 0.039954603, -0.060378537, 2.2533653, -0.054901477, -0.018948779, -0.04127683, -2.0345411, 0.013182235, -0.06861622, 0.013965928, -0.00031987266, -0.04346333, 0.0031244843, 0.05637536, -0.9033265, -0.07111787, 0.033793736, 0.057121806, -1.9664512, -0.028610215, -0.09115364, 0.018306905, -0.00040000002, 0.059886333, -0.0034162414, 0.076580845, -0.50851536, 0.015229144, -0.036954436, -0.14472264, -0.15714885, 0.044668414, 0.13994235, -0.031033352, 0.0002, 0.1425307, -0.03990872, 0.025189046, -2.810565, 0.0027867863, -0.031641606, 0.09532814, -1.1838202, 0.040643953, 0.08756366, 0.027876234, 0.0004, -0.09185159, 0.037786555, 0.015227379, 1.2560732, 0.04769419, 0.08093551, -0.08944435, -0.12496648, -0.060889613, 0.09918235, 0.05727913, 0.00039999996, 0.10413117, 0.02092574, 0.07446069, -2.04341, -0.051359612, -0.06549682, -0.07454426, -2.2784247, -0.04591894, 0.09009657, -0.04752421, 0.0002, 0.08796662, 0.008790242, -0.068330735, -1.2934225, 0.08396343, 0.021697246, -0.112101376, 1.0367186, -0.0123486025, -0.1366058, -0.03568913, -0.00049999997, -0.11351211, 0.030910058, -0.07903742, 0.2939738, -0.068588875, 0.038292907, -0.06212187, 0.1650523, 0.04434972, 0.08957651, 0.006249763, 0.0002, 0.05795321, -0.023229526, -0.0783053, -2.7369869, 0.038734503, 0.034033794, 0.047616273, -0.65834236, -0.0053701624, 0.058925275, -0.037748434, 0.0004760631, -0.058281813, 0.017189644, 0.0351243, 0.9755716, -0.06237089, 0.020573128, -0.055856943, 0.27139106, -0.015629265, -0.08372532, -0.013385634, -0.0004, -0.057436734, 0.00044224595, 0.06429779, 1.3848121, 0.02823296, -0.014183853, 0.13366443, 1.4964198, 0.005331649, 0.13659182, 0.013368326, 0.0002, -0.1343091, 0.0024406945, 0.02862812, -2.1649525, 0.10835417, -0.00028304057, -0.089027405, 1.5167094, -0.05401407, -0.11168663, -0.06538479, -0.0004, -0.07077034, 0.08480926, -0.08640334, -0.13507578, 0.0004790017, -0.030799676, -0.14192328, 0.80925715, 0.105877005, 0.097216114, -0.020740153, 0.00037079846, 0.09940268, -0.10339958, 0.022774879, -1.9675531, -0.08345842, -0.074853815, -0.065054916, -0.7080017, -0.028468588, 0.09952982, -0.07799935, 0.00041347527, 0.09499882, -0.03593421, -0.08052641, 1.1356441, -0.08606273, 0.021789134, -0.013825151, -0.19210556, -0.018517578, -0.0856722, -0.019750172, -0.0003, -0.017972209, -0.016068727, 0.08655339, 2.4286702, 0.12353942, -0.058537994, -0.024328245, -0.10742266, 0.04432386, 0.11786207, -0.058519028, 0.0003, 0.04532059, 0.044298805, 0.1235484, 2.437141, 0.12301037, 0.009388408, -0.014603033, 2.0360649, -0.014872192, 0.11089472, -0.053982586, 0.0002, 0.0089559145, 0.055201083, 0.11093047, 1.6138262, -0.12919779, -0.02724378, -0.0348568, -0.83891296, 0.033911586, -0.1300858, -0.024020378, -0.00049999997, -0.028411692, -0.031380743, 0.12983571, -0.6850748, 0.035940778, 0.026023347, 0.11504401, 0.8322917, -0.08110063, 0.092778474, 0.0043497514, 0.0002, -0.08564477, -0.07693515, 0.04415919, 2.6492553, -0.07706344, -0.0026017867, 0.1229708, -0.5796572, 0.034640413, -0.13969873, 0.01875277, -9.999999e-05, 0.1180196, 0.039304644, 0.07479222, -2.8905063, -0.074532695, -0.013632113, 0.022974944, -2.492859, -0.0050188242, 0.07402442, 0.027640648, 0.0002, -0.026239162, 0.024563385, -0.07054751, -1.3473136, -0.06918174, -0.004587643, 0.08815167, 0.021012941, 0.05489124, -0.08994686, 0.038397778, -0.0004542386, 0.06912824, 0.06683107, 0.057730157, 1.2328129, -0.020980591, -0.04853892, 0.09507507, -1.57419, 0.037490398, 0.08737138, 0.05287907, 0.00038829644, -0.09994882, 0.04296162, -0.00012280897, 1.3764378, -0.11566021, -0.04820124, 0.059758976, -1.4932017, -0.009098127, -0.09868768, -0.0972098, -0.00040000002, 0.076234646, -0.084906794, 0.07906261, -0.77680683, -0.13256107, -0.045386933, 0.013574564, 1.3481971, 0.043460935, -0.13256527, -0.018822186, -0.00039999996, 0.018851783, -0.013533439, 0.13884573, -1.3624537, 0.040133853, 0.023924306, -0.124568895, 2.328545, 0.049933236, -0.12308592, -0.0075519024, -0.00029999999, -0.11660382, -0.04447457, -0.046109296, 0.46129626, -0.012882168, 0.04342015, 0.051918995, 0.023424737, -0.026415981, -0.051884957, 0.036837336, -0.0004, 0.06231443, -0.013018595, 0.026349014, -1.7358, 0.015600953, 0.0004919206, 0.07865195, -2.3172455, -0.011901206, -0.07924623, 0.002856292, -0.0001, 0.077747874, -0.012229273, -0.015345138, 1.8236425, 0.04952082, -0.02088594, 0.12823175, -1.6524255, 0.03953949, 0.13314417, 0.0064166095, 0.00036640736, -0.12375876, 0.03418072, 0.053360667, -1.3539913, 0.047044776, 0.023757325, 0.09949837, 1.6973773, -0.011212054, 0.11005376, -0.020976363, 0.0004, -0.10167904, -0.0011435074, 0.048348878, 1.0977163, -0.08243931, -0.047575455, 0.059204645, 1.8376644, -0.03075335, 0.100803316, 0.038180787, 0.00037979326, -0.06944671, 0.011837096, -0.08718882, 1.0334235, -0.04518919, -0.0014273352, -0.09689899, -2.4480839, -0.0197285, 0.10481258, 0.0076565547, 0.00020000001, 0.09488011, 0.02111396, -0.0445587, -0.91498613, 0.009528095, -0.00017920647, 0.093132295, 2.5429275, 0.027544012, 0.08943583, -0.0026458544, 0.00020817322, -0.08896619, 0.027670216, 0.009155115, -0.4565424, -0.05054461, 0.010649832, 0.029101016, 1.2113154, -0.025556086, -0.045814946, -0.027621059, -0.0002, 0.0175264, -0.036091797, 0.043649208, -2.511707, 0.050065972, 0.009963839, 0.055297658, 2.8082232, -0.027519222, -0.060225368, 0.035767395, -0.00018957874, 0.048987772, -0.044015173, -0.036422163, 0.42348123, 0.058287866, 0.04131032, 0.026472107, -1.8607277, -0.04888296, 0.05242653, 0.025820639, 0.0004, -0.004215584, -0.036738355, 0.06661315, -0.0013588936, 0.060222797, 0.003248688, 0.050918743, -1.1346407, 0.028887903, -0.06710003, -0.02988533, -0.0004, 0.042056646, 0.041437786, -0.052385174, 1.6660409, -0.076375306, -0.030326577, -0.061273344, -1.038005, -0.05642234, 0.079839855, 0.030812811, 0.0004, 0.038608853, 0.056685165, -0.076180436, -1.774719, -0.06861251, 0.00586263, -0.028109198, -2.3790627, -0.016110769, -0.068131015, 0.025115382, -0.00029999999, -0.023768483, 0.029256944, 0.06411915, -0.32831705, -0.0034102567, -0.03892658, -0.053902958, 0.82362735, 0.019844685, -0.052109625, 0.036376, -0.0004, -0.063458614, -0.0142037375, 0.014272188, 1.5439434, -0.12928677, -0.037135176, 0.0027064169, -0.4138864, -0.032279577, 0.11666227, 0.058731243, 0.00040000002, -0.018557334, 0.055788066, -0.12101542, 1.6215509, 0.12747477, -0.07719211, 0.016842915, -1.628077, -0.064539686, -0.083295405, 0.1067175, -0.00040000002, -0.04557339, -0.09795599, -0.10401833, -0.094549105, -0.052763924, 0.041828927, -0.08811483, -0.54116, 0.027549686, 0.10249307, 0.032157414, 0.0004, 0.09356761, -0.0065898243, -0.059157345, -1.4267242, -0.041544795, -0.03228892, 0.060769506, 0.5219307, -0.02931844, 0.072525546, 0.018491896, 0.00045385445, -0.06225701, -0.012607403, -0.049260467, 1.1174448, 0.08801284, -0.033370234, 0.113302685, -0.5178839, 0.03298937, 0.14262103, 0.01637921, 0.00043306616, -0.113414176, 0.015588605, 0.092690654, -1.179009, -0.004501539, -0.0074258023, -0.13655064, -0.6557523, 0.013276386, 0.1359555, -0.007831108, 0.0004, 0.13610643, -0.013507265, -0.0037523464, -1.488647, -0.100718, -0.034853388, -0.02745572, -1.7378004, -0.003190293, -0.0622395, 0.09071249, -0.0004, -0.044253774, 0.08381036, 0.05594745, 0.9921455, 0.11518594, 0.011372111, 0.052227452, -1.5495024, -0.0145989545, -0.11266529, 0.056729488, -5.0326846e-05, 0.051418893, -0.057463363, -0.10089051, -2.5447845, 0.10927589, 0.07537826, 0.032222223, -1.660322, -0.059712984, 0.10998014, -0.054773264, 0.00039999996, -0.05616503, 0.029729983, 0.12092557, -0.9491908, 0.059909143, 0.010773099, -0.080962814, 1.7764691, 0.030319056, -0.096166484, 0.009638718, -0.0004, -0.07584056, -0.029934768, -0.060102083, 0.31635806, 0.034295224, 0.036008418, -0.056452453, -1.2078991, 0.046540573, -0.058419313, -0.008989289, -0.00029999996, -0.048140004, -0.03082574, -0.048907675, -2.2723398, -0.111506835, 0.047781505, -0.0084540425, -1.1928663, 0.03953374, 0.10174378, 0.053606022, 0.00040000002, 0.028135842, 0.04640529, -0.10882665, -1.328789, 0.07539377, -0.02144574, 0.10961959, 0.19200978, -0.034674335, 0.121226594, 0.0475647, 0.0003, -0.106179394, -0.054815974, 0.062303614, 2.3151581, 0.0732764, 0.017344823, -0.07379728, 1.9585595, 0.042485397, -0.09440004, 0.019998364, -0.00020000001, -0.062784314, -0.043636005, -0.072597094, -1.978893, -0.06665311, -0.057407834, 0.0847231, -0.26235577, 0.08252408, -0.089945875, 0.0039763404, -0.000293257, 0.06052634, 0.059416972, 0.08787766, 2.5933719, -0.03703937, 0.09956761, -0.09550515, 1.0293216, -0.05689932, -0.10110973, -0.083343565, -0.00039999996, -0.12568776, 0.01643082, 0.06587468, 1.0844206, 0.029944925, 0.038515534, 0.03589287, -0.5555024, 0.015165665, -0.045852873, 0.03655079, -0.0004, 0.050415743, -0.009083584, -0.032313842, 1.6741927, -0.06023833, -0.027994769, -0.058110368, 1.547613, -0.043871675, 0.07606872, 0.008831986, 0.0004, 0.047284223, 0.034914475, -0.065835856, -1.1967648, 0.05909041, 0.009196221, -0.027045546, 1.5381172, -0.009207165, 0.06495426, 0.001969955, 0.00039999996, 0.02704182, 0.0020204328, 0.05976928, 0.342569, 0.053795036, -0.033487592, 0.08499437, 0.45344907, -0.018806465, -0.10058297, -0.027726388, -0.000299969, 0.08939674, -0.0010083537, -0.056978706, 2.5561676, 0.08685169, 0.015303237, -0.04464016, -0.14410782, 0.012089191, -0.09759745, -0.009937004, -0.00049999997, -0.04561561, 0.00327164, -0.08762797, -0.713517, 0.009144496, 0.031233972, -0.1341839, 0.8713396, -0.059435103, 0.12221591, 0.024397733, 0.00049999997, 0.12429138, 0.056144647, 0.021539105, 0.16101936, 0.04908698, 0.012292241, -0.008284502, 1.7151353, -0.008805109, 0.047232863, 0.017910678, 0.00040000002, 0.011924852, -0.015723342, 0.04732693, -0.7655821, 0.0316999, -0.030830814, -0.10302114, 0.046445306, -0.06535043, 0.07977276, -0.043981865, 0.00049999997, 0.08540032, 0.072488226, 0.004584597, 0.64454645, 0.051437516, -0.016727215, -0.061883673, -1.4693463, -0.017007366, 0.07293841, -0.033851787, 0.00029999999, 0.06180726, 0.033991095, 0.042186175, 1.9481537, -0.013676049, -0.042989634, 0.06208467, -1.789247, 0.028376115, 0.05554521, 0.044712156, 0.00029999999, -0.069981486, 0.03092368, 0.0059970682, -1.5461109, 0.023728626, 0.08509967, -0.1209216, 2.4032147, 0.02053254, -0.12317857, -0.08265889, -0.0003, -0.14643227, -0.0034819546, -0.031185068, -0.9454637, -0.07025699, -0.03481123, -0.046751857, -0.19590619, -0.04167156, 0.081193544, 0.002166148, 0.0001, 0.04075584, 0.023008466, -0.07837841, 2.9422097, 0.08644198, 0.012660399, -0.061138183, 0.07829543, -0.012850798, -0.09857321, -0.038581856, -0.00020961487, -0.06109845, 0.038644753, -0.078383304, -2.712487, 0.044968758, 0.01657749, 0.043826506, 1.9398894, -0.013067056, -0.053897593, 0.033794515, -0.0004, 0.04499809, -0.032218073, -0.033984307, 0.59560776, 0.048981186, 0.0036223182, 0.1313746, 0.96397984, 0.10373595, 0.08501609, -0.041020587, 0.00040000002, -0.08069237, 0.1114932, 0.027010882, -1.0217879, 0.06903794, -0.017439907, -0.11758183, -0.85032666, -0.038912456, -0.13179839, -0.003298848, -0.0004999999, -0.11231855, 0.03494154, -0.0711302, 0.33426237, 0.01468433, -0.0322263, 0.04270327, 1.6960124, -0.008926738, 0.042185932, 0.034905516, 0.0001, -0.05274863, -0.016110452, 0.0059807505, 2.3874686, 0.10210434, -0.021760918, -0.005928801, -1.8246789, 0.015691405, 0.08828236, -0.05379582, 0.0004, 0.016200868, 0.051639836, 0.0894698, -0.32371745, -0.085738085, 0.03449477, -0.044879075, 1.8904426, -0.03830423, -0.09533003, -9.484608e-05, -0.00023499163, -0.041675013, 0.01665334, 0.09241699, -1.9033895, 0.0013251092, 0.05490739, -0.09336058, 2.0049481, -0.050278097, -0.08238637, -0.04916683, -0.00040000002, -0.09593296, 0.04393682, 0.024478573, 0.25150964, -0.037154317, 0.0035600616, 0.073923185, -2.8586843, 0.012737956, -0.08117373, 0.010311426, -0.00011473312, 0.07290443, 0.015997093, 0.03587188, 0.49304113, -0.13302827, -0.05684052, -0.027902953, -0.3459221, -0.054486677, 0.13583219, -0.01693384, 0.00049999997, 0.03225866, -0.004970765, -0.14366841, 0.23733544, -0.07726765, -0.07568293, 0.09222459, -1.1340837, 0.08013799, -0.114323325, -0.026676726, -0.00042654772, 0.088380896, 0.037494536, 0.10481673, -0.64472777, 0.064967014, 0.026019434, 0.098535486, -0.64818823, 0.054822862, 0.08958339, -0.059801668, 0.00049999997, -0.08591106, 0.076842524, 0.036352247, -0.6205709, -0.00036995544, 0.025114393, -0.060691386, -0.9820189, 0.029082328, 0.054481465, 0.022367423, 0.00049999997, 0.05889309, -0.026746044, -0.011426634, -0.5005218, -0.0053344695, 0.033818338, -0.043598417, -2.0084176, -0.01622453, 0.0409039, 0.03371341, 0.0004, 0.052737713, 0.016004667, 0.0059617646, 0.11349559, 0.04001938, 0.006551847, -0.10728346, 1.8574487, 0.08005383, -0.07820679, 0.025085934, -0.0003731421, -0.07172207, -0.08363608, -0.031861797, 1.0258758, 0.055181608, 0.035546992, 0.07238989, -0.9796669, -0.019257586, 0.09098439, -0.02999806, 0.0004961524, -0.07831367, 0.0026738753, 0.058384206, 0.5511075, 0.14229228, -0.01619537, -0.024512928, -1.0051062, -0.0018189624, 0.11613647, -0.0872885, 0.00029999999, 0.029323451, 0.085792206, 0.11353458, 2.1214051, -0.027761634, -0.008713116, 0.10748377, 0.06928315, -0.02694044, 0.108029455, 0.0017989932, 0.00049999997, -0.10441691, -0.025555925, -0.029041182, -1.1076735, -0.0011152847, 0.021382883, 0.1349961, -1.1759218, -0.048191477, -0.12639216, 0.019621912, -0.00029999999, 0.12790133, -0.04743638, 0.008570419, -2.2571578, 0.014324008, 0.014149694, -0.13871042, -1.300266, -0.07268434, 0.11975297, 0.0047100764, 0.00042837104, 0.11898647, 0.071449175, 0.019575654, -0.015394068, -0.0722424, -0.008484934, -0.06679948, -1.5728039, -0.013395843, -0.0942015, 0.026452923, -0.00021809369, -0.06599027, 0.028411465, 0.067758396, 2.1975064, 0.05185082, 0.006001647, -0.09717753, -1.3711263, -0.013740209, 0.109448075, -0.0005718661, 0.0004, 0.09638827, 0.012373385, 0.052193876, 0.25262296, 0.04933599, -0.017420819, 0.017832898, 0.4439943, -0.010515672, -0.050393272, -0.020136436, -0.00042834503, 0.022603491, 0.014579799, -0.048291292, -1.2213067, 0.04362939, -0.023692438, 0.038523007, 2.33396, -0.008532002, -0.056877755, -0.025318036, -0.00029999999, 0.044413496, 0.0123477215, -0.042706583, -0.36620986, 0.046448495, -0.035123482, -0.081751265, -0.8685566, -0.03904575, -0.09091239, 0.016874878, -0.00022498032, -0.07995223, 0.02399319, -0.05573471, -2.5494082, 0.027195413, -0.01051895, -0.12003988, 1.7001438, -0.0041412325, -0.123067945, 0.009846086, -0.0004, -0.1204287, 0.0018565817, -0.027446194, -0.20539021, -0.045042165, -0.040207803, -0.023030268, 2.4061334, 0.04589188, -0.04314793, -0.014423915, -0.00029999996, -0.006402793, -0.026409212, 0.05862948, -0.71254313, 0.07809751, -0.059869092, -0.110528864, -1.545358, -0.014589722, -0.13356194, 0.062036373, -0.00029999999, -0.124852255, -0.021841783, -0.076387286, 1.9007112, 0.038638588, 0.03266115, -0.03228387, -1.1440595, -0.041103914, 0.043411676, -0.005275761, 0.00029999996, 0.020480892, 0.025507152, 0.050317567, 2.1095376, 0.08173163, 0.030696567, -0.01875908, 0.13671285, 0.034217454, -0.08070903, 0.017013572, -0.0004, -0.011106204, -0.022759989, -0.08563221, 2.05294, -0.0018690026, -0.028287517, -0.12984194, -1.0105102, 0.06115683, -0.11546917, 0.024275923, -0.00045450134, -0.1179786, -0.05940788, 0.014640912, 0.70509195, 0.016714487, 0.004934994, -0.071761824, -2.0926516, 0.014843277, 0.071851455, 0.008398397, 0.00029999999, 0.07038316, -0.016324881, 0.015270728, 1.0215725, -0.029951954, -0.042088, 0.10100143, -1.4363627, -0.055414032, -0.08446067, -0.051628374, -0.00029999999, 0.09435028, -0.06296669, 0.0017408982, -2.0053172, -0.08563348, -0.00078795943, -0.02962064, -0.7345655, 0.00055138615, 0.09052501, -0.0040021786, 0.00039999996, 0.029625991, -0.0039623966, -0.085543536, -1.7504954, -0.06911413, 0.05748583, -0.107409686, -0.03984339, -0.05208128, -0.12557949, -0.033697993, -0.00042810576, -0.11013175, 0.02331078, 0.08334164, 1.2997445, 0.09621549, 0.073380046, 0.046042137, 0.11906057, -0.043933336, 0.100638084, -0.068584025, 0.00039730754, -0.07466169, 0.035345156, 0.099690914, -2.069693, -0.0053994167, -0.005313254, -0.11963562, 0.72141933, 0.07432335, 0.09375278, -0.007518116, 0.00029999999, 0.09389863, -0.074513435, -0.0009285565, -2.1657283, 0.06076623, 0.07306701, 0.08139132, -0.33567145, -0.08964007, 0.086620405, -0.0108365845, 0.00039999996, -0.062673695, -0.053047035, 0.0944134, 1.6251223, -0.022163937, 0.09817949, -0.11128791, -1.0500166, 0.03895755, 0.11242512, 0.091424026, 0.0004, 0.14320096, -0.015389306, -0.042096324, -1.11094, -0.005930318, -0.029220028, -0.04611561, 1.3053895, 0.00427905, -0.046492964, 0.028908856, -0.0004, -0.054425634, -0.0004714998, 0.0072977156, -0.5327912, -0.06264028, 0.03743879, -0.006423974, 1.3295372, 0.021296736, 0.04487206, 0.05384868, 0.0004, 0.03145441, 0.044176564, -0.049252268, 0.5381447, 0.02659217, 0.01840061, 0.040167484, -2.818125, -0.029269071, 0.042455494, -7.1667855e-05, 0.0002, -0.03309578, -0.02276184, 0.032337606, -0.08614948, 0.026560955, 0.038330067, -0.08978857, 0.42900565, -0.007919465, -0.09189967, -0.041573994, -0.00029999999, -0.09730602, 0.01794215, -0.021125376, 2.4772234, -0.0062956386, -0.028040316, 0.12661016, 0.71065223, -0.05229258, 0.116545156, 0.02321098, 0.00049999997, -0.11866709, -0.0498699, -0.016945338, -0.6325803, 0.048704274, -0.022351949, -0.08823436, 1.167612, 0.05175675, 0.08911983, 0.005992821, 0.00044006773, 0.07487424, -0.047064487, 0.05325225, -0.4995128, -0.11463914, 0.013611839, -0.060219917, -0.6949514, -0.054344237, -0.08251792, 0.0848018, -0.00046567735, -0.029298836, 0.09979659, 0.07833306, -0.9819494, -0.015395204, -0.035588022, -0.067095175, -1.061095, 0.007291103, -0.06883607, 0.034838445, -0.00049999997, -0.07559834, 0.0006084003, 0.01702358, 0.22603087, -0.058276415, 0.031678244, -0.051179964, -0.2477699, -0.03309547, -0.0763668, -0.009583463, -0.00040000002, -0.050275158, 0.013551432, 0.06563391, 1.9141018, -0.05021128, -0.015878044, -0.04546021, -2.408366, 0.03661241, -0.05524921, -0.021141699, -0.00029999996, -0.031277385, -0.03918326, 0.048231862, -0.49831176, -0.09923084, 0.107308015, -0.0017493132, -0.88128734, 0.10726315, 0.09908389, -0.0064676055, 0.00040000002, -0.0035623347, -0.0056744823, -0.14601348, 1.1540656, 0.011088885, -0.0532641, 0.038421165, -2.511157, 0.023904173, 0.03956568, 0.047951646, 0.0001, -0.061170578, 0.0058058156, 0.025703412, -1.525627, -0.004514191, -0.047326908, -0.06950766, 0.6870562, 0.045236483, -0.060044352, 0.03794556, -0.00049999997, -0.070885904, -0.035303954, 0.028641727, -0.2126084, -0.01710979, -0.034109917, 0.08253468, 2.3677588, 0.023662528, 0.07930072, 0.037678726, 0.00024813975, -0.08611355, 0.028567731, -0.0060452404, 0.8648968, -0.10888878, 0.085595876, 0.053606357, 0.9383227, -0.055677734, -0.116643116, 0.07315346, -0.0004, 0.08426319, 0.03353783, 0.11760948, 1.1422039, -0.062495004, -0.05826288, -0.06752753, -2.0740063, -0.0059961434, 0.08501351, -0.06780051, 0.0001, 0.08898638, -0.035189494, -0.05199307, -2.1095266, -0.014927266, -0.000874597, -0.083172426, -0.7763952, -0.018626025, -0.08232013, 0.0042085117, -0.0004, -0.081064716, 0.019075526, 0.014348392, 1.4373345, 0.08561255, -0.054610953, 0.01371797, 1.1457294, 0.054896135, 0.08650609, 0.0017773419, 0.00039999996, -0.012528097, 0.0058641797, 0.101531796, 0.9653434, -1.8022596e-05, 0.05277366, 0.09329294, 1.1544766, -0.014293776, 0.09245847, -0.052304387, 0.00038263167, -0.106227666, -0.012449974, 0.007022149, 1.7585777, -0.07382285, -0.025409237, 0.040825687, 0.6220875, -0.038217336, 0.076399885, -0.021556273, 0.00049999997, -0.029185645, -0.035771612, -0.075038455, -0.6099604, 0.008623962, 0.014932319, 0.049799394, 0.56037045, 0.01071288, 0.048886184, -0.016513687, 0.0004, -0.050874237, 0.012825501, 0.0049643796, 1.8887035, -0.13340534, 0.054139294, 0.002771672, 1.6665132, 0.054185543, 0.13339232, 0.0024805535, 0.00039999996, -0.0016349022, 0.0033410194, -0.14395104, -0.09383702, 0.032110147, -0.011992402, -0.09405549, 2.3798246, -0.02605338, -0.096596204, 0.0034218365, -0.0002716785, -0.091167286, 0.023380976, -0.034105282, 1.1240957, -0.040264755, -0.043367546, -0.0027041903, -0.7025386, -0.043094724, 0.04032813, -0.0050787143, 0.0004345248, 0.005558912, -0.0014847722, -0.05895931, -1.0752848, 0.0016650363, 0.057369582, 0.1356411, -0.21628204, 0.015325445, 0.13484581, -0.057221353, 0.00020000001, -0.14647494, 0.014760848, -0.004445096, -2.7767234, -0.04025744, 0.01782772, 0.034902446, 2.1678648, -0.0060494356, -0.05226194, 0.019717125, -0.00029999999, 0.038722243, 0.010369831, 0.039366536, 0.8571068, 0.046646997, -0.06822342, 0.05503404, 1.95204, -0.065852605, -0.06842108, -0.029001907, -0.00031466217, 0.057849906, -0.022874538, -0.07739035, -1.0918573, 0.020549847, -0.05217359, -0.058745053, 1.6879601, 0.021414224, 0.06214161, -0.047699176, 0.0002, 0.07559429, -0.0034202994, 0.029481636, -2.0664365, -0.017654106, 0.052887075, -0.083694845, -0.26465565, -0.021495853, 0.080939434, 0.05568011, 0.0004, 0.09664263, 0.027664151, -0.0029041634, 1.5319979, -0.029560363, -0.017904537, -0.13640136, -1.194759, 0.066841975, 0.12007091, -0.030246658, 0.00039218308, 0.12024165, -0.07114874, -0.016719075, 1.7073969, 0.11691937, 0.079487264, -0.046250522, -0.06944711, 0.0050507025, -0.08024827, -0.12514864, -0.00019999998, -0.091824986, 0.096796, -0.06577373, -2.754118, 0.10236934, -0.09270686, -0.018825386, 1.9795957, 0.07685322, 0.0976763, -0.06309804, 0.00034092285, 0.055159193, 0.035961393, 0.12285227, 0.9225156, 0.03771909, -0.021467615, 0.10967114, -2.564865, -0.058534533, -0.10239651, 8.808427e-05, -0.0002961437, 0.09519623, -0.05445586, -0.04340024, 0.42886648, 0.08920699, 0.11243202, -0.027012818, -1.4840499, 0.10980664, -0.09306113, -0.02471171, -0.00039977412, -0.036237497, -0.0052157855, -0.14137955, -1.4423144, -0.07207243, 0.038522497, -0.020430572, -0.5293028, -0.032351173, -0.07370228, -0.024843559, -0.000472604, -0.02923684, -0.013409623, 0.07785382, 1.0601593, 0.03564532, 0.018987538, 0.07251904, 0.0760334, 0.045304645, -0.06943265, -0.0040891767, -0.0004, 0.059724588, 0.04133649, -0.040179517, -1.8197513, 0.05074871, -0.00069897313, -0.055243935, 1.2954106, 0.0076548, 0.07437823, 0.006090858, 0.00040906615, 0.05471548, -0.009757357, 0.050386727, -0.3824427, 0.10696213, 0.059448134, 0.028294692, 1.1512778, -0.06560697, 0.10076145, 0.036310177, 0.00035692457, -0.0055130385, -0.045701496, 0.11686123, -1.8194643, 0.05203358, 0.0860735, -0.10880799, -1.1720526, -0.019409634, -0.11054975, -0.096733324, -0.0004, -0.1373721, 0.04822263, -0.027546424, -1.3366868, -0.070043094, -0.07565699, 0.07757132, -0.3875162, -0.09847076, 0.08298957, -0.007972843, 0.00047896165, -0.045219377, -0.06353023, -0.10279321, -1.1020933, -0.051738672, -0.07207293, 0.0335184, -0.36293697, -0.060354687, 0.06164697, 0.03939343, 0.00049999997, -0.05172331, 0.00015995966, -0.07949562, -0.40203434, 0.037226647, -0.054275956, -0.12535794, -0.5695457, -0.063538805, -0.12189867, 0.033909522, -0.00031536067, -0.12092691, 0.04734087, -0.056407858, -2.1606445, 0.03865657, 0.003556158, -0.07503132, -1.1402416, 0.020157265, -0.081780165, 0.0065091187, -0.0004, -0.07236041, -0.020881519, -0.038270205, 1.5185963, -0.11544418, 0.04254156, -0.006132078, -1.3172714, 0.042979743, 0.114112355, -0.01748885, 0.0004, -0.00035926228, -0.018529255, -0.12178375, 1.5843914, -0.06183708, 0.04969811, 0.04452806, -0.55476457, 0.058449477, 0.06962892, 0.003456677, 0.00049999997, -0.032191772, 0.030957824, -0.07925768, -0.91933537, 0.05801392, 0.00048394914, -0.049499955, -1.8774314, 0.030232267, -0.060732093, 0.034838438, -0.00040000002, -0.039198086, -0.04612453, -0.046391077, 0.15243018, 0.11487639, -0.029533895, 0.061593965, -1.094594, -0.020180333, 0.10046101, 0.0858079, 0.0004, -0.06525965, -0.08305414, 0.0818892, 1.0506274, 0.016092578, -0.010312797, -0.0994153, 1.7572037, 0.014791677, 0.09983259, -0.007961722, 0.00039999996, 0.09884818, -0.01326005, 0.017376306, 0.30495358, 0.053065304, -0.017163275, 0.07844945, 1.0163945, -0.0031502368, -0.09440238, -0.018522575, -0.00039005157, 0.0802432, 0.0076440675, -0.05260625, -1.8243431, 0.09349465, -0.09910514, -0.042053383, -1.8937316, 0.10189675, 0.09943741, -0.0077985907, 0.00040000002, 0.03474719, -0.024938682, 0.13602301, 0.3009954, 0.023688812, -0.025894908, -0.09547089, 0.39180842, -0.07041051, 0.06454016, -0.034976117, 0.00048484266, 0.06948091, 0.07423229, -0.0028942365, 1.0843548, 0.09077617, -0.032850932, -0.042316064, -1.4014308, 0.043553825, 0.09373507, 0.020662732, 0.0004, 0.031191297, -0.035280317, 0.0943003, -0.8804051, 0.04031469, -0.04313901, -0.05952226, 1.6293054, -0.049689483, -0.06602007, 0.014193424, -0.00039999996, -0.05417406, 0.028452126, -0.057313133, 0.09460659, 0.054513868, 0.006186251, -0.020154998, -1.064569, -0.0067391736, 0.058057506, -0.00040785194, 0.00039999996, 0.019976916, 0.0027042776, 0.054862242, 1.7498975, 0.09186466, 0.025859011, 0.03964033, 0.18566108, -0.018008377, -0.060944416, 0.081490114, -0.00049999997, 0.043769196, -0.07934893, -0.049670577, 0.5255405, 0.077902526, -0.0061774584, -0.096701816, 1.4830306, -0.06879555, -0.090905525, -0.04961418, -0.0004, -0.06823912, 0.08459451, -0.060377132, -0.52397776, -0.035801657, -0.03709238, 0.031976, 1.9453471, -0.03190882, 0.0477157, 0.019624097, 0.0003524848, -0.037150174, -0.005237763, -0.04767071, 0.9417081, 0.04218968, -0.0064328383, -0.087749, -2.0545433, -0.067234725, 0.060413387, -0.036755305, 0.0001, 0.056751747, 0.07635496, 0.021688664, 2.1260257, -0.005792932, 0.040263273, 0.111071944, 0.6462276, -0.06536428, 0.091543, -0.03659314, 0.00039999996, -0.09841554, -0.063169755, 0.017766016, 1.3729097, -0.083845496, -0.07154795, -0.05691574, -2.1803677, 0.08623525, -0.08754053, -0.016991677, -0.00032466487, -0.030364314, -0.051050246, 0.10890573, -0.40366018, -0.024054846, -0.002152955, 0.071644105, -1.9525721, -0.031053865, 0.068423286, -0.008370314, 0.00021073339, -0.06460009, -0.03209003, -0.022654105, -1.6850526, 0.10806359, -0.088020645, -0.039825678, -0.80879897, 0.09267627, 0.111324444, 0.0054256176, 0.00040000002, 0.027291577, -0.029507479, 0.13926929, 1.5404868, 0.07359854, -0.0158228, 0.026668282, 2.2002473, 0.02242778, 0.07459359, -0.017637901, 0.00020000001, -0.021413852, 0.02374321, 0.07318477, 1.7735157, -0.051120684, -0.009711631, -0.027472284, -0.14654861, 0.019322272, -0.05282392, -0.017281467, -0.00029999999, -0.021810362, -0.024035044, 0.049081467, -2.5284033, -0.11377385, -0.08478335, -0.029945165, -2.2014306, -0.06601973, 0.11155533, -0.0650094, 0.00032968592, 0.061043642, -0.03737124, -0.12612092, -0.14857125, 0.051570278, -0.042296123, 0.007587174, 2.3274364, 0.042969175, 0.050642114, -0.009749211, 0.00019999998, 0.00041895843, 0.0123465285, 0.06598035, 1.5540888, 0.0071436693, 0.017657047, 0.08130018, -1.0987371, 0.027908696, 0.07636243, -0.019036923, 0.00039077588, -0.0783747, 0.028801542, 0.00063139544, 1.7733132, 0.05469676, -0.0101227565, -0.018240506, -1.4576504, -0.0029685788, -0.054442033, 0.021311425, -0.0004, -0.02064882, -0.018987352, -0.051381204, -0.56132776, -0.11866821, -0.07481621, 0.0006273819, 1.8324944, -0.069101326, 0.10914498, -0.054702736, 0.00039999996, 0.028685628, -0.04658238, -0.12917903, 0.44751415, -0.066657715, -0.023564102, -0.08423606, 2.5188947, -0.0012187341, 0.106147885, -0.028729282, 0.00020000001, 0.08746139, -0.016479991, -0.064599894, 0.6289237, 0.05386457, 0.00027541872, 0.018177332, -0.87893796, -0.009700261, -0.04763949, 0.029466422, -0.00020000001, 0.01537519, -0.0310208, -0.045091, -2.5846121, 0.07215616, -0.014721141, -0.00050804333, -0.6405208, 0.011273377, 0.05682595, -0.045466524, 0.00039999996, 0.00948056, 0.044470016, 0.057931162, 1.7200367, 0.068038955, -0.030680872, -0.07514281, 1.7933874, -0.027348705, -0.10098459, 0.016468862, -0.0003, -0.07641862, 0.008823805, -0.072796926, 1.7856405, 0.033295263, -0.019503387, -0.09053413, -0.050404787, 0.02374368, 0.094789304, -0.0116879735, 0.00049999997, 0.08951561, -0.017888239, 0.036774278, -0.38311702, -0.07911518, 0.061688047, 0.007698024, 2.512494, -0.059924494, -0.07235907, -0.03601538, -0.0003, -0.016544797, -0.032903448, 0.093635045, 0.28235772, 0.078331165, -0.04244646, 0.0136954235, -2.2124841, 0.04444023, 0.0766273, -0.016684182, 0.0002, -0.003785931, 0.021250734, 0.087516345, -1.4036574, -0.0096634915, -0.07511548, -0.09354251, -0.5599692, -0.05015077, -0.08272297, 0.071608156, -0.00029999999, -0.10898365, 0.04472688, -0.024657434, 2.449107, -0.039988484, 0.028989837, -0.024857111, 2.730062, -0.026137354, -0.047018014, -0.01278713, -0.00016914235, -0.02784107, 0.0025023082, 0.047707215, -0.848629, -0.03449802, 0.043027822, 0.08390864, 0.36522642, 0.017553957, 0.09071612, -0.039301556, 0.0002464336, -0.0926494, 0.0011662432, -0.03868973, 2.4968295, 0.049293432, 0.0131928865, -0.057968985, -1.5460142, 0.03801184, -0.064894155, 0.017554091, -0.0004, -0.045711655, -0.03973656, -0.047913972, 0.6598534, 0.043238275, -0.02785672, 0.108862124, -1.510396, -0.0072405236, 0.115710065, 0.03248485, 0.00028205247, -0.11213624, -0.018212471, 0.039878312, 1.9530547, 0.015659286, 0.08341458, 0.09686474, 1.0159237, -0.075455084, 0.084805705, -0.06083182, 0.00044854352, -0.103185765, -0.049355708, 0.05918358, 0.723727, 0.08990669, -0.028684998, 0.014566705, -2.163925, -0.016391853, -0.078046665, -0.05251912, -0.00028453898, 0.027682574, 0.046948086, -0.0784078, 1.4723018, -0.037075255, -0.050207883, -0.03263635, -1.127544, -0.036473326, 0.04937694, -0.034527544, 0.00040000002, 0.047493767, -0.0012744556, -0.051992826, 1.3445104, 0.10066099, -0.007241727, -0.06312655, -2.8043566, -0.0008706503, 0.11809404, -0.014935797, 0.000111941335, 0.063534595, 0.013091734, 0.099809796, 0.74908155, 0.027032064, 0.077541284, 0.08420062, 0.29833922, 0.04314063, -0.087038495, 0.0663047, -0.00049999997, 0.106024906, 0.015645327, -0.048446566, 0.7936617, 0.041861713, -0.010815259, -0.052658457, 1.5666814, 0.032861244, 0.057967894, 0.014217852, 0.0004, 0.04254434, -0.034132663, 0.04083167, -0.99793375, 0.09271886, 0.0032430645, -0.009440218, 0.5870304, 0.008673355, -0.06982791, 0.06119852, -0.0004, -0.004940452, -0.061724946, -0.069728374, 1.8290646, 0.0012607545, 0.08649568, 0.09717713, -0.6811333, 0.034875877, 0.09339988, -0.08358604, 0.00049999997, -0.12533383, 0.026859887, -0.022281455, 0.63583297, -0.08510738, 0.0059688822, -0.094310775, 1.8342578, -0.0051889997, 0.12643413, 0.012684581, 0.0004, 0.09435687, 0.012336806, -0.08436821, -0.67979825, 0.0026604258, -0.0005919072, -0.076495685, -0.47956955, -0.0162032, -0.07480959, 1.5332485e-05, -0.00039999996, -0.07476228, 0.016192395, -0.002725433, -1.4542563, 0.09727298, -0.06437025, 0.0033836735, 0.15822072, -0.06085067, -0.09372176, -0.033621956, -0.00023488211, 0.02126434, 0.026262388, -0.11169208, -2.6755164, -0.049770594, 0.038953833, 0.04886529, 0.8525979, 0.058883443, 0.050152794, 0.019994179, 0.00049999997, -0.020927412, 0.048472956, -0.059956193, 0.01826213, -0.09085647, -0.0036156343, -0.033445638, -2.846163, 0.02105601, -0.081233904, -0.04841775, -0.00017835239, -0.026236007, -0.0526741, 0.07696552, 0.12748256, 0.03172552, 0.0376236, -0.056744106, -1.4158638, -0.045523748, 0.058272522, 0.013184764, 0.00013620919, 0.050626233, 0.02882212, 0.047415234, -2.5123563, -0.057082593, 0.05164355, 0.07019975, 0.6424567, 0.00877614, 0.086897664, -0.05679136, 0.00039999996, -0.08670663, -0.025203627, -0.051963635, -1.4243205, -0.08148339, -0.02966591, -0.017017998, -1.3506858, -0.010142067, 0.06295412, -0.061181188, 0.0004, 0.03266216, -0.054460384, -0.061453003, -0.5953621, 0.054595836, 0.00012089628, 0.0057790424, -0.82823193, 0.0032827158, 0.044529956, -0.031944077, 0.0003709764, -0.004757701, 0.032112077, 0.04427523, -1.9587667, 0.059888106, 0.030403035, 0.10225558, -0.62303877, 0.07414233, -0.09617801, -0.014826985, -0.0004, 0.076703735, 0.06922848, -0.06550643, 1.5819178, -0.092535, 0.03650982, 0.0155342575, 1.9954098, -0.038288094, -0.09250611, -0.010660948, -0.00029999999, 0.010406783, -0.015705658, 0.09890419, 1.6483886, -0.034869846, 0.030525886, -0.10778902, 2.383203, -0.08237424, -0.083496585, 0.0030018778, -0.00029999999, -0.075926185, 0.07656825, 0.046246342, 0.052515883, -0.01629138, -0.03821483, 0.090023994, 0.6760059, 0.017690383, -0.09091048, -0.035389766, -0.0003131744, 0.096185975, 0.010247532, 0.021756532, 2.1356752, -0.076190844, -0.0027803679, 0.037483647, 2.4145956, 0.020672366, -0.07385939, 0.036540963, -0.00029999999, 0.031391203, 0.04189102, 0.06691437, -0.6050699, -0.093525276, -0.0498173, -0.031128567, 2.6469765, -0.016324941, 0.078261495, -0.07619949, 0.0001, 0.05642913, -0.059925813, -0.07363681, 1.283535, -0.011516769, 0.011820406, 0.082945466, 0.34705204, 0.026473057, 0.079949476, -0.007717739, 0.00017843873, -0.07949118, 0.024913132, -0.014587477, 2.8286247, 0.030776985, -0.008059892, 0.13568957, 1.7900728, -0.104977705, -0.089789286, 0.018477518, -0.00015553116, 0.086349934, -0.106286295, -0.025899163, -2.2422254, -0.04018642, -0.00085520156, 0.042507824, -0.8982264, -0.01762463, -0.052893724, -0.017726278, -0.00023097228, 0.03869133, -0.024982337, 0.036075734, 2.5304668, 0.09203698, 0.040473584, 0.028066365, -0.4526331, -0.03588525, 0.09584826, -0.020542499, 0.0004, -0.03373545, 0.008463707, 0.098422155, -1.5700786, 0.034312192, -0.027335446, -0.040784456, -2.644406, 0.013420241, -0.042640474, 0.03986994, -0.0001684879, -0.047228117, -0.03197639, -0.01830138, -1.0895963, 0.083730325, -0.044721127, -0.037821494, 0.2772897, -0.047659755, -0.09037661, 0.0013530871, -0.00049999997, -0.03404397, 0.016531922, -0.0949153, 0.8853677, 0.0114432005, -0.06587283, -0.100499734, -2.7584176, -0.06973995, 0.07857165, -0.059440814, 0.0001, 0.09785585, 0.0636996, -0.030609924, -1.0672503, 0.03825831, -0.045068294, 0.036976617, -1.3807733, 0.0022704324, 0.04534681, 0.052920993, 0.00016701278, -0.058251746, -0.0278323, 0.026347997, -2.5045195, 0.014979932, -0.021425454, -0.04914196, 2.2586184, -0.0147080235, -0.05070903, 0.017625233, -0.00029999999, -0.05155246, 0.00824166, -0.019308014, -0.70195854, -0.034933064, 0.025399309, -0.079859294, 1.1101867, 0.008789602, -0.084932335, -0.030857645, -0.00040000002, -0.08333893, -0.019604249, 0.030220019, -0.8969278, -0.10211465, -0.02837257, -0.04568273, 1.3867465, 0.008361615, 0.088469885, -0.0736375, 0.0004, 0.053122483, -0.068464555, -0.07622286, 0.24948333, 0.05874228, -0.07756496, -0.111354314, 0.28931242, 0.031258896, -0.11034236, 0.09334996, -0.00021656699, -0.13205676, -0.06062183, -0.027436601, -2.6906805, -0.002303691, 0.02974918, -0.058478475, 0.56123745, 0.034140464, -0.04942511, -0.026488474, -0.0004, -0.056028325, -0.031340018, -0.013736131, -1.7124591, -0.06996022, 0.017957631, -0.009979427, -1.4934597, 0.011223038, 0.06307286, 0.034818918, 0.00040000002, 0.017207813, 0.0318722, -0.063281536, -1.2397151, -0.044378683, 0.026155422, 0.08057638, -2.5065029, -0.03257362, -0.08923843, 0.011026744, -0.00029999996, 0.078202434, -0.022327637, 0.05031883, 0.10787254, -0.030093603, -0.0346554, 0.03174214, 2.4022253, -0.01852125, 0.04338766, 0.029810397, 0.0002538817, -0.043191712, 0.005540698, -0.034899317, 0.7423298, 0.034936167, 0.022535808, 0.059324645, 0.93894386, 0.005037392, -0.068491355, 0.023051484, -0.00049999997, 0.06326058, -0.0069916686, -0.034598086, 0.26083207, 0.09051265, -0.020881593, 0.048435587, 0.39049026, 0.020747034, 0.102540664, 0.005436988, 0.00040000002, -0.04849338, 0.0048948093, 0.09273089, 1.3329574, -0.010061059, 0.07510094, -0.08644573, -2.4847083, 0.03849286, 0.08394708, 0.06845018, 0.00023901154, 0.10784857, -0.022955967, -0.032495372, -0.5127807, 0.07438162, 0.059456337, 0.098520555, 2.604057, 0.0016822057, -0.11786032, 0.06985767, -0.0002, 0.115058795, -0.036713343, -0.06471155, 0.9682834, -0.12217123, -0.04381282, -0.064548194, -1.0249276, 0.036881883, -0.13812368, 0.023946185, -0.00040000002, -0.06874416, 0.0037589415, 0.12756157, 1.1926824, 0.041868906, -0.002925124, -0.089490615, 1.1368413, -0.06101456, -0.073235296, -0.026152365, -0.0004, -0.06553128, 0.06631867, -0.032827064, 0.772058, 0.028055914, 0.033749726, -0.074616894, -0.38649786, 0.028201781, 0.0700682, 0.042296175, 0.00049999997, 0.07688553, -0.038016614, 0.011713752, -0.47183815, 0.086370796, 0.08371949, 0.040863775, 1.6499325, 0.08911214, -0.09049323, -0.0029522018, -0.00029999999, 0.02716299, 0.030671416, -0.12025037, 1.999815, -0.01631759, -0.023716148, 0.07725784, -0.62424743, 0.013958877, -0.078459434, -0.021136751, -0.00040000002, 0.07960138, 0.008897023, 0.019543719, 1.8788412, -0.028422674, -0.037531234, 0.022594903, -1.7993169, 0.035006057, -0.035651233, -0.015183451, -0.00029999999, 0.026338167, 0.0068824477, 0.044563487, 1.776632, 0.05678887, 0.012156844, 0.06681925, -2.4179492, 0.012897784, -0.087445654, 0.0049478663, -0.00029999996, 0.06668019, 0.006560893, -0.05786435, 0.39501894, -0.010874704, -0.04858706, 0.04859488, -2.2680912, -0.045287438, 0.042070992, 0.031929675, 0.0003, -0.051683776, -0.026641192, -0.038202856, 0.5688654, 0.058916718, -0.023857558, 0.13356422, -0.58371556, 0.07728487, 0.12558213, -0.011659481, 0.00049999997, -0.11151516, 0.074429244, 0.062485363, 0.48703858, 0.050023586, 0.03001333, -0.039358404, 1.8825936, 0.03248349, -0.06212859, -0.0060913386, -0.00039999996, -0.03734577, -0.013837681, -0.05801771, 0.64484376, -0.016680304, -0.026192125, 0.079546206, 1.3638065, -0.023464698, 0.079321615, 0.02119779, 0.0004, -0.08039299, -0.017717531, -0.022691704, -0.414774, 0.11286077, -0.034318805, 0.06041488, 1.3999885, -0.011492158, 0.10443185, 0.080791175, 0.00028620244, -0.06852494, -0.07403719, 0.085954174, 2.0269992, 0.042336944, -0.0061687483, -0.07529568, 1.5043612, -0.02861762, -0.08119016, -0.009439334, -0.0004, -0.069918, 0.02949603, -0.041729722, 0.4585217, -0.021165505, -0.026729109, -0.039953917, 2.792511, -0.006397359, -0.04170076, 0.03128673, -0.00019999998, -0.04764279, 0.017473996, 0.013548589, -0.20823686, -0.016958654, 0.042585447, -0.038340867, -1.882745, -0.0020606045, -0.04041206, -0.043974508, -0.0004, -0.05726514, -0.011157196, 0.012936723, -0.6509616, 0.06645978, 0.028625056, -0.008061448, -0.730263, -0.026574284, 0.06602409, 0.01535953, 0.00020000001, 0.013348689, -0.011077671, 0.070713386, -2.7214808, -0.039174, 0.012605431, 0.03761665, 1.6486919, 0.0044248863, 0.053923223, -0.013461724, 0.00040000002, -0.039424986, -0.0064730784, -0.038888063, 0.8074627, 0.033530504, 0.012342411, 0.06211207, -1.4220102, 0.039923877, -0.058674965, -0.009893041, -0.0001960043, 0.049156163, 0.03923587, -0.03433303, -2.4526348, -0.051742855, 0.028575068, -0.0031417464, -1.3796067, -0.027275423, -0.050843004, -0.013220007, -0.00024054627, -0.00908054, -0.010108554, 0.057611533, 2.2890391, 0.07472407, -0.024650762, -0.1091865, 2.2922173, -0.04176499, -0.12793995, 0.0003019393, -0.00020000001, -0.10385105, 0.03371565, -0.07868454, -1.5492775, -0.12695101, 0.0336293, 0.040663954, 0.8285572, 0.05161181, 0.101191446, 0.07744388, 0.00049999997, -0.0109866625, 0.086777896, -0.10606569, -0.62463737, -0.080477215, 0.010219283, -0.05361604, 1.6178665, -0.03409465, -0.08400424, 0.035164475, -0.00029999999, -0.042622395, 0.04790148, 0.073105924, -1.6403939, -0.12274556, -0.048479956, 0.029618848, 1.3761117, -0.056697767, 0.10006784, -0.07117476, 0.00017037214, 0.003598043, -0.07700765, -0.11113475, 2.5041652, 0.12202609, 0.013322808, -0.016568977, 1.6544878, 0.018157035, -0.115522474, 0.04083232, -0.00033728086, -0.011061172, -0.04265513, -0.11576089, -1.4373206, 0.06637405, 0.0043508084, -0.035346363, -0.6715156, -0.01998885, 0.06642512, -0.029359113, 0.00049999997, 0.029474407, 0.035250276, 0.059686575, -0.37565735, 0.015883802, 0.0042295572, -0.066025585, -0.7878253, -0.033240907, 0.059219394, -0.004203221, 0.00049999997, 0.057204098, 0.033237565, 0.01589079, -0.09042704, 0.100921646, 0.025134733, -0.091691986, -0.28606832, 0.054740906, -0.12469212, 0.026070315, -0.00029999999, -0.07773421, -0.055176746, -0.100684024, -2.3167195, 0.062919594, 0.0037289981, -0.11392787, -0.26770586, 0.07056347, -0.103474334, 0.03558366, -0.00047189722, -0.08952239, -0.07893982, -0.05202484, -1.1561607, 0.1086108, -0.00664915, 0.099741384, -0.9386233, -0.05563571, -0.12638472, 0.052157763, -0.00029999999, 0.08304952, -0.07597073, -0.09549914, 2.2672038, -0.12364195, -0.038103323, 0.036037117, 0.6343032, -0.047892503, 0.119641714, -0.03781588, 0.00049999997, -0.021373972, -0.04766413, -0.12373018, -0.6905527, 0.0038234731, 0.0049041775, 0.08264873, -2.546284, -0.029225217, -0.07733098, 0.0059406455, -0.00020000001, 0.07746451, -0.029416893, -0.0018381218, 1.1366144, 0.03990392, -0.029771585, -0.043073792, 1.7403244, -0.0067408355, -0.056626484, 0.032894127, -0.0004, -0.05192552, -0.015527878, -0.037371736, -0.52476346, -0.044759892, -0.029844275, -0.054760445, -1.7929114, 0.0061541405, -0.06918914, 0.032677613, -0.00010085685, -0.062060565, 0.0146635305, 0.04273526, 2.2948043, -0.01959298, 0.034323756, 0.032663908, -0.8710173, -0.017421545, -0.038089033, 0.029574504, -0.0004, 0.044062924, 0.00020277344, 0.026217435, -1.315423, 0.090758845, 0.076739416, 0.081044756, 2.0507588, -0.018989421, 0.113551795, -0.08625403, 0.00019999998, -0.10998451, 0.04371978, 0.08177009, -1.9201593, -0.04792288, -0.045346484, 0.064771466, -0.44239533, 0.053011045, -0.0746225, -0.013021561, -0.00049999997, 0.05866408, 0.030387964, 0.06467879, 0.61227643, -0.06262109, 0.03546572, 0.11075539, -1.8678935, 0.051748335, 0.12114935, -0.009535529, 0.00025724064, -0.10414742, 0.038871575, -0.07133226, -1.671736, -0.015707156, -0.06862234, 0.11391392, 1.695094, 0.077425934, -0.09797908, -0.048347145, -0.00040000002, 0.10812323, 0.060192995, 0.05116926, 0.73329574, 0.00340771, 0.065714486, 0.10198172, -1.7057018, -0.061873637, 0.08869797, -0.05508723, 0.00040000002, -0.10435666, -0.050443646, 0.03599166, 0.86618626, -0.012777688, -0.032755338, 0.13978858, 0.5623982, 0.106087185, -0.096718304, -0.012965932, -0.0004, 0.09674332, 0.10173345, 0.032681268, 1.7279016, -0.08642008, 0.087120116, 0.003150501, 2.1815388, -0.08714196, -0.08645473, 0.00035646668, -0.00029999999, 0.0024718791, -0.0019855734, 0.1227119, -0.99653685, -0.020047229, -0.066170044, 0.0681724, 1.2297285, -0.024753299, 0.07090509, 0.06154336, 0.0003747187, -0.091723636, -0.0046728207, -0.031508435, 1.7242292, 0.026630612, 0.008108147, -0.045876358, -0.43894973, -0.0021725795, 0.05300133, 0.008106253, 0.00049999997, 0.046536673, -0.002165503, 0.02663119, 0.43308473, -0.024409348, -0.061561283, 0.06881013, 2.8569593, 0.0513267, -0.068210535, -0.042817477, -0.00016206264, 0.07674762, 0.026037943, 0.050519995, -0.17444725, -0.036203153, 0.016083924, -0.09173382, -0.44525415, -0.0660775, 0.06492233, 0.03746077, 0.00049999997, 0.06563193, 0.07423512, -0.012886097, 0.832935, -0.050556947, 0.054037385, 0.016755246, -0.19716215, 0.04561106, 0.052225046, -0.030805174, 0.00049999997, -0.033472504, -0.010454129, -0.06728362, 0.22082886, 0.11546062, 0.069410086, -0.06702911, -0.8587952, 0.091780394, -0.11126282, 0.042880762, -0.0004, -0.029782902, -0.07378782, -0.12771122, 1.7518309, 0.01303106, 0.038457714, -0.11626405, -1.6952441, -0.0726136, 0.096574664, 0.02380622, 0.0004, 0.09860826, 0.066033915, 0.0328948, -1.0097753, -0.1196217, 0.04996518, 0.035945978, -0.30730477, -0.022667412, -0.10880261, 0.07580344, -0.00040000002, 0.057226043, 0.06134699, 0.10516514, 1.5872939, -0.07590999, -0.01843545, -0.03865086, 0.23831376, 0.0059853685, 0.07332538, -0.046729498, 0.0004, 0.042402018, -0.04335441, -0.062598296, -1.8509982, -0.087807044, 0.0073912013, 0.09200227, 0.600402, -0.048635494, -0.111629896, -0.037449747, -0.00047727124, 0.0784451, -0.060936578, 0.07976356, -1.0072522, -0.07427632, -0.028614495, -0.0046857665, -0.39979082, -0.028810397, 0.071377695, 0.020806322, 0.0002, -0.0032721192, 0.02107493, -0.07683006, -2.5800612, -0.019442504, 0.03829338, 0.09784174, 0.18376413, -0.0172469, -0.09931629, 0.035443265, -0.00049999997, 0.1036433, -0.009343383, 0.024252167, -0.33408588, 0.04530322, 0.010605751, 0.07554611, -0.83893514, 0.050739527, -0.069800116, -0.020628212, -0.0004, 0.056966636, 0.053735837, -0.041705403, 1.1228433, -0.058540065, 0.02705394, 0.02965666, -0.59371644, -0.00913423, -0.060041457, 0.036741816, -0.0004, 0.039089624, 0.026485462, 0.052998994, 1.5806768, 0.0035330632, -0.052950032, -0.12183072, -2.0571349, 0.0068105147, 0.121785745, -0.052732967, 0.000100000005, 0.13266516, -0.004841874, 0.0059516407, -2.1141083, 0.057900485, 0.017449662, 0.01786327, 2.033058, 0.024566444, -0.047896434, -0.032840148, -0.00036387218, 0.0044807387, 0.037114613, -0.050778747, 0.66668797, 0.026142983, 0.045538355, 0.043646023, 1.9127601, -0.005312088, 0.048667885, -0.04759612, 0.00024440725, -0.062852986, 0.014827934, 0.022176702, 1.6516876, 0.030963622, 0.053180136, 0.05636058, -1.9949806, 0.031023847, -0.06412459, 0.043462005, -0.00039389433, 0.07100819, 0.004826795, -0.043565203, 0.59502476, -0.10926454, -0.07300855, -0.022170905, 0.26150265, 0.06948447, -0.07921156, -0.081596404, -0.0004, 0.03152311, -0.07845899, 0.10300978, -1.8363912, -0.038450785, -0.035528447, -0.022573987, -0.047455266, 0.017438874, -0.041272424, 0.03525325, -0.00049999997, -0.0383111, 0.01687114, 0.03870325, -1.0601742, -0.08906622, -0.005545739, 0.012519406, 1.200412, 0.010571945, -0.08021244, 0.03967973, -0.0003664331, 0.008701977, 0.040687736, 0.07993163, -1.7662747, 0.024182651, 0.08725458, -0.10685876, 0.61037517, 0.006422423, -0.10908247, -0.087616906, -0.00049999997, -0.13780749, 0.010227837, -0.02283505, -0.35222733, 0.027604392, -0.049428646, 0.11621687, 0.39333588, -0.099426605, -0.08185658, -0.011198448, -0.00049999997, 0.07787107, -0.08699348, -0.055495843, -0.9961043, -0.08549569, -0.0074120536, -0.023703888, 1.0397725, -0.0053730756, -0.07744003, 0.043594725, -0.00029999999, -0.024247538, 0.043294705, 0.07391856, 2.334273, 0.07565117, -0.040087316, -0.0013231107, 0.38674387, 0.03228423, 0.06253535, -0.048773993, 0.00029985473, 0.02380066, 0.04259322, 0.0703647, -2.4103758, -0.076563045, -0.020500846, -0.09655378, 0.3801098, 0.040505376, -0.11795805, -0.007073526, -0.00049999997, -0.09001241, -0.035643175, 0.07894397, -0.9877761, 0.026096819, 0.05997116, 0.08950231, 0.066229925, 0.0011281082, 0.09193349, -0.061929088, 0.00049999997, -0.107730836, 0.0154901575, 0.021032635, 0.5429533, -0.14386538, -0.03011283, 0.0129690925, -1.061364, 0.030967021, -0.10562284, 0.09827046, -0.0004, -0.010771441, 0.09853556, 0.10930208, -1.0917429, -0.06633346, 0.0144206835, 0.0062064063, 1.4993421, 0.015672384, 0.06240897, 0.02249666, 0.0002, -0.00092301023, 0.023318814, -0.064046726, -2.1267588, 0.0075584743, -0.003594109, 0.08019906, 0.593372, 0.0521028, -0.06106356, -0.007647056, -0.0004, 0.061074585, 0.052538194, -0.0034015686, -1.340905, -0.123159096, -0.010862558, 0.018798644, 0.62585443, 0.0034898848, 0.09696815, 0.07889578, 0.00049999997, -0.02142907, 0.078222305, -0.095192514, -0.31334227, -0.008925511, -0.026589604, -0.052983996, 2.4792395, 0.029293763, -0.048560597, 0.019435018, -0.00021087086, -0.05153819, -0.022996467, 0.020222558, 1.0997891, -0.02226684, -0.056723528, 0.065604635, -0.9136563, 0.008559023, 0.0659645, 0.059939694, 0.0003, -0.08630337, 0.021176988, -0.0109819835, 2.213182, -0.05902997, -0.054208905, 0.07512754, 0.31932616, -0.0045856545, 0.09068267, 0.061829735, 0.00019999998, -0.09252959, 0.030088866, -0.0509924, 2.759737, 0.043913975, 0.0047254628, -0.03937912, -0.4216579, 0.0053521916, -0.058920473, -0.0011018665, -0.00029999999, -0.039298844, -0.0027440956, -0.044153746, 2.3511553, 0.045307323, -0.016676746, -0.059734702, -1.1271855, -0.01044721, -0.074971884, 0.013006711, -0.0004, -0.061132688, 0.0004525937, -0.046494003, 1.112522, -0.014863256, -0.027843546, 0.07006912, 0.30400655, 0.04280116, 0.05567942, 0.031204566, 9.999999e-05, -0.06207258, 0.045059975, 0.004738589, 2.908933, 0.06361006, -0.048804127, 0.0015552327, 0.25934574, 0.03499996, 0.047352746, 0.054435484, 0.0003, -0.03404797, -0.042501487, 0.058863074, 2.344675, -0.08094889, 0.052389953, -0.024679016, 1.6248218, -0.0449478, -0.08358267, -0.030001925, -0.00029999999, -0.036516525, -0.013255674, 0.09163685, 1.729304, -0.05077365, 0.023065751, 0.04110872, 0.7261746, -0.032505553, -0.0608893, -0.0059833587, -0.00022628265, 0.03413714, -0.023672404, 0.05544538, -2.5925357, 0.051795788, -0.016712405, -0.023026576, -2.1787071, -0.00605013, -0.05320246, 0.025004555, -0.00029999996, -0.027801499, -0.019558316, -0.04834129, -1.0097845, -0.07024877, -0.009448125, -0.08024247, -0.24352518, 0.055911418, -0.08244453, -0.0392406, -0.00029999999, -0.05832696, -0.06765089, 0.059028253, 2.5783865, 0.096742, 0.04891793, 0.040180217, 2.0525851, -0.040829994, 0.10429503, -0.028668733, 0.00036937656, -0.048376884, 0.009799164, 0.10454703, 0.56358564, 0.096847355, 0.014638252, -0.056988917, 0.41469306, 0.023840755, 0.09058096, 0.06378189, 0.0002, 0.0537925, -0.066499874, 0.0743341, -2.618586, -0.044270877, 0.023040852, -0.01618112, -0.51047933, 0.027961379, 0.03951101, -0.02024009, 0.00049999997, 0.0032970961, -0.02570251, -0.04561941, -0.6893046, 0.014542697, -0.024768073, 0.08963614, 0.72326225, 0.070558935, -0.056159463, -0.026965454, -0.0003, 0.060576662, 0.07135995, 0.009889985, 2.3191333, 0.091039054, 0.0017745973, -0.044693172, 1.0424691, 0.004358526, 0.10051925, 0.012869465, 0.0004, 0.044515528, -0.013471106, 0.0901423, 1.4782428, -0.038386405, -0.04522129, 0.1273955, -0.3309131, -0.09200693, -0.08828639, -0.059062067, -0.0004, 0.0990419, -0.09954214, -0.0054912604, 2.0094762, 0.08835989, -0.034524195, 0.06814044, 1.1606759, 0.028530143, 0.111566536, 0.019530622, 0.00024321198, -0.07085951, 0.0018692679, 0.09283288, 2.2479088, 0.061023343, 0.087698735, -0.09852742, -2.7854948, 0.01495231, 0.10326159, 0.10117334, 0.0002, 0.131054, -0.052617017, 0.03433469, 0.07921281, -0.045468766, 0.09852509, 0.06884812, -1.0533047, -0.024750156, -0.079706684, 0.09771868, -0.00013558005, 0.117620945, 0.021314757, 0.047176912, -2.6854665, 0.08280808, 0.018482279, 0.030515842, -0.12576553, 0.0066633, -0.08377894, 0.03266008, -0.00049999997, 0.035048697, -0.027739618, -0.07830766, 0.33352405, -0.09302508, -0.06229095, 0.017947936, 1.7733963, 0.06433715, -0.09256013, 0.0122193545, -0.000117684496, 0.00793858, 0.020209413, 0.11128574, 2.2924395, -0.1398853, 7.230369e-05, -0.018416647, 1.4318769, -0.00037012144, -0.14107396, 0.002257436, -0.00039999996, -0.01841306, 0.0022864346, 0.1398671, -0.45068645, 0.1236913, 0.029408354, -0.078141935, -0.8475355, -0.011063329, 0.14421092, 0.036760908, 0.00049999997, 0.08275636, -0.024676105, 0.121708766, 0.08175714, 0.036284994, 0.043574687, 0.07066873, 2.3404903, 0.034457054, 0.062263366, -0.056083933, 0.00026688684, -0.07553498, 0.04933502, 0.00836337, 0.8553316, 0.04148051, -0.010502372, -0.039139774, 0.3246237, 0.007072604, 0.05702542, -0.0078060464, 0.00017999636, 0.039902385, 0.0008101143, 0.042071357, -2.8307033, 0.11875883, -0.039615788, 0.06463432, -0.69339406, 0.018295627, -0.10159577, -0.09588657, -0.00049999997, 0.07356817, 0.08921633, -0.08049122, -0.1389853, -0.09674229, 0.03672923, 0.086470395, 1.6345307, 0.08253676, 0.09251616, 0.05304413, 0.0004, -0.044875942, 0.090977795, -0.088850595, 0.9768394, 0.006531197, 0.043255135, 0.048839837, 2.293408, -0.006443916, 0.049271658, -0.04277584, 9.3321265e-05, -0.06492159, -0.0005390323, 0.009159158, 1.8886936, -0.12309143, 0.006205169, 0.061684214, -1.0557545, 0.02344764, -0.12228401, 0.059091236, -0.0004, 0.057390362, 0.06326976, 0.108158365, -1.631386, -0.078729056, -0.020671979, -0.013221509, -1.1533259, -0.02210601, 0.07903667, 0.00805815, 0.00029999999, 0.01065192, 0.011237378, -0.080997914, 2.1395142, -0.05781701, 0.046089824, -0.007100992, 2.6199346, 0.042164043, 0.056497946, 0.023402546, 0.0002, 0.019922089, 0.014184982, -0.07013844, 0.46556354, -0.03536798, -0.009331831, 0.037987478, 0.5767741, 0.0056785485, -0.051895186, -0.00746135, -0.00029999996, 0.038702525, -0.00091360224, 0.035809286, -2.4959803, 0.008060224, 0.016664207, -0.06803354, 2.9102554, -0.021853736, 0.06566235, 0.0134943025, 8.027239e-05, 0.06654827, 0.019544467, 0.0126715, -0.6098615, -0.105586715, -0.00423153, -0.035336275, -1.886809, -0.005668286, 0.11122001, 0.003618516, 0.00029999999, 0.03513444, 0.005226593, -0.10560951, 1.4881141, -0.046925616, -0.038690943, -0.13038652, -0.7160773, 0.09790112, -0.105352946, -0.003971788, -0.00049999997, -0.0944087, -0.09001897, 0.0606896, -0.44841582, -0.0886916, -0.029526535, 0.10405021, 0.3664301, -0.0027454598, 0.13513131, 0.03600628, 0.0004, -0.108123645, 0.02078877, -0.0862645, 1.35744, -0.067721725, -0.007946687, -0.047422376, -0.5407372, -0.010550313, -0.0774618, 0.028046876, -0.00040000002, -0.046911847, 0.02889268, 0.062151052, 1.9118783, 0.054584052, -0.0017423956, 0.035327237, -0.6236609, 0.0037423486, 0.064882934, -0.002582167, 0.0004, -0.035171635, 0.0041996213, 0.05455077, 1.4121559, 0.030322911, -0.008922948, 0.111267366, -0.44339478, -0.06423192, 0.092903376, 0.024954941, 0.00020046499, -0.09129242, -0.068329126, 0.01939971, 2.5568926, -0.09197732, -0.022995856, -0.10505643, 0.35378003, 0.032670897, 0.12573035, -0.05612469, 0.0004, 0.10246108, -0.060733505, -0.07641111, -1.934932, -0.04465384, 0.019222043, -0.021945432, -2.4982862, 0.011592402, 0.048511237, 0.018903213, 0.0002427256, 0.02677135, 0.011055705, -0.044789735, -0.39444864, -0.05289001, -0.0114530595, 0.05297786, -2.0582485, -0.02428755, 0.07118157, -0.008858838, 0.00019999998, -0.048455555, -0.023177395, -0.053385835, -1.7391114, -0.047859132, 0.00010743668, -0.10522208, -0.43775904, -0.05835009, -0.09622007, 0.02644166, -0.00049999997, -0.087561205, 0.064061545, 0.03989168, -0.2798113, -0.104463235, -0.07816623, 0.048850924, -1.6628351, 0.06462915, -0.114756934, -0.045418665, -0.00024418795, 0.06572246, -0.011394158, 0.12230971, -2.0882854, -0.09162687, -0.07103561, -0.046294868, -2.889858, 0.08458909, -0.081267, -0.042721417, -0.00012577584, -0.0058275354, -0.062724575, 0.10777951, 0.09836079, -0.07842484, -0.05375929, -0.093418404, 0.41470215, 0.073170796, -0.1113841, 0.002671003, -0.00049999997, -0.07913972, -0.04970954, 0.09504412, -0.6664409, -0.012506474, 0.040794093, -0.10542877, -1.612833, 0.010889038, 0.10601351, 0.03972863, 0.00029999999, 0.11252028, -0.005725142, -0.015562968, -1.6187252, -0.0882835, 0.031862464, -0.04321538, 1.1726744, 0.04656089, 0.086847745, -0.031085609, 0.0004, 0.026737012, -0.04603277, -0.08856002, -0.97698694, 0.031626135, -0.036767088, -0.07409374, 1.8748635, -0.054869365, -0.06868461, 0.010662542, -0.0003, -0.061895493, 0.042101286, -0.04731111, 1.5368712, -0.011683824, 0.016052064, 0.081646144, 0.95707893, 0.0048302044, -0.08217723, 0.016847694, -0.00029999996, 0.08306883, 0.007036122, 0.010504077, 2.0832915, -0.08562231, -0.09081908, 0.0075243674, -0.86504114, -0.08970975, 0.082184054, -0.028876316, 0.00037131397, 0.016027505, -0.025170946, -0.12143083, -1.940639, -0.06080867, 0.0060526947, -0.07354956, -1.2953358, -0.036854334, 0.08007614, 0.037059907, 0.0004287174, 0.06393693, 0.051913794, -0.04858902, 0.09739654, 0.073020674, -0.03927261, -0.05375412, -0.9358337, -0.036919057, -0.09028251, 0.015808582, -0.00030801396, -0.055396985, 0.008401779, -0.0813907, 2.0449715, -0.11021281, 0.044289924, 0.08208222, 0.6830398, 0.057411, 0.13235472, 0.0056704762, 0.00049999997, -0.07350555, 0.036967266, -0.118643604, 0.3186301, 0.016990092, 0.04205048, -0.13702779, -0.4294309, 0.008379491, 0.1374597, 0.04322199, 0.00039999996, 0.14308962, -0.013042757, 0.013739195, -1.3486164, 0.07936256, 0.017602734, -0.056212097, 1.9198688, -0.023944063, 0.0958139, -0.0038012366, 0.00039999996, 0.053817645, 0.016670674, 0.08120235, 0.111296475, 0.08902955, 0.032528233, 0.014927589, -1.9149015, -0.03308456, 0.090063624, 0.0010646381, 0.00035018678, -0.013650314, -0.006134781, 0.094779804, -1.0167248, -0.08278692, -0.05518436, -0.044481765, -2.1959653, 0.06858835, -0.07962121, -0.02887414, -0.00019999998, -0.01787677, -0.04992759, 0.09521172, 1.6341581, 0.013930692, 0.046670407, -0.104971334, -2.2266088, 0.035756636, -0.10224933, -0.04071496, -0.00029999999, -0.10917221, -0.027533937, -0.026729818, 0.65829015, 0.118884735, 0.039658524, -0.032420162, 1.9291166, -0.04010206, 0.123034045, 0.0034492575, 0.000257354, 0.031869892, 0.006875609, 0.12527764, 1.6039228, -0.06521554, -0.028297102, 0.07031622, -0.8690492, 0.050784316, -0.0851743, 0.012824082, -0.00029999999, 0.05626767, 0.04407695, 0.069923796, 2.2147646, -0.00542435, 0.00786028, 0.07881643, -1.5757474, -0.010687235, 0.07820597, -0.008534923, 0.0002, -0.0784831, -0.011192761, -0.0042851632, 2.326351, -0.034915004, -0.016220571, 0.09501919, 1.2728977, -0.023329213, 0.099477835, 0.008409337, 0.00019492264, -0.09352809, -0.01875798, -0.037569243, -2.5347621, -0.13020305, 0.006224712, 0.04507567, -1.2553213, 0.008282454, 0.13758841, 0.00492402, 0.0004, -0.04474331, 0.0073551396, -0.13025874, 0.6548605, -0.096577495, 0.0823813, 0.031308707, 0.10066611, 0.05514526, 0.09272026, -0.07386528, 0.00049999997, -0.06874529, -0.04135697, -0.103236675, -0.2530896, -0.025944142, 0.055558924, -0.066359766, 1.6846268, -0.014421723, -0.0710839, -0.05387581, -0.00029999999, -0.08533714, -0.004878019, 0.029279498, -1.8177309, 0.059109595, -0.018469932, -0.052056447, 1.6549883, -0.0045458768, 0.07435875, -0.031544704, 0.00010222115, 0.055048596, 0.02597297, 0.05329178, 2.3957114, 0.055375926, -0.03193995, -0.12077542, -1.8276693, 0.010401933, 0.13282895, -0.030358274, 0.0004, 0.12449362, 0.003108807, 0.0562586, -0.3956752, -0.12291853, 0.058162123, 0.016161397, -2.6414962, -0.056066234, -0.09640751, -0.07946797, -0.0002, -0.022374114, -0.07794708, 0.11034782, -0.774747, -0.013150364, 0.011537788, 0.1268617, -2.400258, 0.061226897, 0.112410806, -0.0038767837, 0.00029999996, -0.11170622, 0.060254823, -0.0170594, 0.0123939635, -0.053356014, 0.08165565, 0.08843401, -0.25786462, -0.04470285, -0.103257276, 0.06837159, -0.00024940274, 0.111758105, -0.0023181702, 0.06956893, 2.6516397, 0.0008978346, -0.06711799, -0.07366699, -1.402919, -0.031392764, -0.0701099, 0.0634945, -0.00015308674, -0.09458404, 0.022632599, -0.021773312, 2.5042977, 0.017726243, -0.046149094, 0.14032482, -2.459525, -0.030862235, 0.13705555, 0.048972532, 0.0002, -0.14445868, -0.03494348, 0.006756454, -0.93158495, -0.09366338, 0.014677567, -0.0007933298, -1.7557764, -0.012786715, -0.083883286, -0.0422964, -0.0004, -0.007249834, -0.041677993, 0.084848545, -0.958598, -0.046644907, 0.0012317289, 0.025148492, -0.066096425, 0.0139877135, 0.045289464, 0.023725929, 0.00049999997, -0.020935798, 0.027514698, -0.040178914, 0.3801791, -0.075284086, 0.028472371, 0.08707016, 1.1278993, 0.034043044, -0.09593391, 0.060805738, -0.0004896095, 0.0850468, 0.06360496, 0.05273549, 0.16982567, -0.018757626, -0.0011913205, 0.11022059, 0.16852044, 0.07171507, 0.08477403, 0.013120941, 0.00049999997, -0.08370751, 0.07289576, -0.013457669, 0.4171359, -0.039686535, 0.03281691, 0.08076013, 0.34837976, 0.0014267452, -0.08847918, 0.03665468, -0.00029587708, 0.0871614, 0.016390584, 0.036171887, -2.577154, -0.07558507, -0.0101989, 0.05554243, 1.5657784, -0.025813952, 0.08877639, -0.01882756, 0.00025729457, -0.050225675, -0.030279037, -0.0739097, 1.9594765, 0.0073736995, 0.0041343505, -0.06140415, 2.8585105, 0.0130743, 0.060326442, 0.005631812, 0.00013745412, 0.06013839, -0.013622108, 0.006304523, -0.36981508, 0.0696185, 0.018867172, -0.08897414, -1.5750761, -0.07570368, 0.07412384, -0.043516804, 0.0003, 0.050411507, 0.085257195, 0.057523854, -1.7117076, -0.0031749972, -0.0038565244, 0.087927066, -1.2244998, -0.064542845, 0.059918698, 0.00029745756, 0.00039437134, -0.059835292, -0.06442819, -0.0049864748, -1.6799666, 0.026593806, -0.0381543, 0.04583921, 0.7219067, 0.004424792, -0.048789285, -0.04317686, -0.00029999999, 0.05947609, 0.02068984, -0.017284095, 2.251776, 0.07789728, -0.009015735, -0.042854175, -0.95742464, -0.03448938, -0.06651868, -0.048698027, -0.00039999996, -0.026986055, 0.058989245, -0.06146358, 1.4103045, -0.05176559, -0.013293549, -0.030295104, -0.44939226, 0.016145155, 0.03895198, -0.044679593, 0.00040000002, 0.028876388, -0.04560938, -0.029327944, 1.5930494, -0.1156417, -0.069795676, 0.028683808, 0.85117245, 0.06771128, -0.119145945, -0.016930137, -0.00039999996, 0.033307314, -0.0001130658, 0.13400674, -1.4661684, -0.059189536, -0.0041183727, -0.0063103563, 2.2214754, -0.002500092, 0.057869956, -0.014317848, 0.00029999999, 0.0071085277, -0.013938804, -0.057579175, -0.71051115, 0.043070003, -0.022063665, 0.09062202, 1.1747619, -0.036770944, -0.09574979, -0.0058359625, -0.0004, 0.08571495, -0.029989256, -0.048039265, 1.0846697, 0.020207666, -0.031551417, 0.13967621, -1.1190237, -0.02518127, -0.13964495, -0.02790125, -0.00029999999, 0.14096399, -0.02042264, -0.025007233, -2.107072, 0.043445803, -0.044802755, -0.059601586, -2.2450917, -0.011881496, -0.07225958, 0.045656953, -0.0003102629, -0.07361023, -0.014779734, -0.042547237, -0.038644627, -0.0299193, 0.021261867, -0.07088765, -2.0159686, 0.0100282505, 0.07692087, 0.018838871, 0.00010321971, 0.07332502, -0.0018444145, -0.031501237, -2.0992858, -0.010002121, 0.020164192, -0.049043357, -1.8841957, -0.02601223, 0.041624922, 0.02241915, 0.00012923375, 0.046208326, 0.027796758, 0.0020047086, 2.1905446, 0.0768058, 0.0032376132, -0.048541676, -0.97918415, -0.033267096, 0.069686614, -0.047989435, 0.00039999996, 0.035497572, 0.058302697, 0.06005521, 1.66429, 0.018847223, 0.06155722, 0.09971365, -1.302811, 0.06794266, -0.088027336, 0.041500695, -0.00039999996, 0.09547723, 0.05048981, -0.049215857, 0.46075588, -0.00037671364, 0.078724, -0.11698136, 2.5838928, -0.00035403774, -0.11698194, -0.07872326, -0.00029326868, -0.14100349, 8.339974e-05, 0.00051019527, 0.32617298, 0.06419626, 0.029282346, -0.03742176, -0.90911615, -0.035613026, 0.07129196, -0.005307811, 0.00049999997, 0.031457208, 0.020952446, 0.07035939, -0.08514351, -0.05635243, -0.054555845, -0.02698935, -0.37687188, 0.03181851, -0.057758916, 0.05031751, -0.00029999999, -0.05188784, 0.023831245, 0.060167145, 2.3858426, 0.08126948, -0.038575504, -0.089169614, 0.5232301, 0.04453247, -0.0885314, 0.07888643, -0.00029999999, -0.086349, -0.08196426, -0.04324034, -2.511856, 0.04232243, 0.0047801347, -0.05010346, 0.9091135, 0.003669943, 0.064995565, 0.009300916, 0.00049999997, 0.050196994, -0.008782138, 0.04156357, 0.3307363, 0.04871244, -0.051446915, -0.033535406, -0.8774367, 0.045294456, 0.059003558, -0.024724547, 0.00040000002, 0.04147072, -0.0040131705, 0.06639566, -1.6043113, 0.07130365, -0.024235552, -0.034851745, -2.1286426, 0.021199374, 0.07935556, -0.01181097, 0.0002, 0.03677762, 0.0012451913, 0.07437792, -1.6625546, 0.067590624, -0.029223049, -0.041420892, 0.77437156, -0.022592897, -0.0791661, 0.01898575, -0.00019999998, -0.045378823, -0.0041123237, -0.07114787, 2.63763, 0.08655732, 0.014095277, -0.078067005, 1.4032773, -0.00927307, 0.11654826, 0.01076163, 0.0004, 0.07878542, -0.0017679551, 0.08703466, 1.0526026, 0.047194704, -0.03119699, -0.01866465, 1.7062781, -0.031735945, -0.050273973, 0.003784043, -0.00040000002, -0.017732756, 0.006945304, -0.056447092, 0.92541033, -0.06229854, -0.015066544, 0.02127592, 2.3025637, -0.016906058, 0.06530188, -0.0032595298, 0.00010286182, -0.01984566, -0.008332991, -0.064011596, 1.7797414, 0.025506938, -0.07578176, -0.07666047, -0.44383445, -0.013353181, -0.080391966, 0.07502754, -0.00029999999, -0.10696446, -0.008035119, -0.027646849, -2.4127834, -0.062223066, 0.0101924995, -0.12091974, -0.63390017, -0.030513693, -0.13283755, 0.0045047235, -0.00039999996, -0.117449485, 0.029111711, 0.06289121, 1.8629127, 0.09218423, 0.09490164, -0.00338151, 1.4850278, 0.08898085, -0.08796947, -0.043121528, -0.0003, -0.03316871, 0.027762162, -0.12507911, 1.9415467, -0.03038009, 0.0066097467, -0.044130884, -0.7143252, -0.015785089, 0.048343875, 0.018107347, 0.00040000002, 0.041737933, 0.023094513, -0.02527376, 1.2821449, 0.09461986, 0.061395433, -0.08749574, -0.19103672, 0.03558049, -0.12828045, -0.05153628, -0.00035051387, -0.10079151, 0.012351696, -0.10033108, -2.1583376, -0.054281756, -0.048071276, 0.070534, 0.87692463, 0.007888122, -0.086055785, -0.052579314, -0.00027507433, 0.08499217, -0.022714742, 0.049927678, -2.4768717, -0.05588629, 0.065721996, -0.056214977, 2.4597902, 0.038768645, 0.07886721, 0.053663176, 0.00028379474, 0.07730778, 0.007960178, -0.0675494, 0.18261804, -0.0010504998, 0.0459446, 0.06556502, -2.2336617, -0.011117585, -0.0650191, 0.045383908, -0.0003, 0.07928479, -0.0085084485, 0.0072326027, 0.7566768, -0.08714747, -0.0066168574, -0.011702963, -0.68458664, -0.0031639559, 0.08469719, -0.024327017, 0.00039999996, 0.013066424, -0.023622701, -0.08394439, -1.6037452, -0.06787248, -0.023131102, 0.13199276, 0.908125, -0.05067193, 0.14140204, -0.0012761744, 0.00014585299, -0.124054365, -0.045102395, -0.07169445, 2.7286515, -0.006833256, 0.017179715, -0.13070731, -2.5972843, 0.04347949, 0.12385318, 0.014005764, 0.0002, 0.124455124, -0.04232594, -0.012069575, 0.7809639, 0.1302764, -0.0048477794, 0.026707575, 2.694914, -0.014894587, -0.12222879, 0.050467905, -0.0002, 0.022692427, -0.052396156, -0.12020162, -0.8215817, 0.061816607, -0.04899496, -0.043183044, -0.23767805, -0.04853847, -0.07424815, 0.01475815, -0.00049999997, -0.043695524, 0.013163577, -0.07748546, -0.34546638, 0.124248266, 0.06351065, 0.017761433, -0.7003145, -0.062660895, 0.12550457, -0.0104365535, 0.00049999997, -0.02055928, 0.0013064838, 0.13914853, 0.451741, 0.041394416, -0.02093459, 0.12310301, -2.7090483, 0.059492912, -0.110718794, -0.03883355, -0.00010914676, 0.10978707, 0.06789105, -0.025371432, 1.0504352, 0.005136042, 0.0825977, 0.09348675, 1.9516594, 0.028867392, 0.090239435, -0.08131451, 0.0002, -0.12136234, 0.024959987, -0.015385235, -1.7202013, -0.12685816, 0.0019876729, -0.00012254275, -0.40419388, 0.0019619642, 0.12340467, -0.029400654, 0.00049999997, -0.00034142126, -0.029398926, -0.123420194, -0.70053387, -0.04345561, -0.023280887, -0.07844379, 0.07734273, -0.049725216, 0.07805139, 0.0043819156, 0.00019999998, 0.06498331, 0.044156525, -0.04910385, -2.794312, -0.05760998, -0.0075770286, 0.09227299, -0.51487595, 0.016054984, -0.107849434, 0.0011677212, -0.0004, 0.091180876, 0.014202631, 0.058094382, -1.2911348, -0.026008485, 0.0091534825, -0.13771665, -0.092857204, -0.009152008, -0.13994637, -0.0075732814, -0.00024290505, -0.13771674, 0.0075715, 0.02651175, -2.668233, -0.013414477, 0.04587665, -0.09156465, -0.7906684, 0.066091634, 0.07442157, 0.027604824, 0.00049999997, 0.07823455, -0.055004235, -0.039020352, 0.23112468, 0.05654365, -0.06595522, -0.077207945, 0.8431096, -0.024305845, -0.09459295, 0.063005924, -0.00045901898, -0.098592006, -0.014506125, -0.05981246, 0.88224864, -0.088653274, 0.063171804, -0.0768575, 1.1168399, 0.009246973, 0.10773139, 0.07788194, 0.0004, 0.099056765, 0.04648039, -0.07605578, 1.6135576, 0.008315915, -0.04283083, -0.11254686, -0.18684295, 0.039019924, -0.10576983, 0.043134887, -0.00049999997, -0.11392418, -0.039353434, 0.0065586637, 0.121981226, 0.03647732, -0.028356833, -0.13304056, -1.4510024, -0.07162086, 0.11309927, -0.043743614, 0.0004, 0.11564755, 0.078986965, 0.014872855, -1.4392864, 0.026317526, -0.023843138, -0.051597387, 1.5596942, 0.030908583, -0.04171503, 0.035041593, -0.00039999996, -0.047701623, -0.04018406, -0.005761432, 0.2613072, -0.015388629, 0.042116553, -0.059184175, 0.18940024, -0.04649383, -0.052192762, -0.025052344, -0.00049999997, -0.055811234, 0.0318668, 0.03718862, 0.6389541, -0.031578157, -0.012073547, -0.051575866, 0.48809025, 0.025267897, -0.056206793, -0.002313065, -0.0004, -0.046555065, -0.022316951, 0.033728335, -1.4831451, 0.11717662, 0.03985068, -0.044969365, -2.822023, 0.04368207, -0.12417016, 0.0037860004, -0.00014639094, -0.041257683, -0.018286087, -0.12370977, -0.5646095, 0.025538804, 0.042908955, 0.06882156, -0.8318496, -0.022996299, -0.06536055, 0.049284715, -0.00035545995, 0.07777373, -0.033416092, -0.008026536, 1.9908408, -0.033490438, -0.042295713, 0.02821998, 0.829813, 0.038444318, -0.043179117, -0.019091941, -0.0004849491, 0.033276554, 0.007317155, 0.05045825, -0.8008293, -0.05157075, -0.005256449, 0.015039607, -1.7936246, 0.0014634905, 0.049174692, 0.022205196, 0.00014115646, -0.015864376, 0.021623654, -0.046841238, 2.2539644, 0.06000426, 0.020675626, -0.08569251, -1.1039865, -0.05058566, 0.09297073, -0.012989795, 0.0003093193, 0.072192654, 0.047960017, 0.062122934, -1.9570248, -0.08014125, 0.014676977, 0.024637027, 2.1552823, 0.005901017, 0.08000027, -0.028463148, 0.00035314518, -0.028063761, -0.025091019, -0.07634056, -0.14778936, -0.011551484, -0.06484171, -0.10278422, -1.8225397, 0.06042654, 0.0865153, -0.061369497, 0.00039999996, 0.10544039, -0.05668452, 0.023909587, -0.2707135, -0.06472719, -0.059589982, 0.062593214, -2.5895886, 0.07584448, -0.07665762, 0.0054506254, -0.00022246299, 0.04143059, 0.047234803, 0.08781153, -0.7584723, 0.034319967, 0.009460385, -0.05086938, 2.7122738, 0.02583038, -0.056024402, 0.0070078587, -0.00020986919, -0.04483284, -0.025036374, -0.034903415, -0.07590328, 0.0355105, -0.06930102, 0.07969161, -2.0152385, 0.0009175497, 0.08427523, 0.07287813, 0.00023911739, -0.10560558, -0.022570662, 0.027429964, -1.5376548, 0.016427403, -0.04171776, -0.07625093, -2.2731996, -0.03480642, -0.07426445, 0.033132244, -0.00029999996, -0.0796435, 0.023850847, -0.030207347, 0.9149018, 0.036765743, 0.04672934, -0.038711935, -0.5453554, -0.01986695, 0.052037835, 0.043946926, 0.0004, 0.057337146, -0.011933024, 0.040050197, -1.3686782, -0.11956575, -0.049985293, -0.056530077, -0.26216406, 0.033769842, -0.13016449, 0.043668684, -0.0004, -0.067481674, 0.023427034, 0.122014545, -1.4488275, 0.06255824, -0.018841792, -0.02861469, -2.4381387, 0.01940257, 0.06858119, -0.0027399228, 0.0002, 0.028237455, -0.005380866, 0.06527664, -1.1233552, -0.0070565837, -0.05248671, -0.13941133, 0.72751486, 0.0834513, 0.11421812, -0.047225814, 0.00049999997, 0.12339475, -0.08024674, 0.023966065, 0.54005694, 0.03013742, 0.006986766, 0.13503605, -1.4025834, 0.037566338, 0.13247035, -0.015238087, 0.0003689884, -0.12989351, 0.03993262, 0.026923582, 1.6017603, 0.0965677, -0.054861274, -0.0064075333, 0.809971, 0.05017105, 0.09252111, -0.036039487, 0.0004, 0.023101563, 0.028393993, 0.105053484, 1.2091155, -0.054811005, -0.07249842, -0.113747165, -0.3191011, 0.09640467, -0.10692976, 0.021699032, -0.0004, -0.09434287, -0.06714673, 0.08825768, 1.8119234, -0.009954832, -0.025761902, 0.045050547, -1.3360504, -0.024971668, 0.04259008, 0.018836876, 0.00029999999, -0.045493323, -0.017740844, -0.020197667, 1.9919822, -0.03331278, 0.037364732, -0.03228411, 1.6692774, -0.032840014, -0.045847066, -0.01917572, -0.00039999996, -0.036877096, 0.007074725, 0.046240203, 0.12871736, -0.04744897, 0.059210595, 0.106603764, -0.81376934, 0.055400778, -0.091435924, 0.07544463, -0.00029999999, 0.108632445, 0.07249312, 0.008087341, -2.2567554, -0.086936906, -0.025701633, 0.11336125, -0.4542021, -0.0600525, -0.11127375, -0.0712827, -0.0001, 0.099524096, -0.089593254, 0.056012284, 2.8875751, -0.08260965, -0.012243081, 0.022270761, 1.6633723, -0.0057131946, 0.08274795, 0.02429754, 0.0004, -0.024763674, 0.021751279, -0.07989916, -0.93068755, 0.09434577, -0.021055618, 0.02066901, 0.5483388, 0.0016339498, 0.07287038, 0.066775076, 0.0004, -0.029459761, -0.0633896, 0.06989675, -1.4229684, -0.1004683, 0.0089515, -0.009717643, 1.1567173, -0.013206666, -0.06588512, 0.07584969, -0.00039999996, 0.00038210748, 0.07646869, 0.06648935, 1.0381904, -0.013909155, -0.08918688, 0.086119965, -0.79266256, -0.007948096, -0.08584052, -0.09018117, -0.0001, 0.123724595, -0.015540833, 0.0038883737, -2.808743, 0.0017050382, 0.07945013, -0.12086711, 0.16075921, 0.07214409, -0.105233505, -0.06815589, -0.00049999997, -0.12536511, -0.059478354, -0.040865675, -0.13535959, -0.028726228, 0.035832066, -0.061988067, -2.8721747, 0.023847898, 0.06776562, 0.028120289, 0.000100000005, 0.06751099, -0.008691144, -0.03630953, 0.64886427, -0.042349238, 0.0025208953, -0.13052917, 0.3317106, 0.023942053, 0.13504753, -0.005159667, 0.00043820628, 0.12833938, -0.024361636, -0.04210928, 1.2302169, -0.09840634, -0.02919194, 0.074378304, 0.18164125, -0.016118078, -0.108319074, -0.06383804, -0.0004328194, 0.07825927, -0.05901625, 0.08037838, 1.2750634, 0.107046, 0.03725095, 0.0024913305, -0.30488864, -0.03292093, 0.09774987, -0.04705172, 0.00029999999, -0.017608307, 0.043703754, 0.10311458, -2.2844193, 0.0059364564, 0.019679407, -0.06750557, -0.925951, -0.008368664, 0.06746195, 0.018930744, 0.0002, 0.06981581, 0.006413169, 0.008009204, 2.608687, -0.02830845, -0.03781675, 0.030866427, -1.2841026, -0.026886122, 0.04186034, 0.02662819, 0.00040000002, -0.04074284, -0.0013481748, -0.03901813, 1.0267556, 0.06488996, -0.014707587, -0.02181421, 2.2928019, -0.0063821767, 0.04752348, -0.051026136, 0.00024532835, 0.025523327, 0.04927561, 0.042700738, -1.05811, -0.07409579, -0.020879814, 0.09243465, 1.1351988, 0.070708394, -0.090300865, 0.03628217, -0.00029999996, 0.06309084, 0.076681845, 0.067895204, -2.0113645, -0.061919782, 0.01810782, 0.024600536, 1.9811851, 0.019468402, 0.06624245, 0.00024279658, 0.00029999999, -0.023538496, 0.007154333, -0.06451274, -1.3172429, 0.09276628, -0.016085183, 0.07406503, 0.20950133, -0.04054799, 0.08836811, 0.06997774, 0.00049999997, -0.06403298, -0.0792609, 0.06298756, -0.70448846, 0.108513385, 0.03445141, -0.0726458, 1.0567509, -0.075051114, 0.08717218, -0.07076589, 0.00029999999, 0.028838249, 0.097229525, 0.08918658, -2.1310606, 0.009795731, -0.019102681, 0.13175568, -1.1113396, 0.00979109, 0.13185748, 0.018389488, 0.0004005654, -0.13277274, 0.008314233, 0.011076801, -0.8039254, -0.09952546, 0.037694752, 0.102473825, -1.1269143, 0.015463515, -0.13239285, 0.06371898, -0.0004, 0.108086355, 0.053650122, 0.08524144, 1.6925871, -0.10235027, -0.043123953, 0.010680221, 0.061919928, 0.021040022, -0.07067473, -0.08373603, -0.00049999997, 0.039128736, -0.07479796, 0.07296252, -0.20433909, 0.09363921, -0.04714941, -0.01298506, -1.678628, 0.04080573, 0.09078738, -0.035391036, 0.0004, 0.026954982, 0.026354633, 0.09868558, -0.28968626, 0.039418407, 0.03567188, -0.117271185, 2.217634, 0.08075422, -0.100231715, -0.003344819, -0.0002, -0.09221588, -0.072525494, -0.053057585, -1.753526, -0.040831212, -0.014354983, -0.05115273, 2.2779107, 0.0053516785, -0.06529732, 0.014052554, -0.00029999996, -0.05285855, 0.0044776318, 0.040936284, -0.33171442, 0.032347675, 0.0992486, -0.10792787, -1.3636838, 0.05821991, -0.11013108, -0.08382522, -0.00040000002, -0.13457024, -0.02378951, -0.06220925, 0.29555705, 0.03885186, -0.04864765, -0.03357529, 0.8834065, -0.008552695, -0.04438254, 0.054409597, -0.00034572475, -0.058487132, -0.025825545, -0.030259833, 1.9876431, -0.069924936, 0.01183323, -0.02221861, 1.586964, 0.00524451, 0.071003936, 0.021310234, 0.00029999999, 0.024620866, 0.018482575, -0.06764168, 1.6189551, -0.04893276, -0.0025574202, 0.09633349, -1.1902701, 0.06531866, -0.08031614, 0.031046532, -0.000100000005, 0.07085304, 0.07227639, 0.037908684, 2.6696372, -0.042406727, -0.053570133, -0.046047553, -0.36887044, 0.029609626, -0.062241577, 0.045141164, -0.0004, -0.06413584, 0.0066855676, 0.051287077, 1.4863772, 0.05105632, -0.02660494, 0.03731617, -1.4324281, 0.03202185, 0.060674224, -0.00055429025, 0.0004, -0.032785986, 0.017829286, 0.05756964, 0.36564797, 0.12994644, 0.0031191346, 0.04455861, -2.593902, -0.014791755, 0.13234462, 0.033873037, 0.00019999998, -0.04214739, -0.036830008, 0.12549272, -0.6434064, 0.06536924, -0.009820143, -0.015258329, 1.0872216, 9.955932e-06, 0.05706664, -0.03668499, 0.00049999997, 0.018145293, 0.035346195, 0.054988954, -0.16650337, 0.09359573, -0.034916714, 0.020861054, 2.867943, -0.038409095, -0.093095765, 0.016505811, -0.00014297546, 0.0133829145, -0.022989634, -0.09852357, -0.2635377, 0.024919469, 0.059214003, 0.095378265, -2.0510402, 0.035868634, -0.09677831, 0.05071181, -0.00029999999, 0.106380224, 0.018760297, -0.03944097, 1.2292805, -0.029287536, -0.045681752, -0.04641641, -1.4788086, -0.043399613, 0.05163651, -0.023435224, 0.00039999996, 0.04855697, 0.018598747, -0.04894255, -1.1892476, 0.03321595, 0.036245894, 0.055072725, 0.5502776, 0.048744597, -0.055023625, 0.006814298, -0.0004, 0.044392943, 0.033297237, -0.04868911, 1.8817148, -0.03132566, 0.051331747, -0.09951221, 0.56858444, 0.044684153, 0.100479364, 0.03776442, 0.00029999999, 0.10266916, -0.02806913, -0.04679845, -2.3460078, -0.057948593, 0.08025688, 0.028271474, -0.4877318, -0.04952008, -0.059624165, 0.06775841, -0.00040000002, 0.06919685, 0.024541287, 0.07216651, -1.6201428, -0.06741246, -0.05449983, -0.044018917, 1.3563973, 0.063398115, -0.07345199, -0.0061496696, -0.00019025615, -0.029808976, -0.032968298, 0.086468786, -2.4973464, 0.005271189, 0.0343785, 0.043662675, -0.5812979, -0.009950722, -0.04256594, 0.034716275, -0.00049999997, 0.05467443, -0.011061432, 0.002108808, 0.14879423, 0.053188626, -0.024760239, 0.120779596, 1.2275805, -0.03782471, 0.12191923, 0.041651018, 0.0002, -0.11734594, -0.05052175, 0.04131938, 2.2903204, 0.12116459, 0.025092995, 0.010995591, -0.08222767, 0.023694199, -0.121009186, 0.015059221, -0.0003546757, 0.013753048, -0.012591141, -0.12281585, 2.1554766, 0.020913651, 0.0140533745, 0.07055317, 0.45267507, -0.009147874, 0.07339714, -0.011908207, 0.00049999997, -0.071355194, -0.005290722, 0.022205243, 0.36266172, 0.09184115, -0.06659125, -0.078268416, 1.1454965, -0.061796967, -0.11965866, 0.029292967, -0.0003619261, -0.082106486, 0.015573997, -0.10959524, 1.8114575, 0.0341966, -0.045745295, 0.07019168, -1.4397513, 0.03952594, 0.07565489, 0.030049153, 0.00040000002, -0.07387288, 0.019303387, 0.048570424, 0.6646967, -0.025716666, 0.01936178, -0.049019437, -1.0262345, 0.009327115, -0.052010763, -0.02543651, -0.0004, -0.051872805, -0.018950792, 0.019728394, -1.3151512, 0.0030646452, -0.028814519, 0.054780208, -1.1765199, 0.014150874, 0.053720884, 0.027465632, 0.0002, -0.060256958, 0.011150433, 0.009236195, -2.437015, 0.04690939, -0.023767961, 0.02665042, -1.5013692, 0.012032612, 0.051946357, 0.025148436, 0.00029999999, -0.033621084, -0.01457092, 0.046184007, 1.7892863, 0.050029013, 0.022247776, 0.0021023522, 2.7886906, -0.020810466, 0.044504352, 0.024260523, 0.0002, 0.008142971, -0.022949617, 0.049084544, 0.38072044, -0.06472889, -0.048182752, 0.057849094, -0.43094465, 0.0024431988, -0.077594705, -0.061895195, -0.00048493006, 0.075247094, -0.03892823, 0.051772494, 1.0700958, 0.0097347945, 0.029773016, 0.042221513, 1.5697966, 0.00039661519, 0.042920172, -0.030357135, 0.0004, -0.0516617, 0.0059397374, 0.0077228895, 0.5537684, -0.009964573, 0.05513695, -0.0554991, 2.202283, -0.01201197, -0.056362376, -0.05383791, -0.0003, -0.07730424, 0.0016507116, 0.01551951, -0.82945687, 0.04816587, 0.049612854, 0.09981095, -1.6046621, -0.008452201, 0.11004417, -0.05062068, 0.0004, -0.11114057, 0.013132297, 0.047105554, -0.6088245, -0.0010483116, 0.03561104, 0.048625715, -1.3532065, -0.027170368, -0.04369025, 0.0314108, -0.0004, 0.053799417, -0.021371024, 0.016810924, 1.2741358, 0.06881384, 0.016766515, 0.018055301, 1.0417981, -0.018551357, 0.0705048, 0.0052323225, 0.00040000002, -0.016215945, -0.009508645, 0.07063343, -1.6679285, 0.063612364, 0.0033844404, -0.03482497, -0.85519594, 0.022239922, -0.05969534, 0.034822673, -0.00034359595, -0.02701147, -0.04117983, -0.053342, 2.0056405, -0.06912771, -0.048774756, 0.015819903, -2.5155895, -0.04127581, 0.0686863, 0.031406824, 0.0002, -0.030422896, 0.017638193, -0.07855716, -0.7800457, 0.056504317, 0.023464702, -0.009527688, -1.6132288, -0.024956416, 0.05555196, -0.011192129, 0.00029999999, 0.0043065427, 0.014053263, 0.060150374, -1.7480097, 0.0075623835, 0.012553632, 0.097541414, 1.8497993, -0.022727333, -0.09495814, 0.0139832115, -0.0002, 0.09568381, -0.023547146, -0.004387825, 2.0822327, 0.070525125, 0.022669422, -0.09159453, 1.3147842, 0.030488808, 0.10274279, 0.048904084, 0.000113367154, 0.08929667, -0.052983712, 0.05564249, 2.58746, -0.05381614, 0.021078652, -0.05878639, -1.528708, -0.031173801, 0.058175478, 0.049397726, 0.0004, 0.05411418, 0.05447597, -0.030005863, -1.3589683, 0.12069213, -0.076180644, -0.030704914, -0.21297367, -0.08147989, -0.10416455, -0.061835658, -0.00033898663, 0.010359095, 0.068257816, -0.12863295, 2.1799695, -0.0796327, 0.048475906, -0.040702634, 0.9643866, 0.015046953, 0.07803485, 0.063499086, 0.00040819327, 0.06148338, 0.04368791, -0.06825792, -0.948765, -0.057065792, -0.0015160971, -0.081867546, -0.10604802, 0.0114936745, -0.09894854, -0.00617925, -0.00049999997, -0.0810709, -0.012961061, 0.056750517, 0.4933233, 0.06777439, 0.07680346, -0.037536364, -1.377481, 0.07270159, -0.07698399, -0.026250012, -0.0003575258, -0.044969197, -0.008707072, -0.09901049, 1.6549451, 0.024252204, 0.04417959, 0.08307289, -2.7404838, 0.03478006, 0.075502604, -0.050307218, 0.0002, -0.0874259, 0.042292245, 0.0030312834, 0.08021975, 0.058527213, -0.04703272, 0.0045366636, 0.26085597, -0.038096886, -0.051242746, -0.039760545, -0.00040000002, 0.02795147, 0.028639112, -0.06369152, -1.4344715, -0.028493237, -0.0035283796, 0.06337418, 1.0343179, 0.0033110871, 0.069289625, 0.0053463997, 0.00049890723, -0.0633859, 0.005205557, -0.02820868, 0.42333013, -0.034519166, 0.028609227, -0.038622126, 0.67921275, -0.030290838, -0.049868222, -0.009866799, -0.00036841544, -0.03731784, 0.014014317, 0.0437345, -2.0190773, 0.075536326, 0.032148246, 0.06692318, 1.3353167, 0.010933862, 0.089612916, -0.05538891, 0.0002, -0.07343481, 0.046410896, 0.060591355, 2.3801022, 0.07863237, 0.048637886, 0.062215228, -1.0235741, 0.027942471, -0.09925355, 0.04227741, -0.00029999999, 0.073861994, -0.014230888, -0.082227185, 2.099986, 0.012687858, -0.0543367, 0.081427395, -0.6937062, -0.06025683, -0.069045044, -0.03668481, -0.00049999997, 0.07714928, -0.044990946, -0.04204381, 0.252241, 0.035026107, -0.043531746, 0.12624262, -2.2589545, -0.035239164, 0.12287362, 0.052147135, 0.00024678995, -0.1288038, -0.045454487, 0.020062815, 1.1244191, -0.02248155, 0.051944092, -0.07411016, -1.1247536, -0.051757026, -0.07002178, -0.033377875, -0.0004, -0.07424091, 0.03308602, 0.045711327, 1.5266047, 0.064272, -0.008963447, 0.0038434595, 2.393227, 0.009325939, 0.048989877, -0.041701604, 0.0002, 0.0028534948, 0.041781027, 0.049721308, 1.2814795, 0.028958999, -0.031269845, -0.05579843, 0.6365641, 0.0505308, 0.04873752, -0.0010877226, 0.00021315122, 0.039216135, -0.039708212, 0.042605676, -2.4947855, 0.044223256, -0.022194557, 0.05818145, 0.04713132, 0.0077419733, 0.072766595, 0.021873755, 0.00037632414, -0.061787877, -0.0067676487, 0.044382814, 2.1145418, -0.04737115, -0.0066159205, -0.03144873, 2.614153, 0.020045083, -0.049867842, -0.019703079, -0.000100000005, -0.025119472, -0.027317509, 0.04358422, -1.3771572, -0.04383853, 0.067528896, -0.108230285, -0.18617475, -0.059860855, -0.111949965, -0.04560317, -0.00040000002, -0.112652674, 0.033208735, 0.06634997, -1.6098222, -0.042730648, -0.020763805, 0.10545413, 0.111205764, 0.019989645, 0.1099674, 0.02975238, 0.00034261507, -0.105603606, 0.029217368, -0.037038356, -2.177793, 0.0139564015, -0.0021722764, 0.08336156, 1.0130353, -0.038187873, -0.07530405, 0.004431107, -0.0004, 0.074132, -0.03838267, -0.013411384, 1.1086415, -0.035942018, -0.054274015, 0.0465118, 2.127191, -0.037566416, 0.05863451, 0.039390393, 0.000100000005, -0.06080938, -0.004143616, -0.051825613, 2.0026612, -0.10320503, 0.019647563, 0.030110335, -0.36202654, 0.002648613, -0.08712322, 0.06592779, -0.00049999997, 0.035855874, 0.06298783, 0.0817975, 0.78964376, 0.0016495866, -0.013834928, 0.09552051, -0.8138245, 0.017438633, 0.094004914, 0.01331425, 0.00029999999, -0.094928734, 0.017028514, 0.004105732, 2.247015, 0.05214739, 0.011316305, -0.029301252, -1.1168647, 0.010955715, -0.059775192, -0.003587645, -0.00049916026, -0.029437974, -0.002200017, -0.053240374, 0.006407344, -0.04903853, 0.008350516, 0.012014783, 2.7789254, 0.0038717524, -0.033118464, 0.03882061, -0.00011302776, 0.014110129, 0.038109034, 0.031104157, 0.84590095, -0.13049322, -0.029040111, 0.027684309, -0.80089074, 0.03622167, -0.1257832, 0.038791854, -0.0004928887, 0.017255109, 0.044423968, 0.12793358, -0.80196875, 0.08249946, -0.01438909, -0.027234355, 1.2767749, 0.005587496, -0.06957959, 0.053687785, -0.00039999996, -0.030290857, -0.052024532, -0.064271525, -1.5181041, 0.045405142, 0.043825604, 0.077353805, 1.834667, 0.039742026, -0.08770188, 0.026360584, -0.00040000002, 0.07952901, 0.018804988, -0.0573361, -0.34201145, 0.05620936, 0.075814806, -0.063415535, 0.8014748, 0.0384202, -0.08397511, -0.06633985, -0.0004, -0.091067545, 0.011366957, -0.06712971, 1.7840405, -0.09750223, -0.083014295, 0.03413547, -1.6218219, 0.05991148, -0.09771988, -0.06651864, -0.0004, 0.06683726, -0.033507314, 0.10942271, 0.7478462, 0.017601907, -0.036809985, -0.09252556, 0.52468663, -0.050922703, -0.084072255, 0.02375951, -0.0004, -0.08557355, 0.04245776, -0.03317059, -1.512217, 0.024135463, -0.023540994, -0.045961913, 1.7826412, 0.035980728, 0.04405795, -0.0036716524, 0.0004, 0.037041366, -0.02745753, 0.033514436, -0.7809646, 0.04432351, -0.007800494, -0.13203092, 2.8546734, -0.0227584, -0.1376205, 0.00049061, -0.00013483217, -0.1302884, 0.021385457, -0.04500201, -0.4101351, -0.103674605, 0.006591314, -0.0840033, -2.1231394, 0.054645553, -0.096123025, -0.074984364, -0.0003562784, -0.06413938, -0.09254916, 0.07189725, 0.36558637, -0.031137573, -0.032182645, -0.099795036, 1.5415857, -0.035502523, -0.094717756, 0.041622605, -0.00029999999, -0.098662786, 0.04423967, 0.016517552, 1.9509467, -0.10099501, 0.05554604, -0.013833512, -1.3994582, 0.05689273, 0.1004999, -0.011819804, 0.0004, 0.0063203485, -0.017062457, -0.11465446, -1.2368823, -0.092838414, 0.06186415, -0.05262689, -1.3066835, 0.071697, 0.09997529, -0.008956468, 0.0002, 0.038161524, -0.037329692, -0.11120218, -2.4660475, -0.060870107, -0.020511203, -0.011612164, -1.1710691, 0.023567524, -0.05344437, -0.029137488, -0.0004, -0.00035174156, -0.031364184, 0.05724409, 0.817299, -0.035324376, -0.01902578, -0.118922114, -2.1907206, 0.07408376, 0.09427769, -0.03708872, 0.0003, 0.09495286, -0.08063496, -0.015304191, 0.8067329, -0.029143104, -0.017186698, 0.042303782, 1.0423198, -0.016398145, 0.050777145, 0.009332465, 0.00046891352, -0.042615637, -0.007785342, -0.032520894, 0.58398765, -0.03701763, -0.029691245, -0.03686368, 0.93549484, -0.020866264, 0.052241668, -0.021123774, 0.00042213674, 0.042486466, -0.00021209611, -0.042493068, -0.9267942, 0.08172816, -0.0032106831, 0.03607684, -2.3255692, 0.006117602, 0.08898674, -0.005939327, 0.0003, -0.035699043, 0.00789887, 0.08157528, 0.41699293, 0.041107193, 0.056775786, 0.086846024, 1.768134, -0.017520808, 0.09587031, -0.054382242, 0.00039999996, -0.102267995, 0.006396604, 0.04422515, 0.4419356, -0.069548525, 0.035367996, 0.0156264, -1.9995093, 0.038603753, 0.06534089, 0.023924816, 0.0004, -0.0021975692, 0.028491268, -0.07426638, 0.3383052, -0.07371527, -0.027770542, 0.011049162, 0.38232052, -0.029333532, 0.072860084, -0.01257698, 0.00049999997, -0.005729835, -0.015730016, -0.077762224, 0.96038514, 0.11853926, -0.05651409, 0.038611576, 0.8926642, 0.02303808, 0.10565683, 0.08391741, 0.0004, -0.06445109, -0.06617432, 0.10101122, 1.2710673, -0.054658405, -0.028392496, -0.0066161565, 2.3799052, -0.029149206, 0.05299327, 0.013397219, 0.00013849782, -0.00048054857, 0.014934121, -0.060118143, -1.6273633, -0.05377795, -0.08041057, 0.061305087, -1.8709443, -0.08422149, 0.07404604, 0.023241546, 0.0003949289, -0.055954587, -0.034169674, -0.093902916, 0.90372574, 0.060574487, 0.07076114, -0.009738046, -1.8195584, 0.070957914, -0.06107649, -0.0024236916, -0.00029999996, -0.008181847, -0.0058104554, -0.0931157, -1.4616652, 0.08269439, -0.011679067, -0.062358618, 0.74617785, -0.008070134, -0.10355042, 0.008691931, -0.00019999998, -0.06292749, -0.0020678972, -0.083061494, -2.6251266, -0.079027064, -0.067127794, 0.0238966, -2.1500115, 0.06974539, -0.08017892, 0.0054208064, -0.00029999999, 0.014586593, 0.019689176, 0.103547245, -0.94403315, 0.093356624, -0.094733, -0.0523712, -0.4426747, 0.09175922, 0.105946325, -0.028074298, 0.00030191362, 0.0574224, -0.015283205, 0.1300063, -2.219725, -0.036647342, 0.013161559, 0.037180837, 1.651418, 0.014806185, 0.05163214, -0.0036834134, 0.00030658627, -0.036557056, 0.0077177687, -0.038764503, 1.5306749, -0.011584522, 0.053552836, 0.08683792, -1.230664, -0.008166541, -0.087602235, 0.052934743, -0.00029999999, 0.10169579, -0.0009343849, 0.014142859, 2.246806, 0.030700631, 0.0012498286, -0.09378159, 0.5932927, -0.04237953, 0.08821464, -0.012697855, 0.00049999997, 0.08366914, 0.044223282, 0.027979553, -0.20750278, 0.051566456, 0.010030995, 0.0021202867, 1.0266436, 0.009779058, -0.044854984, -0.02562453, -0.0003241372, -0.0030800141, 0.025526961, -0.04585961, 1.9668977, 0.054779295, 0.001737914, -0.07154526, 0.23781115, 0.008727892, 0.08926369, 0.008850904, 0.00039999996, 0.07103216, -0.012308305, 0.054087456, -1.598073, -0.066513434, -0.049126215, -0.028629871, 0.6549873, -0.045430403, 0.072410576, -0.018705124, 0.00031631126, 0.0341926, 0.00064596295, -0.08054528, -2.1366365, -0.06298834, -0.0026854412, 0.028322266, -0.5905863, -0.012346182, -0.059409305, -0.033090778, -0.00029999999, 0.025630727, -0.0352167, 0.05366324, -2.243297, -0.06440666, 0.02729027, 0.0018223749, -0.7992686, -0.024914399, -0.060462095, 0.024897909, -0.00039999996, 0.011285049, 0.02226824, 0.065368734, 1.500706, 0.045677908, 0.03758387, 0.13801205, 1.6741889, 0.08623732, -0.12282269, 0.0049054306, -0.0002, 0.11411836, 0.07777143, -0.058948744, 2.1853287, 0.051465742, 0.060134005, 0.03304321, 0.23108122, -0.013926453, 0.049600434, -0.06857497, 0.00029999999, -0.06718635, 0.03578232, 0.03952588, 2.419326, -0.0080667455, -0.036208153, 0.06249817, -1.537149, 0.019700028, -0.061605427, -0.033148225, -0.00029999999, 0.06949072, 0.01326143, 0.01665227, -1.9607456, -0.123476334, 0.08412356, -0.01667785, -1.1372682, 0.078745544, 0.12279228, 0.036366455, 0.0004, 0.03397151, 0.021133065, -0.14491604, -0.9876137, -0.09198415, -0.016043236, -0.029211141, -1.943644, -0.01055389, 0.09536248, -0.01914103, 0.00025862936, 0.031611584, -0.014845147, -0.09138977, -1.5836735, 0.05262908, -0.036697127, -0.025867898, 1.9249575, 0.003104908, 0.0427364, -0.05431028, 0.00039999996, 0.044790458, 0.040156834, 0.034159776, -0.21706486, 0.031619474, -0.018235866, -0.06994502, 1.4314992, 0.01926079, -0.071458556, 0.02733754, -0.0004, -0.06966975, -0.028031632, -0.024186706, 1.2285761, 0.01905848, -0.0016942048, -0.050838955, 2.581844, 0.031664096, -0.042094044, 0.013273003, -1.8392873e-05, -0.03981024, -0.034291647, -0.013781278, 1.5045625, 0.034698654, -0.08651309, 0.08386131, -1.860863, 0.031254, 0.09074518, 0.0806829, 0.0004, -0.116363324, -0.0014243124, 0.04667741, 0.33666605, 0.08475127, -0.06054164, 0.0790486, -2.6211176, 0.07479376, 0.10723286, 0.0019379003, 9.999999e-05, -0.06572568, 0.043961015, 0.10413603, 1.3844354, 0.064432174, -0.008241503, 0.043020155, -0.00198859, 0.014996522, -0.06774485, -0.03543869, -0.0002, 0.04115532, 0.037588216, -0.054438286, -2.7959638, 0.05602446, -0.018603835, 0.09671004, 2.8169322, 0.06529102, 0.090313666, -0.020449925, 0.0002, -0.07372936, 0.065840825, 0.055377282, 0.21249798, 0.08074932, 0.07043266, -0.050372288, 1.4948943, 0.08186139, -0.08454561, 0.0130127, -0.00030765933, -0.02822832, -0.04370194, -0.10635733, -1.6809894, 0.0902849, -0.07521049, -0.018841546, -1.0106561, -0.071561396, -0.09196269, 0.024182912, -0.0004, -0.029842677, -0.007016517, -0.11499202, -1.1227536, -0.090225324, -0.030395305, 0.022597238, -0.11941208, 0.007362597, -0.07134332, -0.06656607, -0.0002, 0.037152413, -0.05967726, 0.06806938, -2.729016, 0.06976327, 0.017346198, 0.06760068, -0.34363925, -0.012775137, -0.09079406, 0.03648139, -0.00049999997, 0.06861151, -0.034542806, -0.061942823, 0.37781852, -0.10405035, 0.06427322, -0.057058845, -2.3822598, 0.07896853, 0.106857724, -0.023635605, 0.00029999999, 0.03392236, -0.05161038, -0.11999532, -0.18365997, -0.025539545, 0.010856234, 0.1320978, 0.18745273, -0.020879589, 0.13251853, -0.014927636, 0.00049999997, -0.13088822, -0.023257982, -0.023394275, -1.068362, 0.03888871, 0.030931626, -0.06131978, 0.3712895, 0.05161404, -0.059650786, 0.002643652, -0.00029999999, -0.04530864, -0.04140329, -0.049619637, -2.5128672, -0.044989016, -0.051010758, -0.05284589, -1.274649, 0.04981123, -0.06673244, 0.022009548, -0.00039999996, -0.053978022, -0.019065185, 0.06435595, 1.2961136, 0.03194657, -0.043569982, 0.080001175, -0.10951561, 0.034771163, -0.07252707, -0.053384505, -0.0004, 0.08419916, 0.0464822, -0.008307949, 1.6405618, -0.014535482, 0.0319058, 0.07012155, 0.12022355, 0.0022389358, -0.07115368, 0.032839525, -0.00049999997, 0.0770065, 0.008091195, 0.012281104, 0.37907898, -0.06356616, 0.06721709, 0.026289934, -0.7333995, -0.023587126, -0.052455314, 0.07708465, -0.00049999997, 0.0682125, 0.044500094, 0.051154196, 0.030922204, 0.097819805, 0.055878356, -0.048383888, -0.08359616, 0.05950056, -0.10714439, -0.003445712, -0.00049999997, -0.043852866, -0.020731617, -0.112602085, -0.82184, -0.08531747, 0.023608347, -0.08825109, 0.76688194, -0.020870488, 0.11252217, 0.050277885, 0.00040631805, 0.08893836, 0.0490519, -0.072859846, -1.120242, 0.039767046, 0.018847378, 0.054596543, -0.48576373, 0.005438387, 0.06476946, -0.026320409, 0.00015252645, -0.05750157, 0.019160278, 0.03526865, 2.8290718, 0.120636195, 0.01615579, 0.034813143, -0.42267895, 0.00912615, -0.123613015, 0.025740905, -0.00029999999, 0.037278384, -0.02201979, -0.118960105, 2.415968, -0.03962107, -0.032714307, 0.047091663, 2.3593965, -0.028797092, 0.060850814, 0.01804397, 0.0002577805, -0.04958405, -0.00919955, -0.048108928, -0.8441813, 0.08023309, 0.078869075, 0.07502203, 2.1718655, -0.04587116, 0.10901792, -0.06555086, 0.00031340535, -0.09871411, 0.013444198, 0.091437235, -0.54061234, 0.061309353, 0.04554408, 0.022579892, 0.80923164, -0.050707787, 0.05229933, 0.032193974, 0.00049999997, 0.0035826508, -0.03915952, 0.06925783, 0.029802335, 0.13846213, -0.016045442, 0.015949741, 1.7885164, 0.007660401, 0.12631634, 0.06057314, 0.00029999996, -0.021287763, -0.058909517, 0.12553926, -1.5495096, -0.07850139, -0.027152352, 0.089257434, 2.445235, 0.02967084, 0.103328444, 0.05752813, 0.00014959811, -0.08845215, 0.058758765, -0.059918582, 1.5069016, -0.09312233, -0.012685601, -0.0010540985, -0.5462921, -0.0097181965, 0.06582326, 0.066382684, 0.00049920724, -0.008221442, 0.06588006, -0.066528425, -0.9733125, 0.06912422, -0.010010134, -0.03905099, -0.5813463, -0.010119811, -0.07934135, 0.002424873, -0.00049999997, -0.039022714, 0.0028438966, -0.06980316, -0.90579885, 0.03426825, 0.004768769, 0.10893944, 0.10975076, -0.061445277, 0.095181145, 0.015161866, 0.00047039316, -0.0900834, -0.06310835, 0.031099385, 1.1864799, -0.055219486, -0.0089815045, -0.035200022, 1.7597448, 0.0030999766, -0.06497707, 0.011716262, -0.00039999996, -0.03619529, 0.0081371525, 0.054704558, -0.07305287, -0.03229374, -0.00535889, -0.04309818, -0.5278457, -0.026813341, 0.04470924, 0.0145321945, 0.00049999997, 0.034164533, 0.030023694, -0.029332891, 0.75289905, -0.05875395, 0.022210892, -0.111407205, 0.056928094, -0.009220839, -0.12594436, -0.02024623, -0.00049999997, -0.11322484, -0.001268846, 0.059459563, -0.8374843, -0.13371241, 0.05050597, 0.002114931, -1.2184179, 0.04550754, 0.12287231, -0.057147097, 0.00020000001, -0.022008834, -0.05278139, -0.1310117, -2.3790863, -0.09570516, 0.078374505, -0.038765725, 2.0754483, -0.051857382, -0.09715165, -0.068390004, -0.0003746951, -0.070399955, -0.03498319, 0.10307687, -0.42933643, 0.07882168, -0.0072072893, 0.006749881, 1.7589443, 0.0072993883, 0.079097874, -0.0007805786, 0.00036010885, -0.0066501815, 0.0013947584, 0.07914665, 1.2311958, -0.029076593, -0.021225827, 0.059020128, 2.3243644, 0.047557414, -0.049874667, 0.0054926495, -0.00019999998, 0.040892575, 0.042910848, 0.0355783, -1.5797738, -0.047752764, -0.065266654, 0.08582813, 0.2092312, 0.018126998, 0.0876732, 0.07675515, 0.00046871867, -0.10629024, 0.0442742, -0.02546979, 1.176852, -0.07316814, -0.018141698, -0.04267339, -1.0238867, -0.0010942429, -0.07902133, 0.03547044, -0.0004, -0.046356685, 0.030499652, 0.066517256, 1.5444605, -0.020049395, -0.022117352, 0.11287175, -1.3757048, 0.035960417, -0.1100354, -0.015173921, -0.00026944742, 0.10925227, 0.032159332, 0.025708117, 2.2473378, -0.056217533, -0.027969258, -0.0016212479, -2.5052042, -0.027294667, 0.053858317, 0.017309027, 0.0002554027, -0.0063173324, 0.016196363, -0.060358003, 0.1504544, -0.0392227, 0.025307989, 0.06494363, -1.2972765, -0.008648496, 0.07217728, -0.033350147, 0.0002858095, -0.06916192, -0.02337808, -0.032660104, 2.0936148, -0.029452102, -0.027261874, 0.037526462, 2.1484628, -0.019788843, 0.047588993, 0.019041022, 0.00032232486, -0.04195053, -0.0033089363, -0.03532811, 0.561793, -0.10669625, -0.012437481, -0.00023579111, 1.8110791, -0.010248221, 0.08903795, -0.059211932, 0.00029999999, 0.007051276, -0.058791053, -0.08962548, -1.6355486, 0.0029627914, -0.010867543, 0.072093405, -2.589448, 0.009873713, -0.07142838, -0.011173069, -0.00029999999, 0.072236225, 0.010209029, -0.0014297259, -0.14842625, 0.0037876242, 0.078510605, -0.053080738, 0.44633377, -0.0052047395, 0.05321526, 0.0783382, 0.00049999997, 0.09462765, -0.000215554, 0.0064334213, -0.30061257, -0.041735455, 0.0505562, 0.013890371, -1.3447113, 0.042443845, 0.043001898, -0.028984081, 0.00039999996, -0.030779727, -0.009253495, -0.058802214, 1.4060836, 0.042733632, -0.024253612, 0.022614969, -0.2222952, -0.014678932, -0.046912447, -0.022574086, -0.00049999997, 0.029735561, 0.011697114, -0.04364415, -0.21110517, -0.059210483, -0.055563435, 0.04513905, -1.7008796, 0.068224914, -0.06154094, 0.013739844, -0.00040000002, 0.021683866, 0.041906167, 0.080027446, 0.043301813, -0.00902767, -0.01874715, 0.060943816, -2.5495467, -0.026874596, 0.05693603, 0.01353332, 0.00020000001, -0.057821795, -0.02353593, -0.015805166, -0.93177485, 0.04226271, -0.00021674627, 0.08763488, -0.082634434, 0.0529596, -0.077454574, -0.025731811, -0.00040000002, 0.06982263, 0.058879524, -0.03352697, 1.4603285, 0.096968114, 0.04123583, 0.10590911, -2.0936167, -0.042190272, -0.1162105, 0.0838752, -0.00029999999, 0.10553252, -0.08434854, -0.063782126, 0.96561843, -0.08253633, 0.032337997, -0.048417326, 1.0726542, 0.01856202, 0.094226, 0.031291254, 0.00049999997, 0.05518546, 0.016671687, -0.082938835, -0.1865377, -0.03357393, -0.08546171, 0.072651744, -2.275248, -0.01860382, 0.07902859, 0.084365696, 0.00018965208, -0.11061591, 0.012647843, -0.036240086, 1.6995015, -0.009288459, 0.025055965, -0.0663913, 0.7242653, 0.03231791, -0.058116972, -0.02645468, -0.00047291972, -0.06317561, -0.03341401, -0.0037718283, -0.9367676, 0.07199692, 0.02317591, -0.042998314, 0.36886752, 0.012068188, 0.06577267, 0.05565833, 0.00039999996, 0.04733219, -0.052022755, 0.05121358, -1.602409, -0.024581484, 0.015965099, -0.07110675, -0.111185364, -0.045545224, -0.06194808, 0.0018361446, -0.00048377865, -0.056891892, 0.0426949, 0.029253418, 1.1516415, 0.019889174, -0.022772374, -0.043920256, 0.23538841, 0.02898687, -0.03299629, 0.030234993, -0.00015641007, -0.04009153, -0.035154134, 7.184537e-05, -2.858523, 0.08995024, -0.02382906, -0.051737003, -0.23687789, -0.045401342, -0.08839292, -0.03822296, -0.00049999997, -0.034398533, 0.05435488, -0.08484029, 1.0653605, 0.065503985, -0.00033666904, -0.07527524, 1.0222982, 0.040211275, -0.08419855, 0.035368145, -0.0003323976, -0.063635916, -0.053551268, -0.05513601, -1.9509872, 0.035522547, -0.073954865, 0.061024673, 0.9156568, -0.02898294, -0.07031584, -0.06834366, -0.00040000002, 0.09139652, 0.006445596, -0.045390707, -1.3121997, -0.08852653, -0.0012255693, -0.03703661, -0.27651656, 0.0075815013, -0.0944872, -0.014994987, -0.00029999999, -0.036273036, -0.016757885, 0.08725594, 2.5715048, 0.00076669024, -0.002074993, 0.05286375, 1.7204758, -0.003684602, -0.052743018, -0.002016816, -0.00039999996, 0.052775998, -0.0036521556, -0.00090876676, -1.0604833, 0.13753703, 0.03859116, 0.000950262, -2.3700235, -0.037362605, 0.1339621, -0.03263148, 0.00014609467, -0.009706486, 0.031168917, 0.13907154, -1.6304356, 0.12242686, -0.013642283, -0.04112529, 0.9616418, 0.018479755, -0.09504998, 0.08654326, -0.00049999997, -0.039190564, -0.087436415, -0.087662466, 0.43577164, -0.0089846775, -0.05520619, -0.085159, -2.1501315, 0.051445965, 0.07121619, -0.05159525, 0.000312283, 0.08748195, -0.047550336, 0.021595787, -0.63638425, 0.015621064, 0.03099544, 0.038908392, -2.0093808, -0.008895255, 0.04186484, -0.029779326, 0.00039389, -0.04894339, 0.0022839336, 0.017830504, -0.5376041, 0.006344841, 0.020281048, -0.051184084, -1.2034931, 0.015019136, -0.050206274, -0.0180318, -0.0003859579, -0.052967507, -0.011806762, -0.011244194, -1.716171, -0.092724726, -0.03595727, -0.044861425, -2.3236134, 0.053902045, -0.08398537, -0.044095077, -0.00025204432, -0.020001058, -0.05963959, 0.08914272, -1.2927024, -0.10026251, 0.039483227, 0.039259, 0.2840905, 0.010019369, 0.09233753, -0.067276716, 0.00049999997, -0.05477049, -0.055386096, -0.084174454, 0.49060142, 0.09641645, 0.08149967, -0.0059428536, 0.5762208, 0.081661165, -0.09643338, 0.0023876624, -0.0004237499, -0.0029947401, -0.0056612683, -0.1262245, -1.1781698, 0.04689545, 0.010105541, 0.030005489, 2.224607, -0.009953718, -0.04619905, 0.031116005, -0.0003173494, 0.03005619, -0.031067029, -0.03651165, -0.17153469, -0.058679126, -0.0035300972, 0.119383276, -0.8648977, -0.0069978083, -0.13268341, -0.007362929, -0.00049999997, 0.119230285, -0.009524729, 0.05832229, 0.5891849, -0.032111533, -0.03754948, 0.02716774, 1.0821227, -0.021058833, 0.041263625, 0.032140914, 0.00036375172, -0.041286495, 0.008157812, -0.03752433, -1.8452648, -0.020487718, 0.0064847497, 0.05534225, 1.5145333, -0.047324747, -0.03315141, -0.013635115, -0.00034517777, 0.029414037, -0.048821066, 0.016609708, -1.5635824, 0.037079737, 0.08693359, -0.11243213, -0.58892035, 0.074665144, -0.110784315, -0.06103517, -0.00029999996, -0.12092787, -0.04174598, -0.07215998, -2.4523573, -0.09452598, 0.028268958, 0.023374576, 0.899032, 0.03179789, 0.095360905, 0.013261122, 0.0004, -0.01828658, 0.019693376, -0.097767256, 1.2273157, -0.046020206, -0.016882425, -0.020359475, -2.2899125, -0.016151797, 0.050294228, -0.005195595, 0.00019999998, 0.020943832, 0.0016906809, -0.048743017, -1.2319175, -0.058683515, 0.010864767, 0.07292634, 1.2116799, -0.05425382, -0.06947829, -0.03330675, -0.0004, 0.04992813, -0.06272779, 0.0495223, -0.6518814, 0.04911396, 0.026297323, 0.027210573, -0.5885054, 0.03337866, -0.051110025, -0.010852456, -0.00026728172, 0.017827766, 0.023245685, -0.054643888, 2.57181, 0.07744109, 0.004633064, 0.022211988, 1.0006206, -0.015178935, 0.06929553, 0.03846672, 0.00029999999, -0.016865287, -0.041092865, 0.067371346, -2.1436849, -0.016252913, -0.011444957, -0.062788635, -1.9759629, -0.042861275, -0.046050638, 0.019488685, -0.00029999999, -0.04728965, 0.045671787, 0.0039160475, 1.3315234, 0.053946465, 0.0054304465, -0.0043527028, 1.0799565, -0.0069560437, 0.040987752, -0.03507527, 0.0004, -0.00022184283, 0.03534362, 0.04134533, 1.516726, 0.039360657, -0.020420883, 0.12712072, -0.5749033, -0.027364058, -0.13121828, -0.012606332, -0.00039999996, 0.12580897, -0.022151722, -0.042512976, 1.3765718, -0.101772696, 0.01073265, -0.09435894, 2.082056, 0.06583743, -0.09170235, -0.081440724, -0.00029999996, -0.06844146, -0.10417278, 0.06196998, -1.1671516, 0.07781895, 0.0044488995, 0.101034276, 0.77414906, -0.0040947185, -0.12724017, 0.008756686, -0.00040000002, 0.10104925, -0.008582165, -0.07745257, -1.6848731, 0.056789573, -0.051117677, -0.12753221, -1.697346, -0.0055596284, -0.13873869, 0.053133804, -0.00040000002, -0.1372828, -0.015527185, -0.05490784, 0.037133764, -0.03383246, -0.03386192, 0.08271546, -0.13307965, 0.038587287, 0.07424213, 0.046176184, 0.00040000002, -0.080619454, 0.049745236, -0.012610526, 1.5331115, -0.062243342, -0.0014330671, 0.05032856, -1.1708268, -0.04126519, -0.044399302, -0.05229855, -0.0004, 0.028847905, -0.06660257, 0.033780903, -1.4370431, 0.08166755, -0.010838776, 0.01386197, -0.60165954, -0.017063914, -0.064849675, 0.049825344, -0.00049999997, 0.004296038, -0.05153895, -0.06560871, 0.7590294, -0.00935314, 0.023189848, 0.055262826, -1.6080194, -0.023358438, -0.052919198, 0.018253015, -0.0004, 0.05519178, -0.018466735, 0.017090278, -0.30417022, 0.050969686, -0.017159658, -0.063353784, 1.589833, -0.017003981, -0.08092617, 0.008239096, -0.00029999999, -0.063395746, 0.007909759, -0.053145833, -1.7721143, 0.081292614, 0.065668106, 0.07888573, -1.3059177, -0.007546757, 0.104181945, -0.078948826, 0.00040000002, -0.102363594, 0.044469874, 0.06846805, -1.477936, -0.06533698, -0.028473338, 0.014766849, 1.2928758, 0.03206777, -0.057287745, 0.031424265, -0.0001, -0.000670383, 0.03471447, 0.06397006, -2.6177235, -0.067033514, 0.078418456, 0.012506926, 0.35999566, -0.07649579, -0.059374914, -0.037714507, -0.00039999996, -0.021313656, -0.03353409, 0.09602376, -1.6990316, 0.028632224, -0.025246186, -0.03841485, 0.7563088, 0.011807125, -0.03969988, 0.034891065, -0.00029999999, -0.044425923, -0.026822085, -0.015485091, -2.2365959, 0.08690256, 0.013086071, 0.030409286, -2.3717422, -0.028717691, 0.07229575, 0.050957248, 0.000266363, -0.016470086, -0.057009663, 0.07160068, -0.7704008, 0.049005676, -0.057338316, -0.097839065, -1.2255478, -0.026343096, 0.09791221, -0.07057594, 0.0002, 0.110300526, 0.048859358, 0.026613478, 2.4556766, 0.051762044, -0.011246764, -0.05972923, -1.6131947, -0.027277296, 0.065811165, -0.036030788, 0.0003740418, 0.054314077, 0.043769613, 0.038827583, 1.3751607, -0.05069329, -0.01235058, 0.0013561108, 0.11913394, 0.012219782, -0.050589565, -0.003944526, -0.00049999997, 0.0022478178, -0.0035136344, 0.052026786, -0.31329283, -0.04141003, -0.0002862191, -0.086438075, -0.4877088, -0.030139066, -0.089782506, 0.014736062, -0.00046967948, -0.08101395, 0.033547476, 0.038700398, -1.0882522, 0.09122478, 0.002062984, 0.043048635, -1.5189583, 0.026545439, -0.082081966, -0.052319154, -0.0004, 0.03395262, 0.05863189, -0.07475909, -0.1836862, 0.048204195, 0.055967607, 0.12480898, 0.5575601, 0.022046233, 0.12742342, -0.065654725, 0.0005, -0.1349949, 0.040794734, 0.03384481, -0.21226756, 0.10239331, 0.015369165, -0.04498025, 0.70078754, 0.0075927367, 0.10016478, 0.05150915, 0.00049999997, 0.04692318, -0.04974566, 0.08981874, 0.16164483, 0.012748294, 0.012580436, -0.09316529, 1.4077946, 0.025979767, 0.089885235, 0.015692469, 0.00033557272, 0.09034983, -0.027621275, 0.008633239, 1.6857786, -0.059767295, -0.08353553, -0.07345951, -0.6206353, -0.09126658, 0.08450003, -0.021835078, 0.00049999997, 0.06359946, 0.042757213, -0.10036702, -0.04615204, -0.026376814, 0.01565544, 0.09144232, 2.3613234, 0.029673597, 0.09149602, -0.007105191, 0.0002, -0.08789918, 0.02618995, -0.029838655, 1.2141154, -0.093947515, 0.016950186, -0.002681906, 1.83041, 0.012464198, 0.07765531, 0.054175, 0.00038956554, 0.011795986, 0.052943163, -0.078603506, 1.008134, -0.059890278, -0.012446968, 0.014108225, -1.0973154, -0.0006750016, 0.048465416, 0.039893128, 0.00029999999, -0.018801954, 0.037907656, -0.046371434, 2.1409, 0.06764358, -0.00065675867, 0.06745301, 1.6492518, 0.03385839, -0.082290195, -0.03475527, -0.00039999996, 0.05834338, 0.048516884, -0.05803583, 0.026928881, 0.09240775, 0.02282185, -0.065388285, -0.7740147, 0.026792927, -0.11232098, -0.001338142, -0.00040073512, -0.06386394, -0.014100166, -0.09517477, -1.1329762, 0.053401563, 0.023093304, -0.034630954, 1.1999431, 0.035281863, -0.05500232, 0.01772753, -0.00039999996, -0.022086058, -0.03202771, -0.055414457, -1.3646227, 0.038414795, 0.026573518, -0.099671125, -0.9046034, -0.08313319, 0.0709418, -0.013126871, 0.00049999997, 0.06106847, 0.07985793, 0.044827815, -0.5312707, -0.046009343, -0.007180002, -0.066651404, 0.15748411, -0.015420604, -0.07753785, 0.018997552, -0.00049999997, -0.065239295, 0.023391228, 0.042514753, 0.94058895, 0.093939826, 0.05219077, -0.011345113, -1.9445851, 0.0454845, -0.090206735, -0.03835605, -0.00029999999, -0.02799552, 0.028568318, -0.10038617, 1.5665816, 0.0652872, -0.047932055, 0.0862479, -2.510905, 0.0106980065, -0.099369965, -0.06332269, -0.00029999999, 0.09809045, 0.04274025, -0.050498877, -0.3793829, 0.02313764, 0.04995295, 0.056860987, 1.6886002, -0.038231906, 0.05902899, -0.036300387, 0.00040000002, -0.06532067, -0.01685527, 0.04138755, -0.55346537, -0.041591894, 0.002003742, 0.08332508, -0.25380644, 0.009440754, -0.09241078, 0.0069346004, -0.00040000002, 0.082812786, 0.011541297, 0.041058633, -1.6014621, -0.053939704, -0.082237706, 0.10436022, -2.7333941, -0.045869615, -0.09418188, -0.097925186, -0.0002, 0.12469995, -0.07021627, 0.0091208555, -0.26723972, -0.017446924, -0.048960537, -0.048411943, 0.95053494, -0.022594964, 0.0512475, -0.043685313, 0.0004, 0.06504088, 0.0046697482, -0.028162405, 1.7042195, 0.07169073, -0.031249035, -0.009775996, 1.0755794, -0.032730952, -0.06902184, -0.019398566, -0.00039999996, -0.00087003055, 0.021705242, -0.0757612, 1.6469179, 0.028633976, 0.029504238, 0.04430875, -2.557091, 0.012839173, -0.052654494, 0.026764331, -0.00029999999, 0.051661603, -0.003267094, -0.031210175, -0.21080461, 0.09472305, -0.042253815, -0.06752476, 1.2442403, 0.0066998187, -0.100317866, 0.07217259, -0.0002, -0.07937311, -0.058893017, -0.07449135, 2.5265956, 0.10923471, 0.012291193, 0.05936095, 2.3443832, 0.01948495, -0.122960515, -0.010395761, -0.00019999998, 0.05740324, 0.01834835, -0.10943136, 1.4366434, 0.04973701, 0.0092313625, -0.082432486, -0.75273, 0.04723535, 0.07585697, 0.03699522, 0.00048339303, 0.06818472, -0.059284132, 0.034501333, 0.8788506, 0.031216051, -0.030359838, -0.06158788, -0.5663177, -0.029059913, -0.06713738, 0.018366337, -0.00039999996, -0.062211785, 0.016127042, -0.03948213, 1.6261151, 0.06384352, -0.028788233, 0.042928062, 1.1240721, 0.024651919, 0.076923095, 0.014922992, 0.0004, -0.045429766, 0.0012846142, 0.06842559, 0.8384551, 0.1065014, 0.004614283, 0.018444013, -1.5929539, 0.0012911953, -0.1064637, 0.019179096, -0.00036462225, 0.018968549, -0.018660478, -0.10486182, -1.4251225, 0.08973993, -0.086189665, -0.00818464, -2.1449583, -0.08201211, -0.080849916, -0.047814284, -0.00029999999, 0.027742594, 0.039793782, -0.11487254, -1.1215036, 0.0057825875, -0.043441232, 0.096638694, 2.7192304, -0.04196852, -0.08980543, -0.037858237, -0.000103760736, 0.097287305, -0.036158863, -0.022075605, -1.0348247, 0.0010790585, -0.01847213, -0.06874953, 0.8649564, -0.025045779, 0.06426295, -0.017659742, 0.00049569755, 0.06663654, 0.024452768, -0.0055242544, -0.7205456, 0.043807745, 0.051098857, -0.123485245, -0.5326721, 0.054877285, 0.11161066, 0.0656534, 0.00029999999, 0.12185311, -0.068635225, 0.0148271145, -2.3538873, 0.015573941, -0.03723689, 0.0905643, 2.3470619, 0.06515199, 0.07239904, 0.018564073, 0.00020000001, -0.07310061, 0.05659346, 0.035840046, 1.1540858, -0.06690366, 0.046972234, 0.11721849, 0.012931553, 0.05440456, -0.108989604, 0.07472668, -0.00049999997, 0.11395925, 0.079608686, 0.03314232, 0.15085302, -0.09469423, -0.0036506662, 0.0066543226, 0.36262748, 0.0032718915, -0.09478556, -0.0054402645, -0.0004, 0.006848513, -0.005193687, 0.094608285, 1.7952863, 0.049242854, 0.036040526, -0.06423292, -2.2496095, -0.050156206, 0.07299134, 0.002503565, 0.0002561349, 0.05393649, 0.034971323, 0.060971394, 1.1104913, -0.053417005, -0.034415063, 0.09206586, -0.34400335, -0.008880537, -0.1026654, -0.043529805, -0.0004, 0.097885914, -0.02809468, 0.046291776, -1.7635131, 0.051696185, -0.04091378, 0.05859296, 1.9953592, -0.007084022, -0.07489413, -0.046046223, -0.0004, 0.07111181, 0.022282299, -0.04718239, 0.35905063, -0.12557563, -0.025159698, 0.0066920198, 0.4395983, -0.014515372, 0.09502724, 0.08488908, 0.0003542596, -0.021612436, 0.0823641, -0.095896214, -2.1143243, -0.024283024, 0.04824659, -0.09964335, -1.1872147, 0.047719292, -0.08748788, -0.05399016, -0.0004, -0.09989694, -0.053519476, -0.0015689295, -1.4937441, 0.09904275, 0.07114448, -0.010289883, -0.77427846, 0.058475, -0.08992607, -0.058914006, -0.0004, -0.04181019, 0.042762715, -0.10677145, -1.3072709, -0.070789, 0.08905731, -0.06535371, 0.16481695, -0.045679457, -0.09427405, -0.078988515, -0.0003, -0.10057683, -0.019864324, 0.08187248, -2.5748167, -0.056644626, -0.02020105, -0.06683237, -1.9525999, 0.013614175, 0.08121363, -0.03608686, 0.00020000001, 0.06847847, -0.032856125, -0.048108567, -1.7325636, -0.0024994088, -0.063699566, 0.09601847, 0.9080523, 0.015000245, -0.095403664, -0.06290123, -0.00039999996, 0.11424612, 0.011132694, 0.010359422, 1.788005, 0.11290393, 0.012026773, 0.035158385, 2.1241624, 0.02455698, -0.10855381, -0.041726254, -0.00035606063, 0.027887454, 0.046898633, -0.105597645, 0.36155045, -0.12502009, -0.07039183, 0.04010902, 0.5967033, -0.028966004, 0.10771479, 0.09875353, 0.00029999999, -0.07566184, 0.07507519, -0.104080595, -2.2995672, -0.09384669, 0.01657944, 0.0187723, 0.6583674, 0.024857366, 0.052750703, 0.077678524, 0.0004, 0.0030640403, 0.079855904, -0.055209834, -1.4936491, -0.06458098, 0.07059475, -0.016114116, 1.3367853, -0.068850815, -0.066553004, -0.015628528, -0.00040000002, -0.022424318, 0.0010323443, 0.09439317, 1.5731136, 0.030137006, -0.06731966, 0.066620275, -0.44839764, 0.0047683697, 0.07090146, 0.06948872, 0.00040000002, -0.09459103, -0.01787409, 0.024728386, -1.5883625, -0.025771577, -0.041249488, -0.122628324, -0.6852772, 0.02079468, 0.12209126, -0.045439042, 0.00046889426, 0.12769811, -0.02820647, -0.017348984, -0.97872007, -0.1358861, 0.015966337, 0.058931306, 1.7433953, -0.023412213, -0.14642346, -0.014314093, -0.0004, 0.056388732, -0.02231818, 0.13607006, 0.91176826, 0.039413195, -0.0086157005, 0.081281155, -2.297444, 0.0096600875, 0.09009585, 0.0048658764, 0.00029999999, -0.08116365, 0.0065393983, 0.04004938, -0.3092198, 0.05441857, 0.01576456, -0.01183524, -0.4580121, 0.019711679, -0.04388655, 0.032177556, -0.00031386054, -0.0002097969, -0.03428446, -0.046631604, 2.1916494, -0.04600926, 0.104057826, 0.07474364, 1.4202592, -0.05348082, -0.087765686, 0.08926636, -0.00029999999, 0.11642356, 0.0008060535, 0.07054361, -2.0118427, -0.10641627, -0.065841205, 0.082077175, 1.9647439, -0.10068276, 0.09763369, -0.052218728, 0.0004, -0.030572996, -0.092351235, -0.113722004, 0.44176972, -0.0528296, -0.046719756, 0.051012043, -0.62210613, 0.016867902, -0.07095083, -0.04751194, -0.00022796082, 0.06708531, -0.018951904, 0.0521183, -2.6163611, 0.046008527, 0.04601087, -0.073070414, 1.4719076, 0.007807559, -0.08467284, -0.048400663, -0.00033015187, -0.085996106, 0.016928729, -0.04348749, -1.6420962, 0.06763516, -0.051354945, -0.06951074, -1.7417431, -0.00924604, 0.083460286, -0.070657514, 0.00023219184, 0.085927784, 0.04940285, 0.04711013, -1.8565699, -0.1158631, 0.015246725, -0.030512553, -2.0155516, -0.0076949727, -0.116940446, -0.029214041, -0.00035464013, -0.033230502, -0.026080843, 0.11315151, 0.76959604, 0.05035254, 0.005495307, -0.11833006, -1.5093412, -0.025463121, 0.12607302, -0.00498033, 0.0004, 0.11568852, 0.025356965, 0.050406076, -0.31742027, 0.068699405, -0.06692152, 0.07365523, -1.2262082, -0.06729595, -0.09717515, -0.025523193, -9.999999e-05, 0.07331327, -0.026489431, -0.092448175, 2.6538167, 0.06356607, -0.007403813, 0.11194121, 1.2842855, 0.025760513, -0.12426064, -0.022846786, -0.000366311, 0.10918813, 0.03362682, -0.059778623, 1.7043748, 0.056827553, 0.07011065, 0.07384472, 1.1611695, 0.008635682, 0.080943145, -0.08349579, 0.0002341763, -0.101459205, 0.046158608, 0.034253865, 2.2630792, -0.054645337, 0.00780407, -0.018233988, -2.1172125, -0.003472975, -0.05638344, -0.013723736, -0.00030444973, -0.019527424, -0.01181097, 0.05346658, -0.77861035, 0.1267112, 0.037517264, -0.0598115, -0.7884314, -0.029361237, 0.13975152, 0.02545826, 0.00040000002, 0.06420964, -0.010132137, 0.12967326, -1.5136005, 0.05998778, 0.004020303, 0.06318971, 1.4210877, -0.00652922, -0.08618896, 0.011681952, -0.0004, 0.06297993, -0.012764634, -0.058976512, 1.4202001, 0.047911536, -0.036810853, 0.10494133, 1.0191393, -0.0794103, -0.091320395, 0.0042222454, -0.00037807264, 0.0778571, -0.07048961, -0.060272098, 1.850176, -0.05053627, 0.046963174, 0.06823837, -1.664697, 0.0055803023, -0.077822916, 0.057692148, -0.0002998915, 0.0826491, 0.03397036, 0.037829492, -1.9935399, 0.0109801525, -0.046722222, 0.092509314, -0.1568839, -0.02349159, 0.08948373, 0.04798241, 0.00039999996, -0.100941, -0.02590753, -0.0011037778, -1.8114982, -0.034841675, -0.019219069, 0.0856054, -1.4277844, -0.054613005, 0.076839134, -0.0049766977, 0.0004, -0.0686664, -0.051361237, -0.039478436, 1.0239811, 0.06050411, 0.00036701746, -0.1327793, -1.0751438, 0.03402857, -0.14108433, 0.015115972, -0.00049999997, -0.12834537, -0.03723307, -0.058586605, -0.2680299, -0.061090298, 0.0065872213, 0.035478327, 1.2628741, -0.003066375, 0.068559386, -0.018009352, 0.0004203349, -0.035954148, -0.017039597, -0.0587459, 0.38953593, -0.0961402, 0.05301284, 0.035850838, -2.519452, -0.023267198, -0.089224875, 0.06954234, -0.0003, 0.05961779, 0.050666943, 0.08495386, -0.37318677, 0.0059013427, -0.020320678, -0.061061386, 2.5642054, -0.017940816, -0.059406072, 0.018035898, -0.00019999998, -0.061802503, 0.015304785, -0.0110662645, 1.0520651, -0.037262093, -0.0106052775, -0.043001186, -1.6080729, 0.03468532, -0.041932162, -0.01971447, -0.00040000002, -0.027540926, -0.038461145, 0.033350796, 0.09706032, -0.12384872, -0.061080836, -0.038413867, 0.47951204, 0.03785657, -0.11996603, 0.068702556, -0.00049999997, -0.061427757, 0.049216855, 0.119788684, -0.21681382, -0.0057197586, -0.07938424, 0.05658868, 0.12875919, 0.03398517, -0.054753706, -0.07337501, -0.00049999997, 0.09137366, 0.015395639, 0.030833125, 0.056196712, 0.042680357, 0.029386923, -0.00132535, -1.2600005, 0.029365018, -0.042700477, -0.0011515366, -0.00039999996, -0.0017446077, 0.00019733353, -0.051806163, 0.78633857, -0.054001577, -0.025558237, -0.04104935, 0.81540626, -0.0002651527, 0.061690565, -0.038061094, 0.0004, 0.04835496, -0.028204506, -0.046051566, -1.5229084, 0.048813656, 0.022042932, -0.06721818, -2.1329012, -0.038280986, -0.060445808, -0.04762161, -2.0386658e-05, -0.05948731, 0.056985624, -0.024512164, 2.0952208, 0.0725573, 0.0111224, -0.021650868, 1.8200623, 0.019182423, -0.06803315, 0.02933521, -0.00029999999, -0.014983408, -0.033238713, -0.067288294, -1.760853, -0.036813173, 0.028438572, -0.088918164, -0.6792665, -0.012659858, 0.09317813, 0.03504236, 0.00049999997, 0.092492804, 0.024072532, -0.030594042, -0.6914343, -0.0409832, 0.039013024, 0.037245322, 0.56803346, 0.008090357, 0.050694417, -0.044198133, 0.0004, -0.053327065, -0.022291545, -0.035329364, -1.6501065, 0.037515767, -0.0017500031, -0.06690139, -2.0334072, -0.04875879, 0.051820084, -0.02869759, 0.00029999999, 0.04584146, 0.05655005, 0.024226917, -1.1528491, -0.046271812, 0.022109399, -0.01902784, 1.0154252, -0.009768855, -0.045365665, -0.028956728, -0.00030332163, -0.027485516, -0.02109734, 0.042325106, 2.017521, 0.085442595, 0.0025927902, -0.00949587, -0.9830812, -0.00087916164, 0.08464898, 0.015202287, 0.0004, 0.009804143, -0.01500533, 0.08411925, 1.2900013, 0.07220872, -0.042547155, 0.036368817, -0.44031572, -0.047019664, -0.07831465, 0.0017367583, -0.00025346313, 0.030366141, -0.020089917, -0.08379345, 2.6195457, -0.03319335, -0.040450063, -0.03627276, -2.930717, -0.0005863693, 0.042770706, -0.04715974, 1.9263072e-05, 0.05432841, -0.024252377, -0.02267078, 0.5961929, 0.08321683, -0.00662194, -0.1079258, -0.07750494, -0.05582799, -0.11926252, -0.03572898, -0.00043863326, -0.09260166, 0.06595054, -0.07544754, -1.2705717, 0.078580275, -0.058756977, 0.108692504, 2.717315, -0.050892763, 0.10198566, 0.09192475, 0.0002, -0.11258937, -0.08710832, 0.0343086, -0.42502964, -0.08111563, -0.03276274, 0.03610586, 0.76468974, 0.007386244, -0.07753585, -0.053762585, -0.00022503434, 0.04819204, -0.04326174, 0.06901251, -2.5845666, 0.06339355, 0.10043919, -0.08257109, -0.44701147, -0.048697, 0.10351671, 0.0885305, 0.00049999997, 0.120559596, -0.011000725, 0.079177804, 0.60328394, 0.057501987, -0.056335963, -0.08312429, 1.5224739, -0.0019447623, 0.09514564, -0.06582852, 0.0002530169, 0.100397244, 0.034109164, 0.046333857, -1.9998236, 0.10213397, -0.04132937, 0.0077146715, 0.8161284, 0.040097967, 0.08966115, -0.05051744, 0.00029999999, 0.012640642, 0.049515072, 0.09791554, 2.1487687, 0.048028007, -0.0035089408, 0.07628604, 0.16111636, -0.02770247, -0.08478073, 0.013541191, -0.0004, 0.07116493, -0.030634582, -0.04621298, -1.6518539, -0.06913734, 0.06972018, -0.047931165, -1.1739463, -0.06988426, -0.08195038, -0.018401017, -0.0004577661, -0.047691602, 0.019013282, 0.09644832, 0.34753716, -0.041492958, 0.007198793, 0.03040611, 1.1546965, 0.01847036, 0.046419814, 0.014215014, 0.0002709356, -0.025203172, 0.022167508, -0.03964116, -2.2034717, -0.06726611, -0.032371752, -0.03570059, 2.2712953, -0.03556285, 0.0747123, -0.0007393182, 0.00028786808, 0.032523014, 0.014742196, -0.074646585, -0.95019406, -0.03965439, 0.0606859, 0.11221456, 1.3115221, -0.036673043, -0.11797319, 0.05084066, -0.0004, 0.1221883, -0.01571324, 0.05167666, 0.9308505, -0.009714327, 0.0058384147, -0.094530165, -2.673484, 0.033727914, 0.0890096, 0.0020314243, 0.0002, 0.08850122, -0.033280805, -0.011150272, 0.1809822, -0.056734536, -0.04074389, -0.031102752, -1.2085981, -0.03886657, 0.06444233, -0.013521452, 0.00019999998, 0.03341909, 0.0057771294, -0.06852768, -2.4648275, -0.008398553, -0.076523, 0.10312777, 0.95872456, 0.0018035716, 0.1032676, 0.076773636, 0.00049999997, -0.12840503, 0.0064556138, -0.005666899, -0.5382911, -0.08332359, 0.05887446, -0.011553863, 2.2674851, -0.05823688, -0.07460995, 0.03980374, -0.00029999999, 0.014427711, 0.038854495, 0.093939796, -0.58493537, -0.05322403, 0.030598275, 0.030074868, -1.5407838, -0.020748064, -0.060301643, 0.024632882, -0.0004, 0.03755356, 0.010050207, 0.05623409, 1.0514729, -0.0624919, -0.052958973, -0.02604157, 2.6698294, 0.01561373, -0.051413853, 0.067088604, -0.00024482323, -0.05691245, 0.044045627, 0.04700009, -0.00901843, 0.052233785, -0.086549304, -0.050389677, 1.0370376, -0.07039716, -0.07215266, 0.050955914, -0.0004, -0.07123302, 0.00784108, -0.087307766, -1.4023008, -0.06408239, -0.0220904, -0.045676384, 0.6140259, 0.00069360115, -0.07395748, 0.03479485, -0.0004, -0.050732993, 0.02689194, 0.058170937, 1.4850533, -0.053019892, 0.014232635, -0.0026686653, 1.3578612, 0.01308875, 0.04276956, -0.031941332, 0.00029999999, -0.0061947014, -0.03144831, -0.04464783, -1.8729303, 0.11290827, -0.008887324, 0.033159234, 2.0339074, -0.0022689402, -0.11567135, -0.023276363, -0.00039533095, 0.034254503, 0.021632213, -0.110839844, 0.4280885, -0.11252264, -0.015252707, 0.035343707, 0.58575, 0.009465507, 0.09487552, 0.07107891, 0.0005, -0.037312556, 0.07006544, -0.0885538, 0.48288155, 0.08442367, -0.036891136, 0.0712365, -0.029111411, -0.024506817, 0.086611785, 0.07389699, 0.00048600667, -0.07638723, -0.06855943, 0.055023137, -1.1499025, -0.07347989, 0.007100273, 0.026968796, -1.3445108, 0.02135791, 0.06319959, 0.041553304, 0.0004, -0.017932357, 0.046178177, -0.061016645, -0.8409871, -0.025242813, 0.00672451, 0.069690265, 1.840978, -0.03392526, 0.06362894, -0.018427858, 0.0004, -0.06124564, -0.038016975, -0.018515736, 0.39277914, -0.01894099, -0.00079081644, -0.057018563, -1.1169863, -0.035747822, -0.046645436, 0.012522014, -0.0002390299, -0.044427868, 0.037869275, 0.014233264, 2.4303937, 0.10618861, -0.06515615, 0.010830756, 2.6413672, -0.063808635, -0.09589937, 0.04868693, -0.00019999998, -0.017061273, -0.046868276, -0.11467748, 0.8717234, -0.06650866, 0.0019078691, 0.083191745, -1.0737293, 0.054315917, 0.08167777, 0.04155038, 0.00035186892, -0.06304196, 0.06835945, -0.051967364, 1.8775566, -0.010567429, 0.05829959, -0.12942612, 0.91108406, 0.018540654, -0.12810558, -0.059218563, -0.00049999997, -0.14073451, -0.021254469, 0.0019167317, -0.56892395, 0.032422338, 0.02735801, -0.030291626, 2.4492826, 0.0037738734, -0.04052869, -0.032564316, -0.00029767823, -0.040642355, 0.018061467, -0.02718885, 0.86634845, 0.06222347, -0.076893315, -0.043122582, -1.2941523, 0.07521099, 0.073837124, -0.02313619, 0.00029999999, 0.04599396, -0.016715135, 0.09617203, -1.9030132, 0.012110263, -0.09999708, -0.112314776, -1.6632938, 0.056787644, -0.10129434, 0.09630838, -0.0004, -0.13924506, -0.05000722, 0.029508868, 0.52386886, -0.044668935, 0.058575552, 0.078422375, 0.32195055, 0.02318128, -0.07741957, 0.071030416, -0.00049999997, 0.09509884, 0.04638535, 0.019521466, 0.62698674, -0.025626427, -9.628569e-05, -0.048175473, 2.0728712, 0.0049573286, 0.054272335, -0.0027454693, 0.00029999999, 0.04791983, -0.00566599, -0.02547912, -1.0626985, -0.09939434, -0.08416396, 0.07206009, -1.9411548, -0.093967274, 0.115324624, 0.005084126, 0.00040000002, -0.058705892, -0.042096592, -0.13014208, -0.0546555, -0.027406134, -0.054660868, 0.1283142, 1.2438946, 0.04772063, 0.1192004, 0.060970906, 6.302301e-05, -0.13105378, 0.05483522, -0.0046318932, 2.7036505, 0.06618909, -0.026272677, -0.11375373, 1.9791669, -0.010685751, 0.12885113, -0.03597723, 0.00038625556, 0.116258256, 0.026800986, 0.061456397, -0.6865598, -0.06721205, -0.010870052, -0.0023471129, -1.0747273, 0.011041045, -0.06351173, -0.022033684, -0.00029999999, 0.0013275187, -0.022118544, 0.06442154, -2.3070786, -0.062973306, 0.009652496, -0.042560074, -1.8504555, 0.010396339, -0.069250226, -0.031088503, -0.0004, -0.042384513, -0.031327453, 0.05560857, 0.20631734, -0.0013325142, 0.034390975, -0.065646864, 0.52428806, -0.03226966, 0.05883709, 0.031478472, 0.00049999997, 0.06671521, 0.029145967, 0.01391473, 0.23883526, -0.011047566, -0.041439608, 0.11807601, 2.4846487, -0.043411482, -0.10990478, -0.042633563, -0.00029999999, 0.117365375, -0.04455263, -0.0046549793, 0.6439351, 0.042883318, 0.03745793, 0.08676338, 0.07892363, -0.0058411616, 0.09614671, -0.038621914, 0.0003672425, -0.09432318, 0.011075876, 0.04183806, 2.1308813, 0.071602836, 0.03691327, 0.05815473, -2.1039114, 0.010941739, 0.07672349, -0.062171634, 0.0003802231, -0.06800617, 0.051209807, 0.05122736, -0.10734171, 0.12990735, -0.029768111, 0.0048653916, 0.033756305, -0.029763822, -0.12999772, -0.000667168, -4.6256715e-05, 0.0048915343, -0.0004359719, -0.13327272, 2.9824092, -0.036715526, 0.038630147, 0.039458092, 0.38356125, 0.032065686, 0.053491585, -0.022532238, 0.0004, -0.044955775, 0.006604668, -0.04829717, -1.8467151, -0.083200045, 0.0049609, -0.013877872, 1.5335401, 0.0133516, 0.059060168, -0.058932886, 0.00013137373, 0.006240217, -0.060222425, -0.058938727, -2.446344, -0.055128865, 0.07611372, -0.10838747, -2.3494139, -0.10713366, -0.09465326, -0.0119779175, -0.00029999999, -0.07786862, 0.07633998, 0.093214914, -0.45656902, 0.04734174, -0.020210056, -0.10524865, 1.8543987, -0.062999025, 0.087833546, -0.04520347, 0.00029999996, 0.08669975, 0.074858434, 0.024623813, 1.3361087, 0.0582907, -0.002553657, -0.06953016, -0.8085463, -0.019958097, -0.08750838, -0.0135179525, -0.00049999997, -0.066653125, 0.023969565, -0.05675907, 0.010494248, 0.026118245, 0.03273131, -0.070196435, 0.008333162, -0.011388599, -0.07165202, -0.03764742, -0.00049999997, -0.07661056, 0.021810317, -0.01833502, -0.26241776, -0.08436901, 0.015336205, 0.08751192, -2.2905471, -0.028839475, 0.109420724, -0.04697938, 0.000269503, -0.08403464, -0.052948836, -0.07173749, -0.97569674, -0.06836362, 0.0044939336, -0.003971567, -1.2825924, -0.0013683316, -0.055934027, -0.039737444, -0.0004, -0.0058392184, -0.039506223, 0.055809624, 0.55448884, 0.026668858, 0.007878533, 0.056453336, -1.2757012, -0.017304098, 0.06050433, -0.00026933049, 0.00040000002, -0.05431039, -0.015408867, 0.027806956, 0.9984268, 0.10255335, 0.065981776, 0.0599632, -0.12583543, -0.0483256, 0.11794037, -0.04712828, 0.00049999997, -0.0749254, 0.014242336, 0.112470925, 0.64351535, -0.020824246, -0.05987737, -0.110243976, 0.42797774, 0.0073931008, -0.112143934, 0.059512764, -0.00049999997, -0.12523727, 0.0033361448, 0.021844385, 0.20234329, 0.007833795, -3.0286485e-06, -0.10089242, 0.79431665, 0.066245735, 0.076326385, 0.0051413635, 0.0004, 0.07609719, -0.06644494, 0.005910557, -1.7813755, 0.056387343, 0.0005641836, 0.046322, -0.42565352, 0.0011908014, -0.07296469, -0.0005608704, -0.0003, 0.046310138, 0.001189235, -0.05638738, -2.4530196, -0.026676299, 0.0145735275, 0.043018177, 1.7489635, -0.028413983, -0.044275913, -0.002620382, -0.00040000002, 0.03543439, -0.0245323, 0.030284414, -0.45985478, 0.07713169, -0.056620438, 0.047759514, 0.87648904, 0.013047838, 0.07825789, 0.071704954, 0.0004, -0.072915, -0.045890886, 0.063352756, 1.7155459, 0.07363554, 0.004449124, -0.03760608, -0.9105754, 0.009819102, 0.07717307, 0.028356789, 0.00049999997, 0.036573168, -0.029677056, 0.06810198, 0.5348461, -0.023940472, -0.030419433, -0.035374288, 2.844148, -0.013575371, -0.033497397, 0.037992924, -0.00012320245, -0.04463621, 0.02650304, 0.007417945, 0.5445742, 0.088885576, 0.06992827, -0.039491147, 0.33163518, -0.04710438, 0.093105845, 0.05884421, 0.00049999997, 0.065043725, -0.028133703, 0.09658138, -0.057242908, -0.024225244, 0.049563717, -0.081147775, -0.45643014, -0.06542379, -0.069455765, -0.022891307, -0.0004538956, -0.06900184, 0.048453294, 0.050193753, 1.1464672, 0.028095238, -0.014713944, -0.097478546, 1.8428782, 0.039502483, 0.09454699, -0.002886045, 0.0004, 0.0903223, -0.036773294, 0.031583436, 0.8405377, 0.039484326, -0.03088623, -0.063191384, -0.9699721, 0.036541313, 0.07092799, -0.0118353, 0.0004, 0.06009861, -0.022833811, 0.048712384, -1.7285063, -0.0005037623, -0.03368106, 0.055223733, -0.5134976, 0.0189744, 0.05271903, 0.032326523, 0.00049999997, -0.061838873, 0.016450476, 0.0094690705, -0.3707022, 0.07064989, 0.049344435, -0.12027517, -1.536357, 0.11877916, -0.080143206, 0.036891386, -0.0004, -0.052844074, -0.11416921, -0.077880055, 0.9145888, 0.015435008, -0.031875186, -0.12226691, -1.9040415, 0.039321434, 0.118271135, -0.025869519, 0.00034972257, 0.12007936, -0.03463207, 0.024187526, -1.0377688, 0.062038206, 0.006082433, -0.033338938, 1.0609392, 0.012266237, 0.060797736, 0.0339175, 0.00026808225, 0.03159146, -0.035550833, 0.05230046, -2.252663, 0.028621867, -0.07175459, -0.08288153, 2.3301225, 0.05672464, 0.0829947, -0.052263528, 0.0002673233, 0.09381034, -0.028292127, 0.05688982, 0.88230836, -0.01120369, 0.04518432, 0.050800025, -1.5392925, 0.008911199, -0.050065044, 0.046495903, -0.0002, 0.067400716, 0.01412998, 0.0022969048, 2.3630068, -0.006844882, 0.019526208, -0.10867754, 0.7973377, 0.04604894, 0.09947003, 0.014971555, 0.000495064, 0.10035724, -0.04431005, -0.014282074, 0.7975755, -0.08514926, 0.018807836, 0.07058331, 0.9175726, -0.01963066, 0.09852541, -0.049935114, 0.0004048076, -0.0703589, -0.050250813, -0.07148857, -1.0045264, -0.08245745, -0.02403562, -0.094456784, 2.157764, 0.041283045, -0.12069119, -0.005327404, -0.00022785217, -0.088292174, -0.03398472, 0.08572376, -1.6049966, 0.01714232, 0.009006353, -0.10322986, 1.5886954, 0.07035717, 0.07580541, 0.01829718, 0.0002, 0.076074876, -0.07213739, 0.006339303, -2.1913977, -0.041832615, 0.029814556, 0.09640209, -0.7970033, -0.049110748, -0.09717983, 0.008744007, -0.00041573643, 0.08814991, -0.039992705, 0.050620332, -1.0674933, -0.059726447, -0.03002501, 0.017161513, 2.5234044, -0.029852351, 0.062050916, 0.0046676905, 0.00020000001, -0.01746012, -0.0033836432, -0.06668554, 0.66499364, 0.07045186, -0.051872537, 0.025256522, -0.66902125, 0.053370263, 0.07373692, 0.0025691164, 0.00039999996, -0.021915019, 0.012815, 0.087450705, 1.9083526, -0.120672345, -0.04986875, -0.053972933, 0.15306953, -0.008626155, 0.112667575, -0.08481387, 0.00049999997, 0.072976425, -0.06914412, -0.09927394, 0.76692003, 8.099281e-05, 0.0030156765, 0.06326373, -1.0921609, -0.05072965, 0.037879713, -0.0017407122, 0.0004, -0.0379196, -0.050669838, 0.002463896, -0.90175796, -0.13575783, -0.030620161, -0.016970983, 1.011525, -0.0066781226, 0.089365974, -0.107818924, 0.00030120392, 0.034365848, -0.10359501, -0.08799352, -2.0239782, -0.053055987, -0.003149482, -0.014272655, 0.67637706, 0.0072955233, 0.04085977, -0.03613613, 0.00049999997, 0.012665036, -0.03673044, -0.038974836, -0.32186687, 0.07329118, -0.037283633, 0.06958982, -1.6683213, 0.024326807, -0.07966888, -0.06830433, -0.0003732863, 0.07510671, 0.06218687, -0.04578409, 1.3098445, -0.0059684995, 0.0028002134, 0.11697376, -1.3353202, -0.079731435, -0.08582055, -0.0020137897, -0.0002646096, 0.08563643, -0.0797077, 0.0062776404, -2.2789166, 0.038778875, -0.0003379762, 0.047050074, 0.5297253, -0.031371657, -0.045625854, 0.02552891, -0.00049999997, 0.03506626, -0.040444933, -0.02919229, -0.9094377, 0.040921573, 0.021970753, -0.06263102, 0.06665883, 0.04861987, -0.060010128, 0.010715678, -0.00010229761, -0.0451826, -0.044676658, -0.045193616, -2.9102879, -0.016981745, -0.017839732, 0.08922883, -2.8348835, 0.0023211394, -0.09082476, -0.017717058, -0.00014840261, 0.090965115, -0.0010128366, 0.01710969, -0.46906936, -0.09234281, 0.074509285, 0.033640895, -1.403384, -0.05254157, -0.09297195, 0.061693903, -0.0004, 0.06263168, 0.031860948, 0.10135431, 0.8630769, 0.023553671, -0.008069387, 0.0478855, 2.331318, -0.003226609, 0.052843347, 0.010491944, 0.00025753168, -0.04845332, -0.007441565, 0.022578964, -0.9237726, -0.12123572, 0.058716018, 0.0035920742, 0.35501662, -0.05855452, -0.11966217, -0.020270843, -0.0003279302, -0.005642799, -0.019798204, 0.13317193, -2.181078, 0.03856399, 0.04340004, -0.064108044, -0.13448046, 0.068048954, -0.053154748, 0.004949791, -0.00035916103, -0.036915377, -0.05264596, -0.057846725, 2.1440873, -0.050295055, -0.017677156, 0.0117111085, -0.92306036, 0.021179866, -0.043333076, 0.025551574, -0.00029999999, 0.0010222927, 0.02808893, 0.046788793, -2.3984327, 0.011646528, 0.07492275, -0.12784006, -0.63783234, -0.11482142, 0.08561927, 0.039718073, 0.00037468586, 0.09366187, 0.0956455, 0.06458742, 2.0208166, 0.07808553, -0.008757578, -0.0129822185, -0.15218101, 0.0007661245, 0.06807987, -0.041317407, 0.00029999999, 0.015641171, 0.040385883, 0.06683499, -2.313892, -0.056319077, -0.042558752, 0.0992449, -1.7491683, -0.07784541, 0.09357533, -0.004047889, 0.0004, -0.07483909, -0.06530732, -0.07047482, 0.1400212, -0.08001541, -0.03446525, -0.039544, 0.91196, -0.04623022, 0.08041485, 0.023457719, 0.0004897701, 0.024786038, 0.038725246, -0.08390501, -0.6843815, -0.03333161, -0.07172859, -0.07417956, 0.2881324, 0.07558699, -0.07003873, 0.03376057, -0.00028570613, -0.07024387, -0.04133011, 0.07152768, 2.599522, -0.065549955, -0.057741027, 0.0136327995, 2.1707373, -0.055094913, 0.06678024, 0.017933972, 0.00025675612, -0.022009771, 0.004801079, -0.08549383, 1.2557002, -0.07110909, -0.0068605794, 0.045895934, 1.6140788, -0.027297819, 0.07409638, -0.031217992, 0.0004, -0.037527777, -0.040898245, -0.06425735, 1.2713752, -0.108526126, 0.042009685, -0.08603778, 2.6594443, -0.07265578, -0.120832615, 0.032647453, -0.00021762938, -0.062357422, 0.06767502, 0.11169995, 0.49040842, -0.12879796, 0.004453334, 0.061080154, -0.019938216, -0.003930699, -0.14254703, 0.0021045047, -0.00029999999, 0.061116006, 0.00021714282, 0.12885775, -2.3705559, 0.012492494, -0.06421456, 0.06746392, 1.6460855, 0.050957385, 0.06168929, 0.049282126, 0.0004, -0.07796303, 0.03003122, 0.04302143, 0.38071415, -0.057459656, 0.010945328, -0.045372486, -1.4988967, -0.035025064, -0.05767661, 0.030442208, -0.0003986184, -0.030849764, 0.04509637, 0.049946807, -1.4293101, -0.07229021, -0.005859397, -0.026425973, 1.0088114, 0.008036642, -0.0766092, -0.0049983775, -0.00040674882, -0.02584719, -0.0074322866, 0.072354846, -0.90535265, -0.035183635, 0.03361474, -0.051848367, -1.6883082, -0.011970664, 0.05482589, 0.043668274, 0.00019999998, 0.060621016, 0.030335872, -0.021469058, 2.1312056, 0.003928525, -0.01546558, 0.053011615, -2.6412244, -0.040139236, -0.03729842, -0.007906827, -0.00019999998, 0.037924357, -0.03787469, -0.013859999, -0.6807321, 0.085186444, -0.0072248494, 0.018195838, -1.4930532, 0.0015157843, -0.078559816, -0.038289353, -0.00036818904, 0.019518964, 0.037632085, -0.07643855, -1.5219429, 0.072672345, 0.0061518825, 0.04382771, 0.27630454, -0.021663368, -0.06853289, 0.045540452, -0.00035035817, 0.03859291, -0.05005388, -0.05696651, -2.1481357, 0.034274783, -0.037561964, 0.041479375, -2.136629, -0.028950064, -0.053528644, -0.024551554, -0.00021899522, 0.047888752, -0.0054758047, -0.04452957, 1.6529335, -0.08459014, -0.030728113, 0.05931958, 2.2734869, 0.040927205, -0.099482924, 0.0068294075, -0.00029999999, 0.05280146, 0.027882988, 0.08973889, 0.38413736, 0.08024523, -0.08702664, 0.033563446, 2.365685, -0.06207233, -0.0828721, -0.06647316, -0.00027446024, 0.06962158, 0.026420107, -0.097950235, 1.1454909, -0.09470727, -0.021109134, 0.021931116, -2.4236178, 0.027932674, -0.08875132, 0.035199456, -0.00029999999, 0.012096902, 0.039669137, 0.09042156, 0.67479867, 0.062964864, 0.025293773, 0.021085188, -0.3916672, -0.027606841, 0.06534837, 0.0040480597, 0.00049999997, -0.017950555, -0.011779199, 0.067734495, 0.8197424, 0.033778407, 0.08044284, 0.051244374, -1.0497943, -0.0640517, 0.05941252, -0.051044576, 0.0003, -0.07067117, -0.015398668, 0.0707565, 2.1662374, 0.08387588, 0.033685885, -0.015856884, -0.2097459, 0.02021822, -0.07402961, -0.05032082, -0.00049999997, -0.031263452, 0.04249968, -0.07508474, -0.21717075, -0.043999575, 0.020669356, -0.022519205, -2.3150983, -0.023027604, -0.048370186, 0.0005961499, -0.00019808499, -0.020101395, 0.010168772, 0.048608948, 1.634371, 0.05469337, -0.043141175, -0.06541036, -0.33960047, 0.029639645, 0.08523261, -0.03143144, 0.00049999997, 0.072533906, -0.0022986275, 0.06216583, -0.56834424, -0.01320054, 0.039138492, 0.0813215, -0.1918681, 0.0028702312, 0.08232727, -0.039156646, 0.0004, -0.09020403, -0.003107964, -0.013146599, 1.9474237, -0.113159135, 0.081753254, -0.0135932835, 0.9196938, -0.07770804, -0.112662904, -0.030690297, -0.0004484847, -0.028806796, -0.017229067, 0.13618623, -0.84247494, -0.049108513, -0.074389525, -0.06692261, -0.45677072, -0.06614796, 0.08007003, -0.040463805, 0.00029999999, 0.07507917, 0.021887707, -0.07942372, 2.2574837, 0.0351615, 0.068959996, -0.07671766, 0.33161917, 0.011159219, -0.08311907, -0.069599584, -0.00049999997, -0.10255024, 0.014599607, -0.03387787, 0.4673325, 0.03176597, 0.049580548, 0.068397745, -0.36895552, -0.0074029616, 0.07442621, -0.050512318, 0.0003631771, -0.08415269, 0.012168346, 0.030262388, -2.108912, 0.023154091, 0.028197749, 0.04838621, 1.0676694, -0.024894066, 0.05208362, -0.018439986, 0.0004, -0.05016597, -0.012831007, 0.031483203, 0.8871691, -0.055730473, -0.039866924, -0.030755792, -0.98896646, 0.030929852, -0.063306734, 0.026014939, -0.00036704214, -0.039732035, 0.006637833, 0.063391484, 1.8913524, -0.075584844, -0.010189582, -0.041438732, 0.4484997, -0.036475364, 0.059174284, 0.051980905, 0.00049999997, 0.022148233, 0.062678866, -0.055811115, 0.7988337, -0.05616978, 0.06524163, 0.053815797, 2.1349716, 0.0046852143, -0.062104058, 0.08017972, -0.00035919592, 0.084443204, 0.046843074, 0.03134843, -0.24658775, 0.06742487, 0.030135425, 0.008778593, 1.4262583, 0.028973686, -0.051754914, -0.044869542, -0.0004, -0.012071973, 0.044097707, -0.058659885, 0.20421642, 0.08176284, -0.05955316, -0.02925964, -2.5247607, 0.039910514, 0.08123461, -0.053814095, 0.00023648531, 0.053008083, 0.030695716, 0.08564919, 0.28148603, -0.031096261, -0.021198967, 0.06503091, -2.2471867, -0.045057666, 0.06009473, -0.0019556691, 0.00022364194, -0.051460877, -0.03980732, -0.0375839, -1.2274249, -0.10847522, 0.045715574, -0.05432675, 0.3160047, -0.03212191, -0.120063305, -0.036894, -0.00049999997, -0.06332055, -0.01740894, 0.11178381, -0.2567261, 0.056872908, -0.023184426, 0.025369842, 2.5536325, 0.01680073, 0.061547544, 0.018582588, 0.00019999998, -0.02998136, -0.009489981, 0.058538295, 1.0283296, 0.11566808, -0.0026243639, -0.041359223, 2.304489, 0.02081916, -0.10234582, 0.06471845, -0.00029999999, -0.03583344, -0.067934014, -0.09590367, 1.0522032, 0.065033086, 0.01023046, 0.009191612, -1.1174238, -0.007419621, 0.06350357, -0.018185059, 0.0004, -0.011580039, 0.016765583, 0.06327138, -1.542265, 0.089506626, 0.030742124, -0.11633637, 1.43153, 0.07744632, -0.125687, 0.026372436, -0.00021612486, -0.09209394, -0.075817935, -0.09089009, -2.2951264, -0.048586864, -0.020849997, 0.0027843646, 1.5136306, -0.016584268, 0.04228037, 0.027211959, 0.0004, -0.012939754, 0.024099924, -0.04533117, -0.89137703, 0.02614727, 0.008425115, 0.06383371, -2.355154, 0.012144857, 0.06701438, -0.013819632, 9.999999e-05, -0.06323154, 0.01635535, 0.023741944, 1.7644944, -0.07289308, 0.057914253, -0.027322741, 1.2085326, -0.047890075, -0.07678547, -0.03499331, -0.00029999999, -0.04251035, -0.012803647, 0.0862724, 2.1799722, -0.004195167, -0.013128903, 0.12207482, 0.102550246, -0.034934677, -0.116969645, -0.013780401, -0.00029999996, 0.11770386, -0.0351847, 0.0002609124, -2.464826, 0.067152634, 0.020624638, 0.016734196, 0.62818086, -0.016527984, 0.06806714, -0.017566469, 0.00049999997, -0.02079024, 0.012505202, 0.0680167, 0.2224811, -0.072477214, 0.03675051, 0.04808204, -2.3582087, 0.00012328898, -0.07492831, 0.05745574, -0.00029999999, 0.060518324, 0.04416534, 0.057466377, -0.041553844, 0.08973497, -0.051426783, 0.03163671, -0.3246723, 0.027312616, 0.08511523, 0.060888235, 0.0003685838, -0.05384807, -0.042528175, 0.08360442, -2.1047208, 0.037669808, -0.03320221, -0.056831345, -2.507038, -0.023863759, -0.06791492, 0.023859756, -0.0003, -0.061340936, 0.0060316026, -0.044182725, 0.07043699, -0.024571745, -0.024133073, -0.056054726, 2.3852623, -0.04514042, 0.047853798, -0.000814926, 0.0002, 0.041071642, 0.038156476, -0.03443126, -1.4186571, -0.03492616, -0.022428362, 0.04888024, -2.3767962, 0.019052472, 0.049343407, 0.036254346, 0.00029999996, -0.05029227, 0.03426869, -0.020211138, 0.28448367, -0.079367444, -0.010717034, 0.07135165, 0.5438794, 0.029067084, 0.0923345, 0.046201196, 0.00049999997, -0.066038005, 0.053521886, -0.06541785, 0.109388664, 0.0648634, -0.030805187, 0.017687893, -0.20280242, -0.026533434, -0.06649997, -0.018515198, -0.00039999996, 0.023617737, 0.0098932525, -0.069378726, 1.7036134, 0.103387736, 0.079758324, 0.035184387, 0.26901063, -0.072048604, 0.108906925, -0.03516593, 0.00040000002, -0.049074754, 0.008139492, 0.12575284, -1.9959736, 0.06931036, 0.027161304, -0.10145105, -1.4841746, 0.012378318, 0.1185923, 0.040207244, 0.0004, 0.104292035, -0.032126453, 0.06265014, 0.124353215, -0.01937566, -0.02466011, -0.06567262, -0.73118496, 0.0381557, 0.053467207, -0.03133419, 0.0004686049, 0.058865596, -0.04277345, -0.0013058905, -0.94556916, 0.08759996, 0.031292595, 0.028575616, -0.9192012, -0.0007089466, 0.0666924, -0.07086019, 0.0004, -0.04237087, 0.063580215, 0.060264524, 1.2193325, 0.10376396, -0.033754017, 0.08135962, 0.3923276, 0.02207459, -0.11174216, -0.07451232, -0.00029999999, 0.0852727, 0.070000276, -0.07971329, -2.4479003, 0.10480536, -0.017680475, -0.0087922085, 2.533381, -0.016910288, -0.10488496, 0.009340903, -0.00026633398, -0.01019531, -0.007785314, -0.10587497, 0.7469148, 0.056456394, 0.013504482, -0.0050744303, -2.611394, 0.014358718, -0.05061765, 0.025042485, -9.999999e-05, 0.0013957359, -0.025513284, -0.052369546, -1.3289032, -0.037594277, 0.008921649, 0.034943774, 1.3652136, 0.018423086, -0.03864308, 0.02968662, -0.00040000002, 0.031004088, 0.03378031, 0.024731167, 1.0703685, -0.036490902, -0.020341573, -0.045583762, 1.0119936, 0.019847242, -0.05772269, 0.009870326, -0.00029999999, -0.045801163, -0.008806627, 0.040594853, -2.3393455, -0.026218547, 0.004778153, 0.1321036, -1.2300749, -0.06980569, 0.11386731, -0.017972853, 0.0004, -0.11225581, -0.0719238, -0.019677892, -1.0864958, -0.016562369, -0.015233631, -0.106972225, -0.73229975, 0.009789359, -0.1079881, 0.013862625, -0.00049999997, -0.107607104, -0.007479332, 0.017725777, -0.5088846, 0.022299886, -0.064323686, -0.089241385, 2.656604, -0.037535124, -0.09004113, 0.055520747, -0.00024567498, -0.10340539, 0.018812306, -0.039398823, -0.2560906, -0.043747876, -0.0011185822, -0.11875652, -0.76571333, 0.018545665, -0.1250693, -0.0056538642, -0.00040000002, -0.11730483, -0.019356044, 0.04339541, -1.2422947, 0.09259699, -0.030576514, -0.08811626, -0.13474536, 0.07461037, 0.098793015, 0.044122953, 0.00049999997, 0.055970464, -0.08110869, 0.08696143, -0.56162596, -0.012335783, 0.053537212, -0.08152907, -1.8031104, 0.008309027, -0.08130302, -0.054645933, -0.0004, -0.09718118, -0.013747237, 0.005676723, 0.7948346, 0.05917236, -0.012660069, -0.039490428, 0.8681037, 0.013807231, -0.05886794, 0.03956094, -0.0002, -0.039104108, -0.039942842, -0.0457884, 2.6593537, 0.046092283, 0.07522645, 0.08431941, 2.4765687, -0.026787397, 0.09574263, -0.07077476, 0.0002, -0.10977805, 0.008222619, 0.05267306, 1.2563779, -0.05729659, -0.033142995, -0.044973426, 1.4748118, 0.03688469, -0.07082658, 0.00520393, -0.00039999996, -0.04195935, -0.017003022, 0.06598694, -1.1562657, -0.09787679, -0.035884485, 0.023181343, 0.3000955, 0.03127178, -0.09966166, -0.02223882, -0.00049999997, 0.029105773, -0.013593872, 0.10184792, -1.0201747, 0.055260453, -0.05348751, -0.029427677, -2.7631931, -0.05394772, -0.06136449, 0.010230451, -0.0002, -0.02857526, 0.0124139, -0.07622316, 0.15972935, -0.059738796, -0.023470245, -0.12843195, -0.47313738, -0.009605098, -0.14006516, 0.030063858, -0.00047995793, -0.13020507, 0.021100745, 0.05670748, 1.0656333) + +[sub_resource type="MultiMesh" id="MultiMesh_vetlt"] +transform_format = 1 +instance_count = 1024 +mesh = ExtResource("10_vetlt") +buffer = PackedFloat32Array(0.07461226, -0.0587707, 0.052498877, -2.9547482, 0.0037678932, 0.07487467, 0.07846467, 0.0003964857, -0.078714244, -0.052123923, 0.053519, -1.7961209, -0.06506865, 0.04858099, 0.054671537, -0.75083697, 0.024995131, -0.053999472, 0.077732354, -0.00049999997, 0.06873378, 0.065627456, 0.023488775, 0.06253498, -0.027526392, -0.03827221, -0.03551953, -0.66413665, -0.04925871, 0.03235273, 0.003313781, 0.0004, 0.017319884, 0.031187171, -0.047026403, 2.2370489, -0.021256328, 0.0676561, -0.08760571, -2.8155575, -0.038538933, -0.08814845, -0.0587243, -0.0004, -0.103763476, 0.018879728, 0.039757222, -0.8081807, -0.03151561, 0.06856794, -0.08169455, -1.0421919, -0.030894015, -0.08740324, -0.061441258, -0.00029999999, -0.10208389, 0.005282675, 0.043815143, 3.661593, 0.031040793, -0.051165305, 0.052906815, 0.89081675, -0.038505998, 0.03764489, 0.058997463, 0.00019999998, -0.062724054, -0.048430637, -0.010035808, -4.3252177, -0.059206616, -0.0691699, 0.037462678, 2.9048116, -0.07809831, 0.057297274, -0.017635945, 0.00029999996, -0.009411749, -0.040322416, -0.08932453, 2.4267654, -0.0054047285, 0.03503041, 0.037212554, -3.5402706, -0.0033668012, 0.037094735, -0.035408486, 0.00036788493, -0.050995767, -0.0061616967, -0.0016062203, -0.3176035, -0.028006146, -0.0081071695, 0.049093693, 0.96754074, 0.003316862, -0.056514587, -0.007440485, -0.0004, 0.049647916, -0.00079760625, 0.028190594, -3.0218046, -0.024354404, 0.0032792117, 0.06294962, -1.2623127, 0.040984742, -0.050449174, 0.018484503, -0.0002, 0.047892164, 0.044840526, 0.016193, -4.50546, -0.051860284, 0.0455126, 0.11060537, 1.1472516, 0.10041569, 0.08205974, 0.01331612, 0.00012129894, -0.06497409, 0.09049439, -0.06770204, -4.6863623, 0.022330865, -0.015247665, 0.05674513, -2.1473393, -0.048618857, -0.038883824, 0.008684685, -0.0003, 0.032995578, -0.046975803, -0.025607321, 3.4682536, 0.013635519, 0.028498627, -0.1262174, -2.062302, 0.10760189, -0.07298757, -0.0048554144, -0.0003, -0.071866766, -0.10387287, -0.031217357, -3.6699834, 0.06105309, -0.00093507854, 0.117797524, -0.7052747, 0.088280484, 0.08821145, -0.04505452, 0.00039999996, -0.07799801, 0.09910842, 0.041212186, 2.5860922, -0.06469428, 0.04593257, 0.11744508, 1.9905121, -0.013840069, 0.12861449, -0.05792465, 0.00044464943, -0.12534592, -0.037907958, -0.0542207, -0.65665483, 0.039956726, 0.041516483, 0.04333708, 1.7474341, 0.00070519384, 0.051735137, -0.050211944, 0.0002, -0.06001021, 0.028250964, 0.02826517, -4.0900736, 0.08457842, 0.046541758, -0.07145121, -0.23598063, 0.049557664, -0.108725, -0.012158584, -0.00049999997, -0.069393456, -0.020920256, -0.09576956, 1.0449926, -0.019820565, -0.01674045, 0.09634089, 3.556182, -0.08237978, -0.050100997, -0.025653983, -0.00014090305, 0.05268189, -0.08464226, -0.003869231, 3.2216234, 0.090567864, 0.020121057, -0.038162954, 0.08638315, 0.023464788, -0.09744033, 0.004311867, -0.00049999997, -0.036203194, -0.0128191905, -0.09267579, -1.2274587, 0.06534331, 0.03128072, 0.037839048, -3.705615, 0.00537274, 0.05805892, -0.0572741, 0.00029999999, -0.048799697, 0.04827738, 0.044361144, -0.9490087, 0.06659121, 0.02389828, -0.0077475538, -0.4086059, 0.023120519, -0.049710557, 0.045385502, -0.0003, 0.00982822, -0.044980835, -0.054274045, -3.8393373, 0.119915396, 0.005475134, 0.05165126, -0.5869695, 0.028653298, 0.10141704, -0.07727294, 0.00012316332, -0.04332225, 0.08223224, 0.09186172, 4.787923, 0.04780431, 0.023730954, 0.115925536, -0.11109523, 0.08607422, 0.07882089, -0.051629804, 0.0004, -0.08119802, 0.09752564, 0.013519352, 2.464006, -0.07057341, 0.07969605, 0.063444994, 0.6491519, -0.0042694565, -0.07942993, 0.09502628, -0.00015598256, 0.10177672, 0.051930342, 0.047979936, -4.73426, -0.06834302, -0.0024576152, -0.048736915, 4.291204, 0.010821843, 0.08101855, -0.019260759, 0.0002, 0.04758376, -0.021955619, -0.06561884, -0.66998476, 0.015158044, 0.011608172, 0.09918387, 1.2847307, -0.047903616, -0.08717857, 0.017524112, -0.0003, 0.087620944, -0.04966992, -0.0075776945, -3.8760414, -0.023581605, -0.041880593, -0.047182333, -3.1056855, -0.016116217, -0.04470045, 0.047732435, -0.00020760571, -0.060995273, 0.028002393, 0.005629431, -3.2936478, 0.061533175, -8.952082e-05, 0.03489461, 0.92648506, -0.013206551, -0.065536335, 0.023120303, -0.00049999997, 0.032299053, -0.026626175, -0.057024468, -1.4521796, 0.02868224, -0.07036287, -0.047602583, 0.5389815, -0.037645467, -0.05556743, 0.05945326, -0.00041689712, -0.07615615, 0.00096771255, -0.04731717, -2.1487677, -0.032251503, 0.039968815, -0.09752775, -2.5315003, -0.07941649, 0.057841636, 0.049966954, 0.0004, 0.06929784, 0.08488914, 0.011873122, -1.6435742, 0.034481242, 0.054162405, -0.050156254, -2.868814, -0.030818038, 0.06086535, 0.0445402, 0.00029999999, 0.06707805, 0.000121705845, 0.046246, 2.7982137, 0.07297747, -0.001032003, -0.03064102, -3.4745092, -0.02422628, -0.050424177, -0.056001242, -0.00039037116, -0.018788937, 0.06100809, -0.04680424, 0.15299928, -0.06345868, 0.03419078, -0.023951206, 2.6341343, -0.0417286, -0.050721798, 0.03815362, -0.00029999999, 0.0011802957, 0.045032956, 0.061158113, -2.933321, 0.08511874, -0.09764823, 0.03758501, 3.4423773, -0.10462895, -0.07979205, 0.029648302, -0.00039997912, 0.00077016663, -0.047865033, -0.12610057, 0.16484202, -0.053414993, 0.01839751, -0.09696756, 0.8618345, -0.018978503, -0.110114545, -0.010437481, -0.00049999997, -0.09685553, 0.011430492, 0.055521965, 0.5909521, -0.04964873, 0.01692188, -0.1197394, -1.6495162, 0.10017284, 0.0782659, -0.030474916, 0.0004, 0.06774419, -0.10332941, -0.04269222, -2.6160872, -0.042894144, 0.00061940914, 0.069759056, 1.9795358, 0.055212945, 0.050355863, 0.033502758, 0.0004, -0.042640835, 0.06457958, -0.026792837, 2.6179967, 0.017607851, -0.025057515, -0.072803915, -2.3102872, 0.032754365, 0.070026346, -0.016179794, 0.0003576718, 0.069680974, -0.026584864, 0.026002487, 2.74453, -0.014570855, -0.04340461, 0.031591926, 3.5200648, 0.04135099, -0.02995023, -0.022077119, -0.00029999999, 0.03423602, 0.01770151, 0.04011073, 1.7995508, -0.034971002, -0.0012596849, 0.050112333, -1.693656, -0.00680591, -0.06041682, -0.0062682303, -0.00049999997, 0.04966399, -0.009166477, 0.034427706, -0.43750465, 0.037551034, 0.07122528, 0.111085854, -4.299201, 0.04498592, -0.1154871, 0.058840357, -0.00025038767, 0.12405392, 0.020319466, -0.05496302, -1.080845, -0.001732679, 0.049277972, 0.04844262, -3.4670205, 0.0017590123, -0.048410688, 0.04930842, -0.0003, 0.069079034, 0.002468736, -4.0508432e-05, 2.4993818, -0.042066008, 0.0023572338, 0.049913686, -2.157134, -0.041894987, -0.037224777, -0.033550065, -3.2828742e-05, 0.02723495, -0.053621255, 0.02548526, -4.4814568, -0.011628642, 0.08805809, 0.07153755, 0.4706703, -0.02186162, 0.06882549, -0.08827341, 0.00049999997, -0.11132796, -0.022713365, 0.009861984, -1.7706127, 0.07483084, 0.02765046, 0.11114892, 3.8713613, -0.017967664, 0.13395828, -0.02122803, 0.00019999998, -0.11311851, -0.0029863396, 0.07689977, 2.135899, 0.10324903, -0.08702032, -0.030393228, 0.1742719, 0.08447544, 0.10759245, -0.021081075, 0.00049999997, 0.03688068, -0.002824128, 0.13337348, -1.4424177, -0.0044041043, 0.013477062, 0.053637236, -1.1494511, -0.009583489, -0.053178996, 0.012575031, -0.0005, 0.0544678, -0.0082670115, 0.0065495, -0.80305445, 0.0321889, -0.028972937, -0.0294092, 0.102279216, -0.02337894, -0.043529045, 0.017294653, -0.00049999997, -0.03402583, 0.0024997455, -0.039704554, 1.5313766, 0.06754249, 0.0664297, 0.024827277, 2.9545126, 0.0450118, -0.0666512, 0.05588239, -0.0004, 0.05480177, -0.027129358, -0.07649869, 0.32048655, -0.061058853, -0.042026456, 0.1254916, -0.74177694, 0.020817047, -0.13953358, -0.03660035, -0.0004, 0.13069437, 0.002590698, 0.0644579, 3.299818, -0.076587416, -0.021193298, 0.011850458, 2.8598075, -0.008179051, 0.05943717, 0.05343732, 0.00014148638, -0.022862468, 0.049732182, -0.05881531, -3.852172, -0.06685161, -0.04999149, -0.046980623, 3.8301094, -0.049924705, 0.08044298, -0.014557425, 0.00018701819, 0.0470516, 0.014326398, -0.082197145, 2.7872107, -0.043437313, -0.017452843, 0.038227342, -2.1609573, -0.03996801, 0.034140278, -0.029828342, 0.00037367176, -0.012980324, -0.046717986, -0.03607869, 2.795409, -0.067481436, -0.029879501, -0.023675743, -0.15627487, 0.036727887, -0.038055293, -0.056656223, -0.00029999999, 0.010217008, -0.06054817, 0.047292728, -4.0453124, 0.059698187, 0.0025805163, -0.009620723, 0.81462324, -0.0068553993, -0.03176557, -0.051059205, -0.00049999997, -0.007226402, 0.051452696, -0.03104013, -0.7162607, -0.123983316, 0.074977346, -0.0070143216, -3.174851, 0.07240969, 0.122409046, 0.028557485, 0.0004, 0.020679452, 0.020906718, -0.14204907, -0.3988536, -0.05547028, 0.016398765, 0.07246786, 0.78783965, 0.029385554, 0.087904416, 0.0026011693, 0.00049999997, -0.068242215, 0.024522593, -0.05778499, -1.0636826, 0.027024668, -0.05718024, 0.039034896, -1.4448435, 0.0075121, -0.039234124, -0.06267286, -0.0004, 0.06882494, 0.026734607, -0.008486755, 2.2211964, 0.07447688, -0.03297712, 0.050554007, -0.23487517, 0.0028776652, 0.0821406, 0.049342103, 0.00027735843, -0.06029028, -0.036816217, 0.06480473, 4.1196103, 0.06114815, 0.05267344, 0.0833259, -2.771745, -0.09392605, 0.06089887, 0.030430535, 0.0004, -0.029926468, -0.083508246, 0.07475006, 0.5552669, -0.07948227, -0.018400477, -0.099849194, -1.783675, -0.07179821, 0.09984524, 0.038753286, 0.00029336306, 0.071787596, 0.07948724, -0.07179271, -3.6752977, -0.0674894, -0.048451032, 0.04937499, -0.7073413, 0.06894614, -0.052737053, 0.042490542, -0.00049999997, 0.0056410804, 0.06489619, 0.07139242, -1.5385296, 0.00092268566, -0.035197668, -0.06980695, 1.3507986, -0.05825402, -0.04686756, 0.0228613, -0.00049999997, -0.052137848, 0.051742595, -0.026778486, 0.22168696, -0.026807899, 0.0055482937, -0.06901401, -1.7330924, 0.018968636, -0.07058651, -0.013042915, -0.00049999997, -0.0665876, -0.022341516, 0.024069263, -0.23818822, 0.063050985, -0.0022626948, -0.088933855, -0.56709117, 0.056493662, 0.085223645, 0.037883725, 0.00049999997, 0.06872277, -0.067982286, 0.050451666, -0.77209026, -0.078566216, 0.044448506, 0.11712604, -1.4753841, -0.03891337, 0.12275626, -0.07268758, 0.0004, -0.119079515, -0.06944109, -0.05352417, -2.603835, 0.055246167, -0.0019363456, -0.04321544, -1.5354289, -0.015878128, 0.0642967, -0.023179363, 0.00048827069, 0.040239394, 0.02802942, 0.050185718, 1.1306006, -0.070003025, -0.099630475, -0.058386184, -3.9818258, -0.10797764, 0.080678634, -0.00820892, 0.00020000001, 0.04093903, 0.042430278, -0.12148772, -1.8379622, 0.02696196, -0.012412742, 0.043893788, 2.4807022, 0.0074485494, 0.051501743, 0.00998889, 0.0004, -0.045002885, 0.0010875163, 0.027950777, -2.0136425, 0.020277945, -0.023930185, -0.05572992, -3.656657, 0.037965603, 0.05083374, -0.008013579, 0.0002, 0.047297895, -0.030544236, 0.030325422, 2.8520286, -9.543193e-05, 0.036691945, 0.05495346, 1.2528663, -0.009472206, 0.054378353, -0.0363244, 0.00049999997, -0.06539463, -0.007930081, 0.005181282, -1.0130777, 0.11587959, -0.012338196, 0.048840158, 3.8031945, -0.0009976676, -0.123044744, -0.028716957, -0.00025723828, 0.050364636, 0.025950493, -0.11294089, -2.2484179, -0.05308575, 0.021120384, 0.023881266, -0.7606827, 0.0050567407, 0.05137638, -0.03419619, 0.00044094192, -0.03147721, -0.02736565, -0.045768857, -1.9702996, -0.045526423, 0.0029161288, -0.049582865, -0.3743275, 0.03726398, -0.042463932, -0.0367128, -0.0003095752, -0.032838393, -0.052229587, 0.027080048, -3.7282665, -0.12824365, -0.025249805, 0.029528769, -2.9223256, 0.0136115085, -0.124587715, -0.047419038, -0.0002, 0.03638994, -0.042382613, 0.121800765, 3.6868923, 0.11154954, 0.058827687, 0.019442644, 1.1374519, -0.047262665, 0.10668594, -0.05163687, 0.00023515453, -0.040061865, 0.037939817, 0.11505492, 4.0805054, 0.112227365, -0.035598118, -0.0045469464, 4.313372, 0.03217148, 0.09318106, 0.06453815, 0.0002, -0.015902705, -0.06271325, 0.09847353, -0.8258809, -0.043506633, 0.00024324973, -0.05490382, 3.673408, -0.027513938, 0.060524262, 0.022070626, 0.00033082423, 0.04751285, 0.035271384, -0.037493654, -0.08344084, -0.051832214, 0.023018917, 0.023596466, 2.307094, -0.028045103, -0.05390093, -0.009022489, -0.00029999996, 0.01732444, -0.01838648, 0.055991456, -2.9964223, 0.10940175, 0.020076362, 0.050130136, -1.3600026, 0.040209357, -0.105885975, -0.04534535, -0.00049639615, 0.036045782, 0.057183336, -0.10156574, -1.2864604, 0.07993237, 0.0097958045, -0.009261258, -0.035275858, 0.013254127, -0.046940476, 0.064744376, -0.0002, 0.0024610474, -0.0653571, -0.047888514, -4.69475, 0.0276029, -0.044835974, -0.04197233, 2.9528222, 0.012430672, 0.049142804, -0.044320703, 0.00029999999, 0.06014499, 0.010420231, 0.028422885, 2.4692247, 0.12959997, 0.013907047, -0.0424234, -1.6730618, 0.0005751101, -0.13076314, -0.04110927, -0.00029999999, -0.044641003, 0.038689755, -0.123691484, 3.857292, -0.03938679, 0.033595867, 0.054665983, -1.0722935, -0.049003053, -0.057158038, -0.00017925967, -0.00049551856, 0.041421656, -0.035674207, 0.051768422, 1.5396451, -0.10686715, -0.083470896, 0.038779214, -1.195633, -0.027717553, 0.08585244, 0.10841078, 0.0004, -0.08776646, 0.07452363, -0.081455976, -3.1676917, 0.051293373, -0.011466711, -0.074436724, -0.20019723, -0.02062275, 0.08447985, -0.027224679, 0.0004, 0.07243627, 0.03217135, 0.044959016, -2.327525, 0.08473517, 0.04069292, 0.012487454, -1.7751901, 0.03527696, -0.0827028, 0.030127784, -0.00029999996, 0.023819882, -0.022276288, -0.089040905, 3.8029177, -0.101801686, 0.01771585, 0.0037809766, 2.9584594, -0.010342452, -0.07456108, 0.07089013, -0.00040000002, 0.014872149, 0.06941559, 0.07517995, 0.08228121, 0.045252293, -0.06938179, 0.06709189, 1.8344464, -0.06501085, -0.07668042, -0.035448916, -0.0002962482, 0.07133542, -0.025868986, -0.0748664, 3.9256444, 0.11431032, -0.066421874, 0.03154292, -2.9814842, -0.025967436, -0.0910141, -0.09754893, -0.00029999999, 0.06879324, 0.07601475, -0.08923517, 2.490641, 0.10221463, 0.025422646, -0.016677726, 0.30889022, -0.029515015, 0.09701238, -0.0330114, 0.00049999997, 0.007302156, 0.036257107, 0.10002194, -0.067209065, 0.00945672, 0.050503142, 0.04504725, -1.6587288, 0.009164696, -0.04602164, 0.049671605, -0.0004, 0.06705094, -0.00083249464, -0.013142611, 2.9484773, 0.06912737, 0.036169168, 0.04597885, -4.003708, 0.012088715, 0.060807407, -0.06600893, 0.0002671123, -0.057237454, 0.05652527, 0.041588753, 1.1060604, 0.035998933, -0.022457363, -0.12673388, 4.04423, 0.015034132, -0.12996314, 0.027300054, -0.0003, -0.1278272, -0.021609835, -0.032480206, -0.44015467, 0.089776225, 0.039524876, -0.11264366, 2.0931726, 0.06402989, -0.13489653, 0.0036983127, -0.00038801547, -0.100752085, -0.050510265, -0.09802198, -2.7871225, -0.056599494, -0.013118877, 0.07066701, -1.1530498, 0.029460298, -0.08627914, 0.007578533, -0.0002, 0.065559305, 0.027445186, 0.057603586, -4.5382943, 0.045650844, 0.05932414, 0.014420576, -0.48813924, -0.053082455, 0.04746368, -0.027216883, 0.00049999997, -0.03015891, 0.0062571364, 0.069732316, 1.5979649, 0.0764931, -0.04930339, 0.06383583, -0.6597594, 0.05624642, 0.09566247, 0.0064857034, 0.00019999998, -0.057811562, 0.02783704, 0.09077419, 4.5028157, -0.003889833, 0.028304454, 0.052697863, -2.9297328, 0.024274092, -0.047518708, 0.027314447, -0.00040000002, 0.05467153, 0.023112088, -0.008378176, 1.5543176, 0.079943016, 0.03610059, 0.024516568, -2.362254, 0.03483567, -0.0836117, 0.009526749, -0.00039999996, 0.026282888, 0.0010151071, -0.08719735, -1.6105732, 0.07290124, 0.022181707, -0.022432597, -4.857295, -0.03078771, 0.062345948, -0.03840496, 0.0001, 0.006882325, 0.04394082, 0.06581549, 0.274972, -0.033196714, 0.012492796, -0.04930421, 4.770208, -0.02073584, -0.057085644, -0.00050294184, -0.0001399666, -0.04644353, 0.016557727, 0.035466023, -0.55307865, 0.08131685, 0.048289057, -0.036094006, -3.781664, 0.025066359, -0.08219868, -0.053498574, -0.00015478233, -0.054829627, 0.03403804, -0.07798824, 2.9249904, 0.10612115, -0.056856114, -0.0503403, 2.7037938, -0.04705685, -0.11712881, 0.033090077, -7.035796e-05, -0.059602156, -0.008756783, -0.115755625, 4.1580596, -0.062881574, -0.024605235, 0.027990105, -2.8003879, -0.005293905, -0.04844494, -0.054479532, -0.0004, 0.036889546, -0.048894037, 0.039893497, -1.5720104, -0.046158716, 0.064130396, -0.12614273, -0.10827748, -0.022161461, -0.13432275, -0.060179662, -0.0004, -0.13976252, 0.00011885773, 0.051202957, 2.293345, -0.09297893, -0.011131891, -0.055962086, -3.9660072, -0.03321663, -0.07643496, 0.07039251, -0.000100000005, -0.0463932, 0.077035904, 0.06175672, -2.8549051, 0.09444133, -0.036162578, 0.07623032, 1.4604492, -0.024207722, 0.097995006, 0.07647826, 0.00016383454, -0.0808256, -0.07160453, 0.06616625, -4.5411525, -0.036474947, -0.05027252, -0.040123485, -2.3662877, -0.052780773, 0.049755674, -0.0143598635, 0.0004, 0.036761545, 0.021556636, -0.060427997, 1.0923744, 0.07534487, -0.017606884, -0.022444965, -3.793469, 0.0035257374, -0.05715478, 0.05667034, -0.00029999999, -0.02830809, -0.05398107, -0.052681334, 0.14182968, 0.1345752, -0.0224237, 0.005750572, 1.4762316, 0.018407736, 0.08308716, -0.10678978, 0.00029999999, 0.014037335, 0.10601923, 0.08490732, 3.6032412, 0.025627859, 0.018568814, 0.09319919, -4.1413155, -0.082704686, 0.051902026, 0.012401237, 0.000112861686, -0.04680623, -0.08154174, 0.029116957, 2.4972672, 0.09621036, 0.03180742, 0.07059484, 3.5530868, 0.07078253, -0.0817728, -0.05962236, -0.0003628369, 0.031387556, 0.08690962, -0.08193484, 0.3647338, -0.015787594, 0.0156971, 0.05300364, 3.8372736, 0.042007267, 0.039238073, 0.0008918163, 0.0001, -0.035932906, 0.03897444, -0.02224526, 3.0951018, -0.08183768, 0.058101304, -0.013215316, 0.2884551, 0.058932506, 0.07561094, -0.032523192, 0.00049999997, -0.008795855, -0.033985812, -0.09494951, -1.8325689, -0.06889015, -0.032886755, -0.0356816, -2.6135583, 0.0060309125, -0.06728368, 0.05036966, -0.0004, -0.04814917, 0.038625617, 0.057361014, -0.92870903, -0.08080738, -0.022695394, 0.06191224, 1.7755008, 0.019421559, 0.08539047, 0.056650773, 0.0004, -0.06301594, 0.055420443, -0.06193225, -1.5600604, -0.020146325, 0.045583047, 0.060908403, 2.0652118, -0.0061366446, -0.063776284, 0.045699555, -0.00039999996, 0.07582869, 0.006949326, 0.019880632, 1.0985624, 0.09616281, 0.10071796, -0.011867786, 0.1094315, 0.09006186, -0.09233, -0.053817015, -0.00048124272, -0.046624184, 0.029381983, -0.12843335, 1.9341285, -0.09941105, -0.09879349, -0.0027583365, 0.2161327, -0.0938295, 0.09311359, 0.046649814, 0.00017577999, -0.031044878, 0.034928914, -0.13216089, 4.7468843, 0.009007832, -0.045885928, -0.03486208, 0.8622152, -0.0042678462, -0.035719704, 0.04591201, -0.00020000001, -0.057468843, -0.004539617, -0.008873975, 4.551814, -0.0055405647, -0.060154445, -0.08511023, -1.0228577, -0.0348787, -0.079245865, 0.05828016, -0.00049999997, -0.098212965, 0.03153639, -0.01589585, -0.6585201, 0.040801108, -0.046639595, 0.0065936246, -2.039019, -0.046051137, -0.0376634, 0.018553143, -0.00029999999, -0.009900491, -0.01701986, -0.059124965, -3.6093984, -0.007926025, 0.0037559841, -0.055225655, 1.6715647, 0.026821414, 0.049062733, -0.00051259535, 0.00021264685, 0.04842099, -0.02656207, -0.008755943, -3.9577155, 0.041381974, 0.009673743, -0.10191494, 2.5342555, 0.08585646, -0.063151084, 0.028867226, -0.0003, -0.05575759, -0.090061456, -0.031188658, 3.3742628, -0.038993947, -0.038475465, -0.03442429, 2.6261663, -0.051186904, 0.03443599, 0.019493204, 0.00039999996, 0.0067300377, 0.038983643, -0.051194757, 1.264225, -0.061314013, 0.050168995, 0.018293323, -0.051780034, -0.030902045, -0.05605086, 0.050143264, -0.00049999997, 0.043550402, 0.030860255, 0.06133505, 0.92253345, -0.040250435, 0.022450265, 0.057752717, 1.0177366, -0.04931449, 0.030090522, -0.046066567, 0.00049999997, -0.037516274, -0.06363989, -0.0014079724, 1.2462701, 0.070690975, -0.022785444, 0.03221733, -3.2758794, 0.00047453635, -0.06560283, -0.047438275, -0.00029999999, 0.039457668, 0.04161056, -0.057148926, -2.0362148, -0.098633416, -0.0054417923, -0.061339706, 2.768681, -0.01526307, -0.11004938, 0.03430591, -0.0004, -0.05965913, 0.037151635, 0.092635125, -0.729006, 0.116531715, -0.054480214, 0.022994367, -3.9524033, 0.059087962, 0.10928256, -0.040526643, 0.00019999998, -0.0023338748, 0.046537105, 0.122087374, -2.3288517, -0.02384803, 0.038420442, 0.038339943, 3.040524, 0.04124935, 0.040047564, -0.014473914, 1.7300044e-05, -0.035278503, 0.020853607, -0.04284115, 3.945774, -0.061528187, 0.002480576, -0.02878383, -2.0136914, 0.016890503, 0.05803134, -0.031103957, 0.00044704563, 0.023438701, -0.035307117, -0.053145226, 0.5418334, 0.03992484, -0.13587406, 0.04837039, 2.700612, 0.08149708, 0.06266216, 0.10875261, 0.00029999999, -0.118994474, -0.002672112, 0.09071178, -3.010003, -0.06689572, 0.07115219, -0.04679036, -2.3052871, -0.009436737, -0.06532798, -0.085849956, -0.00030998394, -0.084634036, -0.048955414, 0.046555977, 2.9484131, 0.05729946, -0.03166051, 0.08983053, -2.902359, -0.07056732, 0.056297105, 0.06485393, 0.00019999998, -0.06397005, -0.09046211, 0.008920944, -3.3327446, 0.103702605, 0.0010581019, -0.03707881, -0.013766899, -0.028321551, 0.07335579, -0.077116854, 0.00039999996, 0.02395511, 0.082146205, 0.06934222, -3.2128773, 0.032159448, -0.040417485, 0.07551414, 4.9058, -0.03559784, 0.06705764, 0.051051475, 0.000100000005, -0.07790219, -0.04732744, 0.007845356, 0.28095034, 0.0010888714, 0.0055028326, 0.07316035, -2.095463, -0.032210343, 0.06577563, -0.004467985, 0.000100000005, -0.06591822, -0.032049768, 0.0033917378, -4.471929, -0.049402032, -0.013046495, -0.048105355, 1.1000075, -0.0024866739, -0.067001425, 0.02072494, -0.0004, -0.04978105, 0.016294034, 0.04670384, 2.0671332, -0.037762325, -0.05671727, -0.027386583, -2.2510164, 0.047366392, -0.04662033, 0.031238362, -0.0004, -0.04151261, -0.0016009891, 0.0605558, -2.3972464, -0.034998383, -0.011624818, -0.10063905, 2.1495073, -0.060070917, 0.08811916, 0.0107117, 0.0002, 0.0815772, 0.0599009, -0.03528856, -3.8936467, 0.025840364, -0.03583201, 0.05279373, 3.6708016, -0.019773541, 0.0496575, 0.043381736, 0.00020000001, -0.060663972, -0.03144893, 0.008347606, -2.7976573, 0.11438367, -0.06154446, 0.0056824335, -3.3614717, 0.036811672, 0.0774401, 0.09773209, 0.0003821584, -0.04964788, -0.08437383, 0.08555571, -1.0041797, 0.035296474, -0.007827419, -0.047065303, -0.80428344, -0.009251035, -0.058556188, 0.002800679, -0.00041027798, -0.04680629, 0.005670713, -0.036045335, -2.0954676, -0.056004915, -0.07234429, -0.06702123, -2.4763587, -0.021749526, -0.06611602, 0.08954173, -0.0004, -0.09618991, 0.057070725, 0.018775646, -2.288673, -0.06944899, 0.026964718, -0.11501469, 1.6947308, 0.0060820286, -0.1324245, -0.034718867, -0.0004, -0.11797663, -0.02270011, 0.065915555, 1.5388346, 0.046653222, 0.010612188, -0.081068076, -1.5382063, -0.067720756, 0.05731263, -0.031469584, 0.00022737014, 0.04580994, 0.07391766, 0.03603896, 3.9683526, 0.09045223, 0.0028020972, 0.04262759, 2.9632273, 0.023932267, -0.08600711, -0.045128692, -0.00018653265, 0.035386577, 0.051004905, -0.07844018, -3.700367, -0.12526222, -0.04458957, -0.015690472, -1.8415456, -0.03934668, 0.122983925, -0.035381235, 0.0004, 0.026196549, -0.028491473, -0.12816794, -2.2094126, 0.05963098, -0.08533813, 0.018574601, 3.0753343, -0.08459755, -0.062027786, -0.01338925, -0.0004, 0.021699421, -0.007309102, -0.10324329, 1.0985005, 0.08186896, 0.029898994, -0.038191363, -1.4192797, -0.019810973, 0.08900595, 0.02721256, 0.00040818565, 0.044272516, -0.015461177, 0.08280068, 1.7524152, 0.12185203, -0.06829398, -0.012947774, -1.2926805, -0.036419407, -0.08498296, 0.10550427, -0.00049999997, -0.0592059, -0.08828056, -0.091546886, 0.7997395, 0.05241597, -0.055258807, 0.06371312, -0.42679027, -0.067366965, -0.07256424, -0.0075134966, -0.0004, 0.050740395, -0.039258443, -0.075792596, -2.339324, -0.036904246, 0.07660576, 0.10046325, -4.332319, 0.060103435, -0.081413604, 0.08415837, -0.0002, 0.11112552, 0.06947382, -0.012154607, 1.4098549, 0.06221924, -0.012582321, 0.07584041, 0.9402082, 0.056728166, 0.07336243, -0.034368396, 0.00029999999, -0.051884476, 0.06512263, 0.053370047, 3.8972442, -0.013585365, 0.0073747714, -0.12148548, -3.8703914, -0.006563456, -0.12210651, -0.006678494, -0.0002, -0.12153201, 0.0057700993, 0.013940843, 2.6354842, -0.058567982, -0.012499976, 0.03719527, 0.84460795, -0.0049235513, 0.068638064, 0.015314088, 0.00046399116, -0.038929373, 0.010124881, -0.057895906, 1.8259351, -0.119355544, -0.011929454, -0.072857395, 1.2161328, -0.010330011, -0.1344381, 0.038935192, -0.00023996754, -0.07310133, 0.03847527, 0.11345531, -4.28869, -0.007826251, 0.06957858, -0.11071791, -1.8960525, -0.039148457, 0.1045821, 0.06848992, 0.00039999996, 0.124767914, 0.037179176, 0.0145451445, -2.819878, 0.06054089, -0.10002175, 0.05595902, 2.7114303, -0.108080246, -0.070881985, -0.009765452, -0.0004, 0.038136866, -0.042099353, -0.11650829, -0.2749544, 0.0040342445, 0.042843595, 0.044352137, 1.1318893, 0.024264831, -0.04196429, 0.03832985, -0.00049999997, 0.056691304, 0.014912599, -0.019561987, -0.5201254, 0.052377895, 0.07655406, -0.011243819, 2.5575757, 0.066859886, -0.05161321, -0.039952774, -7.4618234e-05, -0.03894489, 0.01435072, -0.08371228, 4.243457, 0.0056340527, 0.009719229, 0.074446864, -1.6045377, -0.053925596, -0.05142042, 0.010794099, -0.00038195582, 0.052238204, -0.054129645, 0.003113439, -3.1188424, -0.07008053, -0.07667033, 0.054211106, 1.9669429, -0.08780673, 0.07747886, -0.0039329766, 0.0004, -0.03327405, -0.042978484, -0.10379861, 1.9132993, -0.07807415, 0.0155631425, -0.1256138, 2.8645377, 0.030189369, 0.1456183, -0.0007222991, 0.00021514634, 0.12292128, -0.025878726, -0.07960691, -3.1882043, 0.036852207, 0.014146908, 0.06516479, -3.4271512, -0.0023442379, 0.074682906, -0.014887515, 0.0001, -0.066641495, 0.0051960163, 0.03655929, 3.4677587, 0.065092385, -0.02825979, 0.044115935, 2.407825, -0.016395558, 0.055837676, 0.05995991, 0.00040000002, -0.049759593, -0.055365957, 0.037953194, -1.7438171, 0.09412099, -0.003907635, -0.11652275, -3.3150425, 0.06795237, 0.123526976, 0.050745845, 0.00029999999, 0.094738044, -0.084719524, 0.079365514, -2.1714368, -0.073919415, 0.0076825297, 0.06720727, 4.130417, 0.03303723, -0.0827706, 0.045798324, -0.0001, 0.059028618, 0.055945724, 0.05852874, 2.69915, 0.07624289, -0.073858105, 0.10117909, -0.25486666, 0.06398833, -0.078865126, -0.1057875, -0.00028275425, 0.107692726, 0.09914878, -0.008775159, 4.3552217, -0.05221396, -0.008136312, 0.09451109, 1.3252103, -0.08395671, 0.054181848, -0.041718613, 0.0004385098, -0.044156738, -0.093396865, -0.032435395, -1.658956, -0.059184674, 0.074374124, -0.020353552, -0.5285546, -0.069248006, -0.062552474, -0.027212206, -0.00049999997, -0.033918895, -0.0020688751, 0.09107049, 1.0990379, -0.049915932, -0.049955513, 0.029499901, -2.5543704, 0.057121865, -0.049123283, 0.013468238, -0.00016497608, 0.010143506, 0.030801734, 0.06932358, -4.02577, -0.0581155, 0.006996447, -0.063048385, -2.4143188, -0.00798934, -0.08563328, -0.002138424, -0.00029999999, -0.06293027, 0.0044104597, 0.058496058, -3.0585146, 0.008806328, -0.034542657, -0.04065601, 3.3449697, -0.03195519, -0.036411677, 0.02401485, -0.00038150785, -0.042719692, 0.020115977, -0.026344515, -1.0609711, -0.08011858, 0.063022904, 0.031299938, 0.05752655, -0.06901182, -0.061108883, -0.053606275, -0.00049999997, -0.013745478, -0.06053414, 0.08670202, -0.3461604, -0.080305345, -0.05053244, -0.06448577, 3.6140559, 0.003305451, 0.088226914, -0.073252834, 0.00011298648, 0.081859745, -0.05313546, -0.060303386, -3.2134326, 0.12272035, -0.048398264, -0.010503133, -3.4166248, 0.049488276, 0.11876246, 0.03097391, 0.00030879618, -0.0019020122, -0.032650907, 0.1282314, -1.5361058, -0.028826056, -0.03843153, -0.0741165, 0.779171, -0.0039048304, -0.07770353, 0.041810207, -0.000277595, -0.083396584, 0.01692214, 0.023660734, 4.305979, 0.03458516, 0.021503817, 0.035753004, -2.354741, 0.009185303, 0.041375972, -0.03377105, 0.0004, -0.04069793, 0.027612308, 0.022761002, 1.6641502, -0.03783278, 0.0378196, 0.083340056, 1.9729955, 0.02574217, 0.090936795, -0.02958117, 0.0004394441, -0.08782499, 0.010362535, -0.044571258, 0.77231026, -0.012625767, -0.01382245, -0.074032225, -1.0633016, 0.058757022, 0.045149066, -0.018450381, 0.0004, 0.04711099, -0.060014524, 0.0031707217, -2.3619156, -0.00899079, -0.027329907, -0.055709757, -3.9396253, -0.012104191, 0.055982582, -0.02551029, 0.0002314661, 0.06086041, 0.007096672, -0.013303491, -1.5872755, -0.025092581, -0.06318652, 0.053320087, -2.1781232, 0.0430934, -0.05754959, -0.04791877, -0.0001, 0.07055867, 0.012677318, 0.048228256, -4.3574777, 0.046470795, -0.09317092, -0.007635209, -2.4887016, 0.087341264, 0.046312183, -0.03354605, 0.00040000002, 0.03332598, 0.008544749, 0.098564796, 1.4016999, -0.08687635, 0.012395218, -0.0080139, -0.3415735, -0.012552799, -0.08721459, 0.0011851304, -0.00023796361, -0.007764741, 0.0023099598, 0.08774813, -4.4486294, -0.08950313, -0.10378099, 0.027097287, -1.7034221, 0.09011238, -0.09189704, -0.054316346, -0.0004999999, 0.058176607, -0.017320795, 0.12582147, -0.7393247, 0.110305004, 0.049022507, 0.03619266, -0.72482705, -0.058743205, 0.105443425, 0.036210913, 0.00037339597, -0.016197229, -0.04856737, 0.11514847, -3.4610777, -0.10870931, 0.0110710375, -0.092313476, 0.9892776, 0.07089666, -0.082013845, -0.09332447, -0.00049999997, -0.060149886, -0.11667572, 0.056840364, 0.54743075, 0.05182524, 0.112714574, -0.080527, 0.16806829, 0.032645937, -0.09349427, -0.10985486, -0.00049999997, -0.13462323, 0.020718943, -0.05763971, -1.6023558, -0.035687935, -0.037031397, 0.021041038, -3.336527, 0.011485407, -0.034801453, -0.04176867, -0.0004, 0.04101384, -0.022476925, 0.030005509, -0.18491006, 0.024135403, 0.092185706, -0.07907878, -3.4466014, 0.015151672, 0.07770991, 0.09521435, 0.00015025488, 0.1205076, -0.02823369, 0.003866501, -3.3238823, -0.090900294, 0.0022979025, -0.05837444, -3.1882079, -0.022024965, 0.09865524, 0.038180687, 0.00019999998, 0.054108746, 0.044017997, -0.08252503, -3.3975823, 0.04062794, 0.054277748, -0.0020428507, 1.6387067, -0.05188257, 0.038025122, -0.021521268, 0.0004, -0.016076222, 0.014453143, 0.064292595, 2.3387618, 0.075474314, 0.0027881288, 0.041159607, 1.200845, 0.022957508, 0.06846224, -0.046734754, 0.00049999997, -0.034275923, 0.05199435, 0.05932967, -1.4101174, -0.06569874, -0.10039291, -0.027265856, -1.0405878, -0.09854865, 0.0703909, -0.021720363, 0.0004, 0.03332158, 0.010240795, -0.11799697, -2.6036289, 0.14012016, 0.033539984, 0.022458958, -1.932614, -0.020001754, 0.12816438, -0.066609494, 0.00019999998, -0.035060868, 0.06092591, 0.12775669, 3.8914168, 0.107930735, -0.0045571877, -0.009194879, 0.64714825, 0.00277954, -0.08052848, 0.07253822, -0.00040944765, -0.009878673, -0.072448276, -0.08005009, -2.1548886, 0.09259759, -0.07585254, -0.05317635, -2.0348392, 0.047577508, 0.10345491, -0.06472334, 0.0004, 0.07948404, 0.026440974, 0.100691654, -2.598738, -0.094463386, -0.023230473, 0.008144992, 0.8584571, -0.023999294, 0.07971614, -0.050977435, 0.00036743341, 0.0054799495, -0.05133235, -0.08285099, -3.447762, 0.12112491, -0.011484227, -0.004895701, -2.0706484, 0.005409619, 0.0913166, -0.0803686, 0.0002, 0.0112512885, 0.07972759, 0.09134559, 4.075319, -0.0349813, 0.028671397, -0.06566917, -0.63709295, 0.062374536, 0.048152827, -0.012202588, 0.00049999997, 0.035269048, -0.056722466, -0.043552686, -1.3229705, -0.025427716, 0.031108828, 0.03280375, 2.309435, 0.014709265, 0.041281577, -0.027746761, 0.0002903952, -0.04274906, -0.004299618, -0.029059324, -3.3826299, 0.09579297, 0.04397144, -0.06347341, 2.1672876, -0.043980245, -0.05206168, -0.10244012, -0.0003, -0.06346731, 0.10244393, -0.024815397, -3.221346, -0.10336455, -0.018746816, -0.0031764354, 2.3167949, -0.017914755, 0.09013683, 0.050991945, 0.0004, -0.0063713617, 0.050691966, -0.09184495, 0.24759534, 0.06994756, 0.0073067583, 0.013240482, -4.1392922, 0.0089699635, -0.07049022, -0.008487014, -0.00029999999, 0.012175338, 0.009954945, -0.069814205, -0.86657494, 0.09759286, 0.030867213, 0.09987425, -1.3274498, 0.053223696, 0.10292592, -0.08381831, 0.00019999998, -0.089971595, 0.09436888, 0.058750693, 4.244757, -0.008707321, 0.030686041, -0.06563062, 3.7829633, 0.0014758696, 0.06616433, 0.03073977, 0.00029999999, 0.07243504, 0.0023406255, -0.0085157, -0.331787, -0.008656069, 0.06740836, -0.13159196, 2.3012795, -0.11559701, 0.079099774, 0.048123, 0.0004, 0.092182785, 0.105520666, 0.04798948, 1.8818713, 0.07030715, 0.045870785, -0.12426341, 0.8960284, -0.037386436, 0.14183499, 0.031204265, 0.0004707465, 0.1270739, 0.016350023, 0.07793277, 1.7693114, 0.03873071, 0.04024215, -0.07070242, 0.29777062, 0.047085267, -0.074946016, -0.016864248, -0.0004, -0.06634184, -0.029698396, -0.053245604, 2.3016245, -0.015108109, -0.007931577, 0.06379165, 1.3144464, -0.026646318, 0.06040756, 0.0012000261, 0.00031770955, -0.058500078, -0.025466774, -0.017021302, -3.4765089, -0.08418292, -0.0313674, -0.017221846, 0.16561387, 0.029931454, -0.0858502, 0.01005587, -0.00049999997, -0.019611577, 0.003619194, 0.08927238, -1.427166, -0.031795558, -0.09129038, -0.107141405, -3.427168, 0.09266487, -0.096256666, 0.054516505, -0.00038316572, -0.105954885, -0.056788165, 0.07983008, 0.72835755, -0.03252495, -0.117002696, 0.07754647, 2.7923355, -0.08331352, 0.08015479, 0.08599435, 0.00029999999, -0.112968795, -0.025427118, -0.08574658, -2.9569142, 0.117568515, -0.084378764, 0.0022304459, -1.3717582, 0.08156992, 0.11455889, 0.03420109, 0.00049999997, -0.021704817, -0.026525278, 0.14061442, -1.0815302, 0.020841101, 0.026463794, -0.06601939, -0.26199403, 0.037237547, -0.06267316, -0.013367266, -0.00049999997, -0.060599152, -0.029410644, -0.030919256, -0.7027239, -0.008858472, 0.049982034, -0.058342725, -0.9256407, -0.046729922, -0.050121058, -0.035843316, -0.0003, -0.06097862, 0.031148443, 0.035943463, 3.764823, -0.0797803, 0.03418856, -0.00430596, -3.23828, -0.028449355, -0.05922356, 0.056881446, -0.0002, 0.01944308, 0.053628415, 0.06556108, -3.2720685, 0.086487904, 0.014574078, -0.0443938, -2.9342406, -0.032027602, -0.04951381, -0.07865105, -0.0002875218, -0.034021243, 0.083662115, -0.03881463, 3.214233, 0.10001758, 0.0053590727, -0.03000869, 2.9123957, 0.0008117326, -0.10336307, -0.015753532, -0.00039999996, -0.030472642, 0.014836204, -0.09891441, 0.6037196, 0.09665697, 0.03474687, -0.08509326, 2.9840121, 0.04542294, -0.12540886, 0.00038637928, -4.0657156e-05, -0.079905964, -0.029258301, -0.10271204, -3.9745283, -0.015849246, -0.016839614, -0.12681194, -3.992866, 0.10160756, 0.07597784, -0.022788394, 0.00029999999, 0.07772224, -0.10276105, 0.00393195, 0.6575748, -0.042716503, 0.08188158, 0.10172137, -3.0089757, -0.086343005, -0.098001204, 0.04262843, -0.00018352101, 0.09796286, -0.0506725, 0.081927486, -3.6714618, 0.047794852, 0.06416649, 0.06643337, 2.60784, -0.056960855, 0.07936015, -0.035672233, 0.00040000002, -0.07270621, -0.019992702, 0.07161829, 0.123078264, 0.0108867455, 0.042626943, -0.10482279, -2.6406431, 0.048767474, 0.09325813, 0.042988993, 0.00039999996, 0.10211076, -0.049084257, -0.009355387, -1.473449, -0.010277576, 0.010118128, -0.052031904, -1.5598276, -0.04115088, -0.034930576, 0.0013357042, -0.0004, -0.033411086, 0.03990993, 0.014360394, -2.8126006, -0.03436184, 0.055352483, -0.10465389, -4.6070337, 0.1022728, 0.06877164, 0.0027939405, 0.0002, 0.059637286, -0.08604441, -0.06509089, 0.6137612, 0.0020408686, 0.026260858, 0.09577082, -2.128806, -0.029592194, -0.09127833, 0.025659608, -0.00040000002, 0.09479443, -0.029059943, 0.0059483224, -1.5589097, -0.065491125, -0.0685882, 0.09225257, -4.3760824, 0.09926078, -0.08729434, 0.0055644987, -0.00019999998, 0.057984278, 0.07196753, 0.09467029, -1.5552819, -0.0104652345, -0.041120578, -0.044242065, 0.97547746, -0.023661349, 0.044103593, -0.03539488, 0.00049999997, 0.05557339, 0.011034313, -0.02340138, 1.0466412, -0.08449361, -0.062202975, 0.06136567, 2.8583422, -0.075365074, 0.09507647, -0.0073954687, 0.00035744635, -0.044216067, -0.04319003, -0.10465983, -2.1654546, 0.08204759, -0.08295931, -0.06499779, -2.85823, -0.0015943622, -0.08334039, 0.10435807, -0.00029999999, -0.10537751, -0.0633317, -0.052186638, -2.6599586, -0.059828784, 0.07078391, -0.022562709, 0.02795672, -0.06732838, -0.06390548, -0.021952258, -0.00049999997, -0.031405818, 0.0021568018, 0.09004412, 1.3321815, -0.031494427, -0.1145459, -0.061072458, 2.6679914, 0.09592204, -0.06287848, 0.06846727, -0.00029999999, -0.08746183, -0.02771352, 0.0970819, -3.2062953, -0.08278357, -0.106197715, 0.0017731074, -1.6244581, 0.10487186, -0.081371196, 0.02269002, -0.00049999997, -0.016822327, 0.015329417, 0.13272618, 0.7322321, -0.05385626, -0.03933343, 0.1021184, -2.788791, 0.05234522, -0.109209515, -0.014458376, -0.0004, 0.09610027, 0.0374426, 0.06510432, 0.8055853, 0.022376755, 0.013496263, 0.09372112, 2.1636908, 0.071008585, 0.06131483, -0.025783544, 0.00039999996, -0.06263848, 0.07432941, 0.004251729, -1.5731394, -0.038516268, -0.11549959, -0.028829232, 1.7031311, 0.060843885, -0.045143887, 0.09957328, -0.0003, -0.10231963, 0.016633023, 0.07006299, -3.927568, -0.06822444, 0.09946225, 0.0035402523, -4.214417, -0.099524915, -0.068191916, -0.0021221358, -0.00018347583, 0.00025148413, -0.004119906, 0.12059356, -2.1790943, -0.008347985, -0.04197648, -0.09989556, 3.0814662, 0.059427537, -0.08555255, 0.030983308, -0.00029999999, -0.090606384, -0.052245308, 0.02952539, -2.4700851, 0.028649233, -0.094158515, 0.09773052, 3.2924418, 0.06305545, 0.09768377, 0.07562904, 9.999999e-05, -0.12017109, 0.02880829, 0.06298295, 3.6125445, -0.012118746, -0.09105893, -0.08303672, 3.117193, 0.04409092, -0.081117995, 0.08252001, -0.00040000002, -0.11507745, -0.021490287, 0.040361382, -0.4170118, -0.03621055, -0.00469938, 0.08667185, -0.4277275, -0.011880689, -0.092759304, -0.009993065, -0.0004999999, 0.08598222, -0.014796219, 0.035120178, -0.11416241, -0.06276814, 0.0956658, -0.0922925, 3.866273, -0.041404977, 0.08291612, 0.114106245, 0.0002, 0.126315, 0.074717216, -0.008458715, -2.1071892, 0.085053615, -0.01605632, 0.044370025, -1.051787, 0.028410513, 0.09045064, -0.0217289, 0.0004, -0.037674222, 0.03196086, 0.0837841, -2.252196, -0.05312653, 0.034441467, -0.03887035, -1.7597705, 0.012650995, -0.045348156, -0.05747211, -0.00046593466, -0.050369345, -0.04771663, 0.026563121, 0.96077263, 0.06639148, 0.032329742, -0.027521636, -0.8724505, -0.028756162, 0.07182294, 0.015001009, 0.0004, 0.031236758, -0.0025952475, 0.07230499, -2.5608907, 0.044516366, -0.028434783, 0.08796012, 2.3213186, 0.015747277, -0.0938683, -0.03831436, -0.00018463649, 0.091090836, 0.030123597, -0.036362782, 4.1347833, -0.12262535, -0.010586091, 0.03578549, -3.5149336, 0.022252508, -0.11941281, 0.040927377, -0.00032773174, 0.029958181, 0.045366947, 0.11607751, 1.1094266, -0.054478675, 0.004814753, 0.019629775, 0.7627294, -0.012888254, 0.03519666, -0.04440185, 0.00019999998, -0.015569292, -0.045983147, -0.031930923, 4.501599, 0.118938796, 0.03811151, -0.036557958, -1.1911435, 0.0509237, -0.106633, 0.054512285, -0.00039999996, -0.013991043, -0.06412741, -0.112371415, -2.4101462, -0.08749604, -0.05348092, -0.00590484, -2.4365652, -0.04978698, 0.08474639, -0.029831827, 0.00020405135, 0.02040424, -0.022549318, -0.09811131, -3.5645428, 0.046540726, -0.01559146, 0.06977281, 3.4616933, 0.031941514, 0.07901774, -0.003648684, 0.0002803703, -0.06396155, 0.028115463, 0.04894712, -2.2354326, -0.105864756, 0.009737618, -0.042866636, 2.7275405, -0.03197933, 0.059635222, 0.092523925, 0.0002933366, 0.030161092, 0.09740911, -0.05235922, -3.0412538, 0.056892723, 0.10656997, 0.088675626, 1.947104, -0.107754216, 0.09430187, -0.044198357, 0.0003087864, -0.08723278, -0.046981964, 0.11242972, 3.1996007, 0.04079328, 0.11380482, -0.062302466, -2.1869748, -0.040022906, 0.073162444, 0.10743673, 0.0004, 0.123415165, -0.013890496, 0.05543446, -1.1931423, 0.02661226, -0.06515776, 0.093102135, 2.926082, -0.0072752982, -0.09640179, -0.06538746, -0.0004, 0.11340463, 0.009105831, -0.026042772, 0.4158219, 0.03972956, 0.037841655, -0.01642485, 2.8627717, -0.04100053, 0.03370564, -0.021519551, 0.0004, -0.0045523234, 0.026686015, 0.050471157, 1.7389565, 0.06423226, -0.042761337, 0.039607048, -2.5589125, -0.0075472235, -0.06454503, -0.057445735, -0.0004, 0.057795238, 0.039095286, -0.051519923, -0.02369184, -0.049930006, 0.096920036, -0.102835506, 3.281987, 0.016629105, -0.104278356, -0.10635383, -0.0004, -0.14032853, -0.046842027, 0.023986615, -1.0410825, -0.039718136, 0.038796265, -0.083170034, 4.446137, 0.07845675, 0.061370444, -0.008839887, 0.0002, 0.04761242, -0.06876379, -0.05481365, -1.5436265, 0.037014157, -0.02656816, -0.062907115, -4.7289205, 0.018765014, 0.07275662, -0.01968677, 0.00018809548, 0.065658554, -0.0058161616, 0.041089494, -0.24556126, 0.12255009, -0.025634946, 0.064745136, -1.4467787, -0.061907094, -0.10011355, 0.07753965, -0.00039071712, 0.031884067, -0.09585268, -0.09830198, 3.1616383, 0.041587226, -0.023300158, 0.038661953, 1.2743099, -0.014302082, 0.04305891, 0.041334275, 0.0004, -0.042814646, -0.037015863, 0.023746012, -3.1765418, -0.072322346, -0.069566436, -0.09497386, -3.7997637, -0.093166515, 0.10196111, -0.0037384029, 0.00029999999, 0.07196889, 0.062084515, -0.100279786, -1.3645287, -0.07628702, -0.11004949, 0.04492219, 0.30488834, 0.053742442, -0.0795443, -0.10360048, -0.0004090058, 0.10602188, -0.03886408, 0.084838346, 2.2288308, -0.05113163, 0.031652905, -0.016186029, -2.3636978, 0.034508254, 0.051006794, -0.009264175, 0.00037461237, 0.008548338, -0.016575234, -0.05941821, -2.6211374, -0.028342964, -0.12200723, 0.05613589, -2.2713282, 0.055581864, -0.06288457, -0.10861175, -0.00029999999, 0.12226062, 0.0003042353, 0.062390495, -3.4652095, -0.05142613, -0.0019802735, 0.00067039474, 2.3953435, 0.0016706466, -0.048846617, -0.016131822, -0.00019382883, 0.0012569213, -0.01609675, 0.04887057, -4.076055, 0.1380747, 0.03102397, -0.004593616, 4.1394625, 0.030714957, -0.13795835, -0.008502536, -0.00029999999, -0.006338717, 0.007294866, -0.1412615, -0.49600586, -0.0019159451, 0.037863065, -0.046262763, -0.36105692, 0.009185512, 0.045923334, 0.03720483, 0.00029999996, 0.059071828, -0.0059128995, -0.0072857467, -4.0311775, 0.03909447, -0.038478315, 0.08127495, -1.5765206, 0.06171315, 0.07593935, 0.006267309, 9.999999e-05, -0.06540403, 0.048653997, 0.05449477, -4.621733, -0.055380374, -0.03547247, -0.076156214, -0.7046569, 0.01618241, 0.08500173, -0.05136035, 0.00039999996, 0.08243904, -0.040514927, -0.04107794, 2.5479047, -0.05097574, -0.01801914, -0.0018962332, -3.9183946, -0.01729943, 0.050086915, -0.0109014725, 0.0001, 0.005386534, -0.009665562, -0.05295634, 2.9678702, 0.0646301, 0.039529875, -0.012448303, 4.057729, 0.041443575, -0.061664507, 0.01935303, -0.0002, -3.380234e-05, -0.023010844, -0.07324699, -2.1258922, 0.002105527, 0.006671979, -0.13884786, 4.546064, 0.11163179, -0.08282986, -0.002287349, -0.00010826659, -0.08283467, -0.111455716, -0.0066118515, -1.6676537, 0.048260026, -0.075030975, 0.09654443, -1.8211297, 0.020756671, -0.097258635, -0.08596175, -0.0004, 0.12049745, 0.046803996, -0.02385907, 1.9301016, 0.09893477, 0.08483229, 0.030449083, -4.051387, -0.08983638, 0.089158334, 0.043496743, 0.0002733617, 0.0072861384, -0.052593015, 0.12285209, 0.84958243, -0.10356415, 0.03876139, -0.09720644, -1.6208824, -0.09039735, -0.10203712, 0.055622097, -0.0004, -0.05272435, 0.09880818, 0.09557283, -2.595384, -0.022453813, 0.014750923, -0.047732107, 0.43217167, 0.035617825, -0.031969823, -0.026634907, -0.00049999997, -0.035033043, -0.04195781, 0.003513541, 0.26836038, 0.08385184, 0.06863819, 0.08265083, 1.0504925, -0.087075986, 0.10483139, 0.0012830343, 0.0004, -0.06292961, -0.0535973, 0.10835445, 2.9752824, -0.0025612584, 0.013833505, 0.06773792, 0.14948882, 0.030380528, 0.061114315, -0.011332099, 0.00049999997, -0.062103275, 0.029326217, -0.008337232, -0.34824938, 0.017750122, 0.039734907, -0.070601076, 1.5716654, 0.0370992, -0.068238914, -0.029078197, -0.00049999997, -0.072021, -0.025358018, -0.032378826, -0.2457217, 0.0032647238, 0.08167847, -0.07299098, 0.41448197, -0.052403226, -0.06296064, -0.072798185, -0.00017964958, -0.09619231, 0.037071556, 0.037181396, -4.731968, 0.028715404, 0.043205857, 0.05551392, 0.075494565, 0.002501085, -0.060550082, 0.04583173, -0.0004, 0.07030139, -0.015493758, -0.024305828, -2.725362, 0.051365726, 0.05489195, -0.036131404, -2.0722926, -0.053154506, 0.061669726, 0.018124152, 0.00040000002, 0.038641974, 0.011864284, 0.07295943, -2.220201, 0.09592817, -0.00413004, -0.04536271, 1.3109449, -0.034308888, 0.063013166, -0.078289755, 0.00037317805, 0.029962191, 0.08537756, 0.055587627, -3.2845285, 0.024554256, 0.03465334, -0.05019645, 0.7305838, 0.030745527, -0.053765565, -0.022077715, -0.00049999997, -0.05268064, -0.015226912, -0.0362814, 0.12387633, 0.016008664, -0.009990012, -0.110433534, -2.5148048, 0.064813614, 0.09137595, 0.0011294835, 0.0004, 0.089969784, -0.06404905, 0.018836187, -0.94436574, -0.023865089, 0.046561383, 0.053981934, -1.7587011, 0.047213297, 0.05297547, -0.024820536, 0.00040000002, -0.05341269, 0.026022933, -0.04605915, -2.841002, 0.06858414, 0.040944144, -0.12071211, -3.8432174, 0.07738507, 0.09554983, 0.07637671, 0.00029999999, 0.10128865, -0.10072451, 0.02338385, -0.8846717, 0.045263935, 0.049858723, -0.033939507, -0.26413408, 0.012547131, 0.033721656, 0.066272356, 0.00049999997, 0.058994513, -0.045426458, 0.011945307, -0.058504086, -0.063211486, 0.0124992775, 0.10429279, 3.036126, 0.0963419, 0.055396177, 0.05175336, 0.00018278552, -0.041850403, 0.10864593, -0.03838636, -3.648604, -0.0228328, -0.035873562, 0.08341301, 3.7315826, 0.010920831, -0.08647045, -0.034199096, -0.00030779972, 0.09014089, 0.0013893277, 0.025271947, -0.39163128, 0.093966015, -0.044303242, -0.039192, -1.0076811, 0.05634124, 0.08944027, 0.033978056, 0.00049999997, 0.018012652, -0.048642218, 0.098172724, 0.028302347, 0.045490686, -0.0050188787, -0.08456735, -1.8065183, -0.054851286, -0.07489675, -0.025060795, -0.00040000002, -0.06456129, 0.06009591, -0.038295537, -2.6103237, 0.079677776, 0.026989788, -0.05191035, 2.671592, 0.009542176, -0.09252575, -0.033460606, -0.00040000002, -0.057724163, 0.021959426, -0.07718409, -0.81048965, -0.014232467, -0.030844206, 0.09473409, -0.9392401, 0.03196953, 0.08922133, 0.0338523, 0.00044489757, -0.09436027, 0.03488071, -0.002819587, -1.8724794, 0.12618022, -0.068793215, -0.0021422955, 0.648698, 0.06864197, 0.12610827, -0.006597764, 0.00049999997, 0.005037495, 0.0047690263, 0.1435633, 1.5947584, -0.08962443, -0.018217294, 0.06803599, -3.0271127, 0.047376372, -0.097069636, 0.03641798, -0.00037526764, 0.052117616, 0.056911506, 0.08389361, 1.8107591, -0.069702044, -0.051479463, 0.04037849, 1.1300592, 0.05044236, -0.079857916, -0.014738185, -0.00049999997, 0.04166684, 0.010559918, 0.085389085, 1.4093685, -0.09031282, -0.015770653, -0.024088757, -4.3454585, 0.025249815, -0.0814925, -0.041313563, -0.0002642816, -0.013835777, -0.04577828, 0.08184319, 0.71070343, -0.0642947, 0.006878734, -0.12083287, -4.1247187, 0.06828697, 0.11502754, -0.029786985, 0.00019999998, 0.09992392, -0.0741826, -0.057392173, -1.704919, 0.08248855, -0.008975737, -0.025162987, -4.7710447, 0.015385199, 0.08272521, 0.02092689, 0.0001, 0.021841139, -0.024373662, 0.08029315, -0.991712, -0.10414498, -0.0062346724, -0.09505074, 0.9858792, 0.065990515, -0.10628534, -0.065332755, -0.00049999997, -0.06869327, -0.0926512, 0.081342965, -1.4312649, -0.066315055, -0.02605057, 0.091695435, 0.36721763, 0.021316841, 0.10482031, 0.04519588, 0.00040000002, -0.09291005, 0.04264321, -0.055078592, 2.9110324, -0.10381606, 0.013604803, 0.060679723, 0.63058615, 0.043738235, 0.09991502, 0.052429505, 0.00037468885, -0.044205043, 0.06690888, -0.09063119, -3.4743187, 0.02178164, 0.054199982, -0.10161691, 3.2467647, -0.043667734, 0.09958276, 0.043754794, 0.0004, 0.10656811, 0.02972736, 0.038698774, -0.39251655, 0.06662527, -0.03977996, 0.024667135, 0.33604375, 0.041054398, 0.07027384, 0.0024417234, 0.00049999997, -0.022482198, 0.010439374, 0.077559076, 0.46915138, -0.03764278, 0.08725423, 0.069081694, -3.8706138, 0.046545897, -0.053898405, 0.093439825, -0.00029999999, 0.101089366, 0.057308115, -0.017299686, 1.2771268, -0.07244946, -0.05033519, -0.061594564, 3.993291, -0.054078262, 0.09226568, -0.011791123, 0.00029999999, 0.058335762, 0.023018653, -0.08742724, -0.578249, -0.09871262, -0.07013157, 0.08298302, 3.5668707, -0.10543206, 0.08891202, -0.050274618, 0.00031195005, -0.026243044, -0.093407795, -0.11015937, -1.1178726, 0.040892072, 0.028186811, -0.046012633, -1.1008016, 0.027338138, 0.038952436, 0.048157595, 0.00049999997, 0.04652187, -0.047665842, 0.012145099, -1.3846192, 0.07861766, -0.036679756, 0.013930723, -3.1175063, -0.03893359, -0.07679517, 0.017518116, -0.0003, 0.0048626093, -0.021847297, -0.084966205, 2.7499452, -0.06282941, 0.09595653, -0.03213964, -1.0729632, 0.090631485, 0.07018583, 0.032373272, 0.0002408414, 0.04501715, -0.0073783863, -0.110032536, 4.0816, 0.07855351, -0.10395135, -0.04295187, 4.936488, -0.0938413, -0.08945342, 0.0448697, -7.960171e-05, -0.062004443, 0.003688194, -0.12232434, -0.4450525, -0.001694685, 0.082438536, 0.10477553, -2.3220134, -0.09034532, 0.076345295, -0.061530594, 0.00039999996, -0.098039515, -0.07177869, 0.054890532, -1.4095984, -0.09495829, 0.036674183, -0.050802376, -1.0614411, 0.00053193845, 0.09271132, 0.06593393, 0.00049999997, 0.06265456, 0.054795705, -0.077555075, 0.20389695, -0.028630886, -0.07940766, 0.08144426, -0.091227055, 0.06757643, -0.07943143, -0.053689357, -0.00029999999, 0.09149957, 0.03381634, 0.06513645, 4.20961, 0.06867411, -0.051336788, -0.056800056, 1.733455, -0.068080015, -0.07585365, -0.013754434, -0.00040000002, -0.035026062, 0.04678255, -0.084631056, -2.659956, 0.04452458, -0.0875539, -0.0794802, 0.32682922, 0.014958761, -0.080075085, 0.09658904, -0.00039999996, -0.11729889, -0.043445643, -0.017851587, -3.0549586, 0.016380968, -0.037343808, 0.06334042, -0.40978026, 0.02353211, -0.058817632, -0.040763117, -0.00017043861, 0.0696621, 0.028650168, -0.0011245009, -4.7445397, -0.106927864, 0.003082677, 0.0028053194, -0.621255, -0.004083954, -0.06309147, -0.086334966, -0.0004, -0.0008331142, -0.086376525, 0.06316124, 2.6125212, 0.10187912, -0.053505443, 0.073820375, 1.3054595, -0.0276889, 0.08731143, 0.101497166, 0.0001691854, -0.086865455, -0.090584286, 0.054226518, 4.5806136, 0.06702226, 0.029827835, 0.07613119, 1.2050481, 0.0059187133, 0.09641061, -0.042983767, 0.00049999997, -0.08155137, 0.031510882, 0.05944811, -0.48128805, -0.11932753, -0.04161978, 0.07113089, -0.13997136, 0.07982998, -0.089462675, 0.081574954, -0.00049999997, 0.02046906, 0.106278375, 0.09652354, 1.7404315, -0.006558339, 0.0034830838, -0.06995811, -0.78991, -0.035141535, -0.060944952, 0.0002600593, -0.00049999997, -0.0605916, 0.034969464, 0.007421319, -1.0664154, 0.06552077, -0.03440703, 0.04482855, -1.1440327, -0.046263505, -0.072075315, 0.0122984955, -0.00039999996, 0.03245198, -0.033282455, -0.07297645, 2.9614737, -0.07985188, -0.040270813, 0.038126882, 2.646568, -0.018831689, 0.082559004, 0.047760848, 0.00011714321, -0.052160937, 0.03184326, -0.075610586, -4.0451694, -0.01953196, -0.05558903, 0.07929228, -3.6069574, 0.08285128, -0.051467568, -0.015673459, -0.0003, 0.050130542, 0.0634023, 0.056797713, 1.779861, 0.065160245, 0.05670695, 0.00428967, -0.4012282, -0.053774685, 0.06356187, -0.02341169, 0.00049999997, -0.018503027, 0.014971513, 0.08314702, 0.8544154, 0.08751995, 0.0843193, 0.0582453, -2.7083116, 0.024246814, -0.09145796, 0.09596632, -0.00039999996, 0.099570826, -0.051843062, -0.07456505, 1.8243139, 0.0936452, 0.04705081, 0.0075130146, 1.259561, -0.027179696, 0.06635828, -0.07679512, 0.0003469856, -0.039134238, 0.06650149, 0.07131416, 3.3941412, -0.038351227, -0.042774964, -0.025346115, -1.2379562, -0.01236529, 0.039209813, -0.04746188, 0.00049999997, 0.048158314, -0.023996519, -0.032371044, 0.09896599, 0.010802021, -0.015723346, -0.0760407, 3.9187398, 0.031874146, -0.06910876, 0.018817898, -0.00029999999, -0.07080572, -0.03350897, -0.0031295319, 0.14487645, 0.006346176, 0.033908304, -0.061357744, -0.18078983, -0.02616049, 0.058303732, 0.029514797, 0.00024071302, 0.06503979, 0.02014253, 0.017858429, 4.2165256, 0.031857073, 0.048740096, 0.045537442, 1.256814, -0.03666301, 0.05495261, -0.03316872, 0.00047526794, -0.055723242, -0.008291176, 0.047857143, 1.510186, -0.08073594, 0.007836162, 0.05920446, -0.9699946, -0.029026588, -0.092153914, -0.027385704, -0.00049999997, 0.05219224, -0.03912946, 0.0763526, -0.9448915, 0.029647484, -0.035804912, 0.120489515, -1.7239633, 0.040891618, -0.11431438, -0.04403163, -0.00039999996, 0.11885953, 0.04825886, -0.014905703, -2.2497287, -0.10015786, 0.06415349, 0.0055083157, -1.731246, -0.064142056, -0.10029933, 0.0018557826, -0.00046119548, 0.005639864, -0.0014062655, 0.1189278, -1.048152, 0.02589287, 0.027634308, 0.03747759, 4.316991, -0.041093975, 0.033727504, 0.0035222406, 0.00014504565, -0.021897707, -0.030618075, 0.037705302, -2.0825422, 0.07874125, 0.0371204, 0.03384878, 2.5368195, -0.044953834, 0.080156736, 0.01667037, 0.00039999996, -0.022423584, -0.03034509, 0.08544128, -0.40101308, -0.024158278, 0.078025945, 0.09325856, -2.942068, -0.09332174, -0.07285128, 0.036777295, -0.00039999996, 0.077950336, -0.06303546, 0.072932154, 1.6277356, 0.06242215, -0.048660554, -0.033141337, -3.873383, 0.045492567, 0.07052627, -0.017866021, 0.00023389662, 0.03737144, -0.004573663, 0.077105, -1.7221756, -0.019212538, -0.03281614, -0.11848466, -3.3370855, -0.07585163, 0.09754279, -0.014716456, 0.0002915434, 0.096757665, 0.06995103, -0.035063475, -2.365885, -0.00082946173, 0.03189067, 0.056192383, 1.1770602, -0.047649037, -0.03825601, 0.021007955, -3.1770764e-05, 0.043636773, -0.04116734, 0.024007687, 4.832807, -0.0694224, -0.0017034867, 0.05110417, -1.2879617, -0.040126957, 0.055224523, -0.05266959, 0.0004, -0.03169171, -0.066191815, -0.045257982, 2.0385785, -0.060414918, -0.050791558, 0.028219173, 4.7524195, -0.056582015, 0.042170614, -0.045234736, 0.00012836877, 0.013212848, -0.05165195, -0.06468047, -0.778678, 0.050540864, -0.03800336, 0.022601519, -2.8670866, -0.0033515238, -0.037519407, -0.055592492, -0.0004, 0.04408913, 0.04071243, -0.03013486, -0.052838597, 0.08570501, -0.06187108, 0.013872253, -1.9772623, -0.06328031, -0.0849362, 0.01213533, -0.00016594565, 0.004009281, -0.017989764, -0.10500532, 4.3358192, -0.03813279, -0.044021625, -0.0723778, -2.3855872, 0.022443352, 0.07128652, -0.055182327, 0.00039999996, 0.081686884, -0.040135894, -0.0186259, 1.939061, 0.00075252977, 0.021893095, 0.058609888, 2.9945273, 0.03980704, 0.0450524, -0.017339954, 0.00019999998, -0.048268285, 0.03749622, -0.0133865625, 3.233801, -0.090280496, -0.08035775, 0.00518823, 3.829595, -0.077722415, 0.08491878, -0.037187114, 0.00029999999, 0.021059752, -0.031085147, -0.11500024, -0.51311123, -0.035390828, 0.0058052302, -0.03745201, -0.7286875, -0.03040543, -0.034938812, 0.023316383, -0.00029999999, -0.022624409, 0.03787404, 0.027249914, -4.051657, -0.035628464, -0.03164924, -0.059312973, 2.1345274, 0.0030486686, -0.06781897, 0.034356713, -0.0004, -0.06715958, 0.013711462, 0.033025403, -2.0645096, -0.078437045, 0.020529274, -0.07874265, 0.42417943, -0.039560977, -0.10519307, 0.01198219, -0.00048348686, -0.07111107, 0.035877477, 0.08018883, 1.8807492, -0.048144475, 0.041424308, -0.04048468, 3.389286, -0.036816645, -0.06252647, -0.020195236, -0.00037765328, -0.04471596, 0.006880399, 0.060216412, -0.9539529, -0.06481271, -0.046054143, -0.12180062, 2.4932895, 0.08532955, 0.08775123, -0.078585364, 0.00013130011, 0.098362826, -0.106469736, -0.012083609, -4.114942, 0.09127223, 0.07348368, -0.061805036, 1.7373478, 0.03964324, -0.1065043, -0.0680851, -0.00040000002, -0.08745357, 0.028413288, -0.09536713, 2.644305, -0.06764198, -0.07514059, -0.07173029, -2.4540627, 0.059401587, -0.09819935, 0.046852127, -0.00032253214, -0.08522203, -0.008806855, 0.089590326, -2.769761, -0.03600361, -0.03831794, 0.00778894, -2.6131365, 0.028641874, -0.033051975, -0.030205997, -0.00024466432, 0.026619079, -0.01626329, 0.043036286, -3.59657, 0.09358642, 0.05141887, -0.022918273, -0.88619816, 0.055282857, -0.092336714, 0.018582469, -0.00013176785, -0.010627894, -0.027524604, -0.105152324, 4.731861, 0.006385496, -0.009091875, -0.11479015, -0.3928763, 0.05226813, -0.1022115, 0.011003138, -0.00040000002, -0.102603525, -0.052634254, -0.0015387239, -3.1908813, 0.003823631, 0.03179508, -0.08032093, 1.5062697, 0.06532699, -0.053670175, -0.01813551, -0.0004533973, -0.056522235, -0.059879757, -0.026394142, 1.4019055, -0.06642919, 0.07466564, -0.021801379, -4.671423, -0.07740415, -0.06628335, 0.008843715, -0.0002, -0.0076718377, 0.022240823, 0.099546894, -0.65093994, -0.10531239, -0.06603708, -0.0211943, -1.5887809, 0.06867502, -0.0939094, -0.048637055, -0.00039714473, 0.009686938, -0.052162476, 0.11439421, -3.0711892, -0.09766843, -0.107842326, 0.014487303, 2.7067761, -0.080421366, 0.084656596, 0.088003635, 0.00035347394, -0.073295675, 0.050816, -0.11586393, -2.3724341, -0.053539608, 0.046291184, 0.017368993, 1.2199202, 0.03511136, 0.053622458, -0.03468241, 0.00049999997, -0.034810174, -0.017111504, -0.061696786, 0.35644835, -0.018327923, -0.011290903, 0.11721223, 0.30743, -0.09980043, -0.06147015, -0.02152666, -0.00049999997, 0.062498506, -0.10146939, -1.8255324e-06, 0.28834262, -0.118859835, 0.019646391, -0.045897573, 4.579049, -0.026871363, -0.12506148, 0.01605574, -0.0002, -0.042077284, 0.024369579, 0.119397886, -0.17476192, 0.09373171, 0.06934753, 0.065337226, -4.145762, 0.032212604, 0.063191734, -0.11328202, 0.0002, -0.08966818, 0.09519132, 0.027602445, -1.9215441, 0.016911635, -0.06164272, 0.036640707, -3.2123208, 0.008204879, 0.039061952, 0.06192911, 0.0002, -0.07123937, -0.010134577, 0.015830794, 3.2619019, 0.006195083, 0.02988835, 0.043712746, -2.5252047, 0.007817825, -0.044044826, 0.02900745, -0.0004, 0.052373655, 0.003039198, -0.00950056, 1.4405649, 0.04014935, 0.038137253, -0.047738194, 0.29438064, 0.021843093, 0.044388585, 0.05383204, 0.0002, 0.057063688, -0.04382419, 0.012981969, 4.7025895, -0.09310695, 0.106117934, 0.01028165, -1.9805872, 0.106109016, 0.09090511, 0.022644443, 0.00046704873, 0.010373407, 0.022602564, -0.13934544, -0.26844177, -0.09688205, -0.030636216, -0.08996115, -1.1071938, 0.014395406, -0.13171527, 0.029352676, -0.0004, -0.093938075, 0.0114118215, 0.09727862, -2.5582533, -0.044504978, -0.066364415, -0.06707327, 0.12739106, 0.011428847, 0.06982242, -0.076667875, 0.00021473215, 0.093661286, -0.04005429, -0.02251591, -4.2859654, -0.07348644, 0.036269862, -0.021478752, -2.0809562, 0.036777634, 0.07626144, 0.0029486828, 0.0003018904, 0.020597208, -0.006766582, -0.08189667, -3.1457279, -0.0062121586, -0.040033437, 0.031228462, 0.9803139, -0.025100548, 0.029769339, 0.03316976, 0.00042124355, -0.044134513, -0.011295754, -0.023260143, 1.9661627, 0.032440055, 0.027513592, 0.06137407, 1.345573, 0.040394276, -0.062452096, 0.0066459416, -0.00039999996, 0.05377801, 0.030312859, -0.04201411, 2.6515775, 0.010101535, -0.104679085, 0.04444898, -3.440292, 0.04573597, 0.044595625, 0.094630405, 0.00020000001, -0.10412321, 0.009433101, 0.045878496, 2.6757538, -0.031953555, -0.022034932, 0.074167736, 2.1091917, 0.027179923, 0.071932815, 0.033080835, 0.0004, -0.0724406, 0.036709014, -0.020303365, -2.5572364, -0.06326942, 0.06684669, -0.08946353, -4.2728972, 0.07938558, 0.099241056, 0.018010193, 0.00019999998, 0.078550205, -0.046453826, -0.090261474, -0.7430277, -0.015947798, 0.030351797, -0.040796686, -2.8340788, -0.040513244, -0.0334229, -0.009028859, -0.00040000002, -0.030729108, 0.028312758, 0.033076324, 1.5916381, 0.03199566, 0.029439997, 0.03600916, 1.6891122, 0.04215993, -0.03681649, -0.007360841, -0.0004, 0.019644676, 0.031063288, -0.04285153, -1.7545501, 0.048543133, -0.07369828, 0.08337959, -1.2428348, -0.085721366, -0.08277148, -0.02325428, -0.00029999999, 0.07096086, -0.049572922, -0.08512998, 3.7438316, -0.0016497192, -0.010908921, 0.07250171, 1.1778153, -0.038756903, -0.061429743, -0.010124861, -0.0004287463, 0.062236678, -0.038543563, -0.0043832855, 1.8171052, 0.01254334, -0.030775616, 0.12596957, -1.9574082, 0.031817704, 0.12341915, 0.026984297, 0.00026167362, -0.1257104, 0.028167011, 0.019399004, -3.6831732, -0.053933803, -0.0834282, -0.029722402, -0.6847049, -0.056161538, 0.05912582, -0.06405122, 0.00049999997, 0.06848042, -0.01721664, -0.07593787, -0.949419, 0.026254583, 0.014611541, -0.043361172, 2.6029937, -0.011230301, -0.04640526, -0.022437107, -0.0004, -0.044357285, 0.02039721, -0.019984407, -0.66502714, 0.07070081, -0.03203, -0.026874607, 1.745248, -0.040965263, -0.042500112, -0.057117056, -0.00015291787, 0.008367376, 0.06256669, -0.052556317, 4.4547977, 0.09893224, 0.10410086, 0.011434792, 4.234436, 0.09307416, -0.08018735, -0.07524973, -0.00026917882, -0.048009813, 0.05906211, -0.1223195, 1.1709806, -0.048029244, 0.044925533, 0.12192346, 0.16012977, -0.013503676, -0.13100798, 0.042953447, -0.00049999997, 0.12923346, 0.0030073482, 0.04980074, 0.716941, -0.010924619, 0.009171184, -0.077970855, 3.0022078, 0.036137268, -0.069299266, -0.013214451, -0.00029999999, -0.069696926, -0.037368618, 0.005369928, -2.300817, -0.06392656, 0.06676128, -0.060972255, -1.7238019, -0.087420784, -0.0646952, 0.020818906, -0.0004546935, -0.02307143, 0.060156066, 0.09005691, -1.1152575, -0.045868542, 0.010206335, -0.12653083, 1.5113802, -0.09869412, 0.08174529, 0.0423713, 0.00023128203, 0.07983543, 0.10691907, -0.020316651, 3.9673002, -0.045001175, -0.0485935, -0.07055292, -2.0858073, 0.071727395, -0.06494842, -0.0010169388, -0.0004, -0.046842534, -0.052768625, 0.06622235, 1.7057698, 0.07345319, -0.036853105, 0.04467819, 3.220796, 0.04635161, 0.08067113, -0.009662262, 0.00029999999, -0.034724917, 0.029726759, 0.081609815, -2.4845715, -0.039906275, -0.036106326, 0.07495562, -0.11314212, 0.02738502, 0.07279922, 0.049647328, 0.0004, -0.078562535, 0.04371647, -0.020768251, 2.6182237, 0.008974804, 0.0332904, -0.04374454, -0.43380436, 0.0019221825, 0.044106558, 0.033960264, 0.00043534316, 0.054937605, -0.006981659, 0.0059580468, 2.0928953, -0.06175167, -0.022766242, -0.11840781, 0.35375017, 0.04991023, 0.116274804, -0.048385147, 0.00049999997, 0.10976194, -0.06567992, -0.044614438, -0.8775177, 0.090818025, -0.051105414, 0.061154168, 2.8189087, 0.019041002, 0.10394452, 0.058587395, 0.0003646347, -0.07738887, -0.034398824, 0.08618116, -2.179047, 0.12571013, -0.037483275, -0.00091063645, -0.19493383, -0.037480958, -0.12554319, -0.0065540737, -0.00049999997, 0.0010012343, 0.0065408484, -0.13101557, 1.2631068, 0.07519945, 0.04611038, -0.11914651, -3.5333195, 0.020227883, 0.13221304, 0.06393404, 0.0003, 0.12614633, -0.04868842, 0.060774673, -1.6679006, 0.061119717, 0.05675137, 0.020639343, -1.4056437, -0.05903449, 0.049969405, 0.037420686, 0.0004, 0.012713387, -0.040800247, 0.07453877, 3.0868564, 0.092382684, -0.025209147, 0.069413215, 2.2266996, -0.02405589, 0.09483179, 0.06645676, 0.00019999998, -0.06982125, -0.0660279, 0.06894608, -3.9247398, -0.035285495, -0.007008168, -0.07613574, -0.4576096, 0.036644515, 0.07204415, -0.023614632, 0.00049999997, 0.06710398, -0.043027397, -0.02713908, -0.040564626, 0.017638242, 0.07894256, -0.067926206, 3.845701, -0.006957394, -0.06784644, -0.08065644, -0.00029999999, -0.103910975, 0.017942691, -0.0061296728, 0.67796475, -0.05161797, -0.009003731, -0.010493008, 0.5353253, -0.0021629042, 0.045313288, -0.028242042, 0.00039999996, 0.013656216, -0.02685561, -0.04413467, -3.30917, 0.0046523386, 0.009650185, 0.055730566, 2.8450341, 0.026338818, 0.04911586, -0.010703538, 0.00020000001, -0.05005285, 0.02674272, -0.00045234387, -3.5286398, 0.07098816, -0.021255555, 0.02096651, 3.2263288, -0.0134918485, -0.07108228, -0.026381673, -0.000100000005, 0.026633875, 0.020645194, -0.06924685, 3.6514359, -0.05958311, -0.056220867, -0.017730232, 1.2463207, 0.02451955, -0.046560396, 0.065239675, -0.00039999996, -0.05360913, 0.041190263, 0.049545113, -2.8254642, 0.006618131, 0.023403227, 0.13195083, 4.3045063, 0.079354815, 0.10577438, -0.022740597, 0.0002, -0.107988656, 0.079161935, -0.008624136, -0.9125285, -0.11528731, 0.0560507, -0.054757662, -1.0822351, -0.012655234, 0.082813635, 0.111413635, 0.0004448765, 0.07732999, 0.09711578, -0.06340231, -1.7930713, 0.0446079, 0.015136189, -0.041905567, -0.57298887, 0.013767258, 0.05171412, 0.03333406, 0.0004, 0.042375028, -0.032735206, 0.03328377, -2.5893364, -0.1378785, -0.014019006, -0.038116038, 3.5505147, -0.0062645273, -0.12594426, 0.06898293, -0.00035475142, -0.040126316, 0.06783331, 0.12020135, -0.5625216, 0.12147775, 0.006310597, -0.060437545, -3.5603702, -0.00552155, -0.13338885, -0.025025979, -0.00036378956, -0.06051473, 0.024838753, -0.11903936, 0.18209177, -0.1179769, 0.0097809285, 0.019247748, -1.074279, -0.02061332, -0.08282833, -0.08425703, -0.0004, 0.006421302, -0.08618868, 0.08315626, -2.5813854, 0.08224204, 0.01168617, -0.050685693, 0.61934394, 0.0134803895, -0.09637178, -0.00034648844, -0.00049999997, -0.050238278, -0.006728628, -0.08306744, 0.20742123, -0.07153088, 0.06514274, -0.0074348585, -1.6237357, -0.05582304, -0.06628029, -0.0436604, -0.0004, -0.03438956, -0.027908172, 0.08633662, -1.7237248, 0.04518973, 0.017320242, 0.02049766, 4.644065, 0.025697147, -0.039497595, -0.023277752, -0.00020000001, 0.0077331336, 0.030036751, -0.042429343, -0.2108877, 0.0119078355, 0.01740919, 0.05623234, 4.3903446, -0.02473618, 0.05354005, -0.011337496, 0.0002, -0.053416073, -0.020912629, 0.017785879, -0.16036221, -0.014458289, -0.024133902, -0.09919489, -0.7910063, 0.08981249, -0.050638303, -0.0007705537, -0.00049999997, -0.04853648, -0.0865126, 0.028122835, -0.4495112, 0.002254907, 0.040808063, 0.045193136, -3.5178657, -0.04079574, -0.03256098, 0.031437106, -0.00034006688, 0.04520425, -0.031421114, 0.026116874, -0.9479083, -0.091645956, -0.0757466, 0.0056794006, 1.8365313, -0.051175937, 0.06814861, 0.08309979, 0.00041900258, -0.056132227, 0.06153867, -0.085035, 1.2273041, -0.007000739, -0.11486546, -0.080749914, -2.9476697, -0.016868502, -0.07957658, 0.114658855, -0.00010495845, -0.13939181, 0.015398905, -0.009819915, -3.8478975, -0.05527284, -0.006783332, 0.011333219, -3.2553236, 0.0031333335, -0.05410411, -0.017101755, -0.00019437668, 0.012831118, -0.016008567, 0.052996513, -3.4290004, -0.0011659432, -0.0047571985, 0.07555762, -2.6963391, -0.051839318, -0.055022232, -0.004264202, -0.0001, 0.055174906, -0.051796403, -0.0024097476, -4.0789123, 0.12899755, -0.07003552, -0.00083027384, 2.9986143, -0.06025951, -0.11186253, 0.07349554, -0.0004, -0.0356995, -0.06424818, -0.12705806, -0.08283783, 0.10292218, 0.08043351, -0.037169192, -2.6072788, -0.062924325, 0.106458396, 0.056135647, 0.0004, 0.06238292, -0.025320545, 0.11794623, -1.9905144, -0.068311065, -0.089591965, -0.04666652, -1.6180605, -0.07364653, 0.08272855, -0.0510202, 0.0004, 0.069142364, -0.0003970379, -0.10044927, 2.8691058, 0.033039685, 0.016530758, -0.038742524, -2.2721572, 0.012690217, 0.043044742, 0.02918868, 0.00019999998, 0.040164754, -0.027198426, 0.022647478, 3.8261013, -0.045410402, 0.018727824, 0.04565583, 3.4249165, 0.035418253, 0.05557226, 0.012432368, 0.00029999999, -0.03436181, 0.032531302, -0.047521286, 2.0535762, -0.10619408, 0.03250338, 0.10012339, 2.0598047, -0.06794173, 0.08746869, -0.10045643, 0.0004, -0.080405734, -0.11683793, -0.047351427, -2.3971145, -0.013594364, 0.064198315, -0.050841197, -2.7257664, 0.038297024, 0.05053799, 0.053575248, 0.0002962035, 0.072385006, -0.014681482, -0.03789357, -3.032919, -0.0059774155, 0.027936662, 0.06022608, -3.8201501, -0.018430647, -0.058791123, 0.025441788, -0.0002, 0.06378048, -0.014370689, 0.012996215, -2.5242827, 0.0020151515, 0.012094085, -0.1013941, -1.1652381, -0.030502891, 0.096854754, 0.010946412, 0.00041941265, 0.097450525, 0.030066315, 0.0055230274, 1.8716885, 0.13066642, -0.03331589, -0.03558028, -3.4375393, 0.029253338, 0.13502857, -0.019003985, 0.00039209815, 0.038989063, 0.010342186, 0.133501, -0.4895197, -0.007561303, 0.062308647, -0.074323125, -0.0023194484, -0.03893126, -0.07022893, -0.054915592, -0.00049999997, -0.08882934, 0.025475439, 0.030394385, 0.8196788, 0.11253644, 0.072503865, 0.0695946, -1.8922185, 0.0134616215, 0.092665516, -0.11830704, 0.00029999999, -0.0995942, 0.09445083, 0.06264747, 3.3288953, 0.06901134, 0.06276253, 0.03522197, 2.8229403, -0.014455138, 0.059891276, -0.078398794, 0.00020851044, -0.0705037, 0.049154717, 0.050550263, -3.2488954, 0.05453683, 0.025524072, -0.014455244, -1.216571, 0.015737506, -0.051212616, -0.031053148, -0.0004, -0.024754062, 0.023674637, -0.05158921, 2.229552, -0.04620996, -0.020647878, -0.024248622, -0.29730904, 0.02827187, -0.04626817, -0.01447929, -0.0001, -0.014663965, -0.024137393, 0.048497897, -4.8553896, 0.02066641, -0.01733463, -0.067491345, 0.6407158, -0.043753695, -0.05801745, 0.0015035861, -0.00049999997, -0.054232694, 0.040201463, -0.026931928, -0.61619747, -0.0227731, -0.013593622, 0.0507138, 3.0404296, -0.049164344, 0.024921555, -0.015397195, 0.0004, -0.018426701, -0.049693257, -0.021594606, 0.9797577, 0.059805397, -0.042728785, 0.030102897, -0.77787614, -0.04681965, -0.0641294, 0.0019897267, -0.00049999997, 0.02323475, -0.019242916, -0.07347431, 1.4400202, -0.022724533, 0.027783247, -0.058053117, 0.80295134, 8.129023e-05, 0.06157802, 0.029438388, 0.00041439885, 0.06435889, 0.009732232, -0.020535208, -2.0770211, -0.023937903, 0.006791232, -0.1172834, 0.9225271, 0.009838571, 0.11938877, 0.004905062, 0.00049999997, 0.11706714, -0.008645013, -0.024394354, -1.5472362, -0.012879498, 0.06838311, -0.12164703, -1.4302657, 0.011724832, -0.121201836, -0.069374196, -0.00049999997, -0.13905673, -0.016553035, 0.0054175886, 0.6058814, -0.027182138, 0.011855683, 0.09780364, 1.0781772, 0.050462835, -0.08546266, 0.024384635, -0.0004, 0.08461448, 0.054777283, 0.016876472, -2.9044302, 0.015480088, 0.028099336, -0.042517167, 0.701968, -0.012226746, -0.041089866, -0.031607673, -0.00039999996, -0.04947514, 0.018946394, -0.005491864, -2.8829193, -0.0517155, -0.012864237, -0.11239863, -2.4198296, 0.061260052, -0.10708347, -0.015930327, -0.00040000002, -0.09511126, -0.061976448, 0.050854772, -1.5226567, 0.030045506, 0.024992859, 0.05746606, -0.68034613, -0.05722824, 0.036909517, 0.013868662, 7.559986e-05, -0.025532715, -0.053317618, 0.036538143, -4.907461, 0.032856632, -0.014909646, 0.058798943, 2.196906, 0.04123051, -0.043559596, -0.034084857, -0.00039999996, 0.04449335, 0.051375438, -0.011835451, -1.187418, -0.043932416, 0.09089573, 0.055107005, 1.509821, 0.022520578, 0.06623386, -0.09129496, 0.00040000002, -0.10388281, -0.024081402, -0.043096628, -2.79538, 0.04125092, 0.051521037, 0.015586729, 3.8641543, -0.052574582, 0.03435305, 0.02558873, 0.00019999998, 0.011544575, -0.027648723, 0.06083809, 2.2791505, -0.11389538, -0.048358142, 0.021986581, -2.8547606, 0.02623767, -0.09643814, -0.07619283, -0.0004, 0.046189878, -0.06446125, 0.097495236, 0.9293283, 0.093659975, -0.013083434, 0.013534358, -2.3949795, -0.012408888, -0.09456154, -0.0055394266, -0.00039999996, 0.014155354, 0.0036728308, -0.09440699, -1.9868815, -0.03384079, -0.05742037, -0.09101813, 1.8262492, 0.039098766, -0.09545236, 0.04568075, -0.00027075407, -0.10026308, -0.017842263, 0.04853417, -3.990952, 0.042454712, 0.006321596, -0.10509508, 1.5550548, -0.06259067, -0.08960379, -0.03067421, -0.00049999997, -0.08466017, 0.06941568, -0.030024292, -0.5795392, -0.06213216, 0.009110965, 0.0028514292, -3.6901631, -0.0094339, -0.055716883, -0.027535008, -0.00032528627, -0.0014635038, -0.027643546, 0.05643792, 0.11299658, 0.07097349, -0.03199161, -0.04749188, -4.2296767, 0.020772448, 0.08486575, -0.026124446, 0.00019999998, 0.053361468, 0.00951411, 0.0733363, 1.1993276, -0.078792624, 0.020952953, -0.09348191, -0.36788023, -0.045023534, -0.114937104, 0.012186859, -0.0004, -0.08456227, 0.041672677, 0.08061504, -3.326263, 0.04406953, 0.0018551945, -0.050107468, 2.9713204, -0.03420503, 0.04989046, -0.028236173, 0.00029999999, 0.036663555, 0.044315055, 0.033886336, 2.555421, -0.11621332, 0.050661333, 0.054691415, -4.048398, -0.044818103, -0.12842031, 0.023723722, -0.00012545878, 0.059573974, 0.002215165, 0.124536276, 2.6195273, -0.04078816, 0.057589944, -0.103463754, 3.344799, -0.033334035, -0.1105888, -0.04841473, -0.00029999999, -0.11362303, 0.0117703425, 0.051344823, -2.604105, 0.061188184, -0.032481726, -0.017770136, -3.7773178, 0.027840687, 0.06299254, -0.019278737, 0.00029999999, 0.024407713, 0.009576572, 0.0665386, -1.1707691, -0.010329969, -0.020225434, -0.107638575, -2.172543, 0.056312397, -0.09371133, 0.012204239, -0.0004, -0.093936406, -0.053953316, 0.019152889, -0.8789443, -0.004413452, -0.037123047, 0.096780024, 1.765641, 0.029715968, -0.09325497, -0.034415767, -0.0004, 0.09930488, 0.026255725, 0.014599806, 2.9005032, -0.08141145, 0.07437314, -0.08311435, -0.8299302, 0.024263114, -0.08862671, -0.103071764, -0.00049999997, -0.10886074, -0.075373225, 0.03918416, 0.31755245, 0.08925648, 0.024384763, -0.031304616, -0.21972886, 0.039665125, -0.052636277, 0.07209311, -0.00030454202, 0.0011283313, -0.0785883, -0.057999305, -3.753051, -0.046682797, -0.021079341, -0.04457999, 2.4451232, 0.026532605, 0.04100744, -0.047174226, 0.0004, 0.041566025, -0.049850255, -0.019955317, -1.9497107, -0.057254586, 0.0394366, 0.061286423, 2.8229496, -0.0038045507, 0.076213636, -0.052596234, 0.00038543367, -0.072779074, -0.03500847, -0.045463923, 2.0590618, 0.080440395, 0.0071882913, 0.11094989, -4.613627, 0.05693196, -0.12029066, -0.033483088, -0.00017204657, 0.0955003, 0.06565589, -0.07349294, 1.1579223, -0.060040645, 0.067127645, 0.04320281, 3.0048065, 0.07602314, 0.0645729, 0.0053203125, 0.0003744016, -0.024353338, 0.03607912, -0.08990381, -1.8534875, -0.05364701, -0.048153434, -0.09717185, -4.6444273, -0.058063075, -0.07881072, 0.071110286, -0.0002, -0.09159586, 0.07816162, 0.011835661, -0.21808441, 0.022374127, 0.08273305, 0.07104387, 0.58705765, 0.0965521, -0.048741717, 0.026353866, -0.0003848105, 0.050691992, 0.056321226, -0.08155263, -3.447234, 0.043880183, -0.07677967, 0.10781128, -3.0718026, 0.0316171, -0.104212925, -0.08708549, -0.0004, 0.12852527, 0.05184985, -0.015385203, -0.27145532, -0.0454923, -0.009341099, -0.112701766, 3.0324268, 0.0022018878, 0.121382676, -0.010949401, 0.0004, 0.113066785, -0.0061222147, -0.045132212, 1.1154699, 0.07776228, 0.037146892, -0.024701709, -0.93340284, 0.022840163, -0.075794145, -0.042078637, -0.000411088, -0.038319618, 0.030205844, -0.075208046, -2.0369115, 0.071860574, -0.0005108638, 0.014861175, -4.802913, 0.007994441, 0.06316615, -0.03648539, 9.999999e-05, -0.012538121, 0.037347473, 0.06191138, -0.7233197, 0.055081423, -0.01692942, 0.0016014178, -0.9858014, 0.009432487, 0.034934346, 0.044874854, 0.0004, -0.014149134, -0.042615954, 0.03614991, -2.5468192, 0.06899697, 0.034665685, 0.024181262, -0.68664384, -0.03672875, 0.072082475, 0.0014632948, 0.0004, -0.020915115, -0.012224265, 0.077202015, -2.7872448, 0.026996333, 0.10064743, -0.09386691, 2.1380768, 0.102160774, -0.07875022, -0.055057082, -0.00029417293, -0.09221756, -0.057777204, -0.08847274, -3.775548, 0.0087291915, -0.021330189, -0.08434949, -1.0684448, 0.0371183, 0.077584125, -0.01577806, 0.00049999997, 0.078689545, -0.034230664, 0.016799651, -0.95331913, 0.07607313, 0.061149992, -0.05392349, 0.61308885, -0.042101037, 0.09262142, 0.045639493, 0.00049999997, 0.069818094, -0.010776779, 0.0862756, 1.7239084, -0.027723216, -0.029914755, 0.0799169, -2.028718, 0.030490413, -0.08195423, -0.020100232, -0.00043818625, 0.07969905, 0.020947369, 0.03548873, -0.63279974, -0.093178354, 0.004118071, 0.031924, 1.6690042, -0.006239886, 0.093605764, -0.030287487, 0.00049999997, -0.031577904, -0.030648157, -0.08821472, 0.2344346, -0.008309803, 0.0808979, -0.1145344, 4.8082457, -0.082751855, -0.09545488, -0.06141779, -0.00012486066, -0.113202155, 0.06383998, 0.053304587, 0.3567959, -0.05014658, 0.0023983787, -0.030108895, 1.2106957, -0.014511519, 0.049266145, 0.02809342, 0.00049999997, 0.026489882, 0.03152891, -0.041607592, -0.89131105, -0.04109683, -0.064522974, 0.029433, 2.4678776, -0.05080837, 0.050520416, 0.039807796, 0.0002, -0.0494775, 0.0017145044, -0.06532611, 3.7676382, -0.01185579, -0.03560515, -0.045004882, -2.6312861, -0.014174993, 0.046348263, -0.032933783, 0.0004, 0.05560787, 0.004223484, -0.017990338, -1.9383371, -0.038888223, 0.044267636, -0.12164015, -0.27942717, -0.04685553, 0.11358416, 0.05631554, 0.0002, 0.120666936, 0.05837172, -0.017334282, -4.501504, 0.052265204, 0.03274978, -0.053361, -1.7196933, 0.051957473, -0.061471563, 0.01316296, -0.000262087, -0.03493371, -0.042429898, -0.060257252, 4.062242, 0.042952318, -0.015537934, 0.10348149, -1.92647, 0.07748267, -0.07045875, -0.042740446, -0.00046542712, 0.070329785, 0.087114185, -0.016111603, 0.56301385, -0.093054466, 0.040815055, -0.036975265, 3.4972112, -0.044464707, -0.09851442, 0.0031580424, -7.944564e-05, -0.03249505, 0.017922482, 0.101562925, -3.5141156, 0.068954945, 0.04072526, -0.031107852, -0.75920963, -0.050900903, 0.06047756, -0.033654045, 0.00049999997, 0.0059450604, 0.045441717, 0.07266869, 1.4883258, 0.07009235, -0.057669654, 0.011677395, 1.7967552, 0.048839252, 0.06715106, 0.03847788, 0.00014639627, -0.03281582, -0.023238575, 0.08220812, 4.4456444, -0.030805033, 0.04764215, 0.04253516, 1.8566332, 0.0012061687, 0.047649965, -0.05249753, 0.00043491297, -0.06385578, -0.022083264, -0.021511253, 1.0600128, 0.03421593, -0.10979133, -0.082994215, 0.76361, -0.018271182, -0.0883871, 0.10939283, -0.00049999997, -0.13641238, -0.015700014, -0.035469357, 0.6947086, 0.08184932, 0.12409246, -0.025564265, 1.4979117, 0.114435054, -0.08546918, -0.0484914, -0.00039999996, -0.054379106, 0.0069183325, -0.1405234, -2.865239, -0.034639645, -0.084229805, 0.11041412, 2.81342, -0.11391868, 0.082318075, 0.027057542, 0.0004, -0.07942588, -0.08133211, -0.08696238, -0.6190981, 0.06494032, -0.009495227, 0.087461874, 0.67234445, 0.08054248, 0.05015066, -0.054358102, 0.0004283672, -0.03539277, 0.09670438, 0.036777705, 2.059661, 0.0570974, -0.056132514, -0.0057212627, -1.8877568, -0.032258295, -0.0391535, 0.06221021, -0.00045848495, -0.046292495, -0.041950535, -0.050406963, 0.76624435, -0.06436496, -0.014907934, -0.02083551, 1.9853595, 0.018038012, -0.06637873, -0.008228588, -0.00040000002, -0.018193264, -0.013070321, 0.06555444, 1.8414735, -0.0959941, -0.103550866, -0.052533623, -0.25374553, -0.11555687, 0.078524776, 0.05637285, 0.0001, -0.011365352, 0.076213576, -0.12945944, -4.88274, 0.07465742, -0.008974959, 0.1106538, -2.1751518, 0.074590534, 0.102820046, -0.04198621, 0.0003215705, -0.082225725, 0.08512368, 0.062381428, 2.9976208, -0.060294606, 0.013452975, 0.06365263, 1.5133283, -0.031918183, 0.06950614, -0.04492444, 0.000444884, -0.05669099, -0.053441502, -0.042405378, -1.4489284, -0.0044321967, 0.02389346, 0.072216466, -4.7260056, -0.03841904, -0.0631373, 0.018531613, -0.00016828935, 0.06565131, -0.035334773, 0.015720092, -0.59254724, -0.061135545, -0.06280546, -0.049561206, -2.4485974, 0.026752744, -0.07483214, 0.061829068, -0.00034732535, -0.07539979, 0.024372488, 0.062122826, 2.6649666, -0.06912771, 0.024731198, -0.03948083, -1.2665603, 0.04619493, 0.045536414, -0.052359078, 0.0004, 0.0060329763, -0.06529789, -0.051466484, -2.123752, 0.076575324, 0.02253816, -0.068982914, 1.2542175, 0.0609287, -0.07444587, 0.043311626, -0.00049999997, -0.03942467, -0.07127576, -0.06705112, -1.2604116, 0.0021004165, 0.04436975, 0.058272935, -0.90109813, 0.03766174, -0.0506535, 0.037210714, -0.0004999999, 0.062817216, 0.028885456, -0.024257962, 0.7393325, -0.10269163, -0.004361719, 0.055528462, -1.713409, 0.009250447, -0.11618407, 0.007981159, -0.00049999997, 0.05492598, 0.011412496, 0.102473885, -0.36436635, 0.07875682, -0.09716657, 0.018984305, 3.1867852, -0.06416369, -0.06856885, -0.08476858, -0.00040000002, 0.075397395, 0.043143377, -0.0919688, 1.0689005, 0.040727768, 0.060363185, 0.09330669, -1.0675274, 0.08548402, -0.08051574, 0.014775042, -0.0004640117, 0.07100938, 0.06230657, -0.0713033, 1.705439, 0.05281256, -0.010814019, -0.0037243469, 0.68468744, -0.011428498, -0.050588876, -0.015170195, -0.0004, -0.00045080096, 0.015614172, -0.05172982, 2.8885405, -0.024697538, 0.0067483666, -0.08322555, -1.7179846, -0.022947326, 0.08289943, 0.01353164, 0.00027333337, 0.080283575, 0.025771003, -0.021734837, -3.763293, -0.08942561, -0.03436268, 0.0649239, -3.0455668, 0.041373022, 0.060956128, 0.0892495, 0.00039633713, -0.060697425, 0.09217594, -0.034817588, 1.6455824, 0.035050016, 0.013604004, -0.036544345, -4.045722, -0.01725114, -0.038657494, -0.030936364, -0.00029999999, -0.034970786, 0.03270462, -0.021366185, -1.10347, 0.052364502, 0.04034591, -0.006952035, -1.8704664, -0.040597342, 0.04971321, -0.017280504, 0.00049529696, -0.005289508, 0.017859666, 0.06380609, -0.16751423, -0.06868172, 0.03999945, 0.023421545, -2.3298678, 0.014797793, 0.05859896, -0.056682367, 0.00039999996, -0.04392665, -0.04280081, -0.055715747, 2.07322, 0.03941909, -0.040186856, 0.0053218966, -1.1504735, -0.04006866, -0.03975172, -0.003387273, -0.00049999997, 0.0061488515, -0.0014098543, -0.05619051, 0.9764972, 0.12472118, 0.07279319, -0.0057056868, -4.0525255, -0.072913714, 0.123565905, -0.01737329, 0.00020647098, -0.003872267, 0.017871538, 0.14336106, 1.4624097, 0.02672608, 0.021176117, 0.04086646, 2.0575805, -0.040746875, 0.032862455, 0.009619269, 0.0004, -0.021405317, -0.036116634, 0.03271362, -1.6340398, -0.027697433, -0.033269133, 0.09450481, -0.569139, -0.02604575, -0.09228751, -0.040122036, -0.00049999997, 0.096745096, -0.034370393, 0.016254386, -0.19473034, 0.12524237, -0.047939472, 0.025328044, 2.6578777, -0.02378396, -0.105868295, -0.08277427, -0.00012235991, 0.04872398, 0.07154764, -0.105509534, -4.030242, -0.083426915, 0.05684982, -0.020899042, 0.45042688, 0.059592165, 0.07067526, -0.045634437, 0.0004, -0.010837154, -0.049008455, -0.09005247, -2.8317099, -0.06314586, -0.002502211, -0.007855146, -3.7909727, -0.00756358, 0.041723244, 0.047511335, 0.0003, 0.0032797286, 0.0480445, -0.041669335, 1.3801975, 0.032767538, -0.029802484, 0.13092501, 4.614604, -0.096342035, 0.08865456, 0.044292662, 0.0001, -0.09352946, -0.101761684, 0.00024425524, -1.6793935, 0.12270433, 0.0035668442, 0.01438782, -0.59423333, -0.012078678, 0.09360043, 0.07980695, 0.00049999997, -0.008592857, -0.080636986, 0.09327337, 0.033458315, 0.05202793, 0.056483917, -0.045695134, 1.8053939, -0.039573956, 0.06916652, 0.04043855, 0.0004, 0.060929302, -0.0033078978, 0.06528446, -2.256311, 0.01603524, 0.015772719, 0.13063204, 2.0366094, 0.06521725, 0.11334396, -0.021690827, 0.00040000002, -0.114281304, 0.06689546, 0.0059511005, -2.718778, -0.035906594, 0.015228495, -0.05586432, 2.1988451, 0.04984165, 0.041585527, -0.020699413, 0.00041243597, 0.029470988, -0.05177595, -0.033056386, -0.40592182, 0.035417426, 0.00598995, -0.06706709, -2.803759, -0.023171866, 0.07223478, -0.0057853325, 0.0004, 0.06322135, 0.023119818, 0.035451435, -0.3046572, -0.094201885, 0.09847418, -0.041941967, 1.7032467, -0.058307823, -0.09406764, -0.089898646, -0.0004, -0.089757964, -0.042242207, 0.102417745, -1.7704024, -0.12222555, 0.048525263, -0.010337708, -4.7252436, -0.042560104, -0.08842039, 0.08815401, -0.00018679109, 0.025499152, 0.08501643, 0.097584106, -0.35639814, -0.051098548, -0.036505643, 0.035673056, 4.132008, 0.032720793, -0.06216953, -0.016750818, -0.000188208, 0.039173692, 0.0043103183, 0.06052382, -2.3166475, -0.11898154, -0.019360386, -0.0128481435, 1.5811977, 0.018450292, -0.11946637, 0.009158577, -0.0004, -0.014123956, 0.0070333714, 0.12019796, -2.2729716, 0.047929574, 0.017901117, -0.029852303, -3.7362382, 0.030240726, -0.04657153, 0.020626303, -0.0003, -0.01723683, -0.031929545, -0.046821464, 1.5203166, 0.087720305, 0.008654851, 0.104810335, -0.6340593, -0.028815271, -0.12928315, 0.034792468, -0.00029999999, 0.10114245, -0.0443388, -0.08098916, -3.8280725, -0.090599835, -0.04531178, -0.009055924, 3.4723847, 0.038917832, -0.064080894, -0.06872073, -0.00029999999, 0.024911232, -0.064683676, 0.07442412, -1.8287036, -0.09177782, -0.018636588, 0.02136153, -3.6376014, 0.028139444, -0.051116634, 0.076302476, -0.00029999996, -0.0034364096, 0.07916172, 0.054299366, 1.07476, -0.044720817, 0.034315832, 0.020645682, 1.3847011, 0.039992217, 0.036638115, 0.025730211, 0.00049999997, 0.0021078065, 0.032921817, -0.050154593, 1.1466998, -0.052515563, 0.015734723, -0.07320573, 0.76850814, -0.03795719, -0.08266981, 0.009460421, -0.00040000002, -0.06454387, 0.035814334, 0.053999692, -2.436956, -0.04097499, -0.0011791635, -0.0736084, 1.8054813, 0.0010319053, 0.084224544, -0.00192365, 0.0004175012, 0.07361062, -0.0018370716, -0.040946804, -1.2800865, 0.017629752, 0.029341863, -0.06568315, -0.0021163428, -0.018753741, 0.067162946, 0.024969297, 0.00015848441, 0.069451556, 0.010687545, 0.023415534, -4.7805686, -0.022077639, 0.07656395, 0.10904074, -3.45088, 0.012729023, 0.11123409, -0.07552676, 0.00020000001, -0.13262689, -0.00206934, -0.025400164, 3.0773177, -0.0057332083, -0.02665531, 0.04817457, 3.8006182, 0.03689655, 0.034089655, 0.023253059, 0.00029999999, -0.040864896, 0.034518898, 0.014236249, -0.06890356, 0.029478718, 0.007689249, -0.0712677, 0.03843338, 0.053716443, 0.04865427, 0.027468355, 0.00049999997, 0.04746318, -0.059840143, 0.01317607, -0.520773, 0.04734137, -0.009618083, 0.018260054, 2.1905806, 0.020153591, 0.03138872, -0.035717264, 0.00039999996, -0.004446333, 0.039867066, 0.03252675, 2.029847, -0.010757369, 0.082589746, -0.05428255, -2.0003376, -0.07064942, -0.044609066, -0.053870875, -0.0004, -0.06911092, 0.03274672, 0.06351941, -2.7397385, -0.10997217, -0.081845336, -0.0025215542, -3.959994, 0.062051013, -0.086051255, 0.08685476, -0.0003, -0.053429294, 0.068523124, 0.10606031, -0.03920235, 0.033833526, 0.04969746, 0.016143944, -1.7810411, 0.011925454, -0.026068771, 0.055257343, -0.0004, 0.05087482, -0.026939813, -0.023689037, 2.9376948, 0.09640243, 0.0021356596, -0.11160737, 4.7498283, 0.09049373, -0.08783627, 0.07648443, -0.0001, -0.06535788, -0.118466966, -0.058720697, 1.0921865, 0.13949, -0.022291457, 0.04584492, -1.5690415, -0.029951934, -0.14391455, 0.021156758, -0.0004, 0.041249827, -0.029117305, -0.1396666, 1.7855403, -0.056050934, -0.00852147, -0.123835415, 0.93206847, -0.09171635, 0.09440047, 0.035017084, 0.000496641, 0.083641745, 0.097803205, -0.044588413, -1.6222069, -0.04750384, 0.050489143, -0.0022579813, 0.020842414, -0.048017323, -0.044121258, 0.023632996, -0.0004, 0.015766699, 0.017749034, 0.06517093, -2.587039, 0.07017527, -0.024122179, -0.05989396, -0.02249888, 0.05260963, 0.07264513, 0.03238285, 0.000272455, 0.03743518, -0.056873035, 0.06676677, 4.142643, -0.015103656, -0.053312007, 0.042667694, -0.7384892, -0.006433853, 0.044615634, 0.05346843, 0.00041571655, -0.0679802, 0.007622156, -0.014540205, -2.094063, 0.06080228, -0.0032466212, -0.022119444, 3.9558115, -0.012674099, -0.057806175, -0.026354156, -0.00029999999, -0.018416777, 0.029062582, -0.05489004, 1.0974764, -0.023436429, 0.049815685, -0.04224331, 4.165614, 0.035467833, 0.047393337, 0.036211465, 0.0002, 0.054846447, -0.0093613565, -0.04146804, 2.1564121, -0.055515587, 0.08430097, -0.060529027, -1.1106291, 0.0019462699, 0.06947879, 0.09498057, 0.00049999997, 0.10376237, 0.04380002, -0.03416615, 0.4377025, -0.08199247, 0.052837823, 0.03178311, 1.617384, 0.024797427, 0.07667201, -0.06349217, 0.00039999996, -0.056454293, -0.043061987, -0.07404959, -2.2332234, -0.06326365, 0.06500677, 0.011443625, -1.7390146, -0.051386926, -0.058454398, 0.04797491, -0.0004, 0.04142729, 0.026764326, 0.07698425, 1.6491969, -0.05818412, 0.06528127, 0.11477281, 2.8719282, 0.01286128, 0.12762758, -0.06607286, 0.0004, -0.1314117, -0.016413143, -0.057283606, 0.84063065, 0.063768156, -0.0022526693, 0.03537034, -0.8889539, -0.023722535, 0.05138075, 0.04604099, 0.00029884328, -0.026332056, -0.05174415, 0.0441778, 3.9740329, 0.009694096, 0.009211021, -0.0790151, -3.2293031, 0.055291735, 0.056448497, 0.0133639155, 0.0003302816, 0.05719311, -0.05613312, 0.00047322607, 1.7604473, 0.054002624, -0.026636107, 0.0687083, -1.6662447, -0.024347428, 0.07394964, 0.047804326, 0.00040000002, -0.06955226, -0.046567906, 0.036613002, -2.163383, -0.0077215564, -0.012059141, -0.09331605, -0.9457852, -0.011099184, -0.09285931, 0.012918529, -0.00025496504, -0.093435094, 0.012027363, 0.0061771236, -4.322721, 0.041838527, 0.06309771, 0.088430375, 1.3663397, 0.04643119, 0.0752838, -0.07568494, 0.00049999997, -0.09821098, 0.062471952, 0.0018903686, -0.8534136, 0.072980784, 0.010431057, -0.0417912, -1.6356487, 0.027375638, 0.05224645, 0.06084728, 0.0004, 0.03325486, -0.06590153, 0.041624643, -2.0613172, -0.081811026, 0.04268934, 0.10084793, 0.13671671, 0.09104112, 0.096473105, 0.03301802, 0.00040002263, -0.060862117, 0.086927, -0.0861698, 2.284306, 0.108549535, 0.087881684, -0.007978141, -1.315406, 0.06322281, -0.08627651, -0.09016143, -0.00049999997, -0.061560694, 0.066355206, -0.106663525, -0.010890488, 0.047427725, -0.05702804, 0.061957028, 2.2036767, 0.050098095, 0.07626404, 0.03184708, 0.00027338896, -0.067683466, 0.016488124, 0.066987686, 3.5016313, -0.034876116, 0.04663865, 0.03899474, 0.20575036, 0.01929524, 0.051123753, -0.04388795, 0.00049999997, -0.057649348, -0.0111038545, -0.038279947, 1.8199017, 0.092475526, -0.073295824, -0.09117948, 2.3537974, -0.07248185, -0.12712778, 0.02868121, -0.00039999996, -0.091827884, 0.026532095, -0.1144613, 0.66977966, -0.063762456, 0.005571398, 0.021846784, 2.6031299, -0.018510211, -0.050351333, -0.041183595, -0.00039999996, 0.012872242, -0.0448071, 0.048995946, 0.04057016, 0.053097855, 0.061202146, 0.039195314, -0.38006103, -0.06147148, 0.06371578, -0.016214645, 0.00049999997, -0.038771544, -0.017203353, 0.07938621, 0.40386188, 0.030785121, -0.08353705, -0.09741534, 0.37446165, -0.034966998, -0.10184906, 0.07628886, -0.00049999997, -0.123472646, 0.008015197, -0.045893047, -0.7150217, 0.07037011, -0.02125628, 0.041712724, -3.2205663, 0.045182966, 0.05055467, -0.05046243, 0.00019999998, -0.012258899, 0.06431273, 0.05345393, -2.9058414, -0.023690315, -0.015934983, -0.12529211, 0.6878331, -0.05956925, -0.110998236, 0.02538044, -0.00049999997, -0.111371174, 0.062759385, 0.013076227, -1.2723918, 0.08146045, 0.107482016, 0.00088156055, 2.4680955, 0.10386721, -0.07843091, -0.035343483, -0.00040000002, -0.027654378, 0.02202668, -0.13015002, -1.4058684, -0.08722343, -0.06760351, 0.005088849, 1.1375638, -0.066061355, 0.086616635, 0.018371549, 0.00049999997, -0.015232462, 0.011462209, -0.10881474, 0.7162504, -0.06586849, 0.04379443, -0.053535666, -0.19497947, 0.05168024, 0.080295846, 0.0020997424, 0.00025989523, 0.045969255, -0.027519152, -0.07907086, -4.1664762, 0.017314248, -0.04373609, -0.116876796, -2.500444, 0.054388866, -0.10355508, 0.046808228, -0.00029999999, -0.11231598, -0.056888606, 0.0046495097, 3.2483423, 0.025325703, 0.048592623, -0.02162832, -4.0658016, 0.053069826, -0.024685558, 0.0066808574, -0.00016633997, -0.0035522948, -0.022356207, -0.05438748, -2.483997, -0.10443492, 0.040890813, -0.06635451, 2.5928617, -0.07399407, -0.08687535, 0.06292205, -0.0004, -0.024491971, 0.08810365, 0.092841394, 1.6969075, -0.015836146, -0.015532995, -0.10407787, -1.8691045, 0.023941206, 0.101957865, -0.018859407, 0.0002, 0.10247095, -0.02622184, -0.011678189, 4.2986217, -0.023930121, -0.0049447096, 0.063191056, 1.5942168, -0.049895287, -0.04018614, -0.02203965, -0.0004, 0.039089907, -0.054321606, 0.010552468, -2.6826952, 0.0075154435, -0.041206807, 0.07553015, 2.5794709, -0.018738052, 0.073214, 0.04180767, 0.00029999996, -0.08397434, -0.020024877, -0.0025692568, 3.0292244, -0.09359142, 0.015024052, 0.054785307, -2.5829883, -0.0440362, 0.04751537, -0.08825877, 0.00032974067, -0.035888232, -0.09748373, -0.03457551, 2.6210272, 0.00069650885, -0.11866902, 0.08515782, 2.1422741, 0.0041020955, 0.085141085, 0.11861214, 0.00035276165, -0.14600465, 0.0018259841, 0.0037387165, -2.894632, 0.055826493, -0.11116333, -0.08136558, 0.390697, -0.108611725, -0.089522086, 0.047786288, -0.00045317353, -0.08474157, 0.041506063, -0.114849254, -2.0230656, 0.11798245, 0.09292527, -0.0062632016, -1.4189174, -0.0685374, 0.079780474, -0.10738664, 0.00012367655, -0.06306314, 0.08714445, 0.10499082, -4.6131167, 0.07035005, 0.07948785, 0.029046696, 0.8415158, 0.08462018, -0.066608146, -0.02267022, -0.00042761408, 0.001206157, 0.036826555, -0.103699125, 2.001346, -0.045382574, 0.02690358, -0.074581176, -2.8324046, -0.053431824, 0.053111073, 0.05167191, 0.0004, 0.058576375, 0.06929032, -0.010648673, -0.27769724, -0.040177956, 0.006133078, -0.058402415, -3.0027099, -0.034589294, 0.054713886, 0.029541446, 0.0004, 0.04745564, 0.04507218, -0.027913904, -1.4170934, 0.051801234, -0.01288782, -2.8715007e-05, 1.1479197, -0.011546221, -0.046461426, 0.02361112, -0.0004, -0.0057255155, -0.022906426, -0.047874615, 2.8534641, -0.009899854, 0.06353618, -0.06702797, 0.74624455, 0.027411405, 0.06639572, 0.058888275, 0.0004150733, 0.08819416, -0.013504305, -0.025826853, -2.0942278, 0.04819339, 0.075483434, 0.0201813, 2.1105843, 0.074622996, -0.05149427, 0.014400856, -0.00039999996, 0.023161195, 0.008844705, -0.088391, 1.1567633, -0.046110813, -0.04722063, 0.046584435, -2.2135844, 0.064137645, -0.0462111, 0.01664336, -0.00041688883, 0.016919231, 0.04648495, 0.06386699, 0.09025609, 0.08207573, -0.048539307, -0.116568536, 2.195236, -0.009676976, 0.13620277, -0.06352857, 0.00042175717, 0.12589934, 0.04211245, 0.07110986, -0.034763075, -0.012352554, 0.016540702, 0.14822245, -1.8565809, 0.11211786, -0.09704985, 0.020173833, -0.00049999997, 0.098351784, 0.11271114, -0.004381428, -0.018392658, 0.026879858, -0.016430182, -0.066109955, 3.7770224, -0.05641599, -0.04520231, -0.011704314, -0.0002, -0.038180012, 0.055225037, -0.029248709, -2.8070114, -0.038145665, -0.016613929, 0.048800167, 2.1080275, -0.030016752, 0.056513067, -0.0042234487, 0.0003, -0.0419103, -0.025353903, -0.041391753, -3.3184254, 0.00043282378, -0.052272342, -0.11915256, -0.12315035, 0.025328485, 0.11690768, -0.051195506, 0.00049999997, 0.12762523, -0.02302421, 0.010564343, 1.7678357, 0.0010762612, -0.04058188, -0.10675153, -0.71712714, -0.08702823, -0.069419906, 0.025512755, -0.00019999998, -0.07395178, 0.0811044, -0.03157763, -4.510353, -0.048676375, -0.029261569, -0.04561967, -0.74458086, -0.051481824, 0.044130795, 0.02662476, 0.00049999997, 0.016941516, 0.05003016, -0.050167236, -0.40985963, 0.006864795, -0.022119062, -0.054712288, -3.8383665, -0.018850824, 0.051373657, -0.023134543, 0.00024054793, 0.055922575, 0.020032672, -0.0010821442, 1.7562497, 0.011237658, -0.10939322, -0.09037335, 1.5300549, 0.034933586, -0.08573308, 0.108120225, -0.00049999997, -0.13752766, -0.030715916, 0.020079186, -0.5415634, 0.04462764, 0.07241943, -0.08022003, 2.5196948, 0.05113804, -0.09060976, -0.053349975, -0.00029999999, -0.09520885, -0.014722359, -0.0662569, -3.43915, -0.08383636, 0.041385226, 0.106670186, 2.0630178, 0.009923899, -0.12911192, 0.057891596, -0.00029999999, 0.11398589, 0.041679543, 0.07341551, 3.434363, 0.086622596, 0.049678575, 0.045024205, -1.6558436, -0.057794075, 0.092614345, 0.009002403, 0.00049999997, -0.03398504, -0.030874575, 0.09945045, 0.6328666, -0.087622486, -0.007582659, 0.09365632, 0.649056, -0.0765901, 0.079949036, -0.06518288, 0.00031081025, -0.05443306, -0.10028637, -0.059045643, -3.6833515, -0.07257355, 0.060176205, -0.029226525, 2.4792511, 0.03568454, 0.07129652, 0.05818681, 0.0004, 0.05658601, 0.032216735, -0.07417808, -0.6687443, 0.13429406, -0.01875834, 0.04091153, -2.2152524, 0.02723103, 0.13637304, -0.026858794, 0.0002, -0.03583433, 0.0333324, 0.13291118, 3.7997508, 0.047092993, -0.023990627, -0.0019294702, 0.3186257, 0.016769024, 0.03574696, -0.03518491, 0.0004, 0.01726478, 0.030718526, 0.039437573, -2.2786121, -0.08313086, -0.045975894, -0.06583459, -2.1761699, 0.059969105, -0.09856436, -0.0068915146, -0.0004, -0.053401146, -0.039115265, 0.094747186, -2.3911743, 0.041312277, -0.02079154, 0.04767896, 3.857336, -0.036218964, -0.05519967, 0.00731144, -0.000206932, 0.037333056, -0.030544763, -0.045667667, 2.3712194, -0.024223687, -0.043805376, -0.12525043, -1.4118247, 0.0008293583, 0.127268, -0.044671413, 0.00049999997, 0.13268721, -0.008792697, -0.022586796, 0.47392157, 0.085674286, -0.049688276, -0.057927426, 2.4925883, -0.048861425, -0.102611236, 0.015750872, -0.0004, -0.058626547, 0.012907528, -0.097779945, 0.124935, 0.037210178, -0.055924125, 0.05706448, 3.5580935, 0.0730387, 0.049328476, 0.0007161815, 0.00036498735, -0.032391563, 0.046985704, 0.06716839, 0.14833733, -0.052605387, 0.0021252858, 0.08664377, 4.840374, 0.02412039, 0.09770969, 0.012247866, 0.0001, -0.08324583, 0.02696825, -0.051203843, 0.4659828, 0.033818576, 0.008439318, 0.04717423, -2.2114127, -0.013925633, 0.056976825, -0.00020987028, 0.00040000002, -0.045855284, -0.011079045, 0.03485504, 0.919952, -0.061189882, 0.048434786, -0.024989927, 2.5298824, 0.051238805, 0.038318325, -0.051194888, 0.0004, -0.018574428, -0.05385539, -0.05890003, 0.52198035, -0.0764544, -0.0034588792, 0.056602236, -1.7647527, 0.004925151, -0.09505834, 0.00084368436, -0.00024932838, 0.056493547, 0.0036062577, 0.07652796, 4.0716686, -0.009607467, -0.07323232, -0.07832803, -2.2257016, -0.060638923, 0.06856997, -0.056671318, 0.00040000002, 0.088437416, 0.039060757, -0.047367077, -0.75121284, 0.08196254, 0.03380287, 0.01002265, -0.6316149, 0.029196214, -0.0792909, 0.028661486, -0.00049999997, 0.01976535, -0.023049202, -0.08389881, 0.25755447, 0.07591283, 0.0021413614, -0.024662597, 2.9004393, -0.015277152, -0.05854123, -0.05210683, -0.00029999999, -0.019479169, 0.05425797, -0.055246934, -2.7325258, -0.043373186, 0.015836611, -0.035850484, -1.0665491, 0.026388524, 0.051336147, -0.0092485165, 0.00049999997, 0.028977599, -0.02304541, -0.045238223, -1.4108108, 0.0548244, 0.03174893, -0.013794803, 0.4027651, 0.033619467, -0.054991215, 0.0070500905, -0.00043476393, -0.008247594, -0.01311402, -0.06296034, 2.1017346, -0.10143171, 0.0030481112, -0.04830528, 1.3368202, -0.039408684, -0.07032123, 0.07831324, -0.00049999997, -0.02810066, 0.08761687, 0.06453464, 0.7257534, -0.045862604, -0.06594808, -0.101855, -0.5319606, 0.015577529, 0.10478663, -0.07486036, 0.00016975758, 0.120336734, -0.03869863, -0.029128233, -4.733013, -0.051016934, -0.01817251, 0.013457727, 1.3591852, -0.0025810923, 0.03767324, 0.04108701, 0.00028557784, -0.022465268, 0.036940023, -0.03528206, -3.8735774, -0.07657172, -0.04740473, -0.035102315, -1.0475464, 0.024550997, -0.07791378, 0.05166527, -0.00049999997, -0.053634215, 0.032013156, 0.073764056, 0.34649926, -0.044600796, -0.050175272, -0.081999, -2.1777668, 0.041703876, 0.0713466, -0.06634057, 0.0004, 0.08661514, -0.060189098, -0.010281817, -2.4533765, 0.087604925, -0.052697867, 0.019267559, -3.0514588, 0.053769104, 0.06863515, -0.05675408, 0.0004, 0.01603705, 0.05775013, 0.0850333, 0.4348924, 0.06317229, 0.06997728, 0.0869549, -1.0318785, -0.07195553, 0.101914644, -0.029740853, 0.00020000001, -0.08532511, -0.03413647, 0.08945971, 4.2847023, -0.082371816, -0.030042112, -0.016970161, -0.18892688, -0.03337775, 0.0582495, 0.058894422, 0.00049999997, -0.008743038, 0.060663816, -0.064954534, -0.17707144, -0.0986579, 0.053912546, 0.0047263354, 2.6776857, 0.053536955, 0.09578569, 0.024923496, 0.0004, 0.007917874, 0.02410034, -0.1096301, 1.2726486, 0.04169511, 0.04240384, -0.032138143, -1.9488279, 0.03375195, -0.05264311, -0.025669768, -0.0004607897, -0.041130908, -0.00021333632, -0.053643554, -0.55625594, -0.029063966, -0.027737295, 0.078627236, 2.002964, -0.0012181618, 0.08339984, 0.028970636, 0.000100000005, -0.08336736, 0.008451288, -0.027834762, 4.5032406, -0.10094453, -0.07582066, 0.06901636, -2.8974519, 0.05215938, -0.121359766, -0.057035364, -0.00035444408, 0.08826906, -0.014995399, 0.1126301, 2.1292102, -0.11313873, -0.08175958, -0.03743485, -4.606234, -0.022421632, 0.08391404, -0.11550788, 0.00015010126, 0.08708196, -0.084617816, -0.07837681, 1.3083515, -0.055545676, 0.05847049, -0.058382485, -1.553741, 0.024434393, -0.05557825, -0.07890916, -0.00010304072, -0.078932084, -0.058351476, 0.016657326, -4.5942407, 0.13268568, 0.024124315, -0.03854449, 1.3992298, 0.041474566, -0.1129497, 0.07207894, -0.00039999996, -0.018641919, -0.07958347, -0.11398287, 2.2164636, 0.08123714, -0.058859665, 0.01522931, -2.2023845, -0.05874627, -0.06944602, 0.04496655, -0.00029999999, -0.01566102, -0.04481802, -0.08967687, 3.2253144, -0.030799517, -0.04274672, -0.09339294, 4.3174415, 0.017822614, -0.09824668, 0.039090674, -0.00029999999, -0.10115274, -0.004294838, 0.035324357, 0.14496678, -0.017944008, -0.05222183, 0.07869115, 0.0768961, 0.03803054, -0.07731313, -0.042635202, -0.0004528604, 0.08644705, 0.023172464, 0.035090547, -2.0585618, 0.02138008, -0.04884806, -0.07397132, -2.197517, -0.00060915336, 0.076009676, -0.050370183, 0.0002, 0.08864265, 0.0123042, 0.017495302, -3.8203578, -0.054593846, -0.019857906, 0.08246396, 1.8287041, 0.04847102, -0.087782525, 0.010950758, -0.0004, 0.069607474, 0.04555242, 0.05705178, 2.8622043, -0.02608089, 0.06623732, -0.06320914, -0.5163219, -0.084200084, -0.043165557, -0.010491479, -0.0001636561, -0.035960022, 0.053031523, 0.070409685, -4.743596, -0.055176307, 0.045757007, -0.10822934, -0.9099891, 0.08921998, 0.09412288, -0.005692062, 0.00028480764, 0.07646628, -0.0768043, -0.07145438, -4.005941, -0.039673325, 0.04456733, -0.040206257, -4.9237757, 0.009621761, 0.052293956, 0.04847192, 0.0001, 0.059247043, 0.021350844, -0.03479501, -0.0052219937, 0.006752524, 0.026495764, -0.048577473, 1.462344, -0.035575096, -0.035404265, -0.024255786, -0.0004, -0.0423817, 0.033939727, 0.012620582, -2.985783, 0.051043727, 0.07613927, 0.0029942289, 3.23917, -0.06582355, 0.04587546, -0.044433277, 0.00019550562, -0.038385034, 0.022580309, 0.080176875, 3.4416, 0.06881007, 0.04316111, -0.12522845, 2.9306836, 0.09505898, -0.114365324, 0.012815614, -0.00039999996, -0.09224339, -0.08565959, -0.08020889, -1.8124971, 0.021898486, -0.00017336283, -0.11252364, -2.0194368, -0.0670363, 0.09205084, -0.013187914, 0.00023840604, 0.09037552, 0.068320975, 0.017482938, 3.7168214, 0.0540477, 0.004643297, 0.021917587, 0.17811562, -0.010373296, -0.045545653, 0.03522901, -0.0004, 0.019857882, -0.03642977, -0.04125083, 2.7500935, 0.07232971, -0.05636942, 0.064131625, 1.5035162, 0.0013140579, 0.084774114, 0.0730314, 0.00046470948, -0.08537358, -0.04645214, 0.055457298, 1.3321494, 0.03900751, -0.002292227, -0.1230182, -0.7040715, 0.11370921, 0.049967878, 0.035124686, 0.0005, 0.046999436, -0.11898855, 0.017120078, -1.2263881, -0.02854477, 0.0020997378, -0.049515817, -2.1247885, 0.0118454825, 0.055774465, -0.0044635194, 0.0002, 0.048123907, -0.012483171, -0.028271722, -4.0704966, -0.061229296, -0.055104803, -0.051034313, -0.26400134, 0.015253193, -0.07359525, 0.061164908, -0.00049999997, -0.073541686, 0.030614818, 0.055176254, 0.33719912, -0.05255396, -0.011712417, 0.0071821073, -2.7970936, 0.0062776273, -0.045728903, -0.028638093, -0.00039999996, 0.012221078, -0.026876906, 0.045595605, 0.9483886, -0.005023669, -0.036384463, -0.084716946, -1.9661524, -0.056500945, -0.065830305, 0.031623453, -0.0004, -0.07285901, 0.05355903, -0.018682184, -1.8425801, 0.04055744, 0.039298534, 0.025904113, -3.2340698, -0.028101156, 0.047648367, -0.028288912, 0.000274097, -0.03775874, 0.0067500616, 0.048877582, -2.5800002, -0.0563628, -0.045429897, -0.07435581, 3.383185, -0.046520922, -0.059189487, 0.07142712, -0.00039135938, -0.07367812, 0.07212598, 0.011781594, 0.7933465, -0.056090154, -0.1138459, -0.024315387, -3.8767729, 0.09744185, -0.06068173, 0.05933842, -5.5384062e-05, -0.063696265, 0.0074210875, 0.112187095, -3.1046815, -0.062358867, 0.024785768, -0.118006535, 0.49692094, 0.0076688025, -0.13176866, -0.031728797, -0.00039999996, -0.12033729, -0.021241302, 0.059129067, -2.7414424, -0.034824293, -0.0228588, 0.051847998, -1.5748835, 0.021614268, -0.061614476, -0.01264719, -0.00041306473, 0.052379042, 0.0102275675, 0.039690107, -1.5848469, -0.06566, 0.016605165, -0.031330775, -2.4953494, -0.03545653, -0.031543273, 0.05758855, -0.00040000002, -0.000428933, 0.06555818, 0.035644438, -2.2400248, 0.043263625, -0.0037955793, -0.059924357, -2.9269996, -0.048024327, 0.042146638, -0.037341703, 0.0003364323, 0.036041636, 0.060715158, 0.022175333, -2.188538, -0.09138429, -0.01769807, 0.015381927, 2.236507, -0.02342173, 0.06594767, -0.06327118, 0.00019999998, 0.0011169212, -0.06510452, -0.06827201, 4.100738, 0.0635975, 0.010149447, -0.08184181, 1.7062922, -0.014247528, -0.10044493, -0.023527913, -0.0003131279, -0.081228696, 0.025564503, -0.05995072, 3.3204346, -0.057878412, 0.05419059, -0.05176834, 1.5224024, 0.04043127, 0.07765222, 0.036082346, 0.00039999996, 0.06310226, -4.932059e-05, -0.070601664, 2.8371181, -0.032649457, -0.06832616, 0.048338722, -1.6760674, -0.068099596, 0.05185117, 0.027294414, 0.00019999998, -0.048657406, -0.026722176, -0.07063615, -4.220995, -0.025978267, -0.08866935, 0.07462868, 0.27621755, 0.032329742, -0.078988954, -0.082596004, -0.00049999997, 0.11129458, 0.0022482357, 0.041412905, 0.15463403, 0.109020025, 0.03470921, 0.07268564, 2.4167163, 0.030811355, 0.09504458, -0.09159962, 0.0004, -0.07442173, 0.090194784, 0.06855369, 1.3767705, -0.041672412, -0.015642187, 0.07055122, -1.4521246, 0.0026812372, -0.081719995, -0.016534733, -0.0004, 0.07221471, -0.005992366, 0.041326392, 2.8321633, -0.038924824, 0.051260155, 0.029659512, 0.020008394, 0.059218396, 0.033277795, 0.020203998, 0.00049999997, 0.0006865751, 0.03588059, -0.061110917, -0.27119207, 0.036504935, 0.014780894, 0.051311195, 3.1992378, -0.029764218, -0.045971688, 0.03441829, -0.0003658226, 0.044332888, -0.043035477, -0.01914331, 1.558309, 0.048759717, -0.06766628, 0.056929022, 2.097067, 0.08001316, 0.06143962, 0.0044963295, 0.0004, -0.037650153, 0.042937122, 0.08328277, 2.0395274, -0.11074926, 0.059026815, 0.07128428, 2.4596295, 0.05566634, 0.1312935, -0.022232557, 0.0004, -0.0739383, 0.010433732, -0.12351225, -2.3314526, 0.05959909, 0.03307149, 0.016550006, -1.4618553, -0.03696388, 0.054239403, 0.02472725, 0.00039999996, -0.0011390784, -0.029732848, 0.063516445, 2.7544847, -0.0021450724, 0.06274495, 0.057278153, -3.3625164, 0.013552799, 0.056815375, -0.061730456, 0.00037110053, -0.083869144, 0.0075762663, -0.01144028, 1.1132019, -0.11962779, 0.007409161, 0.04357716, -2.0170302, -0.00984532, -0.12703653, -0.0054280697, -0.00041056424, 0.043092165, -0.0084556835, 0.11973404, 0.9807364, -0.08071054, -0.040827695, -0.025848266, 1.1959292, -0.04797041, 0.061635666, 0.052431937, 0.00049999997, -0.00582012, 0.058166724, -0.07370198, -0.42971212, -0.06974405, 0.056589015, 0.0644654, 2.3694892, 0.022220064, -0.06833035, 0.08402125, -7.2765775e-05, 0.082851514, 0.06596201, 0.03173294, -4.3571725, 0.03396538, 0.05707603, 0.009166048, 1.4679859, -0.049044944, 0.034079675, -0.030471394, 0.0004587684, -0.030598748, 0.008731516, 0.059015367, 1.409577, 0.04144856, 0.025496194, -0.1087679, -2.5957432, 0.041530922, 0.10418166, 0.040247463, 0.00019999998, 0.10370966, -0.051909737, 0.02735288, -3.6599548, 0.028732104, 0.03256567, 0.042296838, 4.3298674, -0.018888483, 0.05112919, -0.026535083, 0.0002, -0.049927652, -0.0006023249, 0.03437944, 1.0366317, -0.12187844, 0.0054770256, -0.045784857, -2.254066, 0.036550097, 0.090359226, -0.08648643, 0.00040000002, 0.028113006, -0.09373268, -0.086049095, -1.4564267, -0.007092536, 0.013675527, -0.08271336, 2.4815793, -0.008334994, -0.08271258, -0.012960686, -0.0004, -0.0834209, 0.0071015125, 0.008327349, 0.73550713, -0.019691424, 0.04531181, 0.045449782, 1.6233294, -0.015218682, -0.04948182, 0.042738006, -0.00029999999, 0.062347703, 0.0022327374, 0.024786605, 3.553521, -0.086647496, -0.06433999, -0.015838996, 3.4312081, -0.065629415, 0.07974247, 0.03510291, 0.00032116845, -0.009126204, 0.03741391, -0.10205494, -1.4073766, -0.119246855, -0.011401017, 0.00914725, -0.5167103, 0.0145473685, -0.0852405, 0.08340204, -0.00044036953, -0.0014246127, 0.083890066, 0.08598778, -2.0497398, 0.050743584, -0.0396249, 0.10202218, 3.0922122, 0.033861067, 0.112620674, 0.026899535, 0.00019999998, -0.10407731, 0.017321229, 0.058493238, -3.27336, -0.100166805, 0.061348647, -0.09339063, -0.30819306, -0.07298516, -0.1308919, -0.007702619, -0.00040000002, -0.08460871, 0.040280353, 0.11720798, -2.328844, 0.05657224, -0.0013642301, -0.02377353, 3.44038, -0.006378275, -0.059907816, -0.011740171, -0.0001, -0.022942523, 0.013291086, -0.055357452, 3.5069737, -0.025785247, -0.043414842, 0.023626791, -3.0010858, 0.049077913, -0.025652034, 0.0064252187, -0.00034736597, 0.005867824, 0.023771355, 0.050084352, -2.028472, 0.11490142, -0.08088419, -0.03323551, 2.479651, 0.08713349, 0.10126149, 0.054800153, 0.00039999996, -0.0073895077, -0.06366358, 0.1293891, 2.0812988, 0.10823774, -0.010302622, 0.004228239, 0.73503065, -0.006033904, -0.08897598, -0.062340192, -0.0003, 0.009360232, 0.061778344, -0.08908003, -3.8689537, 0.09525127, -0.059838176, -0.05612825, -4.266655, 0.043744236, 0.10980144, -0.0428238, 0.0001, 0.06940772, 0.01291618, 0.10401698, 2.343395, 0.004481593, -0.07970346, 0.094244964, 4.8288946, 0.073475495, -0.07405438, -0.06612213, -0.000100000005, 0.09917713, 0.0584649, 0.044727944, 0.78739905, 0.07535212, -0.055672962, -0.0548752, 0.72869444, 0.027765397, 0.09030998, -0.053496715, 9.999999e-05, 0.07307426, 0.02309409, 0.07691243, 4.8605413, 0.04690918, 0.001795282, -0.10238983, 0.20968811, -0.073190175, 0.079357296, -0.03214013, 0.00049999997, 0.071624696, 0.07991599, 0.03421558, -1.1235051, -0.06202589, -0.015934281, 0.097674, 1.5974598, 0.03733387, -0.110522695, 0.0056777247, -0.00029999999, 0.09165313, 0.034236714, 0.06378772, 3.806142, 0.022455847, -0.027373698, -0.05362694, -4.1737776, -0.05144745, -0.038456894, -0.0019130041, -0.00029999999, -0.031278227, 0.043602534, -0.035354275, 0.5284909, -0.08100283, 0.059838407, -0.08144831, 4.143886, -0.043383613, -0.11486107, -0.041239746, -0.00022876765, -0.09128155, 0.0014899883, 0.09187697, -1.7168181, -0.050920352, -0.038883366, -0.022525024, -4.2220488, 0.0015124544, -0.035505965, 0.05787239, -0.00019999998, -0.044911075, 0.04289038, 0.027487889, -1.9317328, 0.035190642, -0.028740892, -0.027796319, 4.440433, -0.03734871, -0.03684816, -0.009183821, -0.00020000001, -0.014274031, 0.02555837, -0.044498064, 1.4818351, 0.0035239372, 0.0078527685, 0.053852655, 3.3204048, 0.0377278, -0.039245605, 0.0032539929, -0.0003053929, 0.03922229, 0.037044697, -0.007968415, 1.7657136, -0.057289124, -0.030153593, 0.014418374, -0.0958242, 0.028315568, -0.028583845, 0.052729163, -0.00049999997, -0.017758295, 0.051700074, 0.037562188, -1.6797881, -0.079648025, 0.058024097, -0.0023958692, -0.45955992, 0.056401346, 0.076319925, -0.026655253, 0.00040000002, -0.013835585, -0.022908945, -0.094868876, 2.3936362, -0.08791396, 0.051985957, -0.011807201, 2.7981503, 0.0509544, 0.088636704, 0.010862825, 7.149682e-05, 0.01567158, 0.0034369263, -0.10155493, -4.095025, 0.07570285, 0.028792977, -0.0065268115, 0.4597863, 0.016319213, -0.05577946, -0.056788117, -0.00029999999, -0.024603209, 0.05159625, -0.05775002, 3.928266, 0.033675976, 0.04352179, 0.052617304, 0.034566976, 0.05660626, -0.05060487, 0.0056282487, -0.0004, 0.038189765, 0.036630582, -0.054740667, -2.8678117, 0.044328414, 0.019389769, -0.032420028, -2.5241146, 0.035751905, -0.037675574, 0.026351154, -0.00029999999, -0.0121992845, -0.039957725, -0.04057817, -3.443319, -0.06274152, -0.05515889, -0.07142819, 2.6351507, 0.059798006, -0.09056511, 0.017411187, -0.00040000002, -0.067592055, -0.028921455, 0.081705876, -0.48313951, -0.0011776792, 0.04337291, -0.04824326, -0.69627047, 0.0035486068, 0.04822204, 0.0432672, 0.00039999996, 0.06477676, -0.0018531583, -0.0032473558, -2.5416603, -0.043303583, 0.082722366, -0.10918687, -0.949142, -0.079499446, 0.078078665, 0.09068364, 0.0002, 0.111555375, 0.08775361, 0.022241125, 4.5372305, -0.06292582, 0.09978352, 0.032702006, -2.3871226, 0.08857721, 0.07091601, -0.045943733, 0.0002, -0.05639367, 4.579345e-05, -0.10865348, 3.742497, 0.0025689653, 0.039976113, -0.114778176, 1.7970074, 0.01911217, 0.113242686, 0.039869074, 0.00033339232, 0.12002852, -0.01888727, -0.003891763, -3.1954904, -0.042294476, 0.048578907, 0.035415675, 4.227407, -0.03182211, -0.054828722, 0.037204396, -0.0002991078, 0.051005222, 0.006074935, 0.052579127, -0.93065745, 0.0026069027, 0.00459362, 0.07617004, 2.398458, 0.034401733, -0.06810074, 0.0029295897, -0.0004, 0.06811386, 0.03421929, -0.004394864, 1.9393002, -0.09087804, -0.06469064, 0.06087622, -3.4040809, -0.08650225, 0.084254794, -0.039599285, 0.00020890511, -0.020202931, -0.069755726, -0.10428611, -2.6319265, -0.039920975, -0.039057553, 0.05217987, -1.8601425, 0.061153326, -0.043614812, 0.014139785, -0.00029999999, 0.022549983, 0.049134206, 0.054030024, -3.3280306, -0.03318132, -0.0718753, -0.10372327, -3.6129088, -0.05143781, 0.10563841, -0.0567473, 0.0002, 0.115233354, 0.026458412, -0.055197828, -2.6330476, 0.110990286, 0.052985724, 0.061428703, -2.3758044, 0.06409143, -0.12109179, -0.011352884, -0.0004, 0.049731884, 0.037803628, -0.122464046, -0.99601686, -0.044263434, 0.0051540695, 0.036204856, 3.7406933, 0.023519313, 0.047539867, 0.02198661, 0.00019999998, -0.028003532, 0.031780574, -0.038760874, 2.2771988, -0.05159641, 0.047039293, -0.067333326, -3.3323545, -0.0039764727, -0.08085351, -0.053437434, -0.0001, -0.08204059, -0.025664695, 0.044936903, 3.6043448, 0.008965366, 0.0192338, 0.09183021, 2.7451138, 0.078158066, -0.05256427, 0.003379004, -0.00039999996, 0.051904164, 0.07582983, -0.02094992, 1.7810555, 0.077671826, -0.024577616, 0.00021884413, 4.0138803, -0.015193079, -0.04858058, -0.0636091, -0.00019999998, 0.01932039, 0.060604356, -0.05090043, 2.4509425, -0.03216954, 0.00967184, 0.13577473, -0.13303699, 0.015260665, 0.13889168, -0.006278118, 0.00049999997, -0.13526063, 0.013370046, -0.033000134, 0.6313367, -0.14386049, -0.017709898, -0.00910909, -1.322562, 0.017343562, -0.14406085, 0.0061750524, -0.00040000002, -0.009788615, 0.0050289184, 0.14481488, 2.6754568, -0.041638743, 0.025213776, 0.036689643, -1.6587479, 0.04220697, 0.038334917, 0.02155587, 9.999999e-05, -0.01415755, 0.04012916, -0.04364475, -4.651571, -0.02476342, -0.052020293, -0.055521656, -2.623682, 0.028629886, -0.060468078, 0.04388546, -0.00040000002, -0.07049181, -0.0062843314, 0.037328336, 1.178616, 0.0651824, -0.025236221, -0.022362594, 0.51753664, -0.027799841, -0.06776497, -0.0045579947, -0.0004999999, -0.019081958, 0.012519571, -0.06974838, 0.6865356, -0.07389251, 0.057275273, 0.053168427, -3.0997941, -0.073621504, -0.0755628, -0.020918395, -0.00029999999, 0.026214728, -0.050766613, 0.0911207, -2.9485323, 0.087888315, -0.10092062, -0.03949613, 1.0396714, 0.10820957, 0.08451954, 0.024827562, 0.00048269908, 0.0059669367, -0.046268232, 0.13150255, 1.6279438, 0.060942784, 0.025909614, 0.03905288, 1.0770041, -0.026454126, -0.033863354, 0.063748814, -0.00019999998, 0.038686104, -0.06397205, -0.0179282, 4.5895705, -0.09759173, 0.027765404, 0.0043177474, -0.13931522, -0.012976528, -0.058375366, 0.082083076, -0.00049999997, 0.024923284, 0.078326896, 0.0596442, 1.5810907, 0.108683765, -0.057868693, -0.06332719, -1.6400914, 0.08501722, 0.059011765, 0.09198352, 0.00029999999, -0.011453927, -0.11108604, 0.08185342, 3.6377661, -0.014071417, -0.056008413, -0.058922403, -1.504308, 0.008633311, 0.058430873, -0.05760292, 0.00048680743, 0.08083477, -0.015990265, -0.004104891, -1.1832018, 0.05298656, 0.009229304, 0.018991202, -2.651092, 0.020772377, -0.031989336, -0.042410046, -0.0004, 0.0037886612, 0.046313338, -0.03307783, -1.5963666, -0.019333076, 0.07348211, 0.09746453, 0.059344433, -0.031026507, 0.09247992, -0.075878456, 0.00019999998, -0.11805214, -0.03633957, 0.003980905, -4.6640863, 0.0036598714, -0.0004056998, 0.06391389, 3.8083053, 0.056207374, 0.030497951, -0.003024987, 0.0002, -0.030428289, 0.056287255, 0.002099688, 2.3769088, -0.05323015, -0.06870785, 0.042674027, 4.7181263, 0.0803784, -0.0506269, 0.018748853, -0.00016682385, 0.00900852, 0.04573225, 0.0848687, 0.65897864, -0.04746488, 0.036607858, 0.011144625, 2.825181, -0.03519568, -0.034793746, -0.035607748, -0.00019999998, -0.015020025, -0.034154262, 0.048219673, -3.7465832, -0.033227656, -0.068323374, 0.0714857, -0.3883912, -0.029451428, 0.07882884, 0.0616522, 0.00039999996, -0.094397575, -0.0005444687, -0.044397827, -2.994567, -0.046640027, 0.029060727, 0.104434386, 3.2541144, -0.015846958, 0.11064118, -0.037865072, 0.00019875166, -0.107237756, -0.028989034, -0.039825287, -3.4221895, -0.040254466, -0.07469437, -0.061687168, 4.072225, 0.025761163, 0.056141883, -0.084790505, 0.00027772656, 0.09338587, -0.047684547, -0.0032005107, 0.66143477, -0.014602205, -0.055659905, 0.0675133, -1.8757688, -0.050275728, -0.050682805, -0.05265832, -0.0004932125, 0.07161301, -0.046931047, -0.023202388, -0.20426786, 0.1444545, -0.009181742, -0.0042561227, -0.3759696, -0.00296049, -0.096575014, 0.10786113, -0.00029999999, -0.009677522, -0.107510395, -0.09652657, 4.2959, -0.09808745, -0.10826527, -0.0064673284, 2.0908594, -0.10802034, 0.09673473, 0.018929932, 0.0004, -0.0097367335, 0.017474687, -0.14485916, 1.9185736, -0.06365017, 0.008226528, 0.067567684, 3.5424767, -0.032919765, -0.0846889, -0.02070003, -0.00029999999, 0.059576478, -0.038006928, 0.06074972, -1.8115499, 0.032067515, 0.036953934, -0.08416227, 1.3744335, -0.0029241685, -0.08868176, -0.040052507, -0.00049999997, -0.09187126, 0.015721356, -0.028101865, -0.107847735, -0.051576387, 0.08107138, 0.042689655, 3.116073, 0.08816436, 0.05724771, -0.0022007944, 0.0002009279, -0.024940329, 0.034716412, -0.09606169, -2.9985557, 0.021354724, -0.050583124, 0.07813581, -3.015986, 0.028300036, 0.07989905, 0.043990128, 0.0002, -0.08867335, 0.013318064, 0.032856435, 3.630943, 0.04209614, -0.03928264, 0.01890706, -3.1165936, 0.04355547, 0.039027818, -0.015888322, 0.00026525962, -0.0018772399, 0.024625026, 0.055342313, -2.7518315, -0.06753176, -0.039714616, -0.10383235, -3.323979, -0.08490726, 0.09684611, 0.01818056, 0.00034053964, 0.07175768, 0.07721739, -0.07620535, -1.488456, -0.06613721, -0.020418886, 0.0292536, -0.54468143, -0.035160627, 0.04773422, -0.046173684, 0.00040000002, -0.0060360655, -0.054326322, -0.051566005, 2.9011028, -0.008981579, -0.035122003, 0.07669325, -0.70991457, 0.05163274, -0.06327915, -0.022932228, -0.0004, 0.06670434, 0.044252373, 0.028077334, 3.1867514, 0.0033036305, 0.037196174, -0.045768864, -0.5246037, 3.6582653e-05, 0.045839325, 0.037256066, 0.00029999999, 0.058977474, -0.0021119807, 0.0025406368, 3.9280617, 0.0280075, 0.03252882, 0.045993097, 3.7177842, 0.050696835, -0.036949724, -0.0047389898, -0.00029999999, 0.024562573, 0.03917273, -0.04266247, 1.033788, 0.06593887, -0.06453972, 0.05962778, 2.346784, 0.0851525, 0.06532697, -0.023456793, 0.00039999996, -0.021677135, 0.060297567, 0.08923613, -0.8953841, -0.066596575, 0.061154287, 0.05526508, -0.18138218, 0.08121294, 0.060828, 0.030554743, 0.00049999997, -0.014090221, 0.061557196, -0.08509615, 1.4032544, -0.0033155472, 0.05630125, -0.07010944, 2.9011598, -0.017695487, -0.069193676, -0.054729007, -0.00040000002, -0.088159144, 0.01177128, 0.013622034, -1.3256495, 0.0817212, -0.03395336, -0.014262419, 1.9200826, -0.0099361185, -0.05375476, 0.071037315, -0.0004, -0.03546154, -0.06318382, -0.052772, 2.4986925, -0.082766265, 0.034570888, -0.045663755, -3.5127468, 0.012014447, -0.06798207, -0.0732439, -0.00022822153, -0.055999804, -0.065680064, 0.051775772, -2.786234, -0.09853773, 0.0805929, 0.04819573, 2.0398426, 0.08965529, 0.10151986, 0.013541605, 0.0001, -0.027928015, 0.041547924, -0.12657616, -4.4883738, 0.020045998, -0.09184803, -0.11242931, -1.4335968, -0.05948435, 0.09833513, -0.0909399, 0.0004489232, 0.13243121, 0.058072317, -0.023829302, -1.5036541, 0.0541101, -0.0066704904, -0.12241011, -1.4974132, 0.0905954, 0.09232003, 0.035015956, 0.00049999997, 0.082590565, -0.09689762, 0.04178853, -0.016182216, -0.071409166, -0.008479428, 0.081442, -3.321111, -0.01752726, 0.10714017, -0.0042130565, 0.0003956073, -0.07998435, -0.015907668, -0.07178733, 0.9837935, 0.045277506, 0.040228892, 0.0013798156, 2.027809, 0.03682208, -0.04055554, -0.02587862, -0.00029233363, -0.016260443, 0.020179318, -0.05476051, 3.843605, 0.08233108, -0.075432144, -0.07272684, 1.638014, 0.06427145, 0.10940362, -0.040714122, 0.0003900573, 0.08275493, -0.009922281, 0.103974886, -3.0736268, -0.06585174, -0.04053639, 0.053247806, 4.4845796, -0.02922784, -0.049781688, -0.07404388, -0.000100000005, 0.060201835, -0.068509586, 0.022296963, 2.0693944, 0.060466476, 0.029915068, -0.04857022, -1.6417264, -0.003357514, 0.07252317, 0.040488146, 0.0003, 0.056944754, -0.027489122, 0.053961247, 3.588427, 0.019731503, -0.011344876, -0.04625481, 1.358642, 0.004018381, -0.049492326, 0.013853109, -0.00012731369, -0.047455944, -0.008907851, -0.018059062, 4.6250877, 0.02058076, -0.017865354, 0.0625471, 4.349256, 0.03862577, 0.05614148, 0.003326125, 0.0002, -0.052338906, 0.034407012, 0.0270495, 0.89828736, 0.05300813, -0.058975916, 0.056908544, -1.7149307, -0.06000218, -0.07409285, -0.020894747, -0.00049999997, 0.05582543, -0.02363671, -0.07649466, -0.5260472, -0.0669871, 0.03188279, -0.060205948, 2.5064504, 0.06316328, 0.060703907, -0.03813103, 0.00039306833, 0.025527801, -0.06653618, -0.063638106, -2.4001112, -0.04320196, -0.028527714, 0.05809779, -3.4990988, 0.013078573, -0.072257906, -0.025755402, -0.00038103596, 0.06338876, -0.0045342892, 0.0449099, 0.2765754, 0.114567794, -0.018619487, 0.002725021, -0.41801947, 0.013113228, 0.066936634, -0.09395435, 0.00029999999, 0.013496451, 0.093019836, 0.06815456, -3.8521988, 0.09293123, -0.011087283, -0.05007024, -2.9665596, -0.025951914, 0.079215504, -0.06570825, 0.00030597125, 0.044231832, 0.06977213, 0.06664509, -2.3029056, 0.022775281, 0.030904384, 0.08911243, -3.8233266, 0.06736538, -0.06949349, 0.0068833064, -0.00029999999, 0.066015236, 0.06025274, -0.037767906, -1.0756364, -0.03793047, 0.03868565, 0.07109479, 3.6795976, 0.0475371, -0.052898046, 0.054146014, -0.0003301818, 0.0655078, 0.060786426, 0.0018732763, -0.0003157312, -0.034705102, 0.030961378, -0.08395604, -3.2721195, 0.055979885, 0.07776411, 0.0055373735, 0.0003222353, 0.06981028, -0.046965986, -0.04617779, -1.7386016, 0.039096106, -0.06940633, -0.060300905, 3.3104239, -0.057455372, -0.06959925, 0.042857528, -0.0002038983, -0.07177965, 0.017906658, -0.06714892, 3.09921, 0.10618322, -0.00018779415, 0.06935783, -2.6234376, 0.05646235, 0.0738914, -0.08624086, 0.00039999996, -0.040280834, 0.10307982, 0.061946973, 0.823356, -0.032488503, 0.08124503, -0.04496581, -1.9868834, -0.06335959, -0.054221407, -0.052189857, -0.00040000002, -0.06788401, 0.0117246555, 0.07023157, -2.1327088, -0.028001627, 0.021735728, 0.06812922, -2.1146324, 0.034740865, 0.068086654, -0.007443388, 0.00039169996, -0.06250684, 0.028104985, -0.034657314, 2.7561586, -0.013331813, 0.08486053, 0.11879826, -1.6193606, -0.1059145, 0.0764817, -0.06651874, 9.999999e-05, -0.10048111, -0.09187663, 0.05435351, 4.581575, 0.026375564, 0.03764149, -0.03837159, -0.6779705, -0.029241106, 0.045912202, 0.024939094, 0.00039999996, 0.045102302, 0.0077536623, 0.0386082, -2.8662844, -0.054134876, 0.019456169, 0.018898038, -0.17106709, 0.0047967555, 0.048390035, -0.036078513, 0.00026249402, -0.026695874, -0.030759148, -0.044804785, 4.16098, 0.046474747, -0.023618594, 0.13410822, 0.11934551, -0.036622893, -0.13865063, -0.011727045, -0.00029999999, 0.13115494, -0.03034669, -0.050795842, 4.0227723, -0.042869516, -0.05552136, 0.08174666, -0.52874386, -0.023701195, -0.08072966, -0.06726, -0.0004, 0.0959343, -0.04475524, 0.019912558, 2.4594297, 0.038902894, 0.078651994, -0.05156178, 0.29685742, 0.025786597, -0.06258133, -0.07600538, -0.00029999999, -0.09044228, 0.015988436, -0.043849215, 4.1547813, -0.09814253, 0.0038203974, -0.102273695, 2.7765913, 0.012170735, -0.14025728, -0.016918378, -0.00038203876, -0.1016188, -0.020488115, 0.09674874, -2.1402686, 0.070128255, -0.050272804, -0.014915027, -0.337526, 0.047374174, 0.071417235, -0.017973602, 0.00049999997, 0.022483336, 0.0063251834, 0.084393576, 1.0371382, -0.06838029, 0.038740877, -0.097481996, -3.2747164, 0.07793293, 0.096652225, -0.01625618, 0.000100000005, 0.070214316, -0.06954818, -0.076892495, 3.6519375, 0.061433434, 0.047214124, 0.095793314, 2.0698884, 0.059752643, -0.10679099, 0.014314487, -0.00023603404, 0.08851639, 0.039320607, -0.07614679, 3.9593418, 0.022012241, 0.0093188565, -0.094117515, -2.1567395, -0.041305367, 0.08787738, -0.00095951743, 0.00029999999, 0.085081205, 0.040251877, 0.023884283, 3.148124, 0.04995422, 0.05474599, 0.08657632, 1.9454594, 0.08523851, -0.075634435, -0.0013553682, -0.0002469226, 0.056806497, 0.06534769, -0.074099325, -3.9919782, -0.018921282, -0.017048892, 0.101935744, 1.0146894, -0.009155249, 0.10349906, 0.015610961, 0.0004519924, -0.102945335, -0.0060709203, -0.020124048, 1.7977027, 0.07621557, -0.09838848, -0.041714486, 2.9997482, -0.09642472, -0.08540251, 0.025256379, -0.0004, -0.04607234, 0.015978798, -0.12186557, 0.68681777, -0.117408015, 0.058353588, -0.04210096, -1.1396741, 0.070047565, 0.111120515, -0.041326024, 0.0004, 0.01646114, -0.056651227, -0.124426454, -2.4149122, -0.019484954, 0.04367041, -0.027716842, -3.8201678, 0.01842543, 0.03353571, 0.039885473, 0.00029999999, 0.04833044, 0.004821104, -0.026380237, -0.4591936, -0.027692178, 0.01753011, 0.039351717, -0.610241, 0.022942187, 0.045596167, -0.004167194, 0.00049999997, -0.036462557, 0.015375471, -0.032508396, 0.06358217, 0.01670892, -0.049548633, 0.08304841, 1.2727653, 0.04049544, 0.08011885, 0.03965329, 0.000335839, -0.08781927, 0.027517242, 0.03408622, -3.4282749, 0.019827852, 0.011930318, -0.065142, 1.5173419, -0.054363064, 0.04176654, -0.008897709, 0.00022785453, 0.03782155, 0.05377899, 0.021361338, -3.9744956, -0.028542485, 0.054369688, -0.023249011, -0.59260535, -0.054421026, -0.0342505, -0.013285616, -0.000460373, -0.023128571, 0.013494201, 0.059951894, -1.9412193, 0.0790639, 0.0972155, 0.00023450157, -3.3613372, -0.085687734, 0.06983092, -0.05901919, 0.0002, -0.045918625, 0.037078287, 0.110538185, 3.1578496, 0.008318523, 0.050904617, 0.09085352, -3.8091707, 0.016804699, -0.09060462, 0.0492265, -0.00029999999, 0.102777645, 0.010694275, -0.01540222, -0.75277627, -0.045872822, -0.0093498835, -0.061202426, 3.4539185, 0.02408722, -0.072865345, -0.006922374, -0.0003, -0.05703475, -0.023252806, 0.046301365, -2.5756514, -0.050251983, -0.004309439, 0.035588782, -1.261814, -0.019127162, 0.055052392, -0.020341605, 0.00049999997, -0.03031971, -0.027587276, -0.046152495, -0.85268337, 0.061872296, -0.023156932, 0.10574861, 2.848435, 0.074045956, 0.097905464, -0.021884013, 0.00039999996, -0.078969665, 0.073657796, 0.062333897, -0.4516794, 0.05640319, -0.061763603, 0.059798673, -1.96608, -0.07645415, -0.068742044, 0.0011120738, -0.00040000002, 0.03931141, -0.04507472, -0.08363508, 1.5835516, -0.0107532535, -0.044072878, 0.044798788, -0.2085963, -0.036906928, 0.041215286, 0.031688504, 0.0004, -0.050864805, -0.020587964, -0.03246367, 2.3034635, 0.050707124, -0.07357804, -0.0060530887, -1.859515, 0.07080167, 0.05054625, -0.021302126, 0.0002, 0.020916265, 0.007275309, 0.086782254, 4.2871785, -0.04014694, 0.06959199, -0.044786673, -1.1861367, -0.014128502, -0.05481115, -0.07250373, -0.00029999999, -0.0815431, -0.024766115, 0.03461258, -3.8284411, -0.07918513, -0.08180699, 0.07983387, -0.49057296, 0.02829926, 0.0800649, 0.11011303, 0.00049999997, -0.110747375, 0.07895152, -0.0289446, 0.28288797, 0.087105446, 0.058353227, 0.03956888, -3.9559546, -0.046712145, 0.09487377, -0.037082333, 0.00029732808, -0.05280879, 0.012329886, 0.09806815, -0.97716385, -0.065738216, -0.05881651, -0.016295731, -3.3573103, -0.060997378, 0.06250626, 0.020462958, 0.00032204617, -0.0020620953, 0.026077412, -0.085803054, -1.5598731, -0.030267842, -0.07007256, 0.07625145, -0.9910098, -0.015634699, -0.07543901, -0.07553211, -9.999999e-05, 0.10237189, -0.03223943, 0.011009325, 4.8067594, -0.10554223, -0.022171846, -0.056638557, 1.3756146, 0.021586308, -0.11970253, 0.006634339, -0.00040000002, -0.0568643, -0.0042886203, 0.10764172, -2.175176, 0.042529114, 0.04135223, 0.02606034, 4.0832705, -0.0011412599, -0.033694547, 0.055328555, -0.00029999999, 0.04886559, -0.036776964, -0.021388857, -0.8166872, 0.09260721, -0.013104815, 0.026907645, 0.23913386, -0.008450588, 0.07248858, 0.06438823, 0.0004793355, -0.0287114, -0.06360441, 0.06783794, -1.9312415, 0.013544498, 0.037843704, 0.09331463, 2.5485125, 0.06533335, 0.06834421, -0.037200008, 0.00040000002, -0.076624535, 0.064962626, -0.015223603, -2.300657, 0.0073515633, 0.008403707, -0.13227217, 1.716472, -0.011872045, -0.13190122, -0.009039976, -0.0002, -0.13200608, 0.012330626, -0.0065533696, -4.2350926, -0.07477705, -0.01701257, -0.047018856, -0.834692, 0.024302138, 0.06155973, -0.060923032, 0.00049999997, 0.043699045, -0.06334652, -0.04657704, 0.1905359, -0.02175404, 0.03715516, 0.05576624, -1.2100251, -0.041157853, -0.053677242, 0.019707924, -0.00049999997, 0.05288109, -0.026492743, 0.038279776, -1.3975298, 0.031158272, -0.015902035, 0.14125672, -2.0379946, 0.10774467, 0.09696978, -0.012849811, 0.00037906962, -0.09272225, 0.107336655, 0.032536067, 2.864554, -0.077821426, 0.016664818, -0.044300508, 0.39150047, -0.013770452, 0.073592715, 0.051874023, 3.8592e-05, 0.04528384, 0.05101788, -0.06035707, -4.957658, 0.09259118, -0.04906463, 0.0034065524, -2.1547956, 0.047438215, 0.08717556, -0.033795074, 0.00029999999, 0.012982973, 0.03138716, 0.099188484, -3.1653254, 0.032740075, 0.07425604, 0.04302439, -2.1940813, 0.039136797, -0.0539006, 0.06324562, -0.00032721253, 0.07637651, -0.0042113895, -0.050851405, 2.960556, 0.04205732, -0.05592721, -0.11399043, -0.49108833, -0.05675959, 0.09913372, -0.06957977, 0.00049999997, 0.11357826, 0.07025058, 0.0074381544, 0.5110489, 0.029803973, -0.064507656, -0.09263306, -0.23960489, 0.069328345, -0.06514806, 0.06767356, -0.0004, -0.08908257, -0.07228341, 0.021674972, 2.724782, -0.06252486, -0.0086919535, -0.026092634, 0.34667373, 0.02552487, -0.042468805, -0.047017183, -0.00029999999, -0.01023995, -0.052788116, 0.042122345, -3.9551678, 0.13948198, 0.030195719, 0.043240312, -1.1799821, -0.043776292, 0.13447095, 0.047306724, 0.00044283166, -0.029413275, -0.056943025, 0.13464427, 1.7433661, -0.00458533, -0.03156921, -0.1281144, 1.2573512, -0.064506285, -0.11129176, 0.029732605, -0.00039999996, -0.115103684, 0.06362761, -0.011559087, -3.0793076, 0.04552994, 0.039075032, -0.0028283263, -3.3001888, -0.031962533, 0.034540847, -0.03732505, 0.00039337153, -0.022655116, 0.029797735, 0.04697524, 1.0706097, -0.039102893, -0.008670061, -0.052701436, -1.2586933, -0.047001798, 0.036606856, 0.028851641, 0.00039999996, 0.025366167, 0.054464832, -0.0277811, -2.3517556, -0.105050705, -0.053963937, -0.01565721, -2.1513588, -0.048806034, 0.10408235, -0.031268902, 0.00038803398, 0.027842859, -0.021158144, -0.11388598, -2.7438993, 0.05904605, -0.016085336, -0.028167648, 0.39317197, 0.025750283, 0.058820065, 0.020389087, 0.00040000002, 0.019725034, -0.028636597, 0.057701465, 2.7766757, -0.07344845, -0.10264082, 0.057183184, -0.68022585, -0.028825948, 0.08111733, 0.10857612, 0.00029999999, -0.11390399, 0.045657095, -0.064350925, -3.9660368, 0.03345434, -0.0066351444, -0.13038859, -1.2520807, 0.107071325, 0.078413986, 0.023481442, 0.00039999996, 0.07470567, -0.109414935, 0.024735391, -2.761439, 0.04894433, 0.010697148, 0.12448747, -1.4878604, 0.109776855, -0.06753186, -0.037357625, -0.00029999999, 0.059670746, 0.11546479, -0.03338239, 3.6608715, 0.11742535, -0.008059894, -0.07922968, 1.2076468, 0.04117286, -0.11468313, 0.07268832, -0.00040000002, -0.068169616, -0.08314947, -0.09257474, -2.2638025, 0.010404902, 0.02582513, -0.08200777, 2.7701144, -0.06300771, -0.053915333, -0.024972755, -0.00019999998, -0.058499914, 0.062663175, 0.012311009, -3.620375, -0.07797183, 0.012329259, 0.007431769, 4.016615, 0.008693535, 0.072952874, -0.02981854, 0.0002, -0.011474507, -0.028508104, -0.0730922, 1.7573445, -0.017477836, 0.07128606, -0.08429583, 4.4510283, -0.08692932, -0.061494783, -0.033980154, -0.00021103896, -0.06804988, 0.060246605, 0.065057896, 0.7893132, -0.033959482, 0.061024554, -0.0523336, -3.7323942, 0.068057045, 0.0520626, 0.016546035, 0.00020000001, 0.042790636, -0.03437352, -0.06784887, 2.5921068, 0.0675666, 0.04838574, -0.048590966, 1.7912626, -0.011492107, -0.05926088, -0.07499058, -0.0004, -0.06760321, 0.0584335, -0.035816737, 1.6602867, -0.025741074, 0.04434131, -0.04403915, 2.598055, -0.040292855, -0.04818281, -0.024962055, -0.0003422669, -0.047771167, 0.01674713, 0.044784494, -2.5471566, 0.05262751, 0.006714214, 0.07151383, 0.18594784, -0.012734352, 0.088122614, 0.0010977346, 0.00040000002, -0.07069049, -0.0108760325, 0.05304272, 3.3398666, -0.046328455, 0.0013815021, -0.027684482, 1.1844394, 0.0039099427, -0.053055715, -0.0091906395, -0.00043641333, -0.027441781, -0.009891763, 0.04542869, 1.7744801, 0.10096774, -0.10733621, 0.017629579, 0.041728802, 0.09608639, 0.09928532, 0.05418653, 0.0004, -0.05098304, -0.025450157, 0.13703783, 2.7994356, -0.037614077, 0.048592035, 0.0582815, -1.595457, 0.009037919, 0.06745484, -0.05040733, 0.00035714486, -0.07534079, -0.016167779, -0.035144065, 3.2131433, -0.03596898, -0.050844274, 0.037785117, -0.28536165, -0.060883097, 0.039747667, -0.0044716233, 0.0002478195, -0.017495869, -0.03378765, -0.062120155, 4.193117, -0.022328984, 0.04983183, 0.0560915, -1.7662692, 0.057797447, 0.048740953, -0.020293484, 0.0002, -0.04784267, 0.035625283, -0.05069486, -4.3668876, -0.051199634, -0.01264614, -0.09056905, 4.2350125, -0.041324705, -0.089395665, 0.035843585, -0.00020000001, -0.081577845, 0.053221885, 0.038685445, 1.6729796, 0.063873716, 0.02513538, -0.05099669, -4.036005, 0.02903205, -0.08036719, -0.0032487414, -0.00014966073, -0.048883423, -0.01488714, -0.06856447, 2.5771782, 0.08328013, -0.015853444, -0.058607023, 2.605877, 0.0072782827, -0.09616169, 0.036354527, -0.00039999996, -0.060275536, -0.033515565, -0.07658498, 0.81482303, -0.073532194, 0.026482986, -0.014680079, -3.5990868, 0.011430751, 0.059979573, 0.050947275, 0.00012839914, 0.0280391, 0.044999324, -0.05926808, 3.199216, 0.056510795, -0.005188266, 0.036978096, 0.5513827, -0.029214086, -0.047918674, 0.03792236, -0.0002, 0.023255847, -0.04758834, -0.042217087, 4.626048, -0.08921256, -0.051298387, -0.0035250415, 2.3973718, -0.0358793, 0.06716062, -0.0693178, 0.0002, 0.036832407, -0.058828197, -0.07606213, -3.9883513, 0.052118152, -0.0877929, 0.07822839, -1.8750602, -0.06119805, -0.0933175, -0.06395484, -0.0003, 0.10040952, -0.011306154, -0.07958438, -3.301527, 0.034139927, -0.026331598, 0.031181963, 2.496943, 0.02996993, 0.043769803, 0.0041484814, 0.00029999999, -0.027703274, 0.014901458, 0.042914774, 3.116197, -0.038637504, 0.097501375, 0.06918654, 2.3923206, -0.04179784, -0.07913793, 0.088183224, -9.999999e-05, 0.11200998, 0.0041015525, 0.056772295, -4.260998, -0.0069696647, 0.104032554, -0.07625445, 1.2725728, 0.040785674, 0.074225, 0.09753599, 0.00029999999, 0.122368485, -0.018814031, -0.03685213, -3.6752303, -0.06477304, 0.023516577, 0.052989613, 1.0112991, -0.0023186277, 0.078340486, -0.03760142, 0.00049999997, -0.057927124, -0.029431507, -0.05774694, 1.5449916, 0.10766269, -0.10407979, 0.012159485, -2.2417367, 0.10474754, 0.10641214, -0.016616847, 0.0002, 0.0028991234, 0.020385483, 0.14882116, -4.13059, 0.038696762, 0.015017087, -0.041137774, 2.2172077, 0.016169498, -0.055917375, -0.0052022394, -0.00041348833, -0.0406986, -0.007937458, -0.041181173, 0.251174, 0.014878702, 0.04718697, -0.13472927, 0.9704156, 0.0765815, 0.11167908, 0.047571182, 0.00049999997, 0.120473474, -0.07681883, -0.013600305, -0.25686678, -0.037588935, -0.045614768, 0.069943324, 3.7768292, -0.047454234, 0.07478241, 0.023267815, 0.00029999999, -0.0687086, -0.026694342, -0.05433456, 0.14096598, -0.040275387, 0.00474913, -0.09887562, -0.59446704, -0.070622295, -0.07617829, 0.025107907, -0.00029999996, -0.06936449, 0.074802145, 0.031847354, -4.1428347, 0.11402692, 0.027177209, 0.010551968, -2.591224, -0.0104638785, 0.07791194, -0.08759178, 0.0003862006, -0.027211241, 0.083923854, 0.077900074, 2.3401136, -0.037051823, -0.00870052, -0.044757422, -2.2774124, -0.0063155997, 0.058095537, -0.0060650688, 0.00039999996, 0.04515572, 0.0009863218, -0.037573278, -0.6401123, -0.045311905, 0.0144889755, -0.12161484, 0.6732003, -0.05791512, -0.11679199, 0.0076639308, -0.00049999997, -0.10791633, 0.05659476, 0.04695063, -1.0135324, -0.014391741, 0.08099027, -0.10365369, -2.8495498, 0.030611914, -0.09934736, -0.08187579, -0.0004, -0.12793133, -0.032883298, -0.007930958, -1.0347129, -0.061065454, 0.024685046, -0.025522847, -3.204461, 0.011164883, 0.06154873, 0.032815486, 0.0004, 0.033706266, 0.02433432, -0.057109416, 0.8030515, -0.006489021, 0.056247085, 0.04672019, 4.3162417, 0.04428875, 0.040344447, -0.04241993, 0.00020000001, -0.058180902, 0.024437863, -0.037501894, -1.2783651, -0.009890973, 0.067296155, -0.11004497, 1.9644319, -0.011402863, -0.110392086, -0.06648353, -0.0004, -0.12848596, 0.0046165492, 0.014371645, 1.6794388, 0.0027720155, 0.0038371475, -0.070146926, -0.27680883, 0.037289575, 0.059415262, 0.00472369, 0.0004, 0.059538245, -0.037391204, 0.00030743226, -2.4713414, -0.03880273, -0.037251316, -0.0048555005, 2.3078098, -0.026494293, 0.022187803, 0.041504733, 0.00040000002, -0.026632482, 0.032201394, -0.03421506, -0.061583944, 0.01724358, 0.11427306, 0.08716969, 0.54684657, -0.101083346, 0.07205426, -0.07446188, 0.00049999997, -0.10217166, -0.05200079, 0.08838043, 0.26474005, -0.024829455, 0.028114876, -0.109776, -1.9253446, 0.05868229, -0.092948034, -0.037077956, -0.0004, -0.09694124, -0.06346608, 0.0056720846, 1.9948562, 0.0484473, 0.0040047104, -0.09710577, -0.6739171, 0.038657166, 0.098755665, 0.023359299, 0.00039999996, 0.08916946, -0.04498885, 0.0426324, 2.2043712, -0.06583183, 0.07134147, -0.02083056, 1.4403917, -0.061807495, -0.06800687, -0.037579868, -0.0001, -0.04127168, -0.011950213, 0.08950523, -4.7036624, -0.08813909, -0.017802775, 0.051401813, -2.8751938, 0.024944589, -0.10020107, 0.0080685215, -0.00040000002, 0.048341006, 0.019245647, 0.08955633, 1.5309967, -0.007512968, 0.029238988, -0.044952065, 3.982701, 0.04431886, 0.028940305, 0.011417028, 0.0002, 0.030190147, -0.035207838, -0.027946634, -2.2810833, -0.029475642, -0.0048328033, 0.098049186, 0.9855434, -0.081880994, 0.05768273, -0.02177199, 0.00049999997, -0.054152586, -0.0845882, -0.020448716, -0.4172193, 0.026349304, 0.012959194, 0.110324115, 0.92558235, -0.05389851, 0.10063541, 0.0010517625, 0.00040000002, -0.097130336, -0.05232797, 0.029344855, -2.7162402, -0.12476474, -0.00154225, 0.012379876, -0.2351077, -0.008130671, -0.084318705, -0.092445254, -0.00049999997, 0.009462142, -0.09278932, 0.0838003, -0.0701658, -0.025526913, 0.04804086, -0.098254494, 3.241231, 0.0042575123, 0.10125523, 0.04840192, 0.00033753476, 0.109287426, 0.007276585, -0.02483548, 1.6865329, 0.013164355, 0.044710174, 0.061426483, 4.452677, 0.014985954, 0.059588898, -0.046584316, 0.00019999998, -0.07448244, 0.019891633, 0.0014839694, -0.6868385, -0.061360277, -0.0893988, 0.06703542, -2.7307587, 0.068751164, -0.09049324, -0.05775143, -0.0002, 0.08808613, 0.008355241, 0.091771424, -3.8423069, 0.014805207, -0.034882803, 0.08533357, -1.8586192, -0.03395479, -0.082414456, -0.027798431, -0.0004, 0.08570706, -0.026624626, -0.025753668, -2.072123, 0.04852681, -0.048444036, 0.03424575, -3.9503038, 0.053249482, 0.055072125, 0.0024496254, 0.0002, -0.026155097, 0.022241466, 0.068524994, 2.0914044, -0.030115305, 0.07789371, 0.085710466, 4.8010597, 0.10350958, 0.057830635, -0.01618728, 0.00014192684, -0.051956505, 0.07006308, -0.08192884, 0.036970817, -0.012880365, 0.07000122, 0.044444866, -3.8786433, 0.024604445, -0.039725572, 0.069698796, -0.0002, 0.07918421, 0.023730325, -0.014427549, 2.4911737, -0.034363355, 0.0027378064, -0.06398106, 0.1585338, -0.0046948353, 0.07230723, 0.0056156227, 0.00049999997, 0.063867286, 0.006788307, -0.03401177, -1.029771, -0.021560749, -0.022370059, -0.13870533, 3.235787, -0.06656679, -0.1219524, 0.030015519, -0.00039805216, -0.12372735, 0.06951007, 0.008022124, 1.2049999, 0.09099934, 0.0022593422, -0.017138908, -0.0036370188, -0.010373121, 0.08059906, -0.044451285, 0.0004, 0.013829138, 0.04558962, 0.07943594, -3.1950135, -0.031284403, -0.04360366, 0.052127182, -1.2737173, -0.0071633593, 0.059181217, 0.045205142, 0.00034783455, -0.06758112, 0.013911846, -0.028922103, -3.3861203, -0.0018593904, -0.032310456, 0.053959116, 3.3340642, -0.047733296, 0.03587523, 0.019837055, 0.0001, -0.040952206, -0.04034863, -0.025571736, -3.6402318, -0.059299722, 0.05405521, 0.019777007, -2.3973107, 0.025986087, 0.050478276, -0.06005181, 0.0004, -0.051359687, -0.03687184, -0.053218435, -1.2088451, 0.05071241, -0.015876222, -0.03973017, 1.9751298, -0.02066584, -0.06303809, -0.0011882085, -0.0004, -0.037462838, 0.013282857, -0.053126186, -2.487648, 0.02655022, 0.087376006, 0.046547726, 3.1584435, 0.059363473, -0.052618332, 0.06491116, -0.00033205992, 0.07922899, 0.010144714, -0.06423412, -1.8673029, 0.06944283, 0.026355548, 0.0208675, -1.6921985, -0.017539294, 0.069262534, -0.029110985, 0.00040000002, -0.02867822, 0.021458365, 0.06833353, 1.7074356, -0.06094851, -0.027180199, 0.05757434, -2.405439, 0.061449364, -0.045968324, 0.043349497, -0.00039999996, 0.016659664, 0.070117325, 0.050737616, 1.8796126, -0.0467977, -0.079947196, -0.010409165, -0.66882765, -0.06802942, 0.045616638, -0.044508975, 0.00049999997, 0.043265477, -0.014747815, -0.081243634, 0.6385625, -0.014147637, 0.007193162, -0.11563445, -3.3202512, 0.0718077, 0.0919646, -0.0030647693, 0.00035912436, 0.090921536, -0.07151221, -0.01557255, 1.3479191, 0.038977377, 0.015774757, -0.039428353, -1.6694992, -0.0379202, 0.037021514, -0.022674661, 0.00029999999, 0.01911797, 0.041270312, 0.035410997, -3.4474652, -0.07872411, -0.0859559, -0.038216963, -4.2825055, 0.07299527, -0.08725299, 0.04588075, -0.0002, -0.059335027, 0.0067033884, 0.10714877, 1.8043988, -0.09101327, -0.031814024, -0.033679806, 0.16931532, 0.010792279, -0.08675767, 0.05278742, -8.526497e-05, -0.045055386, 0.043483943, 0.08067859, -4.947453, 0.063167766, 0.027967025, 0.042483125, 1.8659787, 0.044414435, -0.06333999, -0.024342129, -0.0003, 0.02478563, 0.042225905, -0.064651236, 3.582071, 0.052105617, 0.005145208, -0.024139423, -1.1375725, 0.014409896, 0.0394393, 0.03951046, 0.0004, 0.020038458, -0.041740242, 0.03435682, 2.5475943, -0.069461726, 0.00020259278, -0.0020830082, -4.3214893, 8.541803e-05, -0.06883481, -0.009543273, -0.0002, -0.0020910937, -0.009541504, 0.06880333, -1.830906, 0.027016103, 0.022565698, -0.07496245, -0.038829498, -0.034881946, 0.07446335, 0.009844176, 0.0003, 0.070084445, 0.028362775, 0.03379605, 3.836376, -0.040627804, -0.049451128, 0.035201978, 1.0324976, -0.011346168, -0.03542596, -0.06286077, -0.0004027934, 0.05963101, -0.04043265, 0.012023113, 2.0297081, 0.05332122, -0.055601228, -0.0015287513, -3.7032578, 0.051742706, 0.04880641, 0.029624535, 0.00030761454, -0.020408953, -0.021527303, 0.07111284, -0.5863979, -0.11662061, 0.05150208, 0.07700752, 0.84311694, 0.008101767, 0.12899895, -0.0740042, 0.00049999997, -0.09228751, -0.053756837, -0.10380853, -1.3169065, -0.037909914, 0.0021406114, 0.036193315, 1.4756404, -0.022451792, 0.039730866, -0.025866484, 0.00039999996, -0.028468495, -0.034184437, -0.027796917, 1.7975345, -0.09879058, 0.04102605, -0.024201745, 2.8234417, 0.015120546, 0.079853095, 0.07364301, 0.00039999996, 0.045168906, 0.0629983, -0.07758494, -1.3444506, 0.022526853, -0.044865068, 0.0427661, 2.5341105, 0.0030290892, -0.04465174, -0.048438825, -0.0004, 0.061908305, 0.018510005, -0.013191444, -1.6979, 0.04677176, -0.070470445, 0.10917689, 4.7546926, -0.076818526, -0.10858198, -0.037177138, -0.0001, 0.104807384, -0.048136692, -0.075970665, -1.282274, -0.04274819, 0.02818662, -0.055179052, -1.3498085, 0.0017930905, 0.067571774, 0.03312795, 0.00049999997, 0.061935425, 0.017498298, -0.039043978, -0.31981227, 0.052492462, 0.052490287, -0.050475754, -2.7398205, -0.069709904, 0.054215215, -0.01611611, 0.00040000002, 0.021060867, 0.048620675, 0.072463505, -0.7370728, -0.0145943565, -0.026803287, 0.091448896, 4.046932, -0.04224934, -0.08110596, -0.0305144, -0.00029999999, 0.08541845, -0.044695847, 0.0005317861, 1.4170622, -0.03138635, -0.01708873, 0.091150165, 3.5196526, -0.0021313222, 0.09633645, 0.017327152, 0.00029999999, -0.092713736, 0.003570444, -0.031255376, 1.6065229, -0.050685782, -0.016668469, 0.05671835, 3.656528, 0.027957827, 0.059069686, 0.042343706, 0.00019999998, -0.052088104, 0.047924854, -0.032463774, -2.5571547, -0.026963606, -0.006574492, 0.047957793, 4.050912, -0.03842742, 0.036290172, -0.016630296, 0.00025520567, -0.029436493, -0.04135226, -0.022219207, -1.0435002, -0.023744438, -0.07331463, -0.039967068, -2.0388157, 0.06028444, -0.04380225, 0.044534795, -0.00034934992, -0.057777047, -0.01557331, 0.06289265, -2.9853077, 0.038771663, 0.036438294, 0.011969753, 2.3947208, -0.03778188, 0.03335711, 0.020835036, 0.0004, 0.0065995157, -0.02310455, 0.048958063, 1.6823404, 0.046580434, -0.031349402, 0.029337766, 3.4331236, -0.035880554, -0.052195664, 0.001193993, -0.00029999999, 0.023581253, -0.017494421, -0.056134623, -2.0198607, 0.06365403, -0.01490299, -0.0051155575, -2.5873768, 0.0148213785, 0.06385796, -0.0016096109, 0.00020000001, 0.005347409, 0.00040622897, 0.06535551, 3.8249922, 0.06864952, 0.046332117, -0.089019984, 3.1415713, -0.046359167, 0.11029874, 0.02165627, 0.0003149676, 0.08900591, 0.021714065, 0.07994015, 2.0044742, 0.0038395242, 0.025012609, 0.05090765, 1.6614906, -0.04041552, 0.037006702, -0.01513442, 0.00049999997, -0.039797053, -0.03516866, 0.020281073, -0.079791926, 0.023015844, 0.0020334476, -0.056544628, -0.54648817, 0.04647719, 0.034134835, 0.02014556, 0.00049999997, 0.032269202, -0.0506146, 0.011314616, 0.44030628, 0.03036471, 0.020072088, 0.03672448, 2.7172768, 0.018547898, -0.047126994, 0.010421812, -0.00019849373, 0.037517358, 0.0070533585, -0.034875356, 3.8628457, 0.03532591, -0.0061216014, 0.08541892, 0.4131112, 0.051828355, -0.072029494, -0.026596213, -0.00049999997, 0.06817393, 0.057931542, -0.024042357, 0.8605335, -0.04541673, -0.026152115, 0.0433967, -3.054479, -0.018636651, -0.045570925, -0.046966508, -0.0004, 0.047115628, -0.043234758, 0.02325425, 1.4226941, -0.074860774, 0.0045870403, -0.008424485, -4.0837173, -0.006254058, -0.07359872, 0.015500463, -0.00029999999, -0.0072732163, 0.016072854, 0.07338196, 1.1119571, -0.033492316, 0.027765991, 0.11406633, -4.102556, 0.038005218, -0.1096654, 0.037853863, -0.00029999999, 0.11107511, 0.045895115, 0.021442255, -0.11214185, -0.0719489, 0.059601728, -0.00011276853, 1.9243493, 0.049588468, 0.05995914, 0.051719505, 0.00047575808, 0.033066023, 0.03976882, -0.077808104, -0.38760743, 0.02104675, 0.03405483, -0.048900653, 4.018321, 0.023280019, -0.05243865, -0.026499057, -0.00027850503, -0.054854777, -0.009188427, -0.030008292, 1.7289121, 0.0839269, -0.010162291, -0.11462012, -3.063015, 0.058212023, 0.12612516, 0.031441547, 0.00029999999, 0.09925928, -0.065375365, 0.07847563, -2.4754462, 0.0561151, 0.079639755, -0.018547341, -2.5415745, 0.08088852, -0.05735861, -0.0015613623, -0.00029999999, -0.01198098, -0.014244224, -0.097411275, 3.3548746, -0.031159813, -0.026894223, -0.095712736, 3.9014843, -0.060257625, -0.07467185, 0.040599175, -0.00029999999, -0.079077475, 0.067497954, 0.006777925, -1.7516153, 0.015737511, 0.09017571, 0.05985681, 4.0394034, 0.015656836, -0.061746776, 0.0889065, -0.000102678096, 0.10709511, -0.004224116, -0.021793624, 2.6938536, 0.083253995, 0.06961237, 0.0027770658, -2.5996323, 0.067608126, -0.07968408, -0.029400907, -0.00019999998, -0.016814802, 0.02427732, -0.10446386, 3.838503, -0.017628066, 0.06931151, -0.09556184, -0.25049224, 0.0017711904, -0.096455224, -0.07028621, -0.00029999999, -0.11803818, -0.011798456, 0.013216741, 3.785212, 0.025818208, 0.006702923, -0.10812316, 0.36075795, -0.07619365, -0.07788853, -0.023022486, -0.00045979954, -0.07700699, 0.07931317, -0.013471231, 1.9985561, 0.04611622, 0.061209068, -0.08025026, -0.048268788, 0.013963559, -0.091251366, -0.0615757, -0.00026105577, -0.09995836, 0.015491822, -0.045625534, 4.4126716, -0.05790132, -0.000808012, 0.009699566, -2.2299986, -0.0052332426, -0.046749398, -0.035134092, -0.0004, 0.008206562, -0.03551251, 0.046030544, -1.6485244, 0.028328482, 0.04740574, -0.026966017, -4.723091, -0.048768986, 0.03562116, 0.011388257, 0.00019899942, 0.024414262, 0.016149368, 0.054038092, -0.066296406, 0.059109602, 0.017156482, -0.020005181, 3.8706214, 0.005706854, -0.0562938, -0.031415556, -0.00029999999, -0.025729056, 0.0269288, -0.052927807, -1.6164792, -0.095297165, 0.030759854, 0.084833324, -2.7649927, -0.020776875, -0.127546, 0.02290749, -0.00039999996, 0.08781334, 0.003203609, 0.09748315, 0.33193687, -0.05396001, 0.10907096, 0.055607703, 3.4540906, 0.12056211, 0.05791003, 0.0034029593, 0.00039447835, -0.021294786, 0.051481344, -0.121641174, -0.29412612, 0.103718996, 0.017146872, 0.0073111854, 0.17579794, -0.008514179, 0.080347314, -0.06765291, 0.00049999997, -0.016582446, 0.06599539, 0.080465704, 1.348107, -0.011351582, -0.050602015, -0.108422115, 0.8986314, 0.07676659, 0.08045753, -0.04558787, 0.00039404607, 0.09177586, -0.07355816, 0.024721786, -3.3477259, 0.1157937, -0.062564105, -0.031770833, -1.1380981, 0.026879229, 0.09617707, -0.09142927, 0.00029999999, 0.06481634, 0.07188563, 0.09467382, 3.788622, 0.07762955, -0.0126931425, -0.048005886, 3.426952, -0.044033468, -0.058774613, -0.055665314, -0.00028507854, -0.022950727, 0.069831625, -0.055577278, 2.6940339, 0.072880186, -0.028059587, -0.07376491, -1.9379363, 0.04679076, 0.0962187, 0.009628731, 0.00044153392, 0.06355493, -0.03866196, 0.07749934, 0.83485013, -0.12438711, -0.0032185437, -0.061290152, -4.641267, 0.047335543, -0.0931984, -0.09117233, -0.0002, -0.039066464, -0.102677606, 0.08467651, 0.11155736, 0.067568086, 0.009794731, -0.11901664, 0.68241453, -0.0814689, 0.10376401, -0.03771202, 0.00029999999, 0.08731389, 0.08923812, 0.056913856, -3.770267, 0.04227674, 0.035194673, 0.03040409, -2.4558306, -0.008592605, 0.046291452, -0.041637305, 0.0004, -0.04570821, 0.02385025, 0.035948884, 2.008644, 0.028798524, -0.09294436, 0.10210951, 0.5164485, -0.020422999, 0.10029219, 0.09705019, 0.00049999997, -0.13655734, -0.034600325, 0.007019377, 0.27221915, 0.06292849, 0.019204441, 0.034107152, -3.8173943, 0.028504537, -0.066739865, -0.015012872, -0.00020914637, 0.026825348, 0.025866674, -0.06405793, 2.4284842, -0.033278823, 0.04245147, 0.036630932, 0.99916285, -0.04991793, -0.041831184, 0.003128105, -0.00049999997, 0.025537288, -0.026447251, 0.053850003, 1.2163632, 0.091392584, 0.09250868, 0.062982, 3.4402907, 0.03849276, -0.102337964, 0.09445868, -0.00030399676, 0.10508519, -0.04296835, -0.089375705, 1.522887, 0.075490825, 0.047815774, -0.020070817, 2.043123, -0.022055553, 0.06168644, 0.064003006, 0.0004, 0.04693334, -0.04792165, 0.06236045, 2.5106199, -0.0035540464, -0.049109712, -0.04182095, -2.338438, 0.040971655, 0.030631261, -0.03945169, 0.0004, 0.04982046, -0.028694069, 0.029461134, 0.05951717, 0.053046107, 0.04944417, -0.034960862, 4.0456743, -0.05226224, 0.060857836, 0.006772005, 0.00023428824, 0.030588312, 0.018233959, 0.072199404, -1.2694306, -0.059949033, 0.06679141, 0.0456522, -0.11217581, 0.031807408, 0.071702555, -0.06313585, 0.00049999997, -0.074387506, -0.023167968, -0.06378749, 1.3032321, 0.07546953, -0.016509032, -0.0261568, 2.4944348, -0.024098644, -0.074621566, -0.022433316, -0.00039999996, -0.019390242, 0.028485965, -0.07392527, -1.87017, -0.06077509, 0.00665959, 0.018736998, -0.34088063, -0.00011445673, 0.060134824, -0.021744631, 0.00019804861, -0.019884968, -0.020700058, -0.057141334, -4.7109075, -0.12705663, 0.052328438, -0.03331186, -1.3892046, 0.043808624, 0.129451, 0.036257107, 0.00028453648, 0.043917533, 0.022260018, -0.13254085, -3.8656945, 0.025344515, -0.0345039, 0.0528431, 2.667677, -0.026733903, -0.057453156, -0.024691943, -0.00029999999, 0.05716826, -0.011570448, -0.034973856, 2.8218358, -0.0771808, -0.020793244, 0.095404424, -3.6997743, -0.023167647, 0.12203605, 0.007855261, 0.00019113199, -0.09485579, -0.012887447, -0.07954579, 2.9536898, 0.068196006, 0.06750741, 0.059184123, 3.8133419, 0.07110829, -0.08598668, 0.016143415, -0.0002155896, 0.05480528, 0.02756357, -0.09459037, -2.4079473, 0.057974495, -0.07219523, 0.091894366, 3.978266, 0.01301395, 0.105931394, 0.07501295, 0.00020000001, -0.11613509, -0.024169235, 0.054279394, -2.0975459, 0.037336174, 0.009747081, -0.07659095, 3.181806, -0.018591685, -0.08143779, -0.019426882, -0.0003759689, -0.07493682, 0.025060896, -0.03334054, -1.517288, 0.04768154, 0.024149971, 0.005912035, -2.1990497, -0.02406264, 0.048041295, -0.002173903, 0.00019999998, -0.006258007, -0.000717886, 0.053404354, 3.9259424, 0.05524651, 0.13300903, 0.034450646, -1.5357633, -0.13235523, 0.061486192, -0.025138916, 0.00039999996, -0.036882777, -0.021411989, 0.14181542, 2.6093926, 0.045853328, 0.055218305, 0.12810548, 2.7721074, 0.06955286, 0.10784235, -0.071379475, 4.4259723e-05, -0.12092342, 0.08296729, 0.0075205993, 4.129642, -0.0890025, -0.07564739, -0.04443815, -2.241081, -0.08598961, 0.08777559, 0.022802435, 0.0003571296, 0.017408613, 0.04681496, -0.11456012, -2.803538, -0.016461914, -0.024773523, -0.08079798, 2.8301866, -0.029642282, -0.075394265, 0.029156055, -8.185946e-05, -0.07914149, 0.033391804, 0.0058861244, 4.0654464, 0.04632586, -0.016273232, 0.049430102, -1.4494026, 0.046777826, 0.042020094, -0.030006416, 0.0004, -0.022803253, 0.053138796, 0.03886539, 2.4459186, -0.045411434, 0.016376484, -0.016693935, -4.3732147, -0.02312771, -0.036848772, 0.02676476, -0.0002725287, -0.0034620469, 0.031353693, 0.040175058, -0.34270212, 0.01936239, 0.031279724, -0.041883767, -0.7893723, 0.034850076, -0.041014817, -0.014519979, -0.00049999997, -0.03896335, -0.021140875, -0.033800792, -0.120990515, 0.020173997, 0.029610906, 0.08830549, 4.6378, 0.01921046, -0.08973334, 0.025700936, -0.0002, 0.09113519, 0.012360193, -0.024965128, -0.8855915, -0.07973788, 0.102540284, 0.05367672, 0.05659708, -0.06997921, -0.09463153, 0.07682196, -0.0002, 0.09218791, 0.016858017, 0.10474267, -4.6295385, -0.07712661, -0.003530795, -0.046343055, 1.9904872, 0.00058525824, 0.08970698, -0.0078086327, 7.964016e-05, 0.04647368, -0.0069893342, -0.0768115, 4.5368896, 0.02179869, -0.09624682, -0.113508664, -0.25108308, 0.11002303, 0.087672375, -0.053210307, 0.0004506272, 0.10021276, -0.07531901, 0.083110146, 2.0549262, 0.029086493, -0.03932222, -0.06525644, -3.3281784, -0.03662503, 0.05403341, -0.048884176, 0.00020000001, 0.066807546, 0.04674204, 0.0016120487, 3.185854, -0.055815417, 0.018648403, 0.04728182, 3.4332938, 0.046705686, 0.046517685, 0.036788277, 0.000100000005, -0.02004774, 0.056453835, -0.045931965, -3.4989295, 0.07260293, -0.0687414, -0.026590612, -1.6879647, 0.03924376, 0.067647636, -0.06772998, 0.0004, 0.062388852, 0.03744386, 0.07354736, -2.3034513, 0.07684114, 0.002506617, -0.038895603, -0.5019896, 0.009888429, -0.084423155, 0.014094696, -0.00049999997, -0.03770106, -0.017034037, -0.07557897, 0.74684495, -0.08855817, 0.08078424, -0.0056381663, -0.77152276, 0.080097795, 0.088610455, 0.011530901, 0.00048854755, 0.011925784, 0.0047461796, -0.11931337, 1.743084, 0.11558811, -0.042026546, -0.004916328, 2.3948767, -0.036723502, -0.106743574, 0.049073536, -0.00040000002, -0.021018676, -0.04461612, -0.11277692, -0.16334519, 0.039669383, -0.12315838, -0.06938298, 2.051444, 0.07765397, 0.07920232, -0.0961899, 0.0004, 0.11811791, -0.010707583, 0.08653985, -1.1612164, 0.05573531, 0.0473416, -0.07313821, 0.90661585, -0.03243192, -0.069309875, -0.06957844, -0.00043304748, -0.080861576, 0.060429808, -0.02250534, -1.9445732, 0.014608054, -0.0077266046, -0.13784944, 0.9780388, 0.019386817, 0.13736027, -0.0056447457, 0.0003, 0.13669789, -0.018655065, 0.015531661, -3.9312007, 0.031017708, 0.08661559, -0.07983711, -1.8729577, 0.007164037, 0.08101858, 0.0906807, 0.00029999999, 0.11757935, -0.02778581, 0.015536111, 3.4665666, 0.08054231, -0.09088616, -0.07131612, -2.9390972, -0.059312657, -0.10713631, 0.0695498, -0.0004, -0.099137746, -0.00974042, -0.09954989, -1.4987893, -0.02481676, 0.030805107, 0.10590465, 3.6809783, -0.034379564, 0.10098352, -0.037429877, 0.0001, -0.10479883, -0.0404227, -0.012799649, 3.2801604, 0.02214626, 0.04657217, -0.07217654, -0.36676607, -0.03339481, 0.07334135, 0.037077077, 0.00049999997, 0.07914042, 0.01791526, 0.035842907, -1.78038, -0.0041231345, -0.0099344505, -0.05753429, 4.6645823, 0.040726066, -0.04181826, 0.0043021743, -6.525863e-05, -0.041836295, -0.03972943, 0.009858239, -1.6828312, -0.06339869, -0.026543798, 0.00084939145, -3.7578535, -0.022193477, 0.051746514, -0.03942633, 0.0002, 0.014585752, -0.036638953, -0.056298587, 2.8233976, 0.044959884, 0.039966796, -0.049778663, 1.9244379, -0.021734172, -0.047664586, -0.05789961, -0.00040000002, -0.060024034, 0.047195304, -0.016320845, 2.7800813, 0.066158086, -0.009577053, 0.09446129, 3.5031738, -0.067224726, 0.076578476, 0.054846335, 0.0003777814, -0.06704843, -0.08622973, 0.038216375, 0.36713648, 0.007578138, -0.040419526, -0.09117629, -1.938997, 0.016919702, -0.08959265, 0.04112375, -0.0003990649, -0.09828824, -0.018539207, 4.940792e-05, 2.8563318, -0.036758404, 0.039023533, -0.03163739, -3.8125005, -0.039451737, -0.046693422, -0.011756947, -0.00029999999, -0.031101782, 0.013108372, 0.05230479, -1.685216, 0.09704523, 0.008434396, -0.07717631, -0.5274953, 0.067803, -0.06938528, 0.07767584, -0.00049999997, -0.03781634, -0.10276014, -0.05878247, -1.706631, 0.09903537, 0.0741362, 0.02734336, 1.1301078, 0.06599825, -0.10171572, 0.03674215, -0.00040764015, 0.043451864, -0.01447686, -0.118127905, 1.9520687, -0.09385862, -0.051287353, -0.058557495, -0.7196901, 0.007230437, 0.08558839, -0.08655152, 0.00049999997, 0.07750545, -0.07009316, -0.06283844, 1.131076, -0.045079403, -0.015693156, 0.022383446, -3.9225733, 0.02355841, -0.044199675, 0.016457096, -0.00029999996, 0.013867051, 0.024074044, 0.044806153, -1.6245422, 0.06289399, -0.019620942, -0.11083246, -1.3429354, 0.07682917, 0.100267924, 0.025847498, 0.00049999997, 0.08225628, -0.078650065, 0.0606015, -0.9569565) + +[sub_resource type="MultiMesh" id="MultiMesh_4atk4"] +transform_format = 1 +instance_count = 512 +mesh = ExtResource("10_vetlt") +buffer = PackedFloat32Array(0.11413899, 0.0026454027, -0.09313166, -5.711857, -0.0629078, -0.10644906, -0.08012134, -0.00039999996, -0.068724915, 0.10183237, -0.08133436, -0.578164, 0.08333665, 0.03232968, -0.052010186, -4.990351, 0.038119, 0.041356742, 0.086786084, 0.00029999996, 0.0479292, -0.08910486, 0.021409798, -6.4244804, 0.08102527, -0.009795423, -0.04761382, 0.1451018, 0.0028570024, -0.09143093, 0.023671575, -0.00040000002, -0.048526935, -0.021738347, -0.07810699, -5.9685287, 0.04454049, 0.014386521, 0.050039295, -3.7667391, -0.047707625, -0.015098164, 0.046805844, -0.0004, 0.020853905, -0.065267414, 0.00020238405, 3.5561059, 0.11787376, -0.01897811, -0.0020720882, -7.298608, 0.019060317, 0.116256505, 0.019488811, 2.643312e-05, -0.001080033, -0.01956887, 0.11779039, 6.7676024, 0.10982844, -0.08498787, 0.017359728, -5.5095778, 0.05710232, 0.09192053, 0.0887498, 0.00019999998, -0.06529644, -0.062564075, 0.106811516, 7.6251154, -0.07428628, 0.03180584, -0.12562208, 0.0053192186, -0.11535859, -0.08219488, 0.04740635, -0.00040000002, -0.059033122, 0.120595835, 0.065442346, 6.35348, 0.060596164, 0.026181556, -0.039666943, 5.857643, -0.04311971, 0.057317946, -0.02803889, 0.0004, 0.019990748, 0.04427206, 0.05975943, 0.7186598, -0.035348836, -0.1122299, -0.0058247317, 4.206086, 0.1077338, -0.0321038, -0.035239026, -0.00043627102, 0.03198286, -0.015900105, 0.11226442, -0.699023, 0.042290937, -0.008647448, 0.04713624, 3.7772298, 0.001570128, -0.06258206, -0.012889815, -0.0004916665, 0.047897164, 0.009686808, -0.041196536, 0.2343241, -0.069178015, -0.0025791652, 0.056949336, 5.9089017, -0.05527032, 0.024973672, -0.06600745, 0.00029999999, -0.013966744, -0.086053126, -0.020863038, -5.3338165, 0.0691121, -0.06855681, -0.107032515, -2.3362854, 0.08687532, 0.114410594, -0.017186243, 0.00011040077, 0.09278291, -0.056059398, 0.0958183, 9.3923855, 0.032713857, 0.010319228, -0.09943002, 0.05749451, 0.029318953, 0.099027544, 0.0199238, 0.0004, 0.09556785, -0.03391272, 0.027923558, -6.41351, 0.05202359, 0.11597582, 0.043624517, 6.596604, 0.0021412119, -0.04814789, 0.12544776, -0.0004, 0.123890705, -0.047867864, -0.020486731, 1.8969765, 0.025007833, -0.016725501, -0.07272099, -0.054045808, -0.066729896, -0.03933673, -0.013900301, -0.00049999997, -0.033394676, 0.06607842, -0.026681742, -3.0482788, -0.03991787, 0.03859744, -0.11455424, 0.40148342, 0.072856575, 0.10394684, 0.009635638, 0.00049999997, 0.09645909, -0.062539294, -0.054684125, 2.9160628, -0.12739474, 0.00417061, 0.025510393, 2.82871, 0.023675866, 0.07031394, 0.10673801, 0.00045241544, -0.010374373, 0.10925278, -0.06966931, 3.0015037, 0.08148478, -0.024568485, 0.00065881107, 3.736278, 0.02024348, 0.068385795, 0.046447802, 0.00040655854, -0.013937227, -0.04431237, 0.07131606, 2.550009, 0.030165076, 0.087074734, -0.024013061, -2.106315, -0.03455793, 0.03451625, 0.08174929, 0.0004, 0.083452895, -0.01718102, 0.04253228, -4.7517962, 0.026194805, 0.056220856, -0.042286195, 4.1656275, 0.06739985, -0.03298365, -0.0021009846, -0.0004, -0.020153591, -0.037233982, -0.06198821, 3.8018148, 0.083634004, -0.027707586, 0.05523226, 2.54503, 0.020339493, -0.075422466, -0.06863466, -0.00040000002, 0.058349118, 0.06600531, -0.055241663, 5.6234236, 0.007753919, 0.008216424, 0.053972732, 1.9397452, -0.05295781, -0.0121163875, 0.009452621, -0.0004, 0.013267838, -0.053163655, 0.006187142, -4.8567057, 0.050902296, 0.04031106, -0.048099514, -5.7332973, 0.061570022, -0.04406943, 0.028224206, -0.0004, -0.012152216, -0.054428782, -0.05847581, -0.9957804, 0.09441685, 0.055176735, 0.08198129, 1.985384, -0.09613099, 0.07755454, 0.058515556, 0.00049999997, -0.02289616, -0.0980855, 0.09238477, 1.5662811, 0.033667583, -0.022011235, 0.12803127, -3.4948199, 0.12645608, 0.03584639, -0.027090635, 0.0004400674, -0.029754993, 0.12743841, 0.029733801, -2.3892293, -0.048000176, 0.01974329, -0.0372079, -2.043748, -0.038084496, -0.04444138, 0.0255495, -0.00049999997, -0.017994348, 0.041393336, 0.045177832, 0.3653239, 0.0028270232, 0.05912261, -0.029567143, 6.6191206, 0.03283067, 0.024430443, 0.051990304, 0.00039818464, 0.057374608, -0.016892644, -0.028292824, -1.9902486, -0.04704508, 0.008154244, 0.031875923, 6.3008122, -0.025078157, 0.027117325, -0.04394933, 0.0004, -0.021299114, -0.049939618, -0.018659819, 0.24151124, -0.047874115, 0.02116559, 0.009039696, 9.138437, -0.018405817, -0.022683509, -0.044365678, -0.0001, -0.01381754, -0.043117344, 0.027777685, -3.5148103, 0.0390616, 0.03224995, -0.08232145, 5.0981016, 0.017025633, 0.08556965, 0.041601118, 0.00030170998, 0.08675833, -0.031312402, 0.028900066, 5.5516744, -0.04029592, 0.084473155, -0.11690186, 9.381646, -0.107165545, 0.06369779, 0.08296778, 8.82115e-05, 0.09652617, 0.105983004, 0.043310747, -3.157498, 0.085829936, 0.044182144, 0.011307085, -0.5212125, 0.007924459, -0.0381788, 0.08902961, -0.00029999999, 0.04491231, -0.07769818, -0.037317127, 8.011466, -0.0977551, -0.03959388, -0.04199842, -6.69532, 0.0030006662, -0.08597748, 0.07407071, -0.0003, -0.057641476, 0.062672146, 0.07508171, -3.9853373, 0.028416986, 0.1057274, 0.038550872, 5.3822536, -0.10102861, 0.041483168, -0.039298162, 0.00040000002, -0.049574926, -0.02393412, 0.10218346, -3.8145857, 0.057296716, -0.019592691, 0.024516657, 9.242786, 0.027220305, 0.056425422, -0.018522445, 0.0002, -0.015620339, 0.02646039, 0.0576516, -0.8737637, -0.056790963, -0.06978486, 0.0810964, 7.397659, -0.105748296, 0.05055288, -0.030552782, 0.00019999998, -0.016243558, -0.0851249, -0.08462664, 5.3345404, 0.05405799, 0.04019372, 0.046586636, -7.5287313, 0.04275893, -0.06913186, 0.010028736, -0.00030319073, 0.044243928, 0.01770216, -0.066612504, -0.15907755, 0.07122428, 0.010495006, -0.07710317, 2.5297608, 0.0765588, -0.028150836, 0.06688962, -0.00042608005, -0.013920988, -0.10112037, -0.026623692, -3.5411603, -0.024480917, 0.062177192, 0.079204686, 1.7520037, 0.074697, -0.043448243, 0.05719537, -0.00029999999, 0.067525886, 0.07060416, -0.034554437, -7.466736, 0.06818098, -0.07265307, -0.04717388, 1.1942029, -0.041211896, -0.08000953, 0.0636596, -0.00040000002, -0.07619333, -0.021736983, -0.07664574, 4.897852, 0.04467304, 0.023850845, -0.00975466, 5.792653, 0.025702402, -0.042639963, 0.013450519, -0.0004, -0.0018446347, -0.016512634, -0.0488224, 2.7132792, -0.02935235, 0.017856363, 0.04049577, -3.3995893, -0.0004998195, -0.048723042, 0.021121847, -0.00032827104, 0.044255022, 0.011293033, 0.02709755, -6.5370765, 0.057500277, 0.13549863, -0.011142069, 3.5404918, 0.0264198, -0.023003211, -0.14339857, -0.00039999996, -0.13336423, 0.05386353, -0.033211567, -3.0296073, 0.022298576, 0.026144506, 0.051918775, -3.4747953, -0.039675478, -0.033796128, 0.034058772, -0.00046100447, 0.04248472, -0.04528364, 0.004556529, -2.0791276, -0.046313748, -0.09875516, -0.08457222, 8.162542, -0.0977397, -0.032761585, 0.09178035, -0.00029999996, -0.08574375, 0.090686835, -0.058939897, 1.0540183, -0.10355534, 0.030726964, 0.03453663, 5.087756, 0.0339443, 0.108058356, 0.0056406925, 9.999999e-05, -0.03138008, 0.015488297, -0.10787047, 8.420641, 0.010202417, 0.002543016, -0.07063718, -5.8320956, -0.06265027, 0.033369545, -0.007847489, 0.00029999999, 0.032726448, 0.06308862, 0.0069980756, 5.042783, 0.03852195, 0.086277284, -0.102223426, 4.931726, -0.05094873, -0.08889623, -0.09422859, -0.00029999999, -0.12368357, 0.06349039, 0.0069773477, -7.0041156, -0.0065939846, 0.029026302, 0.051578403, -6.740857, -0.003860757, 0.051576048, -0.029518548, 0.000100000005, -0.059058882, -0.00661241, -0.003829113, 7.058814, 0.015530461, 0.041617528, -0.058147404, 0.02855607, -0.014064133, 0.060118597, 0.03927199, 0.00045613598, 0.07010948, 0.0028409355, 0.020758713, -4.094925, -0.114160985, 0.005259873, -0.06290949, -5.659277, -0.028522145, -0.120272055, 0.041702777, -0.00029999999, -0.056318346, 0.050249066, 0.10640148, -6.0422373, 0.042252935, -0.084071696, -0.05817083, 5.9929295, -0.101111904, -0.025062595, -0.03722175, -0.00017961737, 0.015108967, 0.0673871, -0.08641703, -7.374481, -0.015950846, -0.031459793, -0.115792006, -4.418887, -0.1114638, -0.03936029, 0.0260485, -0.00029999999, -0.044422142, 0.110059, -0.023782844, 7.1077394, 0.016237637, -0.018614806, 0.06755866, -5.7147956, 0.06310047, -0.026279295, -0.02240699, -0.00040000002, 0.030479731, 0.064321324, 0.010397039, -0.836455, -0.027793583, 0.048999175, -0.010753117, -6.5053225, 0.042020235, 0.029454693, 0.025607653, 0.00029999999, 0.02740159, 0.0045314687, -0.05017618, 4.2619987, -0.10466008, 0.07253536, -0.028832067, -1.920168, 0.036090422, 0.087731324, 0.089705594, 0.000100000005, 0.0692109, 0.063939296, -0.09037707, 9.572159, 0.01490454, -0.032331903, -0.061657976, 4.344067, 0.054594446, -0.033700936, 0.030869015, -0.00019999998, -0.043203052, -0.053741027, 0.017737007, -8.375783, -0.06761087, 0.02780846, 0.11742276, -6.859086, 0.11489011, 0.055994313, 0.052891828, 0.0003621278, -0.036900926, 0.12338546, -0.05046776, -2.0057073, -0.01425927, -0.046437703, 0.062150683, -3.4982548, 0.055808753, -0.050036155, -0.02458173, -0.0004, 0.053893883, 0.03952744, 0.04189899, 5.3725977, -0.10491389, 0.068060055, -0.06135053, -2.5107126, 0.033359267, 0.11523423, 0.07078992, 0.00041672043, 0.085341774, 0.03862489, -0.103091635, -3.6560383, -0.024810206, 0.11397118, 0.093831055, 5.8070717, 0.10273355, 0.08165797, -0.07202109, 0.0004, -0.106016584, 0.0524575, -0.09174933, 3.2267926, 0.018507177, -0.00068266277, 0.06850812, 4.08812, 0.06454518, -0.023621274, -0.01767198, -0.00041274983, 0.022972768, 0.0669172, -0.005539188, -1.803117, -0.008657481, 0.05272188, 0.03866355, 7.407874, 0.011855454, 0.039620444, -0.051372044, 0.0003172084, -0.06429553, 0.00020654136, -0.014678594, -0.73490363, 0.010121115, 0.09360346, -0.063813865, 3.7014997, -0.02664874, 0.064237386, 0.089998096, 0.00031230622, 0.1101075, 0.006942987, 0.027647553, 6.4877357, -0.07249361, 0.022410912, 0.04608562, 3.3055413, -0.036724236, 0.03296415, -0.07379805, 0.00049999997, -0.03574163, -0.07932574, -0.017647104, -0.2856263, 0.061199278, 0.001789094, -0.045886714, -5.992167, -0.04455478, 0.020827532, -0.058610804, 0.00031351292, 0.011120384, 0.07360133, 0.017700965, 4.4431424, -0.0037124262, 0.058946107, 0.07792449, 1.6573982, -0.09598067, 0.012398406, -0.013951438, 0.00049999997, -0.018291567, -0.077021345, 0.057391483, -1.1548226, 0.037177604, 0.1032284, -0.0318943, -1.0512612, 0.10803645, -0.035897747, 0.009746867, -0.00034245552, -0.0012145916, -0.033328246, -0.109285295, -7.1935534, 0.08590274, -0.017880658, 0.010776317, -2.739406, 0.015354592, 0.023194302, -0.083912976, 0.00029999999, 0.014145072, 0.08341124, 0.025643915, 7.1271396, 0.04218839, 0.12113274, 0.07934209, -7.6175537, 0.11025643, -0.08044476, 0.0641898, -0.00029999999, 0.093871355, 0.040045835, -0.11105258, 1.2611858, 0.04788761, -0.028914781, 0.017983947, -2.4585733, -0.0027764586, 0.02761462, 0.05179222, 0.0004, -0.033937857, -0.04305901, 0.021138912, -4.838433, 0.040583406, 0.042324144, 0.040499356, 6.024765, 0.01312398, -0.054585833, 0.043894097, -0.00040000002, 0.05709022, -0.017538462, -0.03887999, 3.2726715, -0.03758185, 0.03125729, 0.1079225, 2.9415152, 0.06531204, -0.086521275, 0.04780253, -0.0002, 0.09142547, 0.074657395, 0.010214284, 8.761733, -0.02401893, 0.052048873, -0.092001475, -3.4141357, -0.10569049, -0.010311267, 0.021759246, -0.00041172098, 0.001696442, 0.09452439, 0.053033274, -2.897304, 0.0674192, -0.0697546, 0.09736106, -5.043805, 0.11739692, 0.06061814, -0.037863318, 0.0002, -0.023724282, 0.10173478, 0.08931643, 7.8304853, -0.07432867, 0.014141227, -0.044841852, 4.792713, 0.039508153, -0.02669383, -0.07390578, -0.0004, -0.025492597, -0.082601346, 0.016206868, -3.4784598, -0.09107947, -0.11713405, 0.027745249, 2.1375923, -0.069097206, 0.07936279, 0.10822559, 0.0004, -0.098568544, 0.052600563, -0.10150408, 6.0808897, -0.04372386, -0.026040962, -0.07131335, -6.259725, -0.053072512, -0.048361205, 0.05019967, -0.00029999999, -0.054286618, 0.06825368, 0.0083606895, 5.9701257, 0.068400495, -0.07906866, 0.010883448, -6.261883, 0.06764638, 0.049824294, -0.06316991, 0.00038301147, 0.042358827, 0.048110474, 0.08330692, 3.141714, -0.053832233, 0.018297177, 0.07416145, 5.495437, -0.0047022295, 0.089762054, -0.025559412, 0.00029999999, -0.076240376, -0.018455572, -0.05078792, 5.6998243, -0.06364616, 0.08842481, -0.036558017, 3.7006302, -0.09060595, -0.06980962, -0.011110632, -0.0004, -0.030757075, 0.022670195, 0.10838049, -4.0303407, -0.1291053, 0.061214205, 0.009019944, -6.1862206, -0.020848418, -0.023386538, -0.1396966, -0.00020229949, -0.058257036, -0.1272895, 0.030003808, 6.6414156, 0.06205153, 0.124093466, -0.018627562, -4.3167253, 0.08046728, -0.055295613, -0.10031939, -0.0004, -0.096287034, 0.033760555, -0.09584155, -5.1479554, -0.0004971678, -0.1243373, 0.065902986, 4.400689, -0.028442869, -0.06445442, -0.12181888, -0.0003, 0.1378186, -0.013750577, -0.024903122, 6.9221754, 0.028009128, -0.043020528, 0.036590118, 2.9177558, -0.04041476, 0.013261149, 0.04652852, 0.00049999997, -0.03944933, -0.044130374, -0.021688117, -1.1268368, -0.05326114, 0.11560793, -0.0062927604, -2.204701, 0.11430892, 0.051406763, -0.023072865, 0.00029368294, -0.018391972, -0.015286964, -0.12517822, 7.8685074, -0.043219846, -0.022008454, 0.10497465, -7.534069, 0.09045133, 0.05334463, 0.048424304, 0.00029999996, -0.057642076, 0.10020969, -0.002722761, -0.9798167, -0.1244224, 0.030709509, -0.06320293, 2.5568967, 0.034242343, -0.08573444, -0.109067366, -0.0004, -0.061360784, -0.110114306, 0.067292795, -4.2993374, 0.023202008, -0.027251054, 0.037223592, 1.2031324, -0.0070160157, 0.039097235, 0.03299592, 0.00034443906, -0.04559596, -0.019883037, 0.013864437, 7.1578565, 0.0096739065, 0.054098472, 0.009191711, 1.9072284, -0.040282633, 0.01333908, -0.036112253, 0.00049999997, -0.03726179, -0.00037544497, 0.041426256, 0.5054321, -0.110256486, 0.04678857, 0.05495441, -1.8764452, 0.038836595, 0.123033956, -0.0268331, 0.00049999997, -0.060834825, -0.0062550385, -0.11672895, -1.9260824, 0.030656261, 0.08086328, 0.03386218, -2.0323994, 0.08077469, -0.03999635, 0.022384455, -0.00049999997, 0.03407295, 0.0220623, -0.08353211, -0.17688404, 0.0010744701, 0.06626149, -0.028638376, 5.682847, -0.06350735, 0.014483352, 0.031127876, 0.0002, 0.034315567, 0.024729405, 0.058504656, 6.666405, -0.019146394, -0.040457908, -0.122716926, 7.5589204, 0.10913394, -0.07148345, 0.0065398444, -0.00029999999, -0.06918141, -0.101568446, 0.044279307, -1.9982631, -0.10098822, 0.01938592, -0.01880741, -1.9923842, 0.026787305, 0.06256038, -0.07935234, 0.00049999997, -0.0034601681, -0.08147723, -0.065403685, -1.5740156, -0.06281664, -0.04503143, 0.010917763, -3.9290066, -0.034638956, 0.033421207, -0.061450176, 0.0002, 0.030776115, -0.054296885, -0.04687896, 7.885727, -0.031499878, 0.047252722, 0.01966429, -2.2537878, 0.04899238, 0.021158323, 0.027637236, 0.00049999997, 0.014807048, 0.030516446, -0.04961092, 2.689394, 0.04023906, -0.070490554, -0.028448619, 3.9413373, -0.04482019, -0.047999807, 0.055539113, -0.00040000002, -0.06139539, -0.01115903, -0.059190422, 3.3509948, -0.076481394, 0.058066797, 0.042420994, -5.268873, -0.07183494, -0.058830056, -0.048984308, -0.0004, -0.0033219105, -0.064714506, 0.08259355, 3.2206435, -0.013201857, 0.034700844, 0.13502553, -7.053619, 0.12811454, -0.05046737, 0.025495995, -0.00029999999, 0.054979194, 0.12593342, -0.026988745, 4.917141, -0.043899935, -0.09924622, 0.07552144, -6.47193, -0.12400515, 0.04325458, -0.015240236, 0.000100000005, -0.013267236, -0.0758929, -0.10744649, -7.449374, -0.07331912, -0.06114123, 0.10161132, -6.330916, -0.05078837, 0.12414272, 0.038051676, 0.0004, -0.10716181, -0.017004054, -0.08755577, -0.038511205, 0.04010147, -0.062296256, -0.07110532, 6.0156054, -0.04379987, 0.056204163, -0.0739431, 0.00033102266, 0.083775654, 0.05920462, -0.004622711, -4.2187552, -0.04756778, 0.102879345, -0.054009147, -5.585666, 0.024749776, 0.06599145, 0.103905804, 0.00039999996, 0.113527946, 0.028719528, -0.04528172, -2.7307231, 0.117091335, 0.014113369, -0.03190634, -9.421677, -0.019865757, 0.11882363, -0.02034412, 3.460192e-05, 0.028680196, 0.0246849, 0.11617094, -3.189355, -0.018108236, -0.12671274, 0.03617622, -7.3179913, 0.061929874, 0.024049066, 0.11523487, 0.0003317765, -0.11631649, 0.032531064, 0.05572204, -0.62763, -0.0073137376, -0.048408855, -0.047816414, -2.676108, 0.049129434, -0.037029557, 0.029973783, -0.00021633752, -0.047075734, -0.031124147, 0.03871021, 8.616282, -0.061393566, -0.044408046, 0.030655077, 0.27036947, -0.021777106, -0.022094995, -0.07562108, -0.00019999998, 0.04937171, -0.06496703, 0.004764187, 9.303991, 0.071836956, -0.028487023, -0.034746125, 0.9599992, -0.0443474, -0.034426656, -0.063462324, -0.00049999997, 0.0072188433, 0.07199062, -0.044097543, -0.81692207, 0.018437937, -0.06488648, 0.13485204, -4.4979153, 0.02862447, 0.13489221, 0.06099202, 0.00029999996, -0.1468876, 0.018142065, 0.028812904, 6.411494, -0.016060747, -0.06597768, 0.00857367, 2.0767963, 0.066436924, -0.015431613, 0.005701725, -0.0004375135, -0.0035632476, 0.009660268, 0.067664556, -3.7129881, -0.05753777, 0.017916068, -0.02479353, -4.679706, -0.0049179597, -0.05754803, -0.030171817, -0.0004, -0.030191358, -0.024769729, 0.05216552, -1.9890656, -0.032103606, -0.045252394, -0.031305086, 3.101956, 0.011373054, -0.040917896, 0.047484826, -0.00049999997, -0.053837173, 0.018340556, 0.02869864, 0.09153855, 0.027727034, 0.101287164, 0.016139278, 6.099312, 0.10187886, -0.025267916, -0.016449505, -0.00020000001, -0.011843357, 0.01976859, -0.10371737, -6.9581175, -0.03943455, 0.051042937, -0.10305204, 2.913941, -0.1143992, -0.028537016, 0.029642003, -0.0004, -0.011744169, 0.10658538, 0.05728715, -5.5263157, 0.08973801, 0.073747985, 0.07877771, -6.039429, 0.09954214, -0.096133195, -0.023395993, -0.00040000002, 0.041666005, 0.07083252, -0.11377304, 2.6484022, -0.07865337, -0.09033153, -0.030815111, -4.29666, -0.005165937, 0.043901138, -0.115506336, 0.00040000002, 0.09530304, -0.072170734, -0.03169268, -4.5575466, -0.0064150905, 0.02928198, -0.04469218, -1.8108249, 0.023077829, -0.03907935, -0.028917072, -0.00029999999, -0.048189618, -0.022613024, -0.00789877, 8.147336, 0.01758308, 0.02809022, 0.106398374, -5.97814, -0.032680012, -0.10155418, 0.032211907, -0.00029999999, 0.10507944, -0.036284015, -0.007785794, 4.74264, 0.059069764, 0.05304228, 0.008745338, -2.065314, -0.045639466, 0.04261464, 0.04980195, 0.0004, 0.028407818, -0.041829545, 0.06182627, 5.6217647, 0.024963217, 0.07878926, -0.051189143, 1.5743313, 0.08680532, -0.039608985, -0.018633312, -0.0004, -0.03595706, -0.04092209, -0.08052148, 5.3213663, 0.0097049195, 0.013874567, -0.06934983, -0.9179072, -0.06042128, 0.038008332, -0.0008512628, 0.00040449077, 0.036758285, 0.05881288, 0.01691048, 4.4481893, 0.08134121, -0.05017787, -0.06688578, 3.9241042, -0.049663063, 0.046078537, -0.094964534, 0.0004, 0.06726889, 0.09469353, 0.010767814, -2.5271616, -0.038222343, 0.03382357, -0.04375085, 9.55727, 0.053995907, 0.034311306, -0.020646892, 0.00014362854, 0.011942048, -0.046880897, -0.046676412, 0.8927829, 0.04781679, -0.13609357, 0.024029372, 1.362961, 0.13705932, 0.043441884, -0.026699591, 0.00020000001, 0.017709324, 0.03125154, 0.14175697, 9.261737, -0.020176545, 0.054884814, 0.02218918, -7.134681, -0.0005300394, -0.023609027, 0.05791484, -0.00020000001, 0.059198156, 0.018495038, 0.008081304, -5.7311826, 0.021710966, -0.031843074, -0.035428185, 4.0452013, 0.013933947, 0.041476805, -0.028740639, 0.00040000002, 0.045551974, 0.0024896476, 0.025677277, -2.5436862, -0.011050364, -0.039469898, -0.14098139, -1.2215385, 0.0567773, 0.12916194, -0.04061116, 0.0003946931, 0.13494429, -0.05757652, 0.005542266, -6.8219, 0.053488184, -0.07523051, 0.11846632, -8.434786, 0.072351344, -0.09384828, -0.09226412, -0.0003, 0.12024633, 0.089931995, 0.0028182615, 0.086352915, -0.03510703, -0.035682812, -0.02696476, 7.6187506, 0.01946776, 0.018670298, -0.050052885, 0.0002, 0.04026621, -0.040137544, 0.0006895296, -4.606936, -0.018682523, -0.049650215, 0.015830811, 5.735093, -0.046702873, 0.023413297, 0.018315416, 0.00029999999, -0.023121426, -0.0071741706, -0.049786806, 5.230296, 0.030890722, -0.049372915, -0.025139246, 7.1969466, -0.016232839, -0.035584833, 0.04994114, -0.00029999996, -0.052973215, -0.017886814, -0.029963369, 3.98382, 0.09226162, -0.08680889, 0.077894285, -1.887043, -0.11623861, -0.07659977, 0.052312218, -0.0002, 0.009585717, -0.093339175, -0.115375146, 8.99678, -0.098686494, -0.06081659, -0.094921075, 7.340959, 0.09369503, -0.11440023, -0.024114782, -0.00029999999, -0.06268901, -0.075243756, 0.113385014, -2.5908952, -0.041427292, 0.07800679, 0.11473814, 0.30354512, 0.058630403, 0.11836946, -0.059306536, 0.00040421585, -0.12574726, 0.029491214, -0.06545237, 4.5308666, -0.08560377, 0.06176238, -0.046260033, -0.16818632, 0.020878252, -0.04797622, -0.1026887, -0.00010433768, -0.07428782, -0.084653884, 0.024446433, -9.698207, 0.0630401, 0.055137973, 0.020817166, 0.67125404, 0.04084421, -0.06284699, 0.04277395, -0.00042277802, 0.042488836, -0.021393087, -0.07200444, -4.3281507, 0.029160237, 0.058195416, -0.093201905, -6.7720385, -0.10535148, 0.0422017, -0.0066106976, 0.00019999998, 0.031214831, 0.08806776, 0.064755894, -6.38857, -0.0319235, 0.10610896, -0.07551453, 3.2142146, 0.04760975, -0.06286059, -0.10845517, -0.00049967645, -0.121222384, -0.05263176, -0.02270897, 1.863517, 0.020147825, -0.009500408, 0.05595589, 3.178503, 0.042336732, -0.037030563, -0.021531215, -0.0004, 0.037801065, 0.04653746, -0.0057095797, 4.9415402, 0.010539116, 0.03663781, -0.14522022, -7.8272495, -0.13743515, 0.060221627, 0.0052192598, 0.00029999996, 0.059521537, 0.13256446, 0.03776455, -2.0874372, -0.10018415, 0.059022374, -0.0553211, 1.6940285, -0.069185995, -0.10814825, 0.009908928, -0.00043665996, -0.041920938, 0.037433226, 0.11585473, 3.9110188, -0.029899772, -0.014671799, 0.05248005, -9.305688, -0.027791742, -0.047384728, -0.029081259, -0.0001, 0.046872552, -0.03745449, 0.016233863, 3.2642722, 0.004773857, 0.031813174, -0.05861651, 6.8779564, -0.061433557, 0.024971666, 0.0085496865, 0.00029999996, 0.02595942, 0.05324567, 0.031012427, -3.2454908, -0.017265595, 0.06047969, 0.017217778, -4.5960765, -0.04697528, -0.024274843, 0.038162805, -0.00039999996, 0.04180391, -0.002298824, 0.049994923, -3.2685246, -0.066947326, -0.09411456, 0.061377335, 4.5298705, -0.10612158, 0.07643799, 0.0014561302, 0.00040000002, -0.03691806, -0.049054623, -0.11548755, -3.5134616, 0.032293007, 0.04576237, 0.12933828, -8.538763, -0.068918996, -0.109480076, 0.055943776, -0.0002423427, 0.11862864, -0.076061405, -0.0027070567, 2.543543, 0.055922385, -0.016021786, -0.01751552, 8.070911, -0.022370098, -0.020572359, -0.05260383, -0.00023549178, 0.007941662, 0.054871537, -0.024836464, -3.8234506, -0.08163724, -0.12258522, 0.025391195, 3.9912524, 0.123553626, -0.08377835, -0.0072234143, -0.0004, 0.020158157, 0.01704522, 0.14710404, -3.808471, -0.0674188, 0.025688574, -0.09445046, -1.9294133, -0.06871317, 0.06925598, 0.06788371, 0.00049999997, 0.06970862, 0.093111746, -0.024433592, 3.0977468, -0.010566428, -0.057192333, -0.031132018, -3.896245, 0.05605311, -0.024039868, 0.025138533, -0.0004, -0.033139262, -0.022426283, 0.05244676, 2.5554779, -0.034129385, -0.05983944, -0.071064554, 7.6089425, -0.076279536, -0.02516697, 0.05782561, -0.00029999999, -0.053031713, 0.074710175, -0.037440255, 0.3958296, -0.012640115, -0.049339026, -0.032412928, 4.9228916, -0.013309492, 0.034675974, -0.047593527, 0.0002, 0.057513427, -0.0028190147, -0.018137485, 7.1566067, 0.0763488, -0.033932026, 0.005206213, -1.5810953, -0.034189396, -0.07630275, 0.004074413, -0.00029999999, 0.0030938988, -0.005842367, -0.08345011, -7.5802345, 0.121159524, 0.010167515, -0.04093108, 4.147444, -0.03954663, 0.07065483, -0.09951041, 0.0004083643, 0.014655873, 0.10659681, 0.069861926, 1.7663876, 0.052322734, -0.009289734, -0.07020368, -0.8597172, 0.050655283, -0.056087214, 0.045175113, -0.00049999997, -0.049486328, -0.067234285, -0.027985312, -2.7506425, -0.04041774, 0.06312773, 0.11043719, 8.059472, -0.106706455, 0.046255086, -0.065492555, 0.0002, -0.06924747, -0.108122304, 0.036461342, 4.8682756, -0.04871073, -0.0089796055, -0.050250076, -0.6344999, 0.004029616, 0.06856459, -0.016158553, 0.0004, 0.0508868, -0.014025095, -0.046821687, 6.439272, -0.073082104, 0.12409644, 0.025799064, -5.313319, -0.11224573, -0.04953122, -0.07971239, -0.00040000002, -0.05887626, -0.05960908, 0.11994521, -3.762669, -0.031879116, -0.005373791, -0.115793735, -0.9807838, -0.10988633, -0.036834184, 0.03196216, -0.0004, -0.036906082, 0.11431409, 0.0048554735, 6.0277224, -0.03756506, 0.018707354, -0.07471098, 4.963834, 0.063056365, 0.055198785, -0.017883493, 0.00039999996, 0.044222064, -0.06281687, -0.037964195, -3.139336, -0.04085527, -0.03675023, -0.025280988, -0.84436625, 0.023792341, 0.011044793, -0.054505028, 0.00049999997, 0.03773106, -0.046757825, 0.006995312, 1.0244641, -0.045209467, -0.03878248, 0.019143004, 3.2777886, 0.03825723, -0.022944042, 0.043867838, -0.0004, -0.020172255, 0.043404166, 0.040293798, -4.278792, -0.04563747, 0.027680866, 0.0353171, -1.1025703, 0.044866286, 0.027321104, 0.036563378, 0.00039999996, 0.00073752954, 0.050829478, -0.038886093, 5.652175, -0.076008864, -0.0352719, 0.04453183, 1.4027935, 0.05459652, -0.024801355, 0.07354353, -0.00020000001, -0.015697494, 0.08453003, 0.040159706, -9.212527, 0.03782887, -0.066212736, 0.028355267, 9.455341, -0.06676153, -0.020208871, 0.041876845, -0.00015463703, -0.027037844, -0.04273927, -0.06372975, -1.4114598, 0.103066966, -0.005840341, -0.10822657, -4.9030204, -0.096659355, 0.06260994, -0.09542991, 0.00029999999, 0.049031302, 0.13570479, 0.0393706, 6.050369, 0.0066008577, 0.07159898, -0.032337923, -0.030069662, -0.041787896, 0.030680204, 0.059398845, 0.00019999998, 0.06652764, 0.01216707, 0.040518664, 9.340475, 0.06872927, -0.035715155, -0.076707855, -9.180107, -0.01053041, 0.09444562, -0.053408943, 0.00015902282, 0.083957, 0.041083254, 0.056096043, -2.647864, 0.070157655, -0.037008163, 0.04185253, 5.6950216, 0.027304454, 0.08132829, 0.02614404, 0.0004, -0.04874121, -0.007709726, 0.07488784, 0.18504117, -0.025758069, -0.030810254, 0.075145, 5.708493, -0.019724822, -0.07410021, -0.03714312, -0.0004, 0.07878435, -0.02862531, 0.015268879, 1.7038559, -0.04871609, -0.01190263, 0.077897474, 6.1138363, 0.075810745, -0.03207041, 0.04251076, -0.0004, 0.021503927, 0.08609739, 0.02660385, -2.2464824, 0.036039, -0.006001102, -0.041221097, 8.541626, 0.023198025, -0.042381145, 0.026451683, -0.0001, -0.034598317, -0.034667373, -0.025201809, -4.6625204, 0.11756056, -0.025835522, -0.019265098, -1.6628354, 0.011293102, 0.10127264, -0.066898584, 0.00023541904, 0.030184165, 0.06273341, 0.10006265, 8.312856, -0.03938041, 0.012667515, -0.06381074, -7.168084, 0.047160886, 0.056938946, -0.017801704, 0.0002, 0.04481213, -0.048791226, -0.037341423, 5.7734327, -0.0011544025, 0.060887393, 0.024480065, 5.1830683, 0.028741553, 0.022479814, -0.05455697, 0.00040000002, -0.05899553, 0.009760336, -0.02705818, -4.3606095, -0.011444855, 0.035795815, 0.04128255, -0.827263, -0.052702714, -0.018364996, 0.0013132675, -0.00029999999, 0.014422655, -0.03870349, 0.03755796, -8.288867, -0.12026999, 0.033890028, -0.024575956, 6.158167, 0.03686762, 0.050330147, -0.11101818, 0.00030608237, -0.019831551, -0.111963056, -0.057344288, 4.3011303, -0.06608052, 0.035375554, 0.023818381, -9.308244, -0.039638326, -0.06715235, -0.010234545, -0.00013390771, 0.015733652, -0.020603724, 0.07425173, 2.4130983, 0.09426774, -0.029341986, 0.034628052, -3.4917233, -0.04090912, -0.020353168, 0.094120435, -0.0002, -0.019659575, -0.09834256, -0.029811151, 8.647619, -0.014450586, 0.026475182, -0.044376906, 7.667188, -0.047877952, -0.024195673, 0.0011555444, -0.00029999999, -0.019440845, 0.039908625, 0.03014, -2.0145986, 0.12052144, -0.037129328, 0.07621739, 7.538926, -0.073357575, 0.020738227, 0.1261019, 0.00019999998, -0.042501096, -0.14108308, -0.0015222869, -4.765477, -0.13890979, 0.008463213, 0.009719271, -7.93517, -0.011998643, -0.12332663, -0.0640983, -0.00029999996, 0.0047034947, -0.06466013, 0.12352718, -3.300241, 0.068641, 0.0027914874, -0.08908903, -4.660127, -0.050138563, -0.09175856, -0.04150572, -0.00036581059, -0.073693775, 0.06502928, -0.054741703, 5.381154, 0.079644054, 0.0685929, 0.04277838, -5.2697744, -0.07521371, 0.04086595, 0.07450518, 0.00019999998, 0.02962892, -0.08064203, 0.0741427, 7.5469594, -0.0133471005, 0.10376745, 0.0052872105, 2.6605756, 0.103262655, 0.012657309, 0.012263689, 0.0004, 0.011509148, 0.006774377, -0.10390105, -5.3631063, 0.0041232505, 0.041499827, -0.036147766, 8.4299755, -0.0024802533, 0.036352362, 0.041451793, 0.0002, 0.054979492, -0.001472387, 0.0045809336, -2.6395965, -0.05011014, -0.09498866, 0.01790976, 4.9451494, -0.094941035, 0.044575572, -0.02922068, 0.00040000002, 0.018160492, -0.029065523, -0.10334418, 1.3528981, -0.11176647, 0.032356244, -0.055083618, -1.5740762, 0.06379485, 0.05067573, -0.099674806, 0.00040000002, -0.0033689206, -0.113832854, -0.06003005, 6.0312433, -0.033654533, -0.07873817, 0.029756151, 3.2743597, 0.07865334, -0.040830843, -0.019085176, -0.0004056372, 0.02997953, 0.018732332, 0.08347499, -3.1299093, 0.03369614, 0.006808399, -0.048680205, -5.251458, 0.0017004531, 0.05882361, 0.009404098, 0.0001427572, 0.049124584, -0.006706285, 0.033065803, 8.035308, 0.013172522, -0.043037023, 0.027031736, 6.0908146, 0.03783685, 0.026948115, 0.024466055, 0.0004, -0.03393042, 0.013342764, 0.037777152, 1.1446191, 0.044333927, 0.04225296, 0.12917647, -1.2112733, -0.06692677, 0.12504639, -0.017932486, 0.0004, -0.11829065, -0.05491314, 0.05855968, -6.069902, 0.06305012, 0.001833818, -0.10852857, -2.9348574, 0.10640386, -0.025845006, 0.06137904, -0.00020000001, -0.021448417, -0.1228243, -0.014535914, 8.929693, -0.019632263, 0.0007784109, 0.118874684, -8.093859, -0.06664451, 0.099698566, -0.011659249, 0.00023923021, -0.098439366, -0.06765227, -0.015814357, -2.4562, -0.050214604, 0.100792885, 0.071384564, 0.76441073, 0.035713978, 0.08561602, -0.09576472, 0.00029999999, -0.118234836, -0.016945826, -0.05924386, 7.5500193, 0.055366393, -0.05376791, -0.10803222, -1.9478441, -0.068612605, 0.083751045, -0.07684699, 0.0004, 0.09926863, 0.08787583, 0.0071390383, 5.2787714, -0.0005397457, 0.04285548, 0.11495981, 6.2481384, -0.116041996, 0.037145216, -0.014392064, 0.0004, -0.039832238, -0.10879469, 0.040370185, 0.49631453, -0.0025422396, -0.0963654, 0.03885792, -6.668929, -0.044699885, -0.034074537, -0.08742732, -0.0004, 0.09379844, -0.018850122, -0.040610544, 1.1471149, -0.011780107, 0.06077582, 0.032540675, -1.5431088, 0.051862154, 0.029562274, -0.03643839, 0.00049999997, -0.0454193, 0.017992733, -0.050047133, -2.01419, 0.08211976, -0.008028094, -0.020823507, 9.09272, -0.022265356, -0.02404909, -0.0785342, -0.00020000001, 0.0015240448, 0.08123372, -0.025307829, 1.439913, -0.061923217, 0.0433302, -0.07816357, 0.41501182, 0.06754837, 0.084956236, -0.006417841, 0.00049999997, 0.058517233, -0.05221556, -0.07530473, 0.07964489, 0.038226422, 0.04527455, -0.042720877, -0.10694251, -0.057303905, 0.045175474, -0.0033993756, 0.00034751394, 0.024312958, 0.035291772, 0.059156474, -7.2402267, -0.01310985, 0.01262613, 0.08065342, 2.9726057, -0.05879193, -0.058134012, -0.00045561313, -0.0004618102, 0.05663833, -0.057421964, 0.018195597, -2.7396266, -0.03227606, 0.07098133, 0.07745412, -2.4384184, 0.10495151, 0.018112263, 0.027135918, 0.00035769033, 0.0047611417, 0.08193188, -0.07310085, -6.7426667, 0.07111204, -0.024230255, -0.019080311, -3.1945882, 0.028944224, 0.06899092, 0.020262497, 0.00019999998, 0.010648733, -0.025714424, 0.072342634, -8.515121, 0.04945258, -0.0060293744, -0.03091619, 2.9227033, 0.029701527, 0.028086273, 0.042032164, 0.0002, 0.010487305, -0.05111295, 0.026743367, -8.50119, -0.024971133, -0.106888905, -0.026176129, -6.134378, -0.10969189, 0.026331766, -0.00288207, 0.0004, 0.0088380175, 0.02480697, -0.10972913, -0.97444534, 0.069038525, 0.07394524, 0.06741073, 7.2360525, 0.09934783, -0.06041388, -0.03547669, -0.00020000001, 0.011921135, 0.07523755, -0.09473976, -5.4985685, 0.032378864, -0.040890664, 0.10364436, 0.22664748, 0.11086246, 0.022598198, -0.025718194, 0.0002, -0.011122639, 0.106206715, 0.045376338, 8.924627, 0.016586116, -0.02639248, -0.048533116, -1.0909964, 0.029969882, 0.046867248, -0.015244414, 0.0004, 0.046409395, -0.020833224, 0.027189516, 4.6192675, 0.0126878815, -0.067343235, -0.061406195, -9.186539, 0.040390465, -0.051422123, 0.06473939, -0.0002, -0.08169725, -0.035881333, 0.022470031, -1.7813658, 0.025075272, -0.0395734, -0.023735061, 5.5678406, -0.043183442, -0.029645836, 0.0038066134, -0.00019999998, -0.016266434, 0.017698761, -0.04669403, -7.544197, -0.025174258, -0.051880166, 0.043281138, -6.46263, 0.040781252, -0.048493043, -0.03440736, -6.2206025e-05, 0.053867403, 0.012466957, 0.04627558, 7.5313754, 0.040246394, 0.06087155, 0.058472168, -1.4363527, 0.020454006, 0.055814743, -0.07218351, 0.00021899525, -0.08188999, 0.043857567, 0.010707679, -8.432705, -0.1360982, 0.042715695, 0.010655339, -3.7421815, 0.024657106, 0.04527785, 0.13342725, 0.00038124464, 0.036471833, 0.12878738, -0.050443206, -5.936195, 0.027957022, -0.008227706, -0.11851314, 4.637123, -0.07406071, -0.09640278, -0.010778071, -0.00039999996, -0.092887394, 0.07438723, -0.027076248, 0.6706424, -0.094771974, -0.027046205, -0.078725435, 5.4889746, 0.023684302, 0.10560298, -0.06479185, 0.0004, 0.07980129, -0.06346206, -0.07426465, -0.8395064, 0.008495332, -0.073018745, 0.11823558, -4.667847, -0.10552212, 0.07368913, 0.053090047, 0.0004, -0.09042385, -0.09285329, -0.050846376, 0.4612919, -0.03966025, 0.024011977, 0.03385691, -2.6879683, -0.032597777, 0.010970289, -0.04596563, 0.0004, -0.025695348, -0.050979197, 0.0060557104, -6.3415365, -0.011794558, 0.061130777, -0.07135744, 8.35646, 0.049753115, 0.06507123, 0.047521878, 0.0002, 0.079708725, -0.031571016, -0.04022133, -2.784226, -0.0071784486, 0.042681426, -0.06042453, 0.67323405, 0.030396784, 0.057048693, 0.036685713, 0.00049999997, 0.06744526, -0.02116843, -0.022965021, -2.6881742, 0.05241823, 0.062051993, 0.026905997, 9.185907, 0.05064335, -0.058573123, 0.03642103, -0.0002, 0.044828925, -0.006386845, -0.072605975, 2.0963552, 0.0025505403, 0.03730076, -0.12190414, 5.1619663, -0.090270475, 0.086624034, 0.024616918, 0.00013984129, 0.090017825, 0.085810296, 0.028139995, 8.098046, 0.016916284, 0.11164074, -0.023419544, -1.8410069, 0.08899328, -0.027727308, -0.06789464, -0.00039999996, -0.07136053, -0.008113693, -0.09022268, 5.4725065, 0.09176524, 0.07112498, 0.024359021, -0.85996914, 0.0295963, -0.06950949, 0.09146296, -0.00046146766, 0.06910993, -0.064673446, -0.07151328, 3.9548626, -0.040349748, -0.031852663, 0.0326042, 4.0650616, 0.044598702, -0.0185982, 0.03702419, -0.00012640833, -0.009411788, 0.04842771, 0.035663754, -8.736483, -0.052140046, -0.052265454, -0.11121463, -5.524543, -0.060499426, -0.09423731, 0.07265052, -0.00028754977, -0.106958814, 0.07878198, 0.013121127, -6.739357, 0.014952341, -0.033206783, -0.050303385, -8.905, 0.02566691, -0.04338649, 0.03627004, -0.00023910854, -0.05453742, -0.029523144, 0.003278235, 0.4231468, 0.016888285, -0.006387636, -0.07727007, 8.682595, 0.07322216, -0.024689844, 0.018044587, -0.00027344347, -0.025494732, -0.07514181, 0.00063952606, 1.2053268, 0.056813963, -0.086431235, 0.008376607, -3.6990848, 0.0797014, 0.055876415, 0.035970278, 0.00040000002, -0.03447033, -0.013259895, 0.09697588, -5.78289, -0.011179016, -0.027892435, -0.04916797, 5.3739543, -0.04970989, -0.019012934, 0.022088064, -0.0004, -0.026914746, 0.046700828, -0.020373417, 1.9354852, -0.028987871, 0.017900402, 0.05842591, 0.47411028, 0.061103493, 0.009139127, 0.027516318, 0.00049003883, -0.000612249, 0.06457835, -0.020089133, -3.769482, 0.009167624, 0.021988967, -0.051579993, -6.013343, -0.03689666, 0.041720774, 0.011228033, 0.0002, 0.0422214, 0.031684663, 0.021011695, -6.519024, -0.11548928, -0.05781999, 0.024376506, 0.21269137, -0.062597215, 0.102619454, -0.053159904, 0.00039999996, 0.004353493, -0.058320127, -0.117707066, -5.508274, -0.04108958, -0.040100116, 0.026319213, -5.556623, -0.044448745, 0.04485853, -0.0010467046, 0.0003, -0.018028567, -0.019203324, -0.057404507, -5.748875, -0.054566663, 0.015752694, -0.106200136, 0.9680259, -0.022384183, 0.11484247, 0.028535826, 0.00049999997, 0.10500269, 0.032667994, -0.049105745, -0.78743565, -0.012286917, 0.028515013, -0.06959259, -3.7266102, -0.069224946, 0.023274096, 0.021758389, 0.0004, 0.029396307, 0.06672641, 0.02215056, -5.289609, 0.063994706, -0.022723505, -0.080153756, 2.4833746, 0.039192375, -0.080977716, 0.054248266, -0.0004341902, -0.07351831, -0.06294885, -0.040851034, 3.4882584, -0.06190002, -0.014240645, 0.109800905, 3.6249945, 0.09863682, 0.050052743, 0.06209789, 0.00040000002, -0.050297234, 0.1156831, -0.013351426, -2.9833856, 0.0538557, -0.101489514, 0.04194625, 4.186393, 0.1096108, 0.05253529, -0.013621882, 0.00010813846, -0.0067138704, 0.043588623, 0.1140833, 8.733204, 0.07307995, -0.10077259, 0.073021874, 4.2230983, -0.063372105, 0.042745292, 0.12241241, 0.00039999996, -0.107104085, -0.09405166, -0.022605106, -3.6623642, 0.07791722, 0.027047936, 0.028415257, 6.3024435, -0.011046002, 0.075756356, -0.041821882, 0.00039999996, -0.037643112, 0.033756383, 0.07108877, -1.2172064, 0.005272128, 0.1286793, 0.061321784, -0.5101565, -0.0117117595, 0.061547283, -0.12814558, 0.00039225875, -0.14206181, -0.00029855382, 0.012840229, 6.9265933, -0.020071493, -0.050703406, 0.001925649, -7.265581, -0.043720964, 0.018333388, 0.0270143, 0.00029999999, -0.025749184, 0.00839404, -0.047370113, -2.7692838, 0.029746795, -0.015793547, 0.067546494, 8.509023, 0.0044789407, 0.07377906, 0.015278342, 0.00020000001, -0.06922357, -0.0020131199, 0.030014664, 1.994653, -0.08500808, -0.033029377, -0.10427455, -3.3398094, 0.061552636, 0.094722606, -0.0801835, 0.0004, 0.09041789, -0.09553629, -0.043450154, -5.2833996, -0.059170406, -0.08148241, -0.054672167, -9.274417, -0.0683999, 0.080026194, -0.0452419, 3.9984312e-05, 0.070355386, 0.0092734285, -0.089964926, -3.5864353, -0.10949688, -0.0012914119, -0.0003505592, -8.657801, -0.0012722072, 0.09157139, 0.06003681, 0.0002, -0.00041488287, 0.0600364, -0.09157956, -3.6905482, 0.0010529646, 0.012685142, -0.06401619, 2.485417, 0.06425407, 0.011001407, 0.0032368586, 0.00049999997, 0.011419261, -0.06307258, -0.0123103345, -0.7508873, 0.058194518, -0.012610805, 0.022992054, -3.8644524, 0.025153354, 0.0426675, -0.04026242, 0.0004771512, -0.0074145696, 0.04576812, 0.043869942, 0.59334296, 0.123224005, 0.06225982, 0.011023652, -8.257909, 0.034305174, -0.08611639, 0.10290327, -0.00029999999, 0.05311272, -0.08882367, -0.09203997, -0.18704543, -0.1373073, 0.041363124, 0.04396005, 8.397642, -0.054601435, -0.03854906, -0.13427338, -0.0001, -0.025730876, -0.13892354, 0.050347384, 5.0065017, 0.0549615, 0.018278286, 0.014689836, -2.417648, -0.0039424566, 0.044102702, -0.040125575, 0.00015688135, -0.02311588, 0.035937577, 0.041770797, 9.243676, 0.04868951, 0.0060001896, 0.051687878, 6.1785326, 0.0012296283, -0.0708998, 0.0070721074, -0.00029999999, 0.052020457, -0.003940102, -0.04854541, 5.677144, 0.06193392, -0.109059, 0.005266946, 4.083579, -0.0642984, -0.031535726, 0.10309525, -0.0004, -0.088245794, -0.0535635, -0.07142159, 5.4842668, -0.032454554, -0.10183723, -0.0964321, 7.6924353, -0.021077294, 0.10139775, -0.09998757, 0.00015899607, 0.13865685, -0.008422895, -0.037770424, 5.6568656, -0.034269277, 0.043719903, -0.0118606845, -4.678744, 0.044489156, 0.035283256, 0.0015150588, 0.0004, 0.008533499, -0.008375593, -0.05552943, -4.0808682, 0.14575118, -0.019942619, -0.03309559, 6.0934696, -0.038526557, -0.06512842, -0.13042401, -0.00039999996, 0.002954742, 0.13452514, -0.06804916, -2.824325, -0.09535566, 0.014145287, 0.09561748, 6.985842, -0.087713435, -0.06909436, -0.07725165, -0.00014154456, 0.040609725, -0.116023146, 0.057662554, -6.580161, 0.025559595, 0.09823459, -0.08733408, -7.1876183, -0.07325934, 0.084516406, 0.07362482, 0.0002, 0.109134525, 0.033727, 0.06987641, 4.9980903, 0.03593645, 0.061503865, -0.060269926, 4.6041336, -0.08260752, 0.043062832, -0.0053109396, 0.0004, 0.02431432, 0.05540292, 0.07103484, 2.44772, -0.10676326, -0.021637233, 0.09097049, -7.118987, -0.0136747705, -0.1329742, -0.047676526, -0.00029999999, 0.09250297, -0.04463049, 0.097946465, -4.5216227, -0.033174824, 0.08463471, -0.055226736, 8.258356, -0.023689859, 0.049993902, 0.09084599, 0.0001, 0.09824365, 0.040634584, 0.0032571272, 5.288909, 0.106130615, -0.006529679, -0.098844595, 2.4561224, 0.037996538, 0.13646524, 0.03178244, 0.00037839476, 0.09148311, -0.049104244, 0.10147031, 6.592089, -0.012745911, -0.027016494, -0.07482377, -8.496613, 0.07496577, -0.029436257, -0.0021416042, -0.000100000005, -0.026619948, -0.06996114, 0.02979535, 4.871087, 0.044444572, 0.09938069, 0.08434228, 0.9264875, 0.058170713, 0.06462176, -0.106797256, 0.00049999997, -0.11664607, 0.070092596, -0.021123009, -3.5142126, 0.11851267, 0.0059051835, 0.019346174, -1.7093463, -0.00014568228, -0.114736825, 0.035914432, -0.0003443213, 0.020226823, -0.035425942, -0.11309411, 7.053729, -0.026681995, 0.10042676, -0.10751589, -6.279114, 0.025949776, 0.11076906, 0.097025536, 0.00040000002, 0.14481647, -0.0013454669, -0.037195567, 1.4899647, -0.07386573, 0.015381274, 0.023296079, 4.3775997, -0.0180557, 0.023933632, -0.073052086, 0.00039999996, -0.021290429, -0.07366162, -0.018871145, 2.731427, 0.068543635, 0.021183208, -0.039810203, 6.324705, 0.0018512742, -0.07369261, -0.036024753, -0.00020000001, -0.045057226, 0.029197287, -0.06204173, 6.8533792, 0.1057989, 0.044820413, -0.011257256, 1.1791176, -0.0358705, 0.097379535, 0.05059193, 0.00049999997, 0.029135881, -0.04286457, 0.10316362, -1.1252784, -0.05794118, -0.0015613982, -0.014678634, 0.15993361, 0.006130959, -0.05663122, -0.018176839, -0.00049999997, -0.013428016, -0.019119315, 0.05503836, -3.0101376, -0.09180262, -0.02837869, 0.058725297, -0.36584073, -0.059986204, 0.076543465, -0.056784537, 0.00029999999, -0.025605941, -0.077572405, -0.07751509, -7.547984, -0.06845366, 0.061217055, -0.05140195, -3.6592126, 0.07818291, 0.037181105, -0.05983802, 0.0004719236, -0.01664685, -0.07710794, -0.06966235, 1.5126411, -0.06350829, -0.045996644, -0.05720644, 4.5277967, -0.013016276, -0.06738998, 0.06863483, -0.0002451483, -0.07224158, 0.052578244, 0.03792434, -7.6492147, -0.08802723, 0.07013358, -0.070378155, 6.5263824, -0.09583826, -0.08473708, 0.03542951, -0.00032027828, -0.026207423, 0.07430682, 0.1068282, 3.5353286, -0.045119137, 0.07179928, -0.0738062, -0.51464707, -0.054296408, -0.08505723, -0.04955194, -0.00018897445, -0.08748938, 0.015759405, 0.06881481, -9.454279, 0.052181546, -0.010180181, -0.031160085, -5.0610414, -0.028447168, -0.04317071, -0.0335343, -0.00024653136, -0.016289432, 0.042780306, -0.041255306, -7.3054857, 0.039853897, 0.08450614, 0.08399763, -7.562954, 0.08243182, -0.08350954, 0.044904068, -0.0003, 0.08603419, 0.040866833, -0.081934385, -1.943003, 0.05407154, -0.014747189, -0.0104777645, 0.051515047, -0.01407303, -0.055040773, 0.0048432522, -0.00029999999, -0.011367191, -0.0020068963, -0.05583685, 8.42853, -0.009453315, -0.113324195, 0.037401285, -5.3938556, 0.074123986, 0.023827443, 0.09093119, 0.0001, -0.09352466, 0.030339329, 0.06828806, 8.103809, -0.062163793, 0.008490305, 0.022449423, 3.6090522, 0.018486097, -0.022814844, 0.0598176, -0.0004, 0.015307715, 0.062030602, 0.018928181, 4.2949347, 0.05063407, 0.0067290054, 0.11746931, -0.9856261, -0.10754458, 0.054527342, 0.043232627, 0.00029999999, -0.04773344, -0.11571351, 0.027203497, -7.784989, 0.08897177, -0.07119906, 0.07634949, -0.65048426, -0.10432179, -0.06442088, 0.061493427, -0.00039999996, 0.003938483, -0.097954996, -0.09593662, -4.5929656, 0.065844685, 0.10755337, 0.028975481, 7.6976743, 0.094883084, -0.03652545, -0.08003699, -0.00029999999, -0.058348153, 0.06197575, -0.097454235, -3.0415328, -0.027179226, 0.024270024, 0.037704986, 4.2063713, -0.012975851, 0.037947174, -0.033779424, 0.0002661985, -0.042922337, -0.026840044, -0.013663647, 7.16678, -0.090313524, 0.08866866, -0.05169589, 3.8161101, 0.10112595, 0.0886487, -0.024618674, 0.0002, 0.01755375, -0.05450148, -0.124147445, 8.373403, 0.00832656, 0.06590466, -0.04161208, 4.442787, -0.013761713, -0.039948277, -0.06602326, -0.00039999996, -0.0767177, 0.014318934, 0.0073269685, -2.0355775, 0.12673645, -0.06843159, 0.010178324, -0.2561566, 0.05544517, 0.087757386, -0.10036475, 0.00018009104, 0.04138014, 0.09200198, 0.10330502, -9.490793, -0.0658494, -0.026271347, -0.0023206803, 2.8797188, -0.026340446, 0.065824494, 0.002243447, 0.00041601932, 0.0013226055, 0.0029443647, -0.07086107, 3.3799205, 0.021301912, -0.039923005, 0.13005291, -0.4996757, 0.12922792, 0.047079045, -0.0067146895, 0.00020000001, -0.042517666, 0.12308979, 0.044749647, -8.663189, -0.04487591, 0.026765551, -0.011473803, 1.0335171, 0.011635482, 0.035802163, 0.03800936, 0.00049999997, 0.02669566, 0.02938879, -0.035854306, -2.760293, 0.041700028, -0.07851588, -0.013673923, 4.373844, -0.06723034, -0.042942815, 0.04155248, -0.0004, -0.04279955, -0.009043434, -0.07859407, -3.9344501, 0.045765355, -0.06708579, 0.039132454, 0.16884819, -0.07659984, -0.031492528, 0.035594966, -0.00049999997, -0.012818478, -0.051322874, -0.07299293, -3.644134, -0.07395331, 0.019493032, 0.0463419, 8.507511, -0.050135866, -0.034717496, -0.06540437, -0.0002, 0.0037344021, -0.08007095, 0.039640095, 3.799614, -0.08232545, -0.022769699, 0.045089424, 5.630315, 0.0232891, 0.059396666, 0.07251657, 0.00040000002, -0.044823356, 0.07268132, -0.045136336, 2.1418653, -0.0019345218, 0.060581114, 0.061967313, -5.710153, -0.048162058, 0.050777484, -0.051145136, 0.0002, -0.072044685, -0.035571586, 0.032526735, 7.267323, 0.03488526, -0.030481694, -0.030037476, 7.565072, 0.042594068, 0.020983746, 0.028174318, 0.00028013106, -0.0041386364, -0.040974557, 0.03677395, 3.2727718, -0.024264032, 0.0704806, 0.091869086, -3.1138864, 0.104344696, 0.05400015, -0.013869065, 0.0004990197, -0.05019585, 0.078183495, -0.07323868, 2.0419362, 0.055590834, 0.017827505, -0.024084756, 2.1013353, 0.029081497, -0.04433292, 0.03430882, -0.00040000002, -0.0072223116, -0.04129175, -0.04723416, -5.893793, -0.1367815, -0.03807109, 0.036451757, -9.876841, 0.051312152, -0.07300472, 0.1162957, -0.0001, -0.012049984, 0.12127744, 0.081448734, -0.39331412, -0.066624716, -0.057333186, 0.018717265, -6.052355, -0.058877077, 0.055783335, -0.03870392, 0.0004, 0.013073685, -0.04095617, -0.0789174, 2.293262, -0.06327003, -0.0037763787, 0.0076743104, -0.60515124, -0.0011433904, 0.06050573, 0.02034711, 0.0004, -0.008476363, 0.02002627, -0.06002794, -5.728842, 0.015362502, 0.020819377, 0.06417838, 4.723404, 0.053273216, -0.044134248, 0.0015649846, -0.00040000002, 0.0414038, 0.049061578, -0.025826415, 2.1722121, 0.032716673, 0.053759582, 0.03270743, -4.617708, -0.038299687, 0.0462611, -0.037726585, 0.00040000002, -0.049929984, -0.00025937727, 0.050370418, 3.280729, 0.08022734, 0.098842636, 0.078147665, -0.18306035, -0.12072333, 0.03375817, 0.08123805, 0.00049999997, 0.036094423, -0.10678891, 0.098013654, -1.2908719, 0.024950014, 0.047741722, 0.118488856, 4.472029, 0.089876324, 0.0792333, -0.05084993, 0.0002, -0.090780675, 0.091565266, -0.017778073, 7.538025, -0.087556474, 0.013971049, 0.0042235893, 6.1005087, -0.014594346, -0.083479255, -0.026408043, -0.00025543777, -0.00018437859, -0.02674302, 0.08464008, -6.4066963, -0.03274298, 0.085860014, -0.028616106, 1.8070662, 0.027001267, 0.038312983, 0.08405935, 0.0002, 0.086381465, 0.020569393, -0.037122376, 8.687499, -0.075998835, 0.12142625, 0.016230136, 4.297938, -0.06521039, -0.023928938, -0.1263273, -0.00010673327, -0.103708066, -0.07393677, 0.067539394, -8.684601, -0.10844118, -0.053028863, 0.025956502, 7.024679, 0.0005688852, -0.055218834, -0.11043481, -0.0003, 0.059037924, -0.096871614, 0.048741177, 4.528036, -0.00990283, 0.017633466, -0.07942244, -2.0173388, -0.049988993, -0.06444244, -0.008074692, -0.0004, -0.064186946, 0.047467466, 0.018541967, -5.97571, 0.036526818, 0.0065637217, 0.11531013, 1.2122886, -0.064721465, -0.09900348, 0.026137346, -0.00049999997, 0.095658995, -0.06949062, -0.026346348, -0.9176832, -0.09798768, -0.007852879, -0.06636768, -5.7408247, -0.039924257, 0.10133708, 0.046955053, 0.0004, 0.053594686, 0.061131477, -0.08636248, -2.8650308, 0.03863065, -0.11598486, -0.07435674, -6.1329618, -0.1094388, -0.07274476, 0.056613427, -0.0004, -0.08369317, 0.041586764, -0.10834999, 2.0001035, -0.0571709, -0.06592521, 0.03646411, -3.234578, 0.06142245, -0.014282045, 0.07048109, -0.0004, -0.043623935, 0.066288516, 0.05144961, 4.935752, 0.015594484, -0.048627052, 0.00786024, 9.321372, -0.048166055, -0.013326777, 0.013114482, -0.0002, -0.010315262, -0.011285759, -0.049353708, 0.694944, 0.025144644, -0.05416031, 0.0084895715, -6.257869, -0.052149694, -0.0265109, -0.014671291, -0.00029999996, 0.016906252, -0.0012240119, -0.05788217, 4.318723, -0.064193726, -0.05744028, -0.01272427, 2.830597, -0.010010187, 0.029221771, -0.08141259, 0.00040000002, 0.057974897, -0.058556207, -0.02814621, -4.872187, -0.056199748, -0.13140088, -0.013604092, -2.83147, -0.044721723, 0.032835543, -0.13240646, 0.0004, 0.12430298, -0.04759527, -0.05378785, -5.1390495, 0.02254976, 0.031441357, -0.08066466, -8.42973, 0.07528283, 0.03404217, 0.034314178, 0.00023916425, 0.042753257, -0.07652718, -0.017877003, -0.59161466, 0.008775781, 0.054038294, 0.009547427, -4.9935317, -0.045739505, 0.012545114, -0.028962435, 0.00036572636, -0.030318119, -0.0032844723, 0.046457812, -5.0797553, 0.010374622, 0.0053335913, 0.13499402, 7.9211955, 0.1215822, -0.0593993, -0.006997047, -0.0003, 0.058903325, 0.12166652, -0.009333894, 3.3221166, -0.04569333, -0.114520505, -0.07469562, 4.5117016, -0.050827775, -0.058884904, 0.12137283, -0.00039999996, -0.12692879, 0.064806506, -0.021713126, -4.2047777, -0.024706898, -0.068175696, 0.08360635, 4.9464626, -0.07936482, -0.046608236, -0.06145954, -0.00039999996, 0.07306964, -0.07367579, -0.03848482, -1.1913127, -0.014181353, 0.033800483, 0.07806789, -8.169658, 0.012968216, -0.07736125, 0.035850264, -0.00029999999, 0.08407672, 0.017633587, 0.0076381955, -0.3571816, -0.09216532, 0.016321914, 0.00027352222, -6.8162494, 0.01625625, 0.0919117, -0.006992662, 0.00040000002, -0.0014879679, -0.006837988, -0.09333784, 0.8810078, -0.09732053, -0.09786209, 0.0043287217, 6.68352, -0.08265512, 0.07876243, -0.07766351, 0.0002, 0.0525724, -0.05732802, -0.114090554, 6.26813, 0.079352304, 0.10632142, 0.009539718, -4.842883, -0.09273601, 0.06277291, 0.07177488, 0.00029999996, 0.052870434, -0.049470752, 0.11157688, 5.828376, 0.023340542, 0.08332251, -0.041801807, 4.6384745, -0.014880664, -0.039209377, -0.08646389, -0.00040000002, -0.09202498, 0.027473567, 0.0033791126, -1.5489008, -0.019734222, -0.029201616, 0.041643035, -0.6227181, 0.041707464, 0.016273666, 0.031176448, 0.0004, -0.02910951, 0.04311321, 0.016437855, -6.3985796, -0.028488636, -0.021015905, 0.05569762, 0.69661933, -0.056806803, 0.028060956, -0.01846797, 0.00037515885, -0.01780114, -0.05591432, -0.030202724, 7.02931, -0.0015309047, -0.11705763, 0.06711747, 2.6202893, -0.11552581, -0.033545043, -0.06114002, -0.00045370858, 0.06972108, -0.058153488, -0.09983352, 3.1752548, -0.08037848, 0.042914696, 0.09800385, 1.4856008, 0.049307484, 0.123645164, -0.0137028685, 0.00049999997, -0.09494839, 0.027880562, -0.09008109, 0.98047245, -0.08750165, 0.07500084, -0.09315139, -3.6800196, 0.10991912, 0.09591215, -0.026028745, 0.00029999999, 0.0471179, -0.08446646, -0.112268284, 7.237755, 0.061369617, -0.07386649, -0.064989276, 7.493061, -0.02939834, 0.05932901, -0.09519402, 0.0002, 0.09389144, 0.06685736, 0.012672316, -5.396701, -0.07526217, 0.013147949, -0.02735899, -6.9587955, 0.008460721, 0.079332605, 0.014850277, 0.00038626228, 0.02915131, 0.010919986, -0.07494486, 0.6563652, 0.026774472, 0.060182057, 0.020781484, 4.205705, -0.029404046, 0.03168402, -0.053871583, 0.00040000002, -0.05647258, 0.012036008, 0.037902564, 3.9037724, 0.0005771646, -0.08353376, 0.036859844, 8.812129, -0.06214885, -0.027362922, -0.061038148, -0.0002146192, 0.066888355, -0.024703281, -0.057031225, -1.9491714, 0.05014568, -0.014012825, -0.003642183, 9.663385, 0.0059755556, 0.0080712, 0.051218763, 2.2863936e-05, -0.0131877735, -0.049625695, 0.009358741, 2.3960752, 0.090458915, 0.005309, 0.01932322, -0.80714357, -0.0062529496, -0.077402554, 0.05053842, -0.00029999999, 0.019038726, -0.05064628, -0.07521216, 8.369513, -0.009840148, 0.012359892, 0.05655003, 2.5752609, -0.038067553, 0.041830298, -0.015766716, 0.00029999999, -0.04360659, -0.039305992, 0.0010030491, 7.279729, 0.03842545, -0.053328294, -0.09229386, -7.529187, 0.036610488, -0.085536696, 0.06466627, -0.00029999999, -0.10010862, -0.051750824, -0.011776899, 3.4504313, 0.07631547, -0.05991617, -0.06884672, 6.373425, 0.035559066, -0.063132286, 0.09435962, -3.7938396e-05, -0.08405577, -0.08110634, -0.022588948, 7.6418056, 0.055915665, -0.0017583902, 0.078179725, 7.2525644, -0.07389893, -0.032621324, 0.052120257, -0.00029999999, 0.025575563, -0.09041283, -0.020325674, 4.1412325, 0.10536863, 0.03874049, -0.08306036, 2.1123044, -0.06399261, -0.05950486, -0.108933546, -0.00049999997, -0.06561095, 0.12025285, -0.027145097, 2.8761487, -0.0051669925, -0.059193745, -0.020761186, -9.107036, -0.014399861, 0.021394469, -0.05741555, 0.0001, 0.06105384, 3.6424302e-05, -0.0152987745, -3.668071, 0.046565134, 0.02107877, -0.02771989, 9.583102, -0.023277238, 0.05326559, 0.0014020716, 0.00013849753, 0.025901288, 0.009974027, 0.051094618, -0.6470194, 0.10508155, 0.09028382, 0.0010696661, 9.209781, 0.08360344, -0.09667273, -0.05347233, -0.00019999998, -0.034099475, 0.041202668, -0.12780458, 2.0771406, -0.089444436, -0.09117301, 0.05880066, 6.909888, 0.050029617, -0.10228442, -0.08249412, -0.00038862068, 0.09626564, -0.031555075, 0.09750666, 0.8999027, -0.028675457, 0.03475274, -0.062421434, 1.6751815, 0.057478912, 0.051169384, 0.0020832806, 0.00047309202, 0.042430677, -0.04583028, -0.04500771, 3.571487, 0.050108686, 0.008759134, 0.03787181, 9.335317, 0.031118738, 0.02798747, -0.047646645, 0.00016695666, -0.023294229, 0.056230392, 0.01781572, 1.9406865, 0.033988997, -0.10124124, 0.09690769, 2.135505, -0.035003368, -0.10268921, -0.09500438, -0.00034457035, 0.13570426, -0.0011302509, -0.048777144, 6.9424357, 0.025352366, -0.06140507, -0.021319585, 5.7601333, 0.0021347308, -0.022084912, 0.06614793, -0.0003046047, -0.06496575, -0.024688527, -0.0061462233, 4.839764, -0.08799772, -0.01767722, 0.05844143, -3.7376525, 0.038214706, -0.09590074, 0.028533667, -0.0003, 0.047618512, 0.044295024, 0.085099444, 6.6480274, 0.029963966, 0.058496807, -0.04012653, 0.37985978, -0.024100458, 0.049363326, 0.05396557, 0.00040000002, 0.06671717, -0.008440368, 0.037515745, 6.127595, -0.08713265, 0.046757475, -0.0830549, -2.2563674, 0.0952145, 0.03761236, -0.078714594, 0.00049999997, -0.0043101786, -0.11434826, -0.059852935, -1.3044184, 0.05720368, 0.0055562826, -0.033993796, -0.54281074, 0.029287444, 0.026839955, 0.053670976, 0.0004, 0.01812997, -0.06088888, 0.020556254, -4.610424, 0.07232149, 0.0761983, 0.04567163, 3.3265464, -0.02393513, 0.073427655, -0.08460477, 0.00030248097, -0.08555225, 0.043871127, 0.062278505, 6.7587366, 0.03156859, 0.018116552, 0.11430651, -1.6255693, -0.079813056, -0.08239277, 0.03510087, -0.0004, 0.08380965, -0.08528769, -0.0096288, -4.468869, -0.11314369, 0.012765853, -0.08987689, 7.5359325, -0.016230883, 0.13845919, 0.04009898, 0.00029999996, 0.08931618, 0.04133283, -0.10656706, 2.4298794, 0.028735284, 0.088515446, 0.025089148, 3.435197, 0.04770335, -0.036809783, 0.07523029, -0.0003, 0.078669176, -0.010011118, -0.05478233, 7.526785, 0.043572936, 0.037275754, -0.012296954, 1.5852377, -0.00094426546, 0.019362882, 0.055348754, 0.00049999997, 0.039240345, -0.04092549, 0.014986578, -1.2374794, 0.04611753, -0.06779594, -0.03175043, -3.0536451, 0.07338947, 0.033581622, 0.03489222, 0.00041628897, -0.014777222, -0.04480167, 0.074200064, 3.219185, -0.061044663, -0.0824265, -0.09702535, -2.747094, 0.036235046, -0.11440123, 0.07439008, -0.00049999997, -0.122045316, 0.0072625857, 0.07061647, 0.2680912, -0.03489691, 0.03921063, -0.050118472, -1.4961942, 0.02967211, -0.040538996, -0.052376382, -0.00043496903, -0.056293, -0.04567544, 0.0034615763, -4.0044765, 0.12132133, 0.015775803, 0.025973622, -3.532722, -0.0153265335, 0.124069616, -0.0037677668, 0.00036933945, -0.026241235, 0.00047193788, 0.12228469, -6.1527843, -0.058801796, 0.079666756, -0.098990634, 6.235907, -0.12638187, -0.047977082, 0.036461063, -0.0004, -0.013174129, 0.10466611, 0.092059955, -0.6934595, -0.055912826, 0.07413162, -0.055826526, -0.971294, 0.044444922, 0.07860623, 0.059866965, 0.00044467108, 0.081466235, 0.007994253, -0.070976675, -4.076691, -0.08921978, -0.015191766, 0.07502515, 3.4364781, 0.057546444, 0.06266678, 0.08112346, 0.00049999997, -0.050477426, 0.09829456, -0.040124103, 0.72767335, 0.030794397, -0.08980977, -0.035136763, -6.652673, 0.08919864, 0.04054626, -0.025461419, 0.00029999996, 0.03666044, -0.023213953, 0.091464765, -3.910029, -0.030463573, -0.026840327, 0.10513828, 3.5114467, -0.08344684, -0.064010076, -0.04051941, -0.00049999997, 0.06936196, -0.08879638, -0.0025709935, -0.6442596, -0.056963198, 0.036834206, 0.09561533, 3.905978, -0.03176151, 0.097661585, -0.05654451, 0.00040000002, -0.09741794, -0.053379007, -0.037473753, -3.9121675, -0.062446147, 0.015809583, 0.07917477, 2.863064, -0.07959655, -0.0288246, -0.05702314, -0.00045817968, 0.013526794, -0.096629776, 0.029963728, 2.9031246, 0.11055407, -0.07198641, -0.0013550919, 7.9247127, 0.036347765, 0.053658325, 0.11491607, 0.00020000001, -0.062150773, -0.09666861, 0.06479615, -4.43595, 0.03678663, -0.041797902, 0.08679615, -2.3159308, 0.09148788, 0.044260338, -0.017460933, 0.00029999999, -0.030176237, 0.08323372, 0.05287189, 7.3357244, 0.052548055, 0.060313765, 0.08429281, -2.173393, 0.010159782, -0.09704913, 0.063107625, -0.00029999999, 0.10314943, -0.021167086, -0.04915764, -7.479406, 0.012646012, -0.04625628, 0.07671588, 5.923963, -0.023148505, -0.07653248, -0.04232986, -0.00029999999, 0.08653968, -0.013712268, -0.022533279, -6.0836606, 0.036952987, -0.114815, 0.039831974, 0.30602837, 0.056672726, -0.020548057, -0.11180596, -0.0004, 0.107504755, 0.05029798, 0.045248594, -5.395007, 0.0007751272, 0.087762006, 0.09737668, 5.252779, -0.08167098, -0.07584679, 0.069008015, -0.00039999996, 0.10253899, -0.061074402, 0.054227896, 4.2349634, -0.01386264, 0.053423475, 0.072255656, 0.52621984, -0.06376549, 0.04566543, -0.04599729, 0.00020000001, -0.06331596, -0.05768639, 0.03050393, 8.825924, 0.002248344, -0.06312045, -0.10769913, -2.570273, -0.10702108, -0.056426536, 0.030836357, -0.00029764, -0.06426336, 0.09176166, -0.055121362, 8.278048, 0.026618753, 0.063781366, 0.08818571, -5.1753435, -0.10639749, 0.034351908, 0.007270546, 0.0004, -0.022898806, -0.085470654, 0.068729594, -3.0576668, -0.007986386, -0.09605281, -0.017021481, 8.074351, -0.09732304, 0.009008234, -0.00517034, 0.0002868368, 0.006640655, 0.016503483, -0.09624548, 1.4761302, 0.01114397, 0.00014508187, -0.07256567, -6.8739853, 0.06915306, -0.022271106, 0.010575366, -0.00029999999, -0.021992106, -0.06995686, -0.0035172098, -3.8046525, -0.06329981, 0.0109755, -0.10115329, -3.116801, -0.05302942, -0.105230235, 0.021766948, -0.0004039383, -0.08683509, 0.056262407, 0.060444433, 3.3060586, -0.06265429, 0.057682384, 0.008890235, -6.174076, 0.043343216, 0.037252024, 0.06376133, 0.00029999996, 0.039085276, 0.05115549, -0.056456275, -5.114457, -0.10854498, -0.00776512, -0.029266505, 0.4479218, 0.012822202, -0.11046016, -0.018247802, -9.999999e-05, -0.027430216, -0.020906793, 0.10728153, 9.823525, 0.110319875, -0.010585687, 0.05879644, 0.6515901, -0.053839248, 0.035897106, 0.107481584, 0.00029999999, -0.025892362, -0.11974513, 0.02702303, -7.7500753, -0.04845193, -0.02961837, 0.021158578, -6.0936403, -0.00915761, -0.024174785, -0.05481095, -0.00040000002, 0.03522884, -0.047019724, 0.014852503, -1.3395624, -0.0018047286, -0.029081877, 0.05031453, -2.3534346, 0.0032121746, 0.050211914, 0.029137783, 0.00039999996, -0.05802577, 0.0036841272, 4.8110778e-05, -6.3888445, 0.024684798, 0.03738199, -0.05090902, 0.28818077, -0.04207498, 0.050497565, 0.016678521, 0.00029999999, 0.047104545, 0.025515947, 0.041576188, -7.9797983, 0.054808527, 0.019360783, 0.08215915, 3.3240345, 0.060249332, -0.07758153, -0.021910382, -0.0004, 0.059118383, 0.061116327, -0.053840034, 5.933704, -0.115974925, 0.002242755, -0.038085215, -4.6482773, 0.0372854, 0.032480445, -0.111626685, 0.00029999999, 0.008081598, -0.11766769, -0.03153881, -6.1322293, -0.11918765, -0.017226813, -0.033717133, -8.899019, 0.03208273, -0.10508954, -0.059717596, -0.0001, -0.0201074, -0.06556469, 0.1045766, 4.282444, 0.059745245, -0.027779475, 0.009706947, -4.637345, -0.026303409, -0.060264457, -0.010570917, -0.00039999996, 0.013192976, 0.005649284, -0.06503421, -4.99392, -0.032022472, -0.02960323, -0.046647564, -3.3779716, 0.030572105, -0.054404356, 0.013538758, -0.00039999996, -0.046018396, -0.015543505, 0.041454695, -5.7328186, -0.0035733033, 0.0660819, 0.030242061, 5.3563447, 0.04298557, -0.022492101, 0.0542265, -0.0004, 0.058597274, 0.020529397, -0.0379351, 0.7283065, 0.11622022, 0.077030316, -0.021936184, 3.7764704, 0.056654, -0.05173998, 0.11847068, -0.00042346946, 0.056614377, -0.10635465, -0.07352214, -2.207062, -0.051525023, 0.031877164, 0.026924487, -6.581191, 0.015881967, -0.024579478, 0.059493884, -0.0003, 0.03858555, 0.05268403, 0.011465572, 5.039035, 0.028249096, 0.007995533, 0.0770201, -9.8793955, -0.06442811, -0.043051712, 0.028099902, -6.701223e-05, 0.042953968, -0.06983307, -0.008505026, -0.9791589, 0.08697332, -0.0041499897, -0.10660851, 5.25414, 0.092534855, -0.06552574, 0.07804249, -0.00039999996, -0.053102706, -0.12097978, -0.038612794, 1.9272977, -0.015061534, 0.042768013, -0.07815071, 9.725024, 0.07568068, 0.04795806, 0.011659584, 3.8523693e-05, 0.04700076, -0.06351699, -0.04381789, -2.091632, -0.09857251, -0.092544146, 0.016119303, 5.843339, -0.012901075, 0.036480743, 0.13055079, 0.00039999996, -0.093047366, 0.09298133, -0.035177413, -0.5801283, -0.054574244, -0.04681016, 0.10375654, 1.582857, -0.07332334, 0.10246918, 0.007662503, 0.00040000002, -0.087064914, -0.056954656, -0.071490034, -6.6152267, 0.04385108, 0.029374745, -0.030069374, 6.2524233, -0.023652924, -0.01867866, -0.05274094, -0.00029999999, -0.03475028, 0.04978145, -0.0020459446, 5.303344, -0.018687086, -0.058033712, 0.017946271, 1.841422, 0.036645267, -0.025744883, -0.045094475, -0.00024750334, 0.048446923, -0.0029114888, 0.04103177, -8.691464, -0.027711302, -0.11670913, 0.041341744, 0.6579946, -0.073938146, -0.018382804, -0.10145589, -0.00039999996, 0.0993142, -0.04625071, -0.06399717, -4.5311794, 0.05117491, -0.07115615, -0.07942394, -8.244476, -0.10617403, -0.025803287, -0.04529345, -0.0003, 0.009921422, 0.09089127, -0.075037144, -0.04603611, -0.010026396, -0.07074043, -0.1260773, -2.6920292, 0.12980394, 0.0512327, -0.039068814, 0.00027400017, 0.06364458, -0.11563402, 0.059819445, -7.819724, 0.0796494, -0.11386088, 0.0072313095, 4.496971, 0.09149416, 0.069014594, 0.07890768, 0.0004, -0.06815721, -0.040414188, 0.11437613, -4.899152, 0.076086335, -0.047869027, -0.04237669, -4.197291, 0.06290961, 0.044329166, 0.06287816, 0.0004, -0.011384537, -0.07496559, 0.06424104, 1.9806216, -0.07761811, -0.037704114, 0.045476582, 1.5807942, -0.041187115, 0.0883691, 0.00296885, 0.00049999997, -0.042347867, -0.016840192, -0.086240105, -0.6565201, -0.057968594, -0.08721872, -0.0009577068, 2.5430524, -0.07751575, 0.05098623, 0.048580773, 0.00011025678, -0.039991606, 0.027598543, -0.09277592, -9.340996, 0.07889543, -0.04914732, -0.08802142, -2.7147555, 0.0732083, 0.10477411, 0.007116846, 0.00026016516, 0.06930926, -0.054723363, 0.09267847, 7.887105, 0.00840018, 0.024151845, 0.05183061, -3.011062, 0.044464946, -0.03569702, 0.009427542, -0.00049999997, 0.03595265, 0.038505822, -0.023769645, -1.0785972, 0.004388158, 0.08439622, 0.10235083, -0.12440006, -0.10739457, 0.06237755, -0.04683074, 0.00024533417, -0.077876955, -0.08126494, 0.07034812, -8.420933, -0.050752502, 0.08966122, -0.021858983, 2.8834665, -0.08368813, -0.03419855, 0.054032616, -0.00029999999, 0.03890047, 0.043406114, 0.08772358, 7.3791623, 0.05344062, -0.06155616, 0.01640246, 5.100108, -0.05494084, -0.033698596, 0.052535802, -0.00029999999, -0.032244474, -0.044602092, -0.062330183, -5.775302, 0.103492655, -0.058503814, -0.05772075, -6.7251186, 0.07874167, 0.043999907, 0.09658606, 0.00032434167, -0.023540022, -0.110029176, 0.06931491, -3.0622535, -0.047627654, 0.024172064, 0.015060799, -4.992892, -0.0137908645, 0.0061018756, -0.05340495, 0.00033673493, -0.024918439, -0.049578093, 0.0007701084, 5.3370075, -0.061579477, 0.051288277, -0.11741513, -6.8079824, -0.05881793, -0.12704994, -0.024649264, -0.00038194284, -0.11382988, 0.03790314, 0.076255694, -1.674829, 0.05903928, -0.0213241, -0.06757314, 2.2025325, 0.03510644, 0.085203834, 0.0037849897, 0.0004, 0.061549846, -0.028143752, 0.06265802, -5.848347, -0.025349598, 0.07567006, -0.018194888, -0.8894934, 0.008952802, 0.021843974, 0.078372836, 0.00022564935, 0.07731016, 0.02228221, -0.015041863, 8.4793, 0.13924909, 0.0028391557, 0.012675337, 3.4327703, 0.0106878225, -0.10260261, -0.094432555, -6.8855246e-05, 0.0073821032, 0.09499305, -0.10237605, 9.301709, 0.015178574, -0.072009735, -0.121952, 8.706244, -0.11078628, 0.07036979, -0.055340536, 0.0002, 0.08822752, 0.10075104, -0.048509978, -0.79367816, -0.037644144, -0.09893683, -0.1002096, -6.1862855, 0.068194225, -0.1035619, 0.076629125, -0.00039999996, -0.123207174, -0.027092021, 0.0730312, -0.1237638, 0.0700503, -0.105344355, -0.02627767, 6.7729187, 0.08828278, 0.037062835, 0.08676105, 0.00029999999, -0.063198805, -0.06499163, 0.09207056, -3.7269423, -0.017466677, 0.07225142, -0.08088248, 7.922974, 0.02941853, 0.082009554, 0.06690524, 0.00029677377, 0.10438771, -0.011022448, -0.032388885, 1.9218593, 0.031001652, 0.07742532, -0.123327926, -2.3386679, 0.07564453, -0.116306625, -0.05400215, -0.00041628352, -0.12442815, -0.0514164, -0.06355747, -3.7700183, -0.042445663, -0.080712385, -0.07027753, 5.404348, -0.011515891, -0.07171957, 0.089323804, -0.0001, -0.10639926, 0.039960854, 0.018367918, 8.130581, 0.061441094, -0.014606444, 0.04159072, 4.6002827, -0.0200694, 0.054254, 0.04870182, 0.00039999996, -0.039247364, -0.050609283, 0.040205583, 4.092991, 0.12358148, -0.03506159, 0.006818679, -7.0203114, -0.03301545, -0.10275726, 0.069993705, -0.00029999999, -0.013630472, -0.06899147, -0.10771529, -4.51253, -0.08849172, -0.0136805475, -0.01875587, 0.8701952, 0.016268793, -0.089272104, -0.011642373, -0.00019432907, -0.016560985, -0.014596616, 0.08878288, -9.42246, -0.037810456, -0.02922016, -0.084629714, 1.2842437, 0.024260677, 0.08508622, -0.040216833, 0.00027148324, 0.08618252, -0.036771685, -0.025808033, 8.182605, -0.053123865, 0.09525753, -0.0729844, -5.2626185, 0.11993859, 0.0447612, -0.028879615, 0.0004, 0.0039308458, -0.07839199, -0.105176546, 4.12693, 0.039771166, 0.027942594, 0.020441687, -5.7435203, -0.010837914, 0.039616637, -0.03306748, 0.00040000002, -0.032881465, 0.02073958, 0.035624087, 2.811635, -0.067400865, -0.042692114, -0.10777989, -1.832969, 0.06674228, 0.08764739, -0.07645524, 0.00046304544, 0.09478708, -0.09207237, -0.022805441, -3.5929508, -0.06506595, 0.01753689, 0.02990931, 2.567458, 0.011842949, 0.07101679, -0.01587602, 0.00049999997, -0.032586098, -0.009206571, -0.065491006, 1.5036745, 0.045367297, 0.090498626, -0.013778082, 3.2115324, -0.09055224, 0.042111285, -0.021562982, 0.0004, -0.013421283, 0.021786846, 0.09891023, -3.826254, 0.051347855, -0.011128192, 0.11161694, -4.710219, 0.07995513, 0.08972787, -0.027836412, 0.0004, -0.07867246, 0.083927654, 0.044559773, -1.3139739, -0.13576792, 0.01619362, 0.052090455, -5.0829887, -0.0057380917, -0.14318533, 0.02955704, -0.00029999999, 0.054246884, 0.025383277, 0.13349734, -5.8205504, 0.08153624, -0.046449676, -0.015600699, -3.5216742, -0.04795995, -0.08185902, -0.006932507, -0.0004885718, -0.010039703, 0.01380746, -0.09358242, -1.4674107, 0.040718444, -0.035122596, 0.040813655, 9.165639, -0.05383345, -0.027641851, 0.029920409, -0.0002, 0.0011447889, -0.050593223, -0.04468063, 1.463198, -0.021150272, 0.051236372, -0.024959385, -8.631901, -0.049834743, -0.029543173, -0.018416567, -0.00029999999, -0.027652038, 0.01405369, 0.052281253, -0.36063457, -0.12916906, 0.016627992, -0.05763271, -1.7671018, -0.015362098, 0.12310186, 0.06994716, 0.00019999998, 0.057982985, 0.06965707, -0.10985689, -9.110298, 0.09906901, -0.010099492, -0.05454829, 1.1427692, 0.055023234, 0.03211381, 0.09398581, 0.0004, 0.0070681474, -0.10843843, 0.032914087, -5.8406105, 0.062069956, 0.05099027, 0.10051341, 4.773365, 0.09676263, -0.08294716, -0.017674804, -0.00039999996, 0.0577923, 0.08411536, -0.078360006, 3.1240635, -0.0655141, 0.062265243, 0.043529674, 1.3037205, -0.026217656, 0.035418916, -0.09012228, 0.00049999997, -0.07130517, -0.07023126, -0.0068580224, 2.6996164, 0.08369374, -0.033413522, 0.109911434, 5.9480743, 0.08417481, 0.110378906, -0.030540576, 0.00040000002, -0.07817663, 0.08307624, 0.084784314, -1.0942588, 0.013475851, 0.036447506, 0.03460331, -1.8913392, 0.022724086, -0.03637319, 0.029462095, -0.0004, 0.044826623, 0.0074818595, -0.025337802, 5.8366675, -0.03310015, -0.05304488, -0.019944377, -5.215887, 0.05615876, -0.033799563, -0.003307688, -0.00039999996, -0.0075981054, -0.01873467, 0.062437482, 0.23486811, -0.010118001, 0.026548635, 0.0798092, -5.723236, 0.07076351, -0.040762648, 0.022530958, -0.0001, 0.045462765, 0.069356255, -0.017307792, 7.9969063, -0.1007389, 0.0043245037, -0.094922334, -5.0451465, -0.0051900935, -0.13838245, -0.0007963476, -0.00035881848, -0.09487894, 0.0029782392, 0.100828506, -5.09414, 0.008549848, 0.032745373, -0.08075801, 2.489632, -0.01503179, -0.07937528, -0.033776123, -0.00040000002, -0.08583799, 0.017161636, -0.0021290486, -4.9965353, -0.042726748, -0.09850221, 0.03384004, 7.4760075, -0.091979325, 0.052845664, 0.037690163, 0.00029999999, -0.048863456, -0.0133439, -0.10053711, 2.1541362, -0.038025916, -0.052863088, 0.021078074, -0.8961193, -0.02638943, 0.038838875, 0.049798597, 0.00049999997, -0.05042208, 0.019539684, -0.04195919, -1.8393359, 0.015967933, 0.08805299, 0.026061814, -6.0579057, -0.0644027, 0.029594861, -0.06053063, 0.00020000001, -0.06545867, -0.007637868, 0.06591165, 6.592607, -0.058150966, 0.06873194, -0.072349384, -4.2741632, -0.017815597, -0.08954181, -0.07074542, -0.00043478512, -0.09818919, -0.024458775, 0.0556839, 0.14227144, -0.018995505, -0.022415524, 0.09877855, 2.3672755, 0.029748175, 0.094833836, 0.027241053, 0.0004, -0.09682305, 0.033534657, -0.011009531, 5.0540175, -0.009667436, -0.015877174, 0.06446833, 9.103441, 0.045375504, 0.04597981, 0.018128188, 0.0001, -0.048469726, 0.046211287, 0.0041125063, 3.5632753, -3.56894e-05, -0.04537341, -0.029719166, 2.3343043, -0.022751682, -0.026965719, 0.04119693, -0.00049999997, -0.04923755, 0.012493206, -0.019014737, -1.219464, 0.08520678, -0.11097788, 0.0429028, -7.2247753, -0.11680646, -0.06797631, 0.056146335, -0.00034757185, -0.022649365, -0.06693331, -0.12815568, 0.41358474, 0.0010754843, 0.0033946245, 0.07478931, -2.9891558, 0.062792756, -0.040771227, 0.00094759936, -0.0004, 0.04076805, 0.062708095, -0.0034325167, 5.2475896, 0.09417088, 0.08654214, 0.0062001166, -8.980256, -0.05475894, 0.06637934, -0.09482289, 8.331526e-05, -0.06730113, 0.06708488, 0.08582725, -4.1709757, -0.13134234, 0.021857815, -0.07068031, 7.8596725, -0.06683556, -0.096812084, 0.09425876, -0.00018177832, -0.031725053, 0.11346342, 0.09404181, -5.328951, 0.0043253903, 0.02986324, -0.08331697, 0.29605207, 0.0577332, -0.064178444, -0.020006197, -0.00049999997, -0.06708508, -0.053306293, -0.022589227, 1.6889514, -0.10614536, -0.0751198, -0.012981263, -4.255183, 0.07286081, -0.106513694, 0.020602737, -0.0004, -0.022423204, 0.009496638, 0.12839529, -3.6328034, -0.0732148, 0.0512615, 0.11621346, 6.3556266, 0.101658836, -0.0567698, 0.0890864, -0.00039558974, 0.07614978, 0.12507264, -0.007194695, 2.7504911, -0.08569528, 0.0072161816, -0.06351076, -0.46243405, 0.06266177, 0.030452093, -0.08108972, 0.0004, 0.012617149, -0.10222508, -0.028639322, 5.535313, -0.009414212, -0.005668902, 0.13926704, 4.295892, -0.09588297, -0.10104595, -0.010594622, -0.00029999999, 0.10116276, -0.096299805, 0.0029185228, 7.358364, 0.049755868, -0.051048815, 0.032932036, 1.6542331, 0.057656456, 0.02627222, -0.046385888, 0.00047124876, 0.019137224, 0.053571805, 0.05412927, -3.5989976, 0.04017122, 0.12816055, 0.01336774, -5.2021422, 0.098359756, -0.021452961, -0.0899037, -0.00030040863, -0.08324168, 0.036499247, -0.099780634, -5.468921, -0.08681031, -0.11580788, 0.020223815, 7.172942, 0.0981337, -0.08522748, -0.06680231, -0.00029999999, 0.064732105, -0.026101865, 0.12839371, -3.9566107, 0.071072966, 0.035093017, -0.020504337, 6.7199745, 0.017811695, -0.06401924, -0.04782881, -0.0003820062, -0.036533415, 0.0370585, -0.06320831, 2.0243876, 0.026020491, -0.08172088, -0.012664524, -3.772053, 0.007986534, 0.015697923, -0.084885515, 0.0004929598, 0.08230983, 0.024311138, 0.012240069, 0.111804605, -0.08256076, -0.057175077, 0.04016077, -4.89935, 0.018157529, 0.04247513, 0.09779736, 0.00040000002, -0.06746984, 0.08139432, -0.0228242, -2.8375392, 0.11332632, -0.029019667, 0.07748161, -4.090002, -0.081698045, -0.018482713, 0.11257093, -0.0004, -0.013075545, -0.13603179, -0.031824224, 2.6412928, 0.06860121, -0.07928619, 0.029576538, 6.782686, 0.054876596, 0.0706644, 0.06214741, 9.3904484e-05, -0.0644176, -0.024237296, 0.084440045, -7.2026834, 0.01821219, -0.10171158, 0.052684646, -1.5340594, 0.07281118, -0.030902978, -0.08483005, -0.00040469875, 0.08842764, 0.046393555, 0.05899821, 4.2689047, 0.05488503, -0.024142493, -0.0015927262, -6.5816755, -0.021872519, -0.051197123, 0.022320712, -0.00029999999, -0.010343555, -0.01984344, -0.055650808, -4.2038956, 0.13032812, -0.01667847, -0.026766287, 7.3355722, 0.022409106, 0.12905133, 0.028698768, 0.000100000005, 0.022190915, -0.03236691, 0.12821844, -6.5022087, 0.00053345936, -0.05319845, -0.02815297, 0.26607266, -0.048205204, 0.01648087, -0.032056022, 0.0004, 0.036040578, 0.022831015, -0.042459052, -5.340238, -0.079793125, -0.05479286, 0.021939205, -2.5233889, 0.00094709365, -0.03807638, -0.091650516, -0.00040000002, 0.059014298, -0.07347426, 0.03113483, 4.063888, 0.09595268, -0.011042107, -0.053726334, -3.3516657, 0.05214032, -0.01523971, 0.09625227, -0.00029999999, -0.017024506, -0.10890907, -0.008021415, -7.6784277, 0.05838339, 0.0054077427, -0.102808736, -0.666288, 0.096891314, 0.03706352, 0.05697253, 0.00036384744, 0.034798753, -0.11227001, 0.013856231, -7.105498, 0.027875554, -0.018186683, -0.040784765, 0.85640305, 0.020937905, -0.037143365, 0.030873528, -0.0004402583, -0.039443083, -0.032570176, -0.012434903, 4.1447964, 0.06166869, -0.07262984, -0.0032149937, -9.236284, 0.052511692, 0.047415156, -0.063896656, 0.00020000001, 0.05027875, 0.039562196, 0.070677705, 0.39345354, 0.005883164, -0.012264619, -0.1080335, 2.8263507, 0.0019561078, 0.10818596, -0.0121754045, 0.00049999997, 0.10870986, -0.001282944, 0.0060656504, -1.6471484, -0.011916483, 0.111375, 0.030951403, -8.015054, -0.019218573, -0.03259124, 0.109876476, -0.00023905326, 0.11398696, 0.0061484277, 0.021761268, 3.9052632, -0.02089113, -0.1349931, 0.042260718, -2.8768299, 0.039731883, -0.046599302, -0.12921077, -0.00039999996, 0.13575894, -0.007135292, 0.044318736, 5.4601007, -0.058341358, -0.03917068, -0.015046804, 3.7110612, 0.02800371, -0.05553726, 0.035998162, -0.0003711184, -0.031249646, 0.023360938, 0.060350552, -6.032283, 0.043818183, -0.044786233, -0.04663754, -3.6487498, -0.059345864, -0.05022223, -0.007529639, -0.00034823111, -0.025669716, 0.039658815, -0.062202446, 6.244647, -0.048190206, 0.014958827, 0.08329376, -5.5366287, -0.067252144, -0.064952366, -0.027244344, -0.00029999999, 0.051368926, -0.07100238, 0.042471275, -6.334546, 0.104358464, -0.010614259, -0.107783645, 3.4035518, 0.107439436, 0.029031452, 0.101166256, 0.00045824214, 0.013665481, -0.14719096, 0.027726203, -2.2444336, 0.07198066, 0.103745244, -0.010302573, 6.896371, 0.070304744, -0.057547193, -0.088294946, -0.00029999999, -0.07698351, 0.044448614, -0.090267904, 4.3013477, 0.034090355, 0.11871511, -0.06238111, 4.379428, -0.05962987, 0.0710706, 0.1026649, 0.0004, 0.12012061, 0.0015891511, 0.06866839, 2.405707, 0.031000534, -0.097680524, 0.07178916, -7.4322243, -0.09262497, -0.06688951, -0.051015772, -0.00029999999, 0.07820347, -0.040503196, -0.08888145, -2.2705214, 0.019651689, 0.04398298, 0.02290117, 2.772377, -0.0044132737, -0.022984922, 0.047930904, -0.00039999996, 0.04939119, -0.019553663, -0.004829086, 3.8627572, 0.112187065, -0.093915515, 0.0030088513, 3.326268, -0.089469425, -0.10533456, 0.048114114, -0.00044107335, -0.028712273, -0.03872503, -0.13817051, -2.601885, 0.051117405, -0.07881821, -0.007745871, 3.594053, -0.074886106, -0.045102227, -0.035258424, -0.0004, 0.025775548, 0.025274035, -0.08707549, 5.7765293, 0.027547013, -0.020319454, 0.108951725, 5.6756716, 0.07379076, -0.08040306, -0.033652168, -0.0004, 0.082693905, 0.07851537, -0.006264982, 2.0933096, -0.016837489, -0.023581633, 0.06395242, 1.3939128, -0.06271448, -0.02044467, -0.024050267, -0.00020348429, 0.026700165, -0.062892206, -0.016161023, -8.962636, 0.07770717, 0.012625991, -0.07704691, -8.903596, -0.06649182, -0.04627197, -0.07464441, -3.405395e-05, -0.0409204, 0.09916417, -0.025020633, 4.437107, 0.006717497, -0.056187097, -0.101822145, 5.361302, -0.09343987, 0.05811321, -0.03823227, 0.00029999999, 0.06923674, 0.08387929, -0.041718163, 5.6657243, -0.030381648, -0.078660995, -0.029903794, -0.51735985, 0.08407149, -0.029773338, -0.0070970897, -0.0004, -0.0037115589, -0.0305095, 0.08402515, 5.247738, -0.10663725, -0.0037500276, -0.046089895, -4.497962, -0.015918525, 0.11174539, 0.027738392, 0.00020000001, 0.043415908, 0.03176092, -0.103034675, 7.6946735, 0.08446376, 0.010992658, 0.02027172, -7.4131217, -0.0010035954, -0.07514206, 0.044928525, -0.0003159091, 0.023038534, -0.043574534, -0.07236294, -0.7575929, 0.027741719, 0.05264293, 0.024468899, 7.9034038, -0.021600457, 0.034532703, -0.04980483, 0.0002, -0.05388344, 0.013259791, 0.032563176, 3.869884, 0.041443348, -0.05545709, 0.008385285, 2.4113448, -0.052250247, -0.04196423, -0.019294262, -0.00049999997, 0.020389033, 0.005183505, -0.066488884, 2.6690426, 0.08036661, 0.019481787, -0.03784547, -8.544221, -0.041783158, 0.0515381, -0.062198102, 0.0002, 0.008123267, 0.07235259, 0.054495204, 2.5676925) + +[sub_resource type="PlaneMesh" id="PlaneMesh_antnu"] +size = Vector2(1.53, 16.245) + +[sub_resource type="MultiMesh" id="MultiMesh_jcdon"] +transform_format = 1 +instance_count = 320 +mesh = ExtResource("12_0dh60") +buffer = PackedFloat32Array(0.71636903, 0.12257784, -0.058857758, -4.8250084, -0.113522455, 0.7128748, 0.10293788, 0.00049999997, 0.07484789, -0.09196862, 0.7194537, 0.7313272, 0.59504205, -0.123208895, 0.59091216, 0.20423184, 0.0025623387, -0.829236, -0.17548114, 0.00041381578, 0.603615, 0.124979064, -0.58177465, 4.6412926, -0.0038570676, 0.026957387, -0.69110715, -1.4790478, 0.059567116, -0.688537, -0.027189575, 0.000392264, -0.6890629, -0.05967256, 0.0015180755, -4.2885666, 0.6201704, 0.06721881, -1.2316219, -0.33928874, 0.052760433, 1.3758286, 0.101656206, 0.00049999997, 1.2323259, -0.0927323, 0.6154638, -2.333599, 0.26462498, -0.1247987, -0.74338865, 0.8680881, -0.23029146, -0.7635824, 0.046211664, 0.00047926634, -0.71775156, 0.19898483, -0.28890407, -4.904174, -0.0772076, 0.2056396, -1.1979921, 1.7019165, -0.029205563, -1.2003736, -0.20416617, -0.00010922869, -1.2151624, 0.015784442, 0.081023626, -1.0248165, -0.27833804, -0.0897862, 0.41963243, 2.082278, 0.07606838, -0.5025741, -0.057077345, 0.00030982678, 0.42233452, 0.03134737, 0.2868376, -3.5518663, 0.29955682, -0.2550466, 1.2740688, 0.73696244, 0.33404353, 1.2786592, 0.17742579, 0.00049999997, -1.2556732, 0.27931386, 0.3511455, -4.650709, -0.2455991, -0.09114401, 0.6585961, 2.3662753, -0.16953433, 0.6874696, 0.0319183, 0.00049999997, -0.6428953, -0.14646988, -0.26001424, -3.29071, 0.44047564, 0.03355216, 0.43648547, 4.342947, 0.04317317, -0.6195027, 0.0040526604, 0.00043210937, 0.43563902, 0.027469972, -0.4417331, 1.9008675, -1.0211859, 0.21761152, 0.12417486, -2.5642302, -0.2096384, -1.0275074, 0.07664778, 0.00048163522, 0.13720755, 0.04968252, 1.0412977, 4.281363, 1.153647, 0.14582874, 0.37483642, 3.2588148, -0.05348743, 1.1841271, -0.29606026, 0.00049999997, -0.39863196, 0.2631474, 1.124507, -0.076069094, 0.30028117, 0.10989448, -1.2128687, -1.849918, 0.24206915, 1.2188814, 0.1703706, 0.00049999997, 1.1935364, -0.27485782, 0.27059075, 2.5311584, 0.4641752, -0.041520927, -0.2725134, -0.7926957, 0.08569101, 0.5289908, 0.06535991, 0.00049999997, 0.26200113, -0.099452905, 0.46142244, -0.71075094, 0.5587131, -0.030015573, 0.17546111, 1.4602605, -0.041623477, -0.583995, 0.032637637, 0.00035362158, 0.17307524, -0.043552205, -0.55856603, 4.0866404, -0.041816365, -0.009986077, 0.52937496, -1.2393448, -0.04211913, 0.52940327, 0.00665954, 0.00049999997, -0.52779114, -0.04145659, -0.042473298, -4.6593714, -0.12831703, -0.23385428, 0.73545015, -3.8981273, 0.025480116, -0.7464242, -0.23289816, 0.000429529, 0.7713142, -0.01424647, 0.1300443, 2.676876, 0.30826136, 0.16263047, 0.5253324, -0.031218601, 0.00784037, -0.60347486, 0.18222085, 0.00024999742, 0.54987395, -0.082566604, -0.29710147, 3.8159537, -1.1763977, -0.2844826, 0.43734136, 4.1097, -0.37071866, 1.214844, -0.2069564, 0.00049999997, -0.36710417, -0.31517124, -1.1924809, -0.22288035, -0.25533655, 0.062146902, -0.5841691, 0.6301036, 0.11855546, -0.6184055, -0.11760897, -0.00025835342, -0.5753785, -0.1550001, 0.23500462, 1.0546079, 1.3385475, 0.34178618, -0.51596445, -3.8289404, 0.3667324, -1.4283651, 0.005219822, 0.00033065042, -0.49854237, -0.13304913, -1.3814846, 1.7812512, 0.5178302, 0.07918303, -0.7921038, -1.4298425, 0.16572632, 0.91351867, 0.19966228, 0.00049999997, 0.7786098, -0.2471038, 0.48430672, -0.017665537, -1.2275001, -0.29275143, 0.7179186, -0.21060914, 0.2909212, -1.420058, -0.08165019, -0.00023429305, 0.71866214, 0.07482326, 1.2592827, -1.3343629, 1.0318637, 0.22763844, 0.53376824, 0.7316974, 0.27506626, -1.1507076, -0.041002236, 0.0004209284, 0.51094645, 0.15976045, -1.0558792, -4.624591, 0.65717655, 0.30578735, -1.1196398, -2.6142364, -0.21718608, 1.2963325, 0.2265662, 0.00049999997, 1.1401443, 0.070683226, 0.6885163, 0.11546472, -0.36710143, 0.024007672, -0.75300306, -0.77142966, 0.12067047, -0.8249515, -0.08513041, 6.9838497e-06, -0.74365896, -0.14571269, 0.35790032, -2.4614153, 0.9383666, 0.06461818, 0.9884557, -1.1296601, -0.1554431, -1.3350799, 0.23484407, -0.0001786417, 0.97829324, -0.27411467, -0.9107993, 1.1810489, 0.73008037, 0.10365648, 1.2660195, -3.9241662, 0.057498872, -1.4614307, 0.08649783, 0.00034802034, 1.268954, 0.006582634, -0.73231155, 1.7864467, -0.50617653, 0.023640582, -0.38557076, 1.2345864, 0.028317895, -0.6315661, -0.07589902, 0.0004697455, -0.38525543, -0.077483475, 0.5010117, -4.7731113, -0.78524613, 0.4172759, 1.0408843, -4.5368576, -0.06891103, -1.2862531, 0.4636541, 0.00042015038, 1.1192902, 0.21355258, 0.7587857, 1.1401271, -0.95199984, -0.2706905, -0.8368817, 0.39578927, 0.27346992, -1.2631934, 0.097494185, -0.00040753282, -0.8359777, -0.104964584, 0.98492223, -0.25404716, -0.33349034, 0.07427211, -1.2790366, 1.4294319, -0.06015297, 1.3192918, 0.09229368, 0.00049999997, 1.2797785, 0.08136437, -0.328959, -2.583881, -0.6914131, 0.090153225, -1.069442, 1.0356902, -0.26457247, 1.2185788, 0.27377608, 0.00049999997, 1.0401133, 0.36989778, -0.6412694, -2.4738276, 1.3404579, 0.33672413, -0.5525399, 2.5388227, -0.29077643, 1.4489393, 0.17757887, 0.00049999997, 0.578042, -0.051980894, 1.370648, 1.1252084, -0.47506797, -0.028380942, 0.321506, 2.6071534, -0.07989487, 0.564646, -0.0682112, 0.00049999997, -0.3127113, -0.101145834, -0.47100133, -3.8565152, 1.0806355, -0.079857886, 0.5194598, -1.4139541, 0.0013059084, 1.1881123, 0.17993487, 0.00049999997, -0.5255607, -0.16124819, 1.0685383, 4.370907, 0.17327246, -0.04203144, 0.6428174, 1.5235925, -0.12013464, -0.65609545, -0.010517175, 0.0003085788, 0.6328891, -0.11303229, -0.17798698, 3.8207479, -0.067954615, -0.33175284, 1.3100551, 3.047537, -0.0038164416, 1.3117522, 0.33198464, 0.00049999997, -1.351403, 0.012977549, -0.06681295, 2.6720529, 0.46169105, -0.031390402, -0.35661203, 2.4474914, -0.091856994, -0.5728757, -0.06849671, 0.00047388603, -0.3460055, 0.11020052, -0.45765942, -4.305393, -0.5462205, -0.09246339, -0.21044077, 1.7989869, 0.03461182, -0.56945235, 0.16036727, 0.00031848744, -0.22723737, 0.13552178, 0.5302723, -3.7521534, 1.2718015, -0.3965927, 0.23297183, -2.0323296, -0.36498162, -1.2870251, -0.19848223, 0.0003937474, 0.27991095, 0.123777755, -1.3173342, 4.0650487, -1.4744855, -0.06204845, -0.013359679, 3.2492778, -0.06255946, 1.473206, 0.06234265, 0.00049999997, 0.010714802, 0.06285127, -1.4744731, -2.6145985, 1.2634926, -0.036454614, 0.010876042, 2.8020196, -0.037149165, -1.2601808, 0.091789015, 0.00016291386, 0.00819541, -0.09206707, -1.2606813, 1.8793827, -0.89914626, 0.2279107, 0.121080674, 2.3834248, -0.2181749, -0.9057058, 0.084644884, 0.00016172542, 0.13785331, 0.053120237, 0.92371124, -2.379691, 0.6711654, -0.049789373, 1.0309876, -3.8639464, -0.2311986, -1.2057817, 0.09227791, 0.0004749573, 1.0059631, -0.24390371, -0.66665345, 3.1106377, -0.51426387, -0.066034086, -0.18706699, -2.3985343, -0.11458706, 0.52316815, 0.13033327, 0.00049999997, 0.16193946, 0.16048819, -0.50183773, -4.018753, 0.83173656, 0.30524102, 1.0429015, -3.0552552, 0.06588774, -1.3250831, 0.3352842, 0.00012104959, 1.0846539, -0.15357283, -0.8200871, -0.79693145, -0.11433965, -0.15870701, 0.7176789, 4.892909, 0.09395355, -0.72350824, -0.14502756, 0.0004634574, 0.728988, 0.06835457, 0.13125728, 0.22580658, 0.50868255, 0.16340457, 0.40952513, 1.3348771, -0.16137229, 0.65085924, -0.059254203, 0.00049999997, -0.41033018, -0.053395055, 0.53098774, 4.583995, -0.94689983, 0.084429495, -0.16188654, -0.5977683, 0.12023392, 0.93181705, -0.21729186, 0.00049999997, 0.13740231, -0.23354572, -0.92549, -2.264008, 0.31787226, 0.06855568, 0.43376213, 2.241258, 0.12044812, -0.52854717, -0.004731167, 0.00010843603, 0.4223053, 0.09914762, -0.32514653, 2.133155, 0.4771551, 0.101439476, -0.20398152, 3.112741, 0.0893574, -0.5188358, -0.048990216, 0.00011722244, -0.20955592, 0.009737456, -0.48535234, -0.40091792, 0.23646745, 0.12895189, -0.80028045, 2.6944733, -0.0011918133, -0.83358085, -0.13466981, 6.348507e-05, -0.81060237, 0.03884318, -0.23325834, -0.97270596, -1.2313713, -0.0723222, -0.550872, -0.08386266, 0.09645588, -1.3469068, -0.038778026, 0.00041320064, -0.5471624, -0.07467913, 1.2328836, -4.644073, 0.5528198, 0.04392732, -1.0519427, -1.5624173, 0.079819985, -1.1864628, -0.0075974325, 0.0004389973, -1.0498295, -0.06707713, -0.5545102, -4.5110574, 0.38239297, -0.21527186, -0.8134735, -2.9167824, -0.019512538, 0.89101994, -0.24496561, 0.00049999997, 0.8412492, 0.118519574, 0.3640855, -0.7427292, -0.027569022, -0.16318159, -0.73556334, -4.1436534, -0.036812264, 0.73546827, -0.16178079, 0.00049999997, 0.75254667, 0.029998798, -0.034860615, -2.5630758, -0.92181605, -0.19064273, -0.86474586, 0.028409833, -0.027773034, -1.241418, 0.30329022, 0.00034306827, -0.8850756, 0.23751135, 0.8911254, -4.2898226, 0.7698918, -0.123916164, 0.49783468, 4.837639, 0.12789346, 0.9157846, 0.030163413, 0.00049999997, -0.4968278, 0.043718997, 0.7792168, -0.8417084, 0.034145392, 0.054283503, 1.0632215, -0.08280229, -0.046982843, -1.0626549, 0.05576343, 0.000117882155, 1.0635691, -0.048685204, -0.031670902, 3.1409535, 0.48694628, -0.08341334, 0.08617388, 0.55431426, -0.062503085, -0.48403534, -0.115340784, -0.00010046396, 0.10235763, 0.10125388, -0.4803862, 1.9550679, 0.33799192, -0.0961099, -1.0883603, -2.3637552, 0.31779745, 1.098638, 0.0016749373, 0.0005, 1.0453564, -0.3029206, 0.35138696, -1.5836058, -0.27218577, -0.00023751611, 1.0461133, -2.8935714, 0.20242578, -1.0605251, 0.0524279, 7.222537e-05, 1.0263416, 0.20910484, 0.26708886, 0.31939042, 0.46721298, 0.10002934, -0.4650078, 3.1784105, 0.18064056, -0.64029694, 0.043760873, 0.00020455878, -0.44000807, -0.156653, -0.47579286, 1.657401, 0.07705127, 0.08013764, -0.8183651, 0.9034666, 0.10628726, -0.81602526, -0.06990127, 0.00021297327, -0.8153813, -0.09879843, -0.08644506, -3.5103583, 0.7684751, -0.026351063, 0.9576219, 3.582203, 0.01812101, -1.2270396, -0.048306488, 0.0002511659, 0.9578128, 0.044356618, -0.7674081, 1.3239217, 0.19245344, -0.11738806, -0.90832365, 2.0310886, 0.09507405, 0.92570657, -0.09949049, 0.00049999997, 0.9109296, -0.071815595, 0.20228668, 4.3995132, 0.67173773, 0.15068576, 0.91427493, -2.870175, 0.010735848, -1.1304363, 0.17842436, 7.793037e-05, 0.92654705, -0.09614741, -0.66490793, 0.6335961, 0.66981095, 0.13187005, -0.751943, 0.9378543, 0.2702601, -0.9765171, 0.069486395, -0.00019906193, -0.7139801, -0.24592511, -0.6791229, 1.2091722, -0.6591945, 0.13116498, -0.4209398, 0.2574974, 0.122642055, 0.7818139, 0.05155522, 0.00049999997, 0.4235015, -0.022243176, -0.67013717, -1.1361288, 0.28142455, 0.13025036, -0.4129505, 0.6149661, -0.03360308, -0.4844506, -0.1757029, -0.00037877462, -0.43169907, 0.122619405, -0.25552586, -0.042182483, -0.8113908, -0.15597682, -0.11996284, 0.53672576, 0.17520523, -0.80436605, -0.13918924, 0.00027035244, -0.08957099, -0.16044247, 0.8144386, -3.8796184, 1.2007954, -0.04175257, 0.2220522, -3.1646903, 0.00013398254, 1.2009553, 0.22509159, 0.00049999997, -0.22594345, -0.22118536, 1.1802484, 0.37508267, -0.32163173, 0.12968604, 0.36244512, 1.5111628, 0.007444428, 0.47431275, -0.16310711, 0.00049999997, -0.384876, -0.09920122, -0.30604178, -3.6810937, 0.6906034, 0.18580908, 1.0507829, 3.7699313, 0.18080285, -1.2539235, 0.10290166, 0.00026621445, 1.0516559, 0.093559675, -0.7077212, 0.98119056, -0.49559438, 0.22427957, 1.369206, 3.0971463, -0.08895886, 1.4458045, -0.269026, 0.00049999997, -1.3845981, -0.17316851, -0.4728003, -3.1390235, 0.15957977, -0.22705443, -0.9677246, -1.3624487, -0.08682752, 0.97318584, -0.24265377, 0.00049999997, 0.9902048, 0.121926874, 0.13467935, 1.3438271, -0.050155237, -0.06903827, -1.1297854, 1.9726264, 0.27591, -1.0975269, 0.054818403, 0.00041355676, -1.0977498, -0.27269962, 0.06539707, -4.2046814, 1.1631349, 0.06379079, -0.19400805, 1.2417219, -0.04477488, 1.1742003, 0.11764425, 0.00049999997, 0.19925763, -0.10851588, 1.1589271, 0.029747253, -0.6029543, 0.18929559, 0.9718791, -2.3192441, 0.05957658, -1.1289018, 0.25684068, -1.3391924e-05, 0.98834836, 0.18353117, 0.577425, 0.8612535, 0.14928927, 0.10482612, -0.5086046, 3.6857226, -0.09012261, -0.51594424, -0.1327923, 0.00022577666, -0.51141477, 0.121521056, -0.12506798, 0.17267567, -0.17023562, -0.068596244, 0.791095, 4.867746, 0.122248106, 0.797161, 0.09542878, 0.00049999997, -0.78459686, 0.13908921, -0.1567768, 1.1075634, 1.0836166, -0.21363562, 0.013042688, 0.002393865, -0.21315208, -1.0832514, -0.03418305, -7.769478e-05, 0.019402621, 0.031018233, -1.1039459, 2.149416, 0.5507137, -0.07366319, 0.47225767, 0.47059673, 0.08330636, 0.7242574, 0.01582433, 0.00049999997, -0.47065237, 0.0420011, 0.55539304, 2.5602686, -0.36707693, -0.014744242, -0.5276228, -2.49313, -0.046218045, -0.6393048, 0.050019898, 0.00039333687, -0.5258014, 0.066488385, 0.36395174, -3.8006067, -0.6513964, -0.11215979, 0.14223397, -0.9452286, 0.122057185, -0.66406393, 0.03533855, -0.00031133447, 0.13383707, 0.05972395, 0.6600365, 0.16442268, 0.89403635, -0.10131627, -0.65813583, 5.044074, -0.23227164, -1.080037, -0.14926103, 0.00049468334, -0.6240654, 0.25683454, -0.8872922, 0.38413692, -0.19818163, -0.028303174, -1.1835731, 3.8714402, -0.20824857, -1.1804972, 0.063099466, 0.00047860586, -1.1654522, 0.2157497, 0.1899881, -3.1316721, 0.63919634, -0.09722249, -0.33535096, -2.6798744, 0.0844605, 0.7218173, -0.04827783, 0.00049999997, 0.33879036, 0.0034806398, 0.64474297, -1.5863949, 0.7506849, 0.12227643, -0.3663889, 0.91281337, -0.019216213, 0.8116394, 0.23150007, 0.00049999997, 0.38577592, -0.19750957, 0.72449076, 0.35860804, -0.4482094, -0.26850358, -1.2285293, -0.13622248, 0.16506854, -1.3055078, 0.22510508, 0.00038881926, -1.246648, -0.07632662, 0.47150132, -4.5174003, 1.2702022, -0.28531212, 0.10528078, 2.2546122, -0.29261655, -1.2697631, 0.08931689, 0.000223811, 0.082840644, -0.11044884, -1.2987837, -2.9091763, -0.26178795, -0.20628835, 1.1524544, -0.9589037, -0.11420041, -1.1707826, -0.23551051, 0.00031734092, 1.1651883, -0.16109641, 0.2358445, -4.0434666, 0.8410983, 0.0889756, -0.2819608, 0.5652151, 0.15669043, -0.85515076, 0.19756141, 0.00017013386, -0.25073215, -0.23593593, -0.8223944, -3.360301, 0.023384407, -0.18098678, 0.6556373, -2.0833337, 0.055171147, -0.6533583, -0.18232536, -8.494165e-05, 0.6779179, 0.059415434, -0.007777613, 0.3361989, 0.55445606, -0.18278366, 1.3172587, -1.9980062, 0.007871972, -1.4266838, -0.20128097, -5.3412354e-05, 1.3298568, 0.084652975, -0.5480122, -1.0827818, 1.4550977, -0.042665422, 0.13266498, 0.248784, -0.02336895, -1.4465626, -0.20890284, -0.00043450436, 0.13738349, 0.20583041, -1.4406561, -0.22130963, -0.22103025, -0.14720745, 0.6810964, 4.2024636, 0.08375181, 0.7037472, 0.1792823, 0.00049999997, -0.6917716, 0.13223644, -0.19591393, -1.579202, 0.8858843, 0.11692295, -0.5484678, 0.46967757, -0.1640408, 1.0346005, -0.044401214, 0.00049999997, 0.53626347, 0.123328365, 0.8924631, 2.0370495, -0.59999937, 0.13061492, 0.40664688, -1.1990243, -0.18392241, -0.71187705, -0.04271902, 0.00032779085, 0.38547972, -0.13635285, 0.61256397, 4.038078, 0.8123108, -0.0009363815, 0.4054062, 0.06577149, -0.013640666, 0.9072772, 0.029427318, 0.00049999997, -0.40517777, -0.032421567, 0.8117782, 3.0270402, 0.70783466, 0.11697655, -0.55853444, -3.176804, -0.057186697, 0.8999696, 0.116011776, 0.00049999997, 0.5677798, -0.055186458, 0.70799345, -3.4159327, -0.23445737, 0.13675389, -0.5144385, -2.1730428, 0.06442043, 0.565287, 0.12091113, 0.00049999997, 0.5283924, -0.008238334, -0.24300699, 0.9959896, -0.5274612, -0.03531718, 0.28638065, -2.2622483, 0.082188725, -0.59037983, 0.0785696, 0.00011631934, 0.2765975, 0.108078055, 0.5227708, 2.1696699, -0.5705469, -0.12164707, -0.85640806, 2.2261677, -0.08829053, 1.0287558, -0.08730796, 0.00049999997, 0.86048675, 0.02489758, -0.57680064, -2.3636456, 0.8477905, -0.14996965, -0.400308, 3.3539221, -0.15281753, -0.9366904, 0.027273694, 0.00048418672, -0.39922956, 0.040076952, -0.86052036, 3.712983, 0.8403169, -0.1112992, 0.99392897, 1.7700844, 0.036245897, 1.3007205, 0.11500933, 0.00049999997, -0.99948394, -0.046404757, 0.83981705, 3.8073187, -0.09900051, -0.20314723, -0.6534599, 1.960902, 0.10820358, -0.65660375, 0.18773161, -0.000108164786, -0.6757002, -0.07538135, 0.12580448, -0.356973, -0.69235146, 0.0058297194, 0.99031055, 0.7650725, 0.256554, 1.16813, 0.17248699, 0.00049999997, -0.9565192, 0.30909184, -0.67054665, -0.34076276, 0.59411633, -0.050267488, -0.9320378, -0.18452859, 0.28685147, 1.0611937, 0.12561682, 0.00049999997, 0.8882215, -0.30908984, 0.58285624, 1.7320483, -1.0679072, -0.32402205, -0.73044133, -2.135848, -0.16739808, 1.2828649, -0.32433942, 0.00049999997, 0.7813531, -0.1680116, -1.0678108, -0.5283914, -1.0279669, 0.16609481, -0.6978242, 2.0823817, -0.0001584039, 1.219381, 0.29046813, 0.00049999997, 0.7173186, 0.23829453, -0.99996585, -3.0501704, 0.33105552, 0.06720225, 1.0404173, 1.3927096, 0.16415381, 1.0746338, -0.12164527, 0.00049999997, -1.0295814, 0.19294533, 0.315145, 2.2721572, 0.5405424, -0.09145205, -0.9956959, -4.669765, -0.15810415, 1.1098231, -0.18776575, 0.00049999997, 0.9873079, 0.22779255, 0.5150666, -1.7681026, 0.84719557, -0.08793341, 0.12590197, 5.0516195, -0.057003632, -0.8355159, -0.19996934, 0.00049254455, 0.14259796, 0.18842736, -0.82794005, -0.00880324, -1.0684499, -0.1984354, 0.26084918, 2.7959354, -0.23375675, 1.0848423, -0.13220756, 0.00049999997, -0.22973172, -0.18095426, -1.0786484, 0.8066883, -0.117138885, -0.0564966, -1.2125188, 0.28574178, -0.2485561, -1.191223, 0.079516806, 0.00012694536, -1.1881136, 0.25477675, 0.102909945, -3.1771178, -0.5857527, 0.105251685, 0.09922544, -1.9122039, -0.10205674, -0.5940129, 0.02762232, 0.0002687956, 0.10250865, 0.010032719, 0.59449244, -3.4106114, -1.4540033, -0.32100525, 0.08088896, -1.7037807, -0.30361092, 1.438331, 0.25047383, 0.00049999997, -0.1319386, 0.22775507, -1.4677986, -3.545313, 0.27777687, 0.17064342, 0.52182907, -0.18179592, 0.1322987, -0.58838886, 0.12198475, -5.3653333e-05, 0.5328431, 0.05713181, -0.30232245, -2.2629776, 0.66860396, -0.02001269, -0.22081324, 3.5377548, -0.012546033, -0.7038232, 0.0258004, 0.0002936973, -0.22136301, -0.020556161, -0.6684056, -1.9463341, 0.43099934, -0.12701647, 0.76483524, 0.28152442, -0.23581748, -0.8550868, -0.009116929, 0.00047951165, 0.7385772, -0.1988965, -0.44923314, 4.971889, -0.5228074, -0.32755274, -0.9761672, -1.8788097, 0.1597046, -1.1073391, 0.28603423, 6.716176e-05, -1.017196, -0.005505416, 0.5466287, 2.188602, -0.6236235, -0.11053941, -0.24395375, -4.1839504, 0.14025481, -0.66144305, -0.058825403, 0.00046532744, -0.2281688, -0.10446472, 0.6306067, -2.5654838, 0.7218602, 0.11491715, 0.13913979, 0.19692525, -0.107493065, 0.7346331, -0.04906558, 0.00049999997, -0.14495197, 0.027499814, 0.72930145, 0.5374272, -0.19954911, 0.09601963, 0.91305625, 3.4863172, -0.19166198, -0.91814405, 0.054666813, 0.00038040272, 0.8978624, -0.17465112, 0.21459529, 2.8128343, 1.1851689, 0.23010033, -0.15026824, -0.54822063, -0.24632914, 1.1843926, -0.12918709, 0.00049999997, 0.121854916, 0.15627296, 1.2003676, -0.32429865, -1.2966787, -0.0914436, 0.11906725, 1.4883704, -0.07270458, 1.2882481, 0.19759895, 0.00049999997, -0.13135065, 0.18965596, -1.2847925, -2.7822595, 0.25943944, -0.0428557, 1.0845133, -0.16400279, 0.013225614, 1.1151084, 0.04090084, 0.00049999997, -1.085279, 0.0033443326, 0.2597548, -3.5445883, -1.0092262, -0.010473999, -0.5858414, 2.241925, -0.017181864, 1.1668273, 0.008737927, 0.00049999997, 0.58568305, 0.016182186, -1.0092429, -0.71430784, 0.881642, -0.08768198, -1.0210788, 1.8395051, -0.38746098, -1.2754692, -0.22502303, 0.00029048373, -0.9487698, 0.43940103, -0.85693955, 3.575511, -0.50078404, -0.094853684, -0.7019173, -0.13309267, 0.16724767, -0.8511635, -0.0043010046, -5.6818782e-05, -0.68826824, -0.1378153, 0.5096697, -2.2492566, 0.47669387, -0.11870785, -0.1121158, 2.7278416, 0.123633005, 0.48840606, 0.00853992, 0.00049999997, 0.10666014, -0.03558787, 0.49117783, 0.4715442, -1.16365, -0.3694587, -0.7175323, -3.4475791, 0.23202373, -1.3590277, 0.32348397, 0.00017860188, -0.7729924, 0.1482471, 1.177259, 0.13244627, -0.122341536, 0.1570281, -1.0297973, 0.93032944, -0.042796485, -1.0367572, -0.1530051, -0.00028019105, -1.0408213, 0.02417179, 0.12733695, -0.6214626, 0.39210877, 0.10408348, -1.2100487, 0.40276468, 0.07918288, -1.2710351, -0.08367053, 8.911469e-06, -1.2119329, -0.049369216, -0.3969659, -2.5558093, -1.1024201, 0.18047746, -0.4917596, -1.57915, -0.2673428, -1.179202, 0.16655442, -0.00018924125, -0.4504746, 0.25814807, 1.1046094, 0.053200096, 0.55976677, -0.13685852, 1.0519646, 3.8437471, 0.013423389, 1.1902527, 0.14770672, 0.00049999997, -1.0607448, -0.057159487, 0.55700254, 0.2239061, -1.459737, 0.1293593, -0.20364639, 3.5492668, 0.080065526, 1.4378495, 0.33943442, 0.00049999997, 0.2275855, 0.3238709, -1.4256053, -2.7624373, -0.4996504, 0.026849894, -0.42055157, -3.975097, -0.047280364, 0.6446137, 0.09732805, 0.00049999997, 0.41874707, 0.10482017, -0.49081427, 1.4316543, 0.16462815, 0.1862759, 1.087993, 2.8721728, 0.18068868, 1.0806413, -0.21235788, 0.00049999997, -1.0889348, 0.20747422, 0.12924871, 2.3662295, 0.49206442, 0.04414079, -0.23405252, -2.1669924, 0.04637714, -0.5446818, -0.0052216705, 0.00035542538, -0.23361968, -0.015155717, -0.49401256, -3.7713852, 1.3476641, -0.0015642777, -0.13296591, -2.0051632, -0.0011509433, -1.3542014, 0.004266224, 0.00044560453, -0.13297002, -0.004132599, -1.3476582, -4.369521, -0.9114058, 0.048261363, -0.29381004, 1.4386317, -0.030318104, -0.9562546, -0.06302724, -0.00021650856, -0.29619983, -0.050620783, 0.9105039, -0.08838701, -1.4321163, -0.026349869, 0.21591866, 3.5539086, -0.0019995382, 1.4394081, 0.16239749, 0.00049999997, -0.2175113, 0.160258, -1.4231229, -1.4965272, -0.15742923, -0.16038984, 0.8550926, -3.5223095, -0.029997248, -0.86746204, -0.16823266, 0.00021469413, 0.8694875, -0.058967516, 0.1490189, -0.8917618, 0.7381548, 0.12231683, -0.27640647, 0.66785, 0.06950218, -0.778555, -0.15892175, -0.0002823294, -0.29416215, 0.122984864, -0.7311482, 0.88239753, -0.7586798, -0.060535435, -0.124967515, -1.7986848, 0.051327933, -0.76722705, 0.060039237, 0.00049204816, -0.12902279, 0.050741766, 0.75871927, 4.7129507, -0.57285714, -0.102430746, -0.5108767, 1.0718364, -0.032545954, 0.7648131, -0.11685047, 0.00049999997, 0.5200268, -0.0649709, -0.57009053, -4.561384, -0.8414383, -0.2869861, -0.7026421, 0.53122854, -0.26822668, 1.0937918, -0.12553596, 0.00049999997, 0.7100151, 0.073101334, -0.8801251, -4.024041, -0.84549373, -0.23689145, 0.98650426, -4.955644, 0.2935716, -1.2863522, -0.05728602, 0.00047799776, 0.97114563, 0.18261543, 0.8761824, -0.45540088, -0.82805693, -0.09951558, -0.22303423, 0.48865592, 0.084096104, -0.8563707, 0.06988086, -0.00033556542, -0.22929333, 0.045300603, 0.83108246, -0.67835253, 0.33524588, 0.091731384, -0.42436162, 0.48714453, 0.10793417, -0.53692555, -0.030795531, 0.00014427515, -0.4205326, -0.06468001, -0.34620237, 3.2389922, 0.68110704, 0.05456297, 0.17056367, 0.12052867, 0.052082688, -0.7021301, 0.016629748, -7.167305e-05, 0.17133728, -0.0034692336, -0.68308663, 2.1742656, -0.9400333, 0.25949952, -0.7654238, -2.12572, 0.17164536, 1.2113866, 0.19989178, 0.00049999997, 0.7897794, 0.0455942, -0.9544873, -0.004558972, -0.684801, 0.07571401, 0.24665838, -1.5044007, 0.025234668, 0.7158789, -0.14968616, 0.00049999997, -0.25678042, -0.13156793, -0.67251694, -3.8799896, -1.2055831, 0.11951793, 0.11192947, -2.2047906, 0.13383836, 1.1983765, 0.16193928, 0.00049999997, -0.094339974, 0.17277877, -1.2006211, -4.3530493, 0.11523653, -0.15004387, 0.6805699, -4.496217, 0.12497782, -0.6741794, -0.16979663, 0.0004532069, 0.6856159, 0.1481121, -0.08343698, 1.8183031, 1.051889, -0.093884625, 0.14983211, -1.1123691, 0.12064763, 1.0418618, -0.19417138, 0.00049999997, -0.12925994, 0.20843238, 1.0380665, 2.3115244, -0.32640302, -0.12750648, 0.8326067, -0.5725676, 0.12839429, -0.8900311, -0.0859667, -0.00034368222, 0.83247024, 0.08727807, 0.33971554, 0.55158156, -1.2684476, -0.44327027, -0.30570638, -1.2723516, -0.4408969, 1.3041179, -0.061569195, 0.00049999997, 0.30911964, 0.04113745, -1.3422582, -1.3671075, 0.66420346, -0.22130574, -0.18277997, -1.6587968, 0.19678666, 0.68653965, -0.11614384, 0.00049999997, 0.20894918, 0.05690477, 0.6904008, 3.8429513, 0.27766374, -0.15136896, 0.6754604, 1.8302741, 0.095069475, 0.72921807, 0.12433541, 0.00049999997, -0.6856538, 0.039811198, 0.29077557, -1.6794791, -1.2250212, -0.2883334, -0.09797611, 2.0042865, -0.298336, 1.2177763, 0.14638615, 0.00049999997, 0.061082717, 0.16521838, -1.2499536, -3.8978481, 0.5159761, 0.17935662, -0.8394757, 2.9591703, 0.080816604, -0.9852527, -0.16082898, 0.0004618652, -0.8546093, 0.015116786, -0.522048, 3.8934245, 0.40297997, -0.12727772, -0.7551009, -2.150939, -0.12526636, 0.83082676, -0.20689367, 0.00049999997, 0.7554372, 0.20566244, 0.3684936, -3.340695, 0.938787, -0.0047908346, 0.7488869, -0.05789054, 0.26564753, -1.1206629, -0.34017864, -0.00048370956, 0.7002041, 0.4315868, -0.87499845, 0.059298694, -0.7870979, 0.001502361, 0.013460854, -3.079438, 0.0036577464, 0.7768655, 0.12717444, 0.00049999997, -0.0130411405, 0.12721817, -0.77675736, -3.408796, 0.59091127, -0.076121815, 0.50800025, -2.1066403, -0.05023287, 0.76204574, 0.17262092, 0.00049999997, -0.5112098, -0.16287047, 0.57023907, 4.4427896, 0.91583496, -0.08672465, 0.1496685, 2.8668094, -0.12915078, -0.87929314, 0.28078327, 0.00044372978, 0.115073465, -0.2966446, -0.876034, -3.8471441, 0.5964652, 0.013386773, -0.21336375, -4.815931, 0.016579194, 0.6275753, 0.08572272, 0.00049999997, 0.21313946, -0.08627889, 0.5904249, -0.79467416, -0.800308, -0.108942136, 0.345492, -3.2892475, -0.03485707, 0.85708493, 0.18951605, 0.00049999997, -0.36058024, 0.15894325, -0.78514004, -0.9153708, -1.1357061, 0.014703487, -0.8055796, -2.279571, 0.13401304, -1.3694081, -0.21392614, 9.2842405e-05, -0.7944904, -0.25200728, 1.1154729, -1.9728401, -0.5994029, 0.12885143, -0.28869954, -2.7409978, -0.1172623, -0.66530013, -0.05347249, 0.00036270835, -0.2935978, 0.002659119, 0.6107596, 3.4275973, -0.5837221, -0.27027774, 1.1762258, 1.0897847, -0.18502715, -1.2710923, -0.38389927, 0.00039733504, 1.1926116, -0.32949004, 0.5161423, -4.429911, 0.51704556, 0.2477193, 1.3001397, 3.4242446, 0.14773019, -1.3979067, 0.20759714, 0.00021081403, 1.3152577, 0.059631538, -0.53441966, -1.1564697, 0.22402321, -0.2137649, 1.2288762, 1.1009947, 0.19837779, -1.2265413, -0.2495228, -0.00024347918, 1.2314538, 0.23647404, -0.18335806, 0.69977534, -0.5896059, 0.014076922, 1.3123007, -0.26746947, 0.23314007, -1.4146485, 0.11992272, 0.00041429122, 1.2915019, 0.26179686, 0.57745284, 4.640607, -0.48622927, -0.015839752, -0.12687017, -1.7892956, -0.013333229, -0.4898831, 0.11226142, 0.0003833411, -0.12715812, 0.11193527, 0.47335726, -4.1214504, 0.43957502, -0.19576325, -0.85311586, 0.060128465, 0.03351747, 0.9577202, -0.20249647, 0.00049999997, 0.87464654, 0.061684657, 0.43651417, 2.2220268, -0.70502114, -0.052790347, 1.2894686, 0.57636607, 0.26308048, -1.4443629, 0.08470846, -0.00029736772, 1.2634495, 0.27129322, 0.70190185, -0.85507536, -0.6461667, 0.32072097, 1.1253604, -2.7045426, -0.35248148, -1.2791747, 0.16216698, 0.0003724356, 1.1158202, -0.21835615, 0.702919, 3.5162125, -0.862216, -0.1477988, 0.43381822, 1.0079962, 0.11603501, -0.9645677, -0.09800114, -8.567914e-05, 0.44337186, -0.034983844, 0.8692851, -1.8515885, 1.2556916, 0.3789712, 0.5040733, -2.9042425, -0.4245029, 1.338526, 0.051147275, 0.00049999997, -0.4663759, -0.19798888, 1.3106351, 4.0696483, -0.81074834, 0.2399277, -0.019743614, 0.5105635, -0.24037054, -0.8106159, 0.019799253, -0.0001106557, -0.013306896, 0.024591621, 0.8452727, 1.9126192, 0.9892612, 0.06097473, -0.032498993, 1.6044836, 0.06842275, -0.9294121, 0.33900368, 1.2523189e-05, -0.009614305, -0.3404221, -0.9313603, 2.0540183, 0.73143244, 0.23218963, -0.636013, -1.2795591, -0.10122903, 0.9632423, 0.23523507, 0.00049999997, 0.6694605, -0.108031735, 0.7304587, -2.6484327, -0.7529924, -0.19545804, 0.12401919, 0.1889435, 0.14569055, -0.72814035, -0.262999, 8.139238e-05, 0.17988566, -0.22845215, 0.7321427, -2.9500077, 0.33100113, 0.18582773, -0.72926146, -1.4766163, -0.061009858, -0.7874346, -0.22834277, 0.00049240136, -0.75008786, 0.14605017, -0.303238, 4.830088, 0.440574, -0.08728759, 0.26730862, 1.7702389, 0.072217055, 0.51530427, 0.049241606, 0.00049999997, -0.27176774, -0.004573363, 0.44643015, 1.0447668, -0.49586916, -0.07921994, 0.109631255, 0.08928327, 0.09773889, -0.49784443, 0.0823351, -0.00025322704, 0.09349822, 0.10028043, 0.49536142, -1.2516906, 0.48397416, 0.38104102, 1.3570119, 4.5276537, -0.22078112, -1.3965752, 0.47089097, 0.00039335532, 1.3920954, -0.35396382, -0.39709562, 0.3975796, 0.18321584, 0.09749881, 0.8070121, 3.5835195, 0.08249641, 0.82075536, -0.117888354, 0.00049999997, -0.8086835, 0.10581731, 0.170811, 3.094905, -0.64099956, 0.17007065, 0.34095976, -1.0111241, -0.07108901, -0.7089525, 0.219979, 0.00014563627, 0.37433133, 0.15658984, 0.6256307, -3.12432, -0.5589387, -0.11474966, -0.5037555, -0.7378522, 0.023870682, -0.7470828, 0.14369118, -7.5816424e-06, -0.5161079, 0.08971894, 0.55220723, -2.3947818, 0.13208222, 0.17731367, -1.1237315, 0.47736943, -0.036359984, -1.1300439, -0.18258345, -0.00029113243, -1.1370534, 0.05673292, -0.124696195, -0.94886243, -0.17808387, 0.0589517, -0.63858193, 0.22937888, 0.029851789, -0.66126597, -0.0693707, 0.0003648399, -0.64060205, -0.04720297, 0.17428964, -4.3907704, 1.0579069, -0.1889387, 0.46534547, 3.8305879, -0.2594751, -1.1346322, 0.1292041, 0.00025423476, 0.43001974, -0.21982533, -1.0668511, -0.17241111, 1.0406336, 0.20421162, 0.46949452, -1.263347, -0.24930964, 1.1310228, 0.06064376, 0.00049999997, -0.44718257, -0.15534016, 1.0587459, 2.3708742, 1.2143753, 0.09170325, -0.64789724, -3.2125666, -0.2419012, 1.3319961, -0.26487297, 0.00049999997, 0.6080001, 0.34679157, 1.1886796, -1.7056422, -0.49079055, -0.13189614, 0.7922292, 2.5730085, -0.029774535, 0.9307925, 0.1365197, 0.00049999997, -0.80258155, 0.046125483, -0.48952457, 4.0005655, 0.69269186, 0.22123782, 0.40618762, 0.5213401, 0.20471452, -0.8025594, 0.08801912, 0.0002263246, 0.41476074, 0.02663205, -0.7218177, -3.6556091, -0.7260147, 0.04287305, 0.6409924, 1.8452941, 0.1827279, 0.94110346, 0.14401907, 0.00049999997, -0.6158896, 0.22867635, -0.7128772, -0.18030827, -1.4209845, -0.005320259, -0.077885054, -3.3582315, 0.0057950285, 1.4087126, -0.20195621, 0.00049999997, 0.077851124, -0.2019693, -1.4065697, 0.5845308, -0.5831708, -0.12121972, 0.06466495, 3.3610134, -0.109744094, 0.58065724, 0.09877918, 0.00049999997, -0.082655974, 0.084302284, -0.5873883, -2.8144608, 0.3310191, 0.018411284, 0.69335866, 2.715974, -0.19771612, 0.73890215, 0.074771784, 0.00049999997, -0.66482586, -0.21057898, 0.3229888, 1.5304798, 0.36357096, -0.0999408, -0.4306069, -4.0179524, 0.071356766, 0.5634956, -0.07053523, 0.00049999997, 0.43625528, -0.008879315, 0.3704008, 2.4724789, -0.6397511, -0.14729582, -1.1258805, -2.059845, 0.33784246, 1.2090669, -0.35014865, 0.00049999997, 1.0840507, -0.46373, -0.55531377, 3.7379813, -0.2332243, -0.13805316, 0.61637455, -0.5078537, 0.057440385, 0.6496906, 0.16724953, 0.00049999997, -0.62902844, 0.110513, -0.21326001, -0.91088414, 1.320481, -0.2629795, -0.5844723, 1.1864879, 0.34483045, 1.4198112, 0.14023057, 0.00049999997, 0.54023886, -0.26346627, 1.3390907, 2.285478, 0.15908119, -0.022194361, 1.025532, 4.3905897, -0.09691817, -1.0334742, -0.007332231, 0.00036395853, 1.0211835, -0.09462718, -0.16045454, -0.14170793, 0.5930277, 0.006321256, -0.1403018, -1.1981723, 0.043629542, -0.5869834, 0.157967, -9.006632e-05, -0.13349544, -0.16375946, -0.5716365, 1.7060138, -0.49435872, 0.046594743, -0.62671775, -1.7259994, 0.18003835, 0.77446324, -0.084436074, 0.00049999997, 0.60210663, -0.19331886, -0.48931792, 0.9890979, -0.5124787, 0.0030383596, -1.240503, -3.257215, 0.3645772, 1.2832875, -0.14747162, 0.00049999997, 1.1857235, -0.3932622, -0.4908114, 2.324133, 0.8747789, 0.0935264, 0.3478937, 0.28278205, -0.0044815023, 0.91636807, -0.23508418, 0.0005, -0.36021814, 0.21572542, 0.84777397, 3.929773, -1.0007099, -0.064034075, -0.0052098306, -0.59307504, 0.06354487, -0.9745571, -0.22748242, -0.0003241985, 0.009463166, -0.2273452, 0.9766128, 0.6686483, 0.51944166, -0.23891693, -0.8218574, 2.8817852, -0.06474783, -0.96959054, 0.24094068, 0.00028341718, -0.8534276, -0.07185673, -0.5185061, -2.7510338, 0.1576051, 0.0067827203, 0.75969034, -3.2512274, -0.22613299, -0.7402796, 0.05352289, 0.00018416466, 0.72528577, -0.23228171, -0.14839363, 1.237813, 0.6229784, -0.124101065, -0.7334366, 2.4137304, 0.23739825, 0.93981814, 0.042623457, 0.00049999997, 0.70496273, -0.2068179, 0.63378733, 2.6494656, -1.0767423, 0.048342813, -0.74113715, 3.8020377, 0.016504196, 1.3065114, 0.06124329, 0.00049999997, 0.74252874, 0.041062165, -1.0760856, -0.5064239, 0.76746565, 0.16848785, 0.10145491, 3.6646059, 0.18516272, -0.75676155, -0.14391558, 0.00024206853, 0.06630246, 0.16312203, -0.7724507, -0.89643013, 0.9496818, -0.08425579, -1.0006738, -3.967612, 0.33570734, 1.3246764, 0.20706394, 0.00049999997, 0.9464393, -0.38532564, 0.930655, 1.7295973, 0.1953014, 0.06160278, -1.0729991, 1.3349802, 0.09848303, -1.0870082, -0.04448173, -8.454588e-05, -1.0702444, -0.088784166, -0.19989726, -1.6394479, 0.53922784, 0.005999839, 0.5393635, -0.1596136, 0.055633463, -0.759207, -0.047174104, -0.00034898496, 0.53652024, 0.072694436, -0.5371939, 0.75145566, 0.37506947, 0.16451393, 0.52366453, -0.64520025, -0.13098909, 0.6427455, -0.10810466, 0.00049999997, -0.5330396, -0.042189147, 0.39503834, 2.9300313, -0.38113517, -0.12544024, -0.5004825, 2.330781, -0.043531585, 0.6278216, -0.12420551, 0.00049999997, 0.5141235, -0.039834045, -0.38153931, -2.3777156, 1.2562299, 0.025214836, -0.09188314, 3.6034627, 0.045143776, -1.2274129, 0.2803773, 0.00021231038, -0.08390675, -0.28286678, -1.224801, -0.38735473, 0.36721173, -0.16446427, -0.5054498, 2.6361423, -0.11398759, -0.62441385, 0.1203605, 0.0004112688, -0.5191675, 0.02076827, -0.38393536, 3.8127513, -0.7966561, 0.113067776, 1.0653039, 0.242497, 0.35711786, 1.279672, 0.13123989, 0.0005, -1.0100117, 0.36328053, -0.79386485, -0.15818071, -0.6762527, -0.04049651, 0.17981206, 3.015748, -0.0063307346, 0.68849355, 0.13125037, 0.0005, -0.18420714, 0.1250071, -0.66462845, -1.5475386, -0.26682788, -0.044298485, -1.2175478, 2.9990635, -0.1452302, -1.2363617, 0.07681046, 0.00011967198, -1.2096665, 0.15820654, 0.25934455, 0.96937466, 1.4429737, -0.010092412, -0.31264362, 3.283277, 0.033328064, -1.4623605, 0.20102853, 0.0001708527, -0.3110258, -0.20352243, -1.4289376, 0.9286987, 1.1049347, -0.281308, 0.34312978, -3.809697, 0.35168266, 1.1166873, -0.21698286, 0.00049999997, -0.27053937, 0.30270126, 1.1193451, -0.22434326, -0.1862259, 0.12818564, 0.700647, -0.9665744, 0.00826725, -0.7237604, 0.1346117, -0.00030820013, 0.7122285, 0.041917726, 0.18163516, -0.12923212, 0.1549409, -0.05453379, -0.6073293, -0.07287536, -0.002454028, -0.6266795, 0.05564523, 0.00029909879, -0.6097679, -0.01133485, -0.15454522, -4.063834, 0.44032267, -0.10126694, -1.1708277, -1.7438979, -0.15240659, 1.2348334, -0.16411969, 0.00049999997, 1.1652747, 0.19976997, 0.42095578, -1.3826885, 1.1356589, -0.3409195, 0.40445873, -0.8133549, -0.23778827, -1.1846908, -0.33090597, 0.0001548107, 0.4725143, 0.22319484, -1.1386169, 3.22809, -0.4944946, 0.08023624, 0.110288516, 1.9355402, 0.07535683, 0.50647026, -0.03058967, 0.00049999997, -0.113678314, -0.013286524, -0.50002706, 1.2825305, -0.54392934, 0.21582136, -0.5904173, -2.952889, 0.15995814, 0.8025741, 0.14600977, 0.00049999997, 0.6079351, -0.018072164, -0.5666737, -0.6190547, -0.42242745, -0.08649467, -0.29963484, -0.3122156, 0.028654424, -0.5131106, 0.107720785, 0.00039838586, -0.31055, 0.070310175, 0.4175194, -4.5574517, 0.5710318, -0.25919312, -1.2429262, -0.023101624, -0.25731233, 1.3109423, -0.39159262, 0.00049999997, 1.243317, 0.3903503, 0.48980984, -1.8403107, -0.83142644, -0.16713776, -0.62127787, -0.26288426, 0.10073948, -1.0364846, 0.14402285, 0.00024107148, -0.63543123, 0.054369114, 0.8357407, -3.7591436, 0.058296375, -0.30829838, -1.3977025, 2.5678918, -0.12457921, -1.3946455, 0.30242795, 5.6708195e-06, -1.4258678, 0.10924656, -0.083568186, 0.121636674, -0.9532405, 0.24098241, 0.40669772, 4.0242834, -0.12822886, -1.0128818, 0.29961756, 0.00030746686, 0.45500872, 0.21941009, 0.93646634, -0.82891953, -0.97792137, 0.07969534, 0.43637624, -1.9542353, -0.15864147, -1.0493246, -0.16387828, -2.2457414e-05, 0.41425648, -0.21370979, 0.9673806, -1.4404441, -0.044950895, 0.052995287, -0.54601187, -3.861497, -0.047962032, 0.5453643, 0.056880947, 0.00049999997, 0.54647696, 0.05222354, -0.039920412, 1.8600826, 0.009792035, 0.28237924, -1.0695007, -2.2060194, 0.14164996, -1.0610567, -0.2788529, 0.00022936446, -1.0970435, -0.1344829, -0.045551535, -2.9803588, -0.4933545, -0.07445833, 0.054818552, 3.5149693, 0.07700563, -0.4956038, 0.019869948, 0.00019121896, 0.05117861, 0.0279399, 0.4985458, 0.06790436, 0.88470626, -0.24572147, 0.60472697, -2.455906, -0.1588391, -1.0689944, -0.20199022, -1.2555232e-05, 0.63312244, 0.07517223, -0.8957033, -0.3325184, 0.7521788, -0.007611955, -0.27957407, 3.9003096, 0.02100576, -0.7983907, 0.07825261, 0.00029956296, -0.27888772, -0.08066457, -0.7481359, -1.1584468, -0.49474126, 0.04749911, -0.28975934, -4.3057218, 0.08153652, 0.56763184, -0.04616751, 0.00049999997, 0.28207874, -0.080768034, -0.49486732, -1.7706465, 0.70615107, 0.33852896, 1.1453333, -1.6739323, -0.1532734, 1.3452389, -0.30311546, 0.00049999997, -1.1844398, 0.027745834, 0.72206116, 2.2469893, 0.89455366, 0.058045745, 0.00888181, 3.125138, 0.05713652, -0.89168656, 0.072836064, 0.00013975152, 0.013550365, -0.07211356, -0.893471, 0.90927315, 1.2710804, 0.3248297, -0.40276983, 1.845959, 0.3449492, -1.3281902, 0.017435506, 7.3946816e-05, -0.3856785, -0.11738653, -1.3118138, 2.263709, 0.20042829, -0.072311714, -0.5865641, 2.5789208, -0.06720772, -0.6181477, 0.053240545, 0.0003457833, -0.5871709, 0.04607004, -0.20631506, 3.4406686, -0.6800805, -0.34310043, 0.57466877, 2.4031353, -0.2663266, 0.8903458, 0.21639338, 0.00049999997, -0.6140294, -0.0061671683, -0.7303432, -2.3132885, -0.45665544, -0.24953122, 0.7932023, -2.9171371, 0.19713902, -0.91163355, -0.17329298, 8.3488274e-05, 0.80781925, 0.08141521, 0.4906828, -0.55067235, -0.24141936, -0.044057332, 1.3423913, 0.78619695, -0.15222591, 1.3560134, 0.017127693, 0.00049999997, -1.3344595, -0.14671414, -0.24480806, -0.09063837, -0.70807356, 0.18216671, -0.37764925, -2.122917, -0.18406467, -0.80099285, -0.041262835, 0.00046210317, -0.3767279, 0.048966497, 0.72996604, -4.4066215, -1.1527271, -0.12608151, 0.8653918, 4.586016, -0.2997496, 1.4020346, -0.19500868, 0.00049999997, -0.82155335, -0.3346366, -1.1430871, -0.110988535, -0.5526891, 0.09892903, -0.7458536, -2.9611015, 0.092670135, 0.92736715, 0.054334722, 0.00049999997, 0.74665713, -0.041869625, -0.55883807, 0.8049211, -0.88396907, -0.18534793, 0.32677573, 4.2789497, -0.0700329, 0.9021089, 0.32223052, 0.00049999997, -0.36909568, 0.2727329, -0.843755, -0.8154977, -0.7441967, 0.018220816, -0.30952775, 1.5453289, -0.06322137, -0.7968223, 0.10509684, -0.00018402634, -0.30354983, 0.121286, 0.7369636, -0.44170803, -0.9685635, -0.11120322, 0.86609954, -2.743858, 0.2941448, -1.2594125, 0.16724086, 0.0002807237, 0.82217604, 0.31956932, 0.96047485, -2.8698084, 0.10056433, 0.008684577, 0.8463121, 2.8619447, -0.25814506, 0.81196964, 0.022342311, 0.00049999997, -0.80602777, -0.25896457, 0.09843485, -3.4192333, -0.99220705, -0.31494772, -0.5198237, -1.2404413, 0.30824864, -1.1184357, 0.0892653, -0.00014151512, -0.52382404, -0.061591174, 1.037159, 1.3353813, -0.2777769, -0.00675768, -0.8918161, -2.7677963, 0.16251585, 0.91804963, -0.05757579, 0.00049999997, 0.87690955, -0.17228091, -0.27182835, 0.78859293, -0.7530236, -0.14727679, -1.2740499, 2.4364214, -0.36455667, 1.4410572, 0.048887752, 0.00049999997, 1.2296306, 0.33704767, -0.7657315, -4.278224, -0.95690954, -0.40736094, -1.0601841, -1.1560783, 0.32889563, -1.4263046, 0.2511804, 0.00032377173, -1.0870881, -0.07294522, 1.0092211, -4.0277724, 0.773989, -0.16561453, -0.83889747, -2.5888085, 0.008148647, -1.1300397, 0.2306097, 0.00018842213, -0.8550502, -0.16068316, -0.7571699, -2.3551903, -0.4875382, 0.029028919, -0.60934526, 2.4307215, -0.075248145, -0.7769412, 0.023193069, 0.0003997943, -0.6053776, 0.07319511, 0.4878506, 3.876298, 0.5088698, -0.007402327, 0.01612248, -1.3739662, -0.0023543113, -0.48682168, -0.14920625, -0.0002061837, 0.017583668, 0.14904118, -0.48656014, -0.5886012, -1.0391269, -0.1059503, 0.9350223, -1.2102201, 0.26460004, -1.3696649, 0.13885944, -0.0002578193, 0.9030388, 0.27940953, 1.0352432, 0.23219779, 0.2204235, 0.050562177, -0.83585304, 2.9294362, -0.21959916, -0.83058554, -0.108154215, 0.00025217154, -0.8080737, 0.23950909, -0.1986095, -2.4619493, 0.5806863, 0.12862295, 0.31399205, 4.794364, 0.07742259, -0.65617037, 0.12560934, 0.00047763996, 0.33036438, -0.07230558, -0.5813457, 1.3148838, 0.93149483, -0.18581115, -1.0608531, -2.513488, 0.1094154, -1.3790088, 0.33761042, 0.00029676125, -1.0714304, -0.30236855, -0.8878218, -3.1789038, 0.43891793, -0.13273771, -0.73047954, -0.9950166, -0.075418085, -0.8521638, 0.109533444, 0.00043786742, -0.7386012, 0.008133744, -0.44527593, -4.6660695, 0.8508612, 0.3315159, -1.1831379, -3.4714634, 0.16181776, -1.456823, -0.29183027, 0.00028166425, -1.2180037, 0.038041044, -0.86527586, -1.937941, 1.246415, -0.05094851, 0.6823657, -1.2653307, 0.018203942, 1.4199095, 0.07276538, 0.00049999997, -0.684023, -0.055049375, 1.2453318, 4.3322277, 0.8580874, -0.047208503, 0.074181646, 1.6867073, 0.036091167, 0.8526882, 0.12516256, 0.00049999997, -0.080181, -0.12140673, 0.85022163, 1.4164284, 0.9998327, 0.08750367, -0.14348526, -4.667057, 0.063168615, -0.99779105, -0.16832595, 0.0004213858, -0.15573902, 0.15705737, -0.9894385, -0.4611738, -0.1252286, 0.022272648, 0.659686, -0.83663386, -0.084709376, -0.6664437, 0.006420375, 0.00036574533, 0.6546038, -0.08198066, 0.12703165, -4.325418, -0.8426058, -0.21445316, 0.60140514, 0.48503786, -0.29269472, 1.0147241, -0.048246097, 0.00049999997, -0.56745756, -0.2049578, -0.8681284, -1.4218047, 0.60952574, 0.13026664, 0.33687794, -0.6825938, 0.19346777, -0.67577696, -0.088733666, 0.0003667603, 0.3050022, 0.16832723, -0.6169419, 4.353487, 0.8563669, -0.051253505, 1.1348836, -3.587061, -0.32617947, -1.3724611, 0.18414739, 0.00033675047, 1.0882072, -0.3710477, -0.83790284, 2.2898061, 0.6834065, 0.046154503, 0.14548965, 0.2936787, 0.006898498, -0.6761209, 0.18208534, 3.607416e-05, 0.15247914, -0.17627375, -0.6603179, 2.7115889, -0.48616624, 0.12104993, 0.7258141, -3.5410137, -0.2394468, -0.8486028, -0.018858353, 0.00041442577, 0.69579065, -0.20745438, 0.5006547, 3.0155187, 0.13781363, 0.40493035, -1.3214786, 2.0315957, 0.12304673, -1.3263528, -0.3935917, -9.2494054e-05, -1.3766385, -0.07801499, -0.16747163, 0.41571435, 0.14375116, 0.17725472, -1.2805266, -0.8104024, -0.14396378, 1.2825999, 0.16138047, 0.00049999997, 1.2846953, 0.123895034, 0.16136909, -4.359344, -0.6320873, -0.005059484, -0.56528836, -2.746571, -0.083051376, -0.837938, 0.10036515, 0.00015054052, -0.55917704, 0.13017333, 0.62408876, 1.8485496, 0.6201649, -0.30568776, 1.210846, 0.32194227, -0.066160314, 1.3419868, 0.37268105, 0.00049999997, -1.2470828, -0.22321138, 0.58237296, -2.8283534, -0.66361487, 0.009752364, 0.5256779, -1.0328939, 0.085044175, -0.8333668, 0.12282023, -0.00025813587, 0.5188448, 0.14907114, 0.65222317, 0.66845804, 0.7281018, 0.05984571, -0.74854916, 2.2604887, 0.1875854, -1.024077, 0.100587465, -5.5770648e-05, -0.7271307, -0.20426607, -0.7235992, -0.013003313, -1.1666038, 0.2616108, -0.22126251, 2.5352392, -0.25399563, -1.1872965, -0.06461651, 2.0065032e-05, -0.22996415, -0.015776373, 1.1938297, -0.76001173, 0.4881251, 0.12195678, 0.36699605, 2.972903, -0.14002556, 0.6066161, -0.015343389, 0.00049999997, -0.3604891, -0.07049198, 0.5028957, 2.4867609, 0.56103504, 0.0036040847, 1.0685798, -0.55559665, 0.18066122, 1.1892114, -0.09886325, 0.00049999997, -1.0532035, 0.20591123, 0.55226743, 1.8508917, -1.2076303, 0.02840633, -0.31663153, -3.065762, 0.052559387, 1.2445012, -0.08881172, 0.00049999997, 0.31352833, -0.09921236, -1.2046951, -3.379272, -1.1462188, -0.13745196, -0.21861066, -2.7861695, 0.1665131, -1.1536739, -0.14768606, 8.057783e-05, -0.19737536, -0.17505647, 1.1449451, 0.97438574, -0.59685934, 0.10889142, -0.39889154, -4.0062304, 0.013928894, 0.7053609, 0.17171125, 0.00049999997, 0.41325268, 0.13349691, -0.5819051, -3.1094408, 1.1121498, -0.018737732, 0.48158997, 2.0314672, -0.0740971, 1.1901242, 0.21741995, 0.00049999997, -0.47622442, -0.22893389, 1.0908515, 2.177772, -0.65195906, -0.09185278, 0.48458904, 0.5749784, 0.055777434, 0.7843198, 0.22370821, 0.00049999997, -0.4900534, 0.21147, -0.619227, -0.57404464, -0.48471794, -0.057650857, 0.44784436, 3.6219404, 0.0009112021, 0.65690196, 0.085549004, 0.00049999997, -0.45153895, 0.06321266, -0.48057932, 3.5658336, 0.6763081, -0.20258339, 0.48853913, 0.44893095, -0.2181761, -0.82930714, -0.041858546, -6.1749466e-05, 0.48177764, -0.09117531, -0.70475566, 2.1844037, -1.1277748, 0.11070315, 0.51544535, -4.3485174, -0.0031348343, -1.2185469, 0.25485063, 0.00042338955, 0.5271899, 0.22957239, 1.1041658, 1.7811245, 0.24173762, 0.2871681, -1.3875905, 2.560165, 0.32427552, -1.3814938, -0.22941302, 3.6082492e-06, -1.3793906, -0.2744439, -0.29710647, 0.065194845, -0.6308938, -0.21459511, 0.4244727, -1.3849545, -0.16496503, 0.76006675, 0.13906944, 0.00049999997, -0.4461106, 0.02242112, -0.65171915, -2.713889, -0.46656913, 0.36005223, 1.1810641, 0.52920556, 0.43617755, 1.229231, -0.20242794, 0.00049999997, -1.1551187, 0.31873238, -0.5534865, -0.018216291, 0.11893478, 0.21724632, -1.0529143, -1.3394186, 0.20497994, -1.044487, -0.1923535, 5.077097e-05, -1.0553708, -0.17838351, -0.15601781, -2.4616706, -0.25449327, -0.07794489, 0.8342014, 3.035734, 0.19934125, 0.8411672, 0.1394096, 0.00049999997, -0.81377536, 0.23042695, -0.22673148, 1.1675075, -0.53000104, 0.17581847, -0.6573187, 2.9865243, 0.0011152353, -0.83296925, -0.22370045, 0.00025674247, -0.6804255, -0.13831481, 0.51163596, -2.4313564, -0.06411158, 0.31647173, -1.3440614, 0.4325495, -0.3142868, 1.3068488, 0.32270113, 0.00049999997, 1.3445741, 0.32055864, 0.011342469, -4.973709, -1.3054428, 0.13913113, 0.53444123, -0.14456077, -0.19941671, -1.3979366, -0.12317656, -0.00018752055, 0.51499313, -0.18863197, 1.3070449, -1.5834228, -0.49328974, -0.067953415, -0.20354316, -4.3566008, -0.09175258, 0.5280541, 0.046071447, 0.00049999997, 0.19398184, 0.07696394, -0.4958123, 0.2035752, -0.384768, -0.012295456, -0.51169074, -0.3132056, 0.12163034, -0.62400645, -0.07646614, 0.00043466018, -0.4971767, -0.14314272, 0.3772937, -4.7420397, 0.5296148, 0.08191747, 0.16102545, -1.5119178, 0.10772845, -0.5435759, -0.07779024, 0.00045269635, 0.14503193, 0.104624406, -0.5302367, 4.603072, -0.7953461, -0.16959806, 0.1149025, -0.64628506, 0.15527862, -0.79957986, -0.105367064, -0.00024077455, 0.13362122, -0.080312915, 0.8063726, -1.1491101, 0.8799858, 0.07048366, -0.6628381, -3.7928832, 0.10147992, 1.0707952, 0.2485893, 0.00049999997, 0.6588052, -0.25908855, 0.8470811, -3.2022762, -0.4569269, 0.07981955, 0.40722227, 1.078438, -0.026782405, -0.6101221, 0.08953848, 0.00020622909, 0.4141062, 0.048613533, 0.45512217, -3.4274209, 0.22250506, -0.060905445, 1.0299118, 2.916287, -0.27120808, 1.013084, 0.11850288, 0.00049999997, -0.9954265, -0.289633, 0.19792682, -3.9096687, -0.014385883, -0.17740224, 1.1372758, 1.5301893, -0.25911522, -1.1076715, -0.17606196, 0.0003760372, 1.1214844, -0.25819942, -0.026090134, 4.1826487) + +[sub_resource type="MultiMesh" id="MultiMesh_3jpm4"] +transform_format = 1 +instance_count = 640 +mesh = ExtResource("12_0dh60") +buffer = PackedFloat32Array(-0.28370723, 0.068627484, -0.615921, -1.7756935, -0.2550186, 0.6044554, 0.18481734, 0.00049999997, 0.56483096, 0.30737954, -0.225925, 1.5920773, -0.45037702, 0.08266045, 0.25335968, 0.30535632, 0.08776445, -0.4237556, 0.2942651, 0.0003593483, 0.25163722, 0.2957394, 0.35082793, 2.557799, 0.58514476, 0.041698184, 0.5131305, -0.34937164, 0.42891216, -0.46913075, -0.45098427, -0.00022852478, 0.28473857, 0.62097806, -0.37516174, 0.7346287, 0.64247644, 0.22626574, 0.3087767, 0.8562069, -0.09675776, 0.6796459, -0.29670632, 0.00049999997, -0.37037438, 0.21494305, 0.6131375, 1.8027387, -0.89526266, -0.3532705, -0.060060427, 2.1964412, -0.29738826, 0.82264555, -0.4058535, 0.00049999997, 0.1999187, -0.35826927, -0.87268454, -0.38993636, -0.19884843, 0.3713449, -1.0019661, -0.35409647, -0.6586825, 0.75991577, 0.41235808, 0.00049999997, 0.84140986, 0.6826455, 0.08601488, 0.7009754, -0.15466246, 0.079316266, 0.76641667, -0.8189596, 0.26048464, -0.7302965, 0.12814385, 0.0003901489, 0.72514355, 0.27925265, 0.11743374, 2.5398076, -1.3290675, 0.3261195, 0.07673697, -0.8110148, -0.29336014, -0.98121065, -0.91094905, 0.00042601174, -0.16180958, -0.89974135, 1.0212473, -2.6567855, 0.86715454, 0.7465169, 0.44513282, 0.34044015, 0.46148232, -0.9282901, 0.6577986, -0.00037511106, 0.73652214, -0.29728365, -0.9362399, -0.15543136, 1.0990598, 0.68495774, 0.6641764, 1.9717734, 0.8589922, -1.1513338, -0.23407777, 0.00041553512, 0.41524643, 0.56876457, -1.2736983, 1.9094701, 1.0551221, 0.7552387, -0.2729693, 0.94980454, 0.746121, -1.0886289, -0.12794794, -0.00015508306, -0.29698655, -0.05178681, -1.2912387, -0.4090766, -0.849047, 0.80421364, 0.20958792, -1.2777585, -0.7936228, -0.87351155, 0.13677643, -2.4147375e-05, 0.24667653, -0.042256046, 1.1614355, 0.63333, 0.61936843, -0.026041063, -0.557157, -2.6883678, 0.173265, 0.80038166, 0.15520236, 0.00049999997, 0.5301711, -0.23115018, 0.60017294, 0.2579967, 0.30211094, -0.52569604, 0.98758674, 0.15842302, -0.43684733, 0.886326, 0.6054299, 0.00049999997, -1.0299749, -0.53011763, 0.03289432, 1.4999323, -1.1940457, 0.12879737, -0.30615366, 1.4729558, -0.027432157, 1.1002579, 0.56986296, 0.00049999997, 0.33100787, 0.55579454, -1.0571612, -1.5301881, 0.49233815, -0.63367724, 1.246487, -0.7989563, -0.7084612, 1.0262833, 0.80156046, 0.00049999997, -1.2055538, -0.86189884, 0.038006324, 1.723858, 1.2225876, -0.7659747, -0.26637885, -0.82460284, -0.48177004, -1.073645, 0.87611634, 0.00010098596, -0.6523593, -0.6426233, -1.1462364, 1.6020653, -0.31281045, -0.5133462, -0.38643327, -1.9070748, 0.41948202, -0.48872086, 0.3096645, 0.0004314835, -0.48671338, -0.09128488, 0.5152501, 2.0384336, 0.096963085, 0.4390847, -0.6111294, 0.1983227, -0.11055038, 0.6178079, 0.42634293, 0.00049999997, 0.74434745, 0.034558997, 0.1429297, 1.6282746, 1.2451804, 0.53872883, -0.5201485, -1.6624916, -0.74881333, 0.88512766, -0.8758339, 0.00049999997, -0.007872708, 1.0186156, 1.0361555, 2.2714474, 0.29177204, -0.17213885, -0.42032287, 0.65197885, -0.04332415, -0.50784403, 0.17790836, -0.00024421432, -0.452135, -0.062422477, -0.2882904, 0.40305397, -0.7303194, 0.76053697, -0.13864148, -2.600375, 0.7697915, 0.69788414, -0.22667836, 0.00049999997, -0.071125954, -0.2560188, -1.029757, -1.0678732, 0.7084498, -0.43407393, 0.8687721, 2.2592285, -0.81772035, -0.84676445, 0.24374099, 0.00026628826, 0.5239453, -0.7346128, -0.7942993, -0.41793495, -0.4300809, 0.06583908, 0.35025153, 0.90878636, -0.15546514, 0.45929474, -0.27723545, 0.00049999997, -0.32068917, -0.31095678, -0.33532807, 0.68270737, 0.081536114, 0.06644888, 0.51249665, -0.98613405, 0.22185242, -0.47309574, 0.026044475, -0.00013821837, 0.46674377, 0.21326357, -0.10190816, 0.4504546, 0.60178065, -0.2955086, -0.44344652, 2.1512537, -0.40241486, -0.6904951, -0.08595908, 0.00034175534, -0.34933144, 0.28635877, -0.6648881, -1.3169222, -0.31430364, -0.43953413, -1.1900555, -1.6994983, 0.28766704, -1.218791, 0.37417203, 0.00023179236, -1.2355847, -0.17195006, 0.3898364, -1.3893692, -0.967648, -0.11581849, 0.6693213, -2.315763, -0.36070445, 1.0747454, -0.3355035, 0.00049999997, -0.57558423, -0.4788074, -0.91498315, -0.8127738, 0.49324068, -0.15723737, -0.5246021, -0.5841396, 0.24983178, -0.56366104, 0.40384102, -0.00010908578, -0.48735502, -0.4480846, -0.32391736, -1.0155196, -0.804935, -0.2755835, 0.16985144, 1.2241688, 0.25111786, -0.81882745, -0.13848403, 0.00025691598, 0.20429291, -0.0793206, 0.8394575, 1.9104706, 0.19147195, 0.7005098, 0.73562586, 0.10148456, -0.72583044, 0.61805284, -0.3996269, 0.00049999997, -0.71065426, -0.44251284, 0.6063611, -2.4598832, -0.63527584, -0.09330419, -0.5004233, 2.2995887, -0.27261412, -0.61348295, 0.46046156, 0.00038371046, -0.42989615, 0.5269133, 0.4475, 1.3140013, -1.300722, -0.22202973, -0.3295231, 1.1366019, -0.08906803, 1.2621359, -0.4988388, 0.00049999997, 0.38723335, -0.45549542, -1.2216114, -1.2014201, -0.3965004, -0.072927974, 0.6320945, -2.0060425, 0.3685835, -0.63341707, 0.15812467, 0.00021478563, 0.51865983, 0.394384, 0.3708472, 0.7509403, -0.89312917, -0.01145862, -0.552164, -0.67735964, -0.23420654, -0.94293296, 0.39839864, -0.00010533243, -0.50016373, 0.46199888, 0.7994307, 0.9699916, -0.5626033, -0.344546, 0.3430649, 2.5479653, -0.47731683, 0.49129897, -0.28934747, 0.00049999997, -0.09259645, -0.4391372, -0.59288484, 1.0460807, -0.27424246, -0.35887438, 0.502397, 2.03032, 0.367941, -0.5364434, -0.18234721, 0.00025633318, 0.49579537, 0.19960038, 0.4132181, 1.007784, -1.4045451, -0.24363643, -0.33175173, 1.8010538, 0.29623938, -1.4173611, -0.21329437, 0.00010736371, -0.28576243, -0.2718337, 1.4094716, -0.26111525, -0.21959995, -0.17503493, 0.5090901, 0.1026133, 0.32277828, -0.4828368, -0.026775606, -0.00025821853, 0.4308412, 0.272517, 0.27954325, -0.7171875, -0.64827293, -0.20730725, -0.5541021, 0.15680894, 0.5362069, -0.553209, -0.42036313, -0.0002065905, -0.24997535, -0.6490353, 0.53528374, -0.8655286, -0.97613674, 0.27139807, 1.0839472, -1.2818127, -0.42417228, 1.2415649, -0.69284606, 0.00049999997, -1.0337679, -0.76570284, -0.7392322, -1.2565334, -0.20510726, -0.8408794, -0.9441122, 1.1987916, -0.38672644, -0.8688834, 0.8578923, 0.000105252795, -1.2036895, 0.42244357, -0.11475152, 1.3610947, -0.07617635, -0.28415892, 0.576469, 2.5962691, -0.12039115, 0.57653743, 0.26828378, 0.00049999997, -0.63132304, -0.07565669, -0.1207184, 0.22860862, 1.1070533, 0.7949011, 0.43297124, 2.796377, 0.8889077, -0.82565147, -0.75699484, 0.00046145203, -0.170806, 0.85517865, -1.1333108, 0.69281447, 0.39094046, -0.31707233, 0.5033743, -0.6904847, 0.395088, 0.58869964, 0.063977234, 0.00049999997, -0.44477627, 0.2442391, 0.49927565, 1.3727382, 0.52612275, 0.46821785, -1.221998, -1.3516883, -0.58719766, 1.2614928, 0.23053661, 0.00049999997, 1.1694896, 0.4227532, 0.66549677, 0.048307348, 0.34846964, -0.14484453, -0.42457494, -0.3460759, -0.19275375, 0.43711746, -0.30732602, 0.00049999997, 0.40508002, 0.33260083, 0.21900183, 1.7774026, -1.1157345, -0.27964684, -0.6802717, -0.7308646, 0.08029261, -1.2749149, 0.39240313, -0.00022558909, -0.73111206, 0.28674856, 1.0812426, -0.37788895, -0.12028452, -0.29815343, 0.51864505, -1.0832956, -0.16307245, 0.5253324, 0.26417768, 0.00049999997, -0.57558274, -0.08652796, -0.18323183, -2.2131586, 0.016907835, -0.81720483, 1.2457365, 2.6875932, 0.896332, 1.0007144, 0.64430463, 0.00049999997, -1.1900722, 0.7421022, 0.5029724, 0.8116743, 0.94697744, 0.062065303, 1.0755396, -1.0616537, -0.54824024, 1.2604604, 0.40997115, 0.00049999997, -0.9273997, -0.6817562, 0.8558867, 0.5659958, -0.91079503, 0.2581608, 0.4759861, -2.5859833, 0.1840049, -0.72844136, 0.74717677, 0.00037652586, 0.50926614, 0.7249027, 0.5813103, -0.4664544, 0.6425581, 0.6269279, 1.1983055, 0.9472125, -0.837844, -0.8568775, 0.8975707, 0.00032963103, 1.0615985, -1.0557353, -0.016914668, 2.3012912, -0.6871829, -0.4078545, -0.0763152, -2.3551285, -0.26797593, 0.5489536, -0.52079606, 0.00049999997, 0.3167936, -0.42035043, -0.60608345, 0.5356734, 1.0736759, 0.021819549, -0.56278616, -0.32841757, -0.09587542, 1.2009168, -0.1363496, 0.00049999997, 0.5549884, 0.16524896, 1.0652063, -0.14275174, -0.8612861, 0.11321373, -0.28056327, 1.5476924, -0.102110796, -0.9056586, -0.051989578, 0.00014759482, -0.28479198, -0.017668685, 0.867138, -1.1705332, -0.44963908, -0.55176294, -0.83551794, -1.8283559, -0.64715594, 0.85902756, -0.21901761, 0.00049999997, 0.7640169, 0.40291074, -0.67723626, 0.9683091, -0.53977996, 0.5401493, 1.2378925, 1.4856982, 0.68636227, -1.0384167, 0.75239533, 0.00036026203, 1.1632049, 0.8633832, 0.1304789, 2.1073532, 0.48986086, -0.7810094, -1.158315, -2.448228, 1.1663152, 0.9043064, -0.11649661, 0.00049999997, 0.769011, -0.8740061, 0.9145314, 0.1589347, -0.5369267, -0.28683913, 0.2766803, 2.2051497, -0.06527169, 0.5212451, 0.41371733, 0.00049999997, -0.3931517, 0.30519778, -0.4465478, 1.4786121, -0.104026385, 0.4957199, -1.0383452, 1.8098493, 0.5648141, -0.8863221, -0.47972766, 0.0001636444, -1.002439, -0.55083156, -0.16254516, -0.82434916, 0.62695324, -0.362075, 1.2359902, -2.6054387, -0.7761324, -1.2032287, 0.041213512, 0.0003799018, 1.0278074, -0.6877368, -0.7228209, 0.4040363, -0.335725, 0.55104536, -1.2699497, -0.16822428, -0.83765596, 0.9595248, 0.63779217, 0.00049999997, 1.1021594, 0.8971039, 0.097895585, 1.4769566, -0.3727423, 0.31761917, -0.81885993, 1.2309241, -0.5635921, 0.5957618, 0.48762912, 0.00049999997, 0.6736302, 0.674193, -0.04512834, -1.367523, 0.8843948, -0.48055124, 0.917433, 1.3941987, -0.96491295, -0.82059133, 0.5003396, 1.2441375e-05, 0.37623855, -0.974919, -0.8733521, 0.6435122, 0.5939411, -0.46967795, -0.40987712, -1.7680846, -0.56373996, -0.64633036, -0.0762697, 0.00019942578, -0.26607123, 0.32097104, -0.7533566, 1.1266309, 0.42271626, 0.06464225, 0.35442576, 1.869259, 0.090319134, -0.5479665, -0.007780438, 0.0002776109, 0.3487675, 0.06355675, -0.42755952, 1.3909647, 0.7032685, -0.55043066, 0.62282413, 2.7637825, -0.17591678, 0.698799, 0.81621295, 0.00049999997, -0.81236506, -0.6278346, 0.36243185, 0.47211003, -0.88032824, -0.6236691, 0.067177005, -1.4014288, -0.52880996, 0.8001363, 0.49859384, 0.00049999997, -0.337396, 0.37319228, -0.9567368, -2.1598754, 0.68516195, 0.0956546, 1.0018046, 1.7376127, 0.20127036, -1.2004871, -0.023029163, 0.00029234227, 0.98602873, 0.17857857, -0.69142354, -1.6181751, -0.32726902, 0.024881266, 0.48613003, -0.8564775, 0.3404217, -0.40700796, 0.25000796, -0.00017566308, 0.3479288, 0.42163, 0.21265015, -0.4614342, 0.77013916, -0.41654772, -0.16942532, 1.1290474, 0.40951887, 0.78847444, -0.0770294, 0.00049999997, 0.18577196, -0.01127983, 0.872177, 1.6442037, 0.26961443, 0.013658144, 0.9683024, -0.3275609, 0.3148883, 0.9492728, -0.10106732, 0.00049999997, -0.9157738, 0.33042803, 0.2503276, 2.1105256, 0.017127404, -0.19226502, 0.66561735, 0.2609185, 0.3623164, 0.57000595, 0.15532447, 0.00049999997, -0.59054136, 0.34414098, 0.114601456, 2.2624, -0.9702845, -0.12415244, 0.40244466, -1.8413057, 0.34379628, -0.8173082, 0.5767486, 0.00016376472, 0.24326871, 0.65986437, 0.7900803, -0.75758517, -0.71720254, 0.63825953, -0.08026852, -2.0333145, -0.6110176, -0.7134982, -0.21395229, 0.00047787765, -0.20118582, -0.10836449, 0.9359375, -2.111583, -0.41043583, -0.16114303, -0.30544934, -1.8610058, -0.16248001, 0.5087412, -0.050065555, 0.00049999997, 0.30474022, 0.0542147, -0.4380846, -1.443758, -0.43849617, 0.743216, 0.5921287, 2.6433592, 0.6013597, 0.7219713, -0.46085703, 0.0005, -0.7357668, 0.14714865, -0.7295612, -1.0948625, -0.58927834, -0.12609729, 0.67434883, -2.2847545, -0.30271515, -0.7499518, -0.4047614, 0.00030861085, 0.6156383, -0.48945653, 0.44645017, -0.8065696, -0.18470778, -0.65806764, -0.8686045, -0.6932844, 0.108306326, 0.86554563, -0.67878145, 0.00049999997, 1.0843415, -0.1985484, -0.08016082, 0.10849781, -0.63435906, -0.74058455, 0.5504711, 1.2082781, -0.6911938, 0.82391673, 0.31194183, 0.00049999997, -0.6113388, -0.16306777, -0.9238881, 0.07992883, -0.20803069, -0.17700914, 0.5136484, 1.4621508, 0.10147529, 0.5276773, 0.22294182, 0.00049999997, -0.5337318, 0.1693164, -0.1578162, 1.2900791, -0.25682887, 0.6211841, 0.52367127, 1.3590486, -0.018551866, 0.5445856, -0.6550914, 0.00049999997, -0.8122545, -0.2088522, -0.15061878, -1.8130214, -0.51377153, 0.8009516, -1.0340434, -1.6270494, -0.6278631, -1.1256135, -0.55992204, 0.00036219708, -1.1474134, 0.2572962, 0.76939714, -2.0097055, 0.62576336, 0.43008777, -0.7091847, 0.27896908, -0.24251367, -0.7546838, -0.6716677, 0.00025273068, -0.7931616, 0.57006574, -0.35414356, -2.2387347, 0.7159144, 0.24835937, 0.036335055, 1.5783172, 0.19195446, -0.6124887, 0.40440983, 0.00022201128, 0.16172834, -0.37243992, -0.64083433, -1.4801364, 0.22234985, -0.5377083, 0.6112172, 1.8605213, 0.36352047, 0.63250804, 0.42419627, 0.00049999997, -0.72840196, 0.15152387, 0.3982802, 2.3114564, 0.70111024, 0.111967675, -0.40228513, -0.6437739, 0.0056912005, 0.78352475, 0.22799647, 0.00049999997, 0.41753763, -0.19869077, 0.6723913, 1.655164, 0.5079497, -0.33065972, -0.48651758, 0.5031273, -0.1950165, 0.5117887, -0.5514426, 0.00049999997, 0.5549808, 0.48247743, 0.25151503, 1.2289997, 0.77335566, -0.0862844, 1.1412305, -1.6590362, -0.52599317, -1.2500625, 0.26192683, 0.0003436137, 1.0164562, -0.581231, -0.7327472, 1.9078801, 0.53566355, -0.6479425, -0.7967765, -1.4727093, 0.6526678, 0.9086132, -0.30010763, 0.00049999997, 0.7929105, -0.31017795, 0.7853029, 0.24134588, -0.24955718, 0.11931177, 0.4184474, 1.4649394, 0.07528891, 0.4869484, -0.09394203, 0.00049999997, -0.4285617, 0.016069343, -0.2601711, 1.1087106, 0.04400049, 0.14950588, 1.037382, -0.7277913, -0.25296438, -1.0060856, 0.15572497, -0.00025035517, 1.0171149, -0.25668898, -0.0061472454, -0.17314953, 0.6192906, 0.37180984, 0.4321944, -1.2378902, 0.08111088, -0.68908715, 0.47658712, 0.00026521203, 0.5643187, -0.30898476, -0.5427967, 1.9312136, -0.07401452, 0.72039735, 0.8150788, 2.9364223, -0.5351055, -0.7353965, 0.6013798, 0.00048021736, 0.9470943, -0.35919854, 0.40347555, 0.08622146, -0.59090185, 0.655641, 0.336878, 2.2164702, 0.54603505, 0.67937267, -0.3644386, 0.00049999997, -0.4951743, -0.0332373, -0.8038746, 1.4429733, 0.16581051, 0.2622476, -0.8649204, 0.49470314, 0.6453694, -0.6499782, -0.07335501, 0.00035196915, -0.63273966, -0.59422964, -0.30147296, -2.5074015, -1.0498638, 0.0030458283, 0.25926265, -0.74023545, -0.1763253, -0.80117697, -0.7046032, -0.00012764582, 0.19009423, -0.7263244, 0.7783046, 0.83488095, -0.9195637, 0.05725069, 0.9403561, 2.3984656, 0.57172966, 1.0783274, 0.4934375, 0.00049999997, -0.7487807, 0.75304556, -0.77807117, 0.8006626, -0.9126417, 0.3329351, -0.036581974, -1.4835645, 0.30734968, 0.7902576, -0.47552928, 0.00049999997, -0.13311693, -0.45798072, -0.8471318, -0.45490447, 0.28862527, 0.3341403, 0.38283023, 0.92695785, -0.066973224, -0.41142017, 0.40958676, 0.00040002982, 0.5037095, -0.24616463, -0.16490285, 2.5326128, 0.13474655, 0.49109104, -0.5993152, -2.8794096, 0.20023726, 0.5655751, 0.508464, 0.00049999997, 0.7485014, -0.2397084, -0.028133249, -0.52708787, -0.16115855, 0.9425637, -1.0591494, -1.3394921, -0.39730692, -1.0532839, -0.8768902, 9.531868e-07, -1.3610183, 0.19586408, 0.38139483, -0.67868674, 0.9680099, 0.17973918, -0.3225824, -1.4754801, 0.0066125346, 0.8964644, 0.51934254, 0.00049999997, 0.36921787, -0.4872927, 0.8364405, 0.6086069, 0.4557254, -0.028352037, 0.35902938, 0.97118235, 0.15478428, -0.50742596, -0.2365424, 0.00022894822, 0.32518888, 0.28125903, -0.39056006, 1.9568634, 1.061758, -0.76155263, 0.52280676, -0.07041736, 0.7054344, 1.1827065, 0.29015037, 0.00049999997, -0.5963654, 0.043156713, 1.2740116, 2.6546829, -0.1054871, 0.060094133, 1.2203481, 0.5632496, 0.7878776, 0.9395533, 0.02183743, 0.00049999997, -0.9338682, 0.7858858, -0.119423464, -0.34149837, -0.08470337, -0.43444762, -0.6861609, -0.1129446, 0.113012396, -0.689476, 0.4225958, 0.00010104531, -0.80423236, -0.0511297, 0.13165188, -1.7975655, -1.2111968, 0.33951434, -0.2764507, -2.568411, 0.13527942, 1.0636035, 0.7135401, 0.00049999997, 0.41640663, 0.64200467, -1.0359187, -0.264237, -0.4256149, -0.66573304, -0.53611284, -1.2250084, 0.32655317, -0.6801118, 0.58530015, 3.9719533e-05, -0.7899243, 0.077543154, 0.53082204, 1.0565463, 0.35246268, 0.34722242, 0.36499184, 0.6153694, -0.058864523, 0.47079167, -0.39102754, 0.00049999997, -0.5003173, 0.18921995, 0.3031349, 2.5370004, -0.4877574, 0.18757865, 0.28362092, -1.3899941, 0.03812866, -0.46263725, 0.37154654, 0.00014935186, 0.3378946, 0.3229782, 0.36748627, -1.3637018, 0.45016995, -0.63147247, 0.87651414, -0.5448845, -0.5980191, -0.9364729, -0.36753154, 0.00042165746, 0.8996709, -0.30651054, -0.6828844, 2.7105117, 0.38909876, 0.3976521, -1.319351, 1.257824, 1.0459628, -0.97774416, 0.013780205, -7.478729e-05, -0.8970928, -0.96752334, -0.556179, 0.20345576, -0.89937955, 0.07943899, -0.88903224, -1.4843156, 0.14582218, -1.2320496, -0.25760847, 1.00457655e-05, -0.8805821, -0.28515905, 0.86535084, 0.3639934, 1.0442312, 0.31930277, 0.06330068, -1.5278435, 0.29436532, -0.8354718, -0.64165086, 0.00033921417, -0.1389615, 0.629613, -0.8835481, 1.9975411, -0.49175334, 0.32165483, -0.16283463, 0.47023985, 0.23752077, 0.4962344, 0.26293275, 0.00049999997, 0.27122104, 0.14862005, -0.5254993, -2.8979294, -0.033057638, -0.55971193, -1.1097748, 1.2242765, -0.91066104, -0.7446526, 0.40269008, -9.144808e-05, -0.84591603, 0.82352, -0.39014223, 0.027961789, -0.6761506, 0.50526625, 0.9819354, -0.6531285, -0.7301612, -1.0683315, 0.04694081, 0.00040742912, 0.828466, -0.5291926, 0.8427753, 2.6394572, -0.22720292, 0.47376055, 0.46890092, 2.6498554, -0.42190385, -0.48573974, 0.28634307, 0.00039757113, 0.5160564, -0.18853685, 0.44054267, 0.46565622, 0.63224906, -0.38267577, 1.034584, 0.81758326, 0.4189184, -1.0198393, -0.633229, -0.0002157359, 1.020447, 0.6557674, -0.3810523, 0.24154952, -1.1161672, -0.22052966, 0.21824719, -1.8505518, 0.29674459, -0.99671894, 0.51047856, 0.00012439402, 0.09059695, 0.5477339, 1.0167961, 0.2752186, 0.13933095, 0.32367426, 0.5299126, 0.019481692, 0.18512326, -0.54004455, 0.28118813, -6.0707604e-05, 0.5927072, 0.09258698, -0.2123944, 1.3169162, 0.18299268, -0.19190004, -0.97923994, 0.43800277, -0.377845, 0.9081129, -0.24857008, 0.00049999997, 0.9235635, 0.40954646, 0.09233018, -2.4720418, 0.67628485, 0.18229477, 0.33965096, -2.456081, 0.3507342, -0.57556784, -0.3894386, 0.00038951368, 0.15993653, 0.49137098, -0.582177, -1.0408909, -0.11401773, 0.022510575, 0.85978854, 2.2956634, -0.4133062, -0.7620407, -0.034857683, 0.00036510843, 0.7542685, -0.41416225, 0.110868, 1.2091084, 0.96505296, 0.41857505, -0.004877832, 0.41625443, 0.41775984, -0.96226496, 0.077968076, -0.00020170827, 0.0265624, -0.073466, -1.0490249, -0.79187095, 0.5519865, 0.17155027, 0.17945443, 2.6306915, 0.23008886, -0.51781, -0.21273078, 0.000420612, 0.09323367, 0.26223227, -0.53746086, -0.83591545, 0.57998735, -0.16585223, -0.58867115, 0.4182577, 0.48089775, 0.6249107, 0.2977414, 0.00049999997, 0.37785986, -0.54074544, 0.5246355, 2.5520039, -0.28280613, -0.09336068, 0.69973344, -1.2559932, -0.4334503, -0.57200485, -0.2515031, 0.00024257446, 0.5571929, -0.4923584, 0.15950455, 1.8386691, -0.20448677, 0.22111589, 0.46676263, 1.8967502, -0.21135408, 0.42223296, -0.29261452, 0.00049999997, -0.4712633, -0.28530955, -0.07130101, 1.613517, -0.5007788, 0.09199369, -0.77578807, 2.3804, -0.6523746, -0.5562003, 0.35515937, 0.0003798041, -0.42978787, 0.737067, 0.36483437, 1.1328995, -0.5109723, -0.33204332, -0.50860894, 0.7385094, -0.07024243, 0.692487, -0.38151848, 0.00049999997, 0.60332566, -0.20059314, -0.47517273, -1.9611336, -0.48286045, -0.27799243, -0.21469489, -1.3807042, -0.2541455, 0.5284394, -0.11264934, 0.00049999997, 0.24245347, 0.0002844523, -0.5456593, 1.1828029, 0.30470887, 0.30346912, -1.0916868, -0.5316112, -0.75201654, 0.8997639, 0.040217113, 0.00049999997, 0.84755236, 0.6892407, 0.42816305, 1.9616529, -0.321938, -0.76872647, -0.8503768, -2.7694995, 0.3425728, -0.9074295, 0.690609, 0.0004387968, -1.0939492, -0.057935413, 0.46652287, -0.5010008, -0.29957047, -0.8194717, -0.9849164, 0.66071594, 0.48787117, -1.0082393, 0.6904867, 0.00017684115, -1.1847259, -0.20798175, 0.5333895, -1.9176052, 0.8655707, 0.32385162, -0.08252976, 0.5310111, -0.30030197, 0.8542338, 0.20250165, 0.0004999999, 0.14666195, -0.16219845, 0.90171254, 1.0069319, 0.45495015, 0.42029986, -0.49915525, -2.4087486, 0.09094489, -0.6433973, -0.4588642, 0.00049596856, -0.6461709, 0.20536636, -0.41602314, -1.761909, -0.5748892, 0.4726767, -0.21501666, -0.46463045, 0.5132082, 0.4682455, -0.34280673, 0.00049999997, -0.07920035, -0.39683238, -0.66060907, -2.858079, 0.40657017, -0.1923175, 1.2366097, -1.2551093, 0.2645528, -1.2576392, -0.2825672, 0.00040371885, 1.223193, 0.33592615, -0.34991577, 2.4018893, 0.69655997, -0.116423815, 0.46895522, 2.0766995, -0.062437225, -0.83755714, -0.11519281, 0.0002543424, 0.4791401, 0.060110666, -0.69676465, -0.8957258, -0.6797801, -0.34722325, -0.004374608, -1.188533, 0.30055314, -0.58350116, -0.38971558, 0.0004876529, 0.17392795, -0.34877855, 0.65634334, -2.7115612, 0.025415925, -0.47689584, 1.1435657, -0.08040847, 0.2767464, -1.1127243, -0.47018495, 0.00043601496, 1.2077183, 0.2650148, 0.08367617, 2.804081, -0.3241272, 0.21690941, -0.4416423, -0.40453863, 0.2592763, -0.37417883, -0.37406155, -3.2528955e-05, -0.41817865, -0.4001207, 0.11039053, -1.3426425, 0.45447806, -0.08519476, 0.2689393, 1.0951102, 0.09579269, -0.43304116, -0.2990583, 0.00030878605, 0.26534915, 0.3022482, -0.35266498, 2.162878, 0.43993154, 0.79708743, -0.68095446, -0.5435435, 0.22732063, -0.79344136, -0.7818973, -2.7159987e-05, -1.0234122, 0.16640249, -0.4663954, 1.3102337, -0.45336035, 0.27620482, -0.93965626, 2.6129048, 0.094438635, -1.0182905, -0.344883, 0.00044634877, -0.9748458, -0.2270987, 0.40358445, -1.1076357, 0.5654879, -0.1437467, -1.1109155, 1.0756174, 0.22061965, 1.2343627, -0.04741837, 0.00049999997, 1.0982364, -0.17394948, 0.5815422, 1.3545976, -1.0629865, 0.37796515, -0.38855886, -0.5286073, 0.41272953, 1.1188236, -0.040790685, 0.00049999997, 0.3514114, -0.1707393, -1.1274457, -1.3443565, -0.55264336, 0.43700647, -1.046423, -2.249517, 1.018905, 0.7023523, -0.24479456, 0.00049999997, 0.49780357, -0.9524271, -0.66065496, 0.57822883, -0.54059064, -0.28172863, -0.33605567, 2.3131804, 0.04017386, -0.56300974, 0.40736806, 0.0004461432, -0.43668124, 0.29697078, 0.4534981, -1.64015, -0.9531319, -0.12795253, -0.30357757, -1.7532688, -0.12789173, -0.7126961, 0.7019258, 9.194565e-05, -0.30360323, 0.7019147, 0.6573679, 0.2684154, -0.3819662, -0.4409081, -0.7108234, -0.06247575, -0.5001914, 0.7467186, -0.19439152, 0.00049999997, 0.67043155, 0.30590773, -0.55000913, -1.4664943, -1.1313583, 0.33471534, -0.23477902, 0.3235844, 0.31301412, 1.1535195, 0.13616875, 0.00049999997, 0.26301646, 0.06697319, -1.1719487, -0.2784077, -0.73996747, -0.7000229, 0.3875082, 0.27852455, 0.6392514, -0.8346664, -0.2871172, 0.00019824473, 0.4811989, 0.032351416, 0.97731644, 2.0737648, 0.5981157, -0.18534416, 0.66561055, -1.917464, -0.44780418, -0.77442056, 0.18675254, 0.00046067286, 0.526176, -0.44838902, -0.5976775, 2.1470468, -0.34948918, 0.02556836, 0.5270408, -1.8402973, -0.35760283, -0.4763216, -0.21402432, 0.00018073409, 0.3880026, -0.4159717, 0.2774708, 0.8797488, -0.4812859, 0.030441843, 0.41471252, 1.543238, -0.1889135, -0.5811016, -0.17658405, 0.00013300341, 0.37043872, -0.25679472, 0.44875482, -1.1031321, -0.11626551, -0.19070415, 0.56805485, 0.17964314, -0.3445119, -0.45217282, -0.2223133, 0.00033247564, 0.49027118, -0.36296496, -0.021507254, 2.488584, 0.3799895, -0.5521042, 0.59325975, -1.3659573, 0.099796124, -0.6183716, -0.6393946, -3.295651e-05, 0.80424935, 0.33758798, -0.20096189, -0.30616903, 1.3253239, -0.18318331, -0.33735213, 1.6819942, 0.059106335, 1.2954842, -0.47124666, 0.00049999997, 0.37930074, 0.4381904, 1.2521847, 0.91239697, -0.1698398, -0.14607759, -0.8625835, -1.0175388, -0.65598756, 0.60264426, 0.027104573, 0.00049999997, 0.57885164, 0.64009035, -0.22237256, -1.6491148, -0.5564698, -0.5178161, -0.0912812, -1.1064857, -0.519781, 0.5216939, 0.20925514, 0.00049999997, -0.07933099, 0.21407145, -0.73075604, -0.36460385, -0.98910695, 0.67479026, -0.008471058, 0.71451086, -0.6403766, -0.9432579, -0.36596254, 0.00023632472, -0.21291147, -0.29777357, 1.140064, -2.0876653, 0.40967852, -0.28761518, -0.63479996, -0.7585703, -0.039679594, 0.7255363, -0.3543339, 0.00049999997, 0.69578654, 0.21072376, 0.35356256, 2.6096745, -0.86669195, -0.09748346, 0.49565294, 0.29749575, -0.38942844, 0.7558747, -0.5322861, 0.00049999997, -0.32174572, -0.65228826, -0.6908903, -0.37312984, -0.6327989, -0.49511045, -0.6807866, 0.31812435, -0.324574, 0.92934346, -0.37418124, 0.00049999997, 0.7766957, -0.015018274, -0.7110255, -2.7271225, 0.6814333, -0.9774085, 0.08071572, 1.90498, 0.9072561, 0.6655671, 0.40012583, 0.00049999997, -0.3724633, -0.16699356, 1.1223093, -1.7213956, 0.78037167, -0.7148198, 0.95467246, 2.5239687, -0.2380953, 1.0245388, 0.96175754, 0.00049999997, -1.1686219, -0.68607545, 0.44155362, 0.52723217, 0.90463144, -0.2065621, -0.15926245, -1.9401813, -0.24862452, -0.85668737, -0.30110317, 0.00038269488, -0.07885595, 0.331375, -0.8777031, 1.7977467, -0.5865559, 0.3366545, -0.3413664, 0.6113933, 0.086643636, 0.6049437, 0.4477176, 0.00049999997, 0.47155085, 0.3076067, -0.5068856, -0.96213925, 0.75450873, -0.59991944, -0.4320343, 1.7594905, -0.26203698, -0.79424274, 0.6452561, 0.0003860172, -0.69129866, -0.3537162, -0.71612257, -1.9883401, 0.16264248, -0.18472771, -1.0157204, 0.27091435, -0.5338993, -0.8951203, 0.07730358, -0.00016039296, -0.8836081, 0.50685304, -0.23366871, -0.98115623, -0.29550213, -0.1646124, -0.46596813, 0.21225116, -0.24115244, 0.5219211, -0.031447697, 0.00049999997, 0.4313572, 0.17901456, -0.3367934, -1.4421674, 0.8354168, 0.012522413, -0.7222749, 1.9034399, 0.10128989, -1.0953826, 0.098165445, 0.00014066769, -0.7152469, -0.14049657, -0.82972366, -0.25097612, 0.60719657, -0.7252226, -0.6487747, 1.4762774, -0.7421436, -0.83974665, 0.2441155, 0.00019069864, -0.629348, 0.29055467, -0.9138067, 1.4530027, 1.0286688, 0.32675236, -0.696387, -1.2149897, 0.07657637, 1.1135608, 0.63560975, 0.00049999997, 0.7654136, -0.5505421, 0.87231123, 2.0630174, 0.30645198, -0.5688863, -1.3356206, -0.088490404, 0.2856755, 1.3619953, -0.51457316, 0.00049999997, 1.4233425, -0.1508789, 0.39084378, -1.3089372, 0.7133298, 1.0733719, 0.015189004, 0.80902225, 1.0702939, -0.70973796, -0.10927276, 3.8326853e-06, -0.08263822, 0.07309036, -1.2841443, 1.2751572, 0.13636984, 0.49980164, 0.78770316, 0.28857595, -0.009130758, 0.7967518, -0.50396216, 0.00049999997, -0.932842, 0.06526606, 0.12008516, -0.81816345, -0.35127354, -0.27215096, -0.8792513, -1.5471559, -0.67752653, 0.7134527, 0.049849574, 0.00049999997, 0.622982, 0.6224637, -0.4415589, -1.3658988, 0.2804697, -0.7102836, 0.7182901, -2.053902, -0.1302972, -0.7646714, -0.7052709, 0.00040523862, 1.0017316, 0.099406295, -0.29284626, 1.7728474, -0.60649514, -0.6070297, 0.83287996, -0.04238123, 0.15054846, -1.0082093, -0.62518746, -0.00015217367, 1.0195631, -0.21222444, 0.5877602, 1.0413886, 0.6123683, -0.74476933, 1.0167711, 0.8767627, -0.9401026, -1.0228436, -0.18302393, 0.00027844962, 0.8394712, -0.60217047, -0.94666696, 2.1636188, 0.3491829, -0.11705573, -1.067852, 0.8784857, -0.26353204, 1.0792034, -0.20447384, 0.00049999997, 1.0414225, 0.31234053, 0.3063023, 1.4885585, -0.6075769, -0.1866352, 0.04433627, -1.9267699, -0.19097404, 0.6023797, -0.08133808, 0.00049999997, -0.018091336, -0.09085316, -0.63037014, -0.6312187, 0.7054596, 0.30535993, -0.18406028, 1.7937617, 0.18068162, -0.65795624, -0.3990536, 0.00032951095, -0.30737114, 0.31407788, -0.65701896, 1.7221025, 0.79083896, 0.11045873, 0.42127022, 2.3371253, -0.3582322, 0.6616234, 0.49901918, 0.00049999997, -0.24766794, -0.60427594, 0.62338376, -0.4153083, -0.28481755, -0.25934863, 0.54451853, -1.3534967, 0.3630571, 0.40713423, 0.3838157, 0.00049999997, -0.48161364, 0.460286, -0.032684848, -2.5232341, -1.279626, 0.077403784, -0.26937452, -0.6811744, -0.20884335, -1.1029781, 0.6751449, -6.702923e-06, -0.18691805, 0.7024563, 1.0897769, -1.3129476, -0.08501266, 0.62352234, 1.1152799, -0.22749048, 0.25931728, 1.102904, -0.5968367, 0.00049999997, -1.2511531, 0.18622403, -0.19948238, -2.9376097, -0.8218087, 0.028879253, 0.21534494, -1.5128202, -0.16367269, -0.6363755, -0.5392723, 8.525308e-05, 0.14289413, -0.56282264, 0.6207971, -0.88709253, -0.19500753, 0.2055604, 1.1894594, -0.94647896, -0.457882, 1.1022352, -0.2655544, 0.00049999997, -1.1168762, -0.48777065, -0.098812126, -2.1930132, -0.9305184, -0.24881794, -1.0748919, 1.3730395, 0.9317266, -0.93032277, -0.59122956, 0.00011906013, -0.5909217, -1.0750611, 0.7604095, -1.2472304, -0.4987543, 0.6707477, 1.1414784, 2.628344, 0.58142364, 1.2068368, -0.4551076, 0.00049999997, -1.1894629, 0.30866462, -0.7010959, 1.1352377, 0.63630307, -0.41276503, 0.7524795, 1.5962485, -0.44320154, -0.9601936, -0.15192947, 5.7786823e-05, 0.7349645, -0.2216647, -0.74308413, -0.49986747, -1.1225357, -0.43554395, 0.16494714, -1.6439099, 0.45837605, -1.109392, 0.19008805, 0.00030496428, 0.08244725, 0.2377888, 1.1889708, -1.765327, -0.49217218, 0.1031108, 0.030069655, -1.3807799, -0.076631345, -0.43592918, 0.24054714, -3.758633e-05, 0.075257234, 0.23044187, 0.44159076, 0.13100255, 0.56085974, 0.07347391, 0.052432876, 0.055712085, 0.06407987, -0.5565043, 0.09438217, -0.0003499266, 0.06357195, -0.08726861, -0.5577222, -0.44633427, 0.04711079, 0.21835724, -0.77352744, 0.46211332, 0.43427363, -0.6589319, -0.15955941, -0.00013653337, -0.6763365, -0.40788838, -0.1563333, -0.98621684, -0.30368263, 0.4082374, 0.50622445, -1.3278484, -0.08076952, -0.57804984, 0.4177066, 0.00028464018, 0.6452885, 0.119769365, 0.29052046, 1.942313, -0.045599725, 0.41303137, -0.37310323, -0.9419414, 0.06448201, 0.37575266, 0.40808353, 0.00049999997, 0.5528499, -0.009758818, -0.078371175, 1.1254797, -0.61788064, 0.069493175, 0.83849955, -1.8746426, -0.45349985, 0.8487565, -0.40452203, 0.00049999997, -0.7086951, -0.60371435, -0.4721946, -2.1360233, 0.103915855, -0.10838818, -0.52951413, -0.5949211, -0.010616197, 0.5386985, -0.11235159, 0.00049999997, 0.54038924, 0.031425826, 0.09961737, -0.48211285, -0.025901085, 0.21964549, -1.0995568, 0.1149034, -0.67684186, 0.87380654, 0.1904936, 0.00049999997, 0.8939547, 0.667951, 0.11237073, -1.0908505, 0.53785235, -0.85175633, -0.62256795, 1.9311389, -0.74502254, -0.80141956, 0.45280522, 0.00019252085, -0.74700797, 0.18601762, -0.89985627, 0.7622967, 0.3646307, 0.0047651073, -0.6292239, -1.9205033, 0.37012637, 0.58649665, 0.21892709, 0.0005, 0.5088731, -0.4299999, 0.29163197, -0.40859812, 0.3682534, -0.7178996, 0.731774, -0.3599777, 0.79216236, 0.6928089, 0.28103027, 0.00049999997, -0.65065473, 0.43717235, 0.75631493, 0.97772074, -1.2470412, 0.1690099, -0.23422092, 0.93409085, -0.09930546, -1.225631, -0.35567197, 0.0004897008, -0.27122357, -0.32832873, 1.2071345, -2.8154094, -0.18362483, -0.39944154, 0.37740314, 0.10652239, -0.08523917, 0.41380218, 0.39649314, 0.00049999997, -0.5428821, 0.070135355, -0.18990742, -0.7628263, -0.10086985, -0.81358486, -0.95805603, 0.88604945, -0.16202532, -0.94470024, 0.81930196, -0.00014364865, -1.2464105, 0.18864699, -0.028970137, 0.5978039, 0.9974678, -0.022495344, 0.6125798, 0.92799354, 0.3370272, -0.95715094, -0.58393246, 0.00036505837, 0.5120282, 0.6738384, -0.808994, 2.4209337, 0.08694574, -0.07513688, 0.54796594, 1.1629193, 0.34053865, 0.44436216, 0.0068975375, 0.00049999997, -0.43582767, 0.33221772, 0.11470624, 2.4877453, 0.20167203, -0.21209723, 0.6289679, 1.5191996, 0.35427663, 0.5902901, 0.08545929, 0.00049999997, -0.5613145, 0.2963613, 0.2799171, 0.570502, -0.34100014, -0.61477757, 0.59835386, -1.3884568, 0.494292, -0.66706634, -0.40368024, 7.441983e-05, 0.7011804, 0.17126311, 0.57556456, -1.0171758, -0.18652701, -0.11729184, -1.1241591, -1.7982258, 0.86080337, 0.7236244, -0.21833068, 0.00049999997, 0.73246735, -0.8802803, -0.029689092, -2.0901108, -0.33708915, 0.037546616, 0.47452727, -0.01379236, -0.11815861, -0.5698636, -0.038846117, -0.00029299757, 0.4611121, -0.11857795, 0.3369419, -0.6203269, 0.6299042, 0.026976967, -0.18712212, -2.6563177, -0.039849807, 0.65525514, -0.03967871, 0.00049999997, 0.18480918, 0.049342174, 0.62923175, -1.1741424, -0.03277978, 0.73081094, -0.9899356, 0.17088807, 0.9353071, 0.6582679, 0.4549895, 0.00049999997, 0.7995359, -0.7400879, -0.5728383, 1.2566863, -0.8268805, 0.3400941, 0.99376756, -0.81521755, -0.5434347, -1.2208469, -0.034366954, 0.000104619685, 0.8988419, -0.42525092, 0.89342856, -1.6185453, -0.037125956, 0.034478072, -0.86654156, 0.6636907, -0.55431426, 0.6660872, 0.050251346, 0.00049999997, 0.66694736, 0.5555185, -0.006471583, -2.1827269, -0.50969636, -0.06954186, -0.5483057, -0.8871257, 0.2797617, 0.61079675, -0.3375297, 0.00049999997, 0.47666398, -0.43284732, -0.38820112, 0.42443985, -0.77727056, -0.054867804, 0.8814679, 0.48386443, -0.10445929, 1.1716937, -0.019178102, 0.00049999997, -0.87697464, -0.09093441, -0.7789687, -2.4242551, 1.2633258, 0.38661766, 0.024032492, -2.0092297, 0.3860266, -1.2633452, 0.03138276, 0.00019296011, 0.03215914, -0.022983145, -1.3207877, 0.5242423, 0.5984711, -0.1166502, -0.043786537, 1.1594878, 0.053013414, 0.4328058, -0.42844012, 0.00049999997, 0.11275689, 0.415649, 0.43383646, 1.7677008, -0.9110157, 0.26781815, 0.75031745, -0.36564162, -0.30504936, -1.1701962, 0.04730677, -0.00011108711, 0.73596716, -0.15351376, 0.9483869, 1.1068293, 0.28086385, 0.28826106, 0.46691853, 2.3014317, -0.11846047, -0.48030645, 0.36778343, 0.00027887407, 0.5357933, -0.25729963, -0.16344498, 0.39036676, 0.35256368, -0.42028058, 0.22605129, -1.7130116, -0.16718476, -0.37201846, -0.4309149, 0.0001106961, 0.44697225, 0.19236057, -0.33948386, -0.64416486, 0.8714289, -0.42337304, -0.5264595, 2.619576, -0.6621635, -0.7056407, -0.5285862, 0.00038979657, -0.13395436, 0.73390687, -0.8119297, -0.51098526, -0.23140483, -0.39206648, 0.5815918, 0.9931829, -0.23255777, -0.53489643, -0.45311818, 0.00018829464, 0.6617266, -0.32508948, 0.044137575, -1.8092095, -0.9228291, -0.039949823, -0.5320262, -1.5515388, -0.045792796, 1.0649717, -0.0005384766, 0.00049999997, 0.5315551, 0.022389347, -0.9236933, 1.3802, 0.4329083, 0.4934666, -0.17195727, 0.80915505, -0.46506333, 0.46564773, 0.16545835, 0.00049999997, 0.23831622, 0.0122941835, 0.63524985, 2.8074024, 0.3547565, 0.12321862, 0.8034951, 1.0816386, 0.16150199, 0.8485181, -0.20142889, 0.00049999997, -0.7966833, 0.22687802, 0.31695652, 0.6602905, 0.80188674, 0.23763716, 0.68017626, 1.7456229, -0.11426362, 1.0467638, -0.23100407, 0.00049999997, -0.71137553, 0.09973784, 0.80382276, 1.2971563, 0.8570208, 0.023933208, -0.5452147, 0.7329055, -0.0366572, 1.0152844, -0.013053518, 0.00049999997, 0.54450715, 0.030681366, 0.8572556, 2.0120726, -0.02839133, -0.099420704, 0.7391113, 0.014828652, -0.4896128, -0.55543613, -0.09352124, -0.00017235879, 0.5625383, -0.48844907, -0.044094473, 0.98219216, -0.46402708, -0.11309879, -0.67863023, 0.46771765, 0.062140588, -0.8221045, 0.09452001, -0.00027234966, -0.68517804, 0.0020357573, 0.468165, -0.49675015, -0.8442086, -0.38201442, -0.7802029, 0.22257206, 0.11904318, 1.0267905, -0.6315614, 0.00049999997, 0.8605117, -0.51682305, -0.6780512, -0.94613993, -0.59079444, -0.97025627, -0.2020256, 1.2583922, 0.8760147, -0.6212364, 0.4217977, 0.00023675284, -0.46347594, 0.06259185, 1.0547615, -1.8151736, 1.1570752, 0.23059686, -0.30509758, 0.65047145, 0.33942282, -1.0671542, 0.4806833, -0.00018486405, -0.17621464, -0.5413773, -1.0774698, 0.6848021, -0.6947482, 0.08154042, -0.16246255, -0.9886827, 0.04824992, -0.5360856, -0.47539675, -0.00013468653, -0.17525661, -0.47083044, 0.51314896, 0.46981144, 0.28226838, -0.23545599, -0.60116416, -1.5296683, -0.117712006, 0.62634206, -0.30058742, 0.00049999997, 0.6348085, 0.22083789, 0.21157075, -1.9417143, 0.61106616, 0.7231354, 0.90136415, 1.9223701, 0.5278428, -1.0817072, 0.5099758, 0.0004417894, 1.0279905, 0.12557301, -0.7976536, -2.066242, 0.5817668, -0.21173888, -0.9721336, -1.9858694, -0.27684128, -1.1161064, 0.077423595, 0.0003560022, -0.9556337, 0.19442776, -0.61424065, -1.6280208, -0.0045236987, -0.30221024, -0.45964885, 2.7431772, 0.103380576, -0.4519412, 0.2961252, 0.00044128555, -0.5402967, -0.08394432, 0.06050919, -0.6564498, -0.8796781, -0.18877254, 0.08699204, -1.945744, -0.110088795, 0.7440376, 0.5013234, 0.00049999997, -0.1763042, 0.47729406, -0.7470902, -2.2044332, 0.26120865, -0.24073303, 0.4792232, -0.38521576, 0.017663088, -0.5288936, -0.27531204, 0.00027558612, 0.5359993, 0.13474539, -0.22446737, 2.2922347, 0.32257, -0.5795723, -0.47658914, 1.3406667, 0.14624953, 0.55737275, -0.57882595, 0.0004999999, 0.73597044, 0.14326277, 0.32390755, 2.0354993, 0.3330194, 0.27937526, -0.36032394, -0.6515325, -0.070960715, 0.47252372, 0.3007852, 0.00049999997, 0.45038697, -0.13212363, 0.3138163, 0.13607669, -0.91416603, 0.4315271, -0.95856386, 1.9927557, 0.8109524, 1.0978038, -0.27918118, 0.00049999997, 0.6688917, -0.7411952, -0.97158265, -1.2452792, -1.1378896, 0.9036001, 0.19259861, -0.6258373, -0.8933929, -1.1540132, 0.13595067, 0.000461861, 0.23544933, -0.011850314, 1.4466525, 2.8144314, 0.42475057, 0.37345773, -0.035867367, 1.6298101, -0.36388296, 0.42327124, 0.09798401, 0.00049999997, 0.09135838, -0.050408132, 0.5570304, 0.43559727, 0.66457564, 0.62148577, 0.27875406, 1.0730181, 0.51456124, -0.71325755, 0.3634551, -1.251791e-05, 0.44629037, -0.1030935, -0.83414966, 0.9911313, 0.28725165, -0.29932192, 1.0328883, -2.4817555, 0.40010113, -0.96260536, -0.3902248, 0.00034013035, 0.9981838, 0.47197732, -0.14082524, 0.42570052, 0.6258037, 0.28402874, -0.14160945, -1.3045912, 0.25729436, -0.6373359, -0.14127484, 2.0233929e-05, -0.18580943, 0.07407214, -0.6725654, 0.85550433, -0.82623774, 0.014902044, 0.24502975, 2.346666, 0.046712227, 0.8541689, 0.1055649, 0.00049999997, -0.24099715, 0.11447232, -0.8196018, -0.77401733, 0.3795929, -0.32366526, 0.6201729, -0.35634366, 0.07357786, 0.7201506, 0.3308079, 0.00049999997, -0.69567233, -0.1004408, 0.37338462, 1.5727144, 0.2347229, 0.03205034, 0.886411, 0.058275387, 0.71915394, 0.529845, -0.2095908, 0.0004999999, -0.51920056, 0.7483873, 0.110425316, 0.045968108, -0.5051517, 0.2391762, 0.5321045, -2.010922, 0.30262563, 0.7091866, -0.031476393, 0.00049999997, -0.49875665, 0.1880632, -0.5580257, -1.9546728, 0.8485847, -0.010210322, -0.08322341, 2.0958807, 0.004713809, -0.8392232, 0.15102492, 0.0003506755, -0.08371482, -0.15075311, -0.8350997, -1.4529474, -1.1107394, 0.13416201, -0.9291681, -1.7335935, -0.21627013, -1.4372615, 0.051006842, 0.00039126805, -0.91355354, 0.17713001, 1.117649, -2.032981, 1.1524042, 0.037758607, 0.07750978, 2.8970926, -0.07054816, 1.0101857, 0.5567916, 0.00049999997, -0.049562473, -0.5599716, 1.0096754, -0.510192, -1.0859634, 0.19088835, 0.03254462, 0.9522954, 0.13986911, 0.9014516, -0.62019, 0.00049999997, -0.13391839, -0.60643274, -0.91165745, 0.13511443, -0.19046578, 0.6236807, -0.63253504, 0.91054714, 0.14838602, -0.61548394, -0.6515494, -8.357252e-06, -0.87581944, -0.23991126, 0.027169298, -1.1587641, 1.0261874, -0.8002642, 0.04364838, 1.7879359, 0.77947587, 1.0130584, 0.2480291, 0.00049999997, -0.18640095, -0.16934675, 1.277484, 2.3244014, 0.6250977, 0.2021655, -0.9726226, 1.6966724, 0.451069, 0.9661025, 0.4907092, 0.00049999997, 0.8851003, -0.63512814, 0.4368325, 2.209819, -1.0182744, 0.5123804, -0.16843812, -1.4738808, 0.26358756, 0.78670514, 0.7996279, 0.00049999997, 0.47056, 0.6680938, -0.8124112, 0.5019379, 0.20027557, 0.2641697, -0.6637299, 2.0686495, 0.16374068, -0.6879442, -0.22439963, 0.00019049639, -0.69535035, -0.08591024, -0.24400972, 0.05757565, 0.0214109, -0.099032715, -0.67133135, 0.88285005, 0.17358364, -0.64851993, 0.10120381, 0.00032362415, -0.6560198, -0.17483135, 0.0048680943, 2.3052235, 0.033242475, -0.062682346, 0.7762171, 2.515252, 0.48615232, -0.6052647, -0.06969738, 0.0003530082, 0.60835683, 0.48710644, 0.013281984, 0.46300068, -0.7412318, 0.15741473, -0.2783346, -1.8984016, 0.28210366, 0.6527598, -0.38209465, 0.00049999997, 0.15055594, -0.4481064, -0.65437573, -1.6231451, 0.90249527, 0.8262471, -0.55058295, 2.663025, -0.81980145, 1.0398524, 0.21669409, 0.00049999997, 0.5601353, 0.19064736, 1.2042533, 0.75123066, -0.58072156, 0.6595989, 0.55508745, -1.143111, 0.6524797, 0.77371573, -0.23677881, 0.00049999997, -0.5634383, 0.2161561, -0.84631187, -1.3428817, 0.3167765, -0.34447268, 0.37132433, 1.7668028, 0.1623516, 0.48391402, 0.31041864, 0.00049999997, -0.47977617, -0.06368941, 0.350213, -1.8670716, 0.774632, -0.5533007, 0.5565846, 0.8970762, -0.6884974, -0.85446924, 0.10879513, -0.00016807258, 0.37669533, -0.42393807, -0.945706, 0.42955345, -0.46506172, -0.44064862, -0.5992982, -1.1200956, -0.21883799, 0.7565546, -0.38645458, 0.00049999997, 0.7109426, -0.055371467, -0.5109858, -0.43132713, -0.5396032, 0.604575, 0.8567208, -0.12408141, 0.3873809, -0.7804017, 0.79470867, 0.0001805962, 0.97438043, 0.6450697, 0.1584948, 2.0356688, 0.041681364, 0.5069974, -1.084753, 0.7373729, -0.45444125, -0.99750173, -0.4836795, 0.00019736512, -1.1077987, 0.4282712, 0.15760073, -1.9554828, -0.64104694, -0.81986105, 1.0582987, -0.6360021, 0.2733982, -1.2288219, -0.78635836, -0.00028262776, 1.3105044, -0.1446861, 0.68172836, 0.14166556, 1.061703, 0.398107, 0.088195994, 1.2421113, -0.23699817, 0.8026533, -0.77010435, 0.00049999997, -0.33181247, 0.7005283, 0.832251, -0.33917648, 0.4072134, 0.34562394, -0.6396459, 1.4404883, -0.06081299, -0.71438056, -0.42472064, 0.00026371045, -0.7245029, 0.25422433, -0.3238686, -1.7806544, 0.8329754, -0.527105, -0.9077716, 0.8280991, 0.3130549, -0.98137814, 0.8571057, -1.6802944e-05, -1.001941, -0.744845, -0.48688528, -1.1884104, 0.9801557, -0.43466127, 0.23360659, -2.1746888, -0.41775405, -1.0074164, -0.12166113, 0.00030148006, 0.26264817, 0.019735202, -1.065286, 1.0189075, -0.10888012, 0.43336436, -1.3666391, -0.47753382, 0.87739265, -1.0638142, -0.4072396, 0.00015533318, -1.1338826, -0.86478764, -0.18388951, -1.9046926, -0.69329214, -0.48585013, 0.7296574, 1.5317489, -0.7050558, 0.86184424, -0.09604848, 0.00049999997, -0.52090955, -0.5198832, -0.84111774, -1.6610401, -0.3846644, 0.3160729, -0.40323055, -1.2582853, 0.11827233, 0.5453916, 0.31467956, 0.00049999997, 0.4985064, 0.11449652, -0.38580504, 1.6935303, -0.57259095, 0.20306855, 0.060940236, -1.4595675, -0.1492411, -0.51070315, 0.29953352, 0.00018860553, 0.15059094, 0.26600075, 0.5285612, 1.4618714, 0.701539, 0.6773246, 0.74961364, 0.9308535, -0.018850783, 0.921233, -0.81475186, 0.00049999997, -1.0101157, 0.45321894, 0.53582174, 1.9078712, -0.4978062, -0.087924756, 0.29671204, 1.0297198, -0.1675556, -0.3959193, -0.39843804, 0.00017689381, 0.26018056, -0.42319843, 0.31110927, 1.7474864, 1.1492935, -0.77605474, 0.2816465, -0.30758622, 0.2520893, 0.78957945, 1.1469424, 0.00049999997, -0.7861533, -0.88134253, 0.77952546, 1.166958, 0.78142667, 0.14341007, -0.2592667, 0.77956486, -0.24361853, 0.72720444, -0.33201918, 0.00049999997, 0.16862881, 0.38603145, 0.72177356, 1.1833122, 0.65728164, 0.28383148, -0.5811936, -2.367608, -0.30337796, 0.867104, 0.08036318, 0.00049999997, 0.57123387, 0.1339259, 0.71142197, -1.3289778, 0.52428865, 0.33742043, 0.17596242, 1.3178109, 0.37897375, -0.49015486, -0.1892642, 0.00011145668, 0.0345568, 0.25610456, -0.5940624, 1.2742466, -0.61432606, 0.1613905, -0.9392316, 0.022273855, -0.6296762, -0.90753347, 0.25591063, 0.000451498, -0.71533936, 0.6602542, 0.5813374, -2.8533955, 0.28216723, -0.2932206, 0.71641403, -1.9569397, 0.18503317, -0.7148724, -0.36546686, 0.0003317602, 0.75165826, 0.28605068, -0.17897111, -1.5450836, -0.6752138, 0.37116498, -1.0872836, -0.48806846, -0.3190028, -1.2721348, -0.23616356, -1.2343153e-06, -1.1037147, 0.14061494, 0.73341936, -1.4126275, -0.7897902, -0.32522613, 0.27936894, -0.55891293, -0.15896015, 0.76595795, 0.44229808, 0.00049999997, -0.39818412, 0.33929923, -0.7306934, -2.2392235, -0.90326303, -0.5034594, 0.23169823, -0.091693446, 0.5539769, -0.8331979, 0.3491854, -0.00044166917, 0.016277501, 0.41874763, 0.97335756, -0.14881511, 0.4111966, -0.41202074, 0.5031651, -1.1048388, -0.091360606, -0.62600094, -0.43794405, 0.00012752978, 0.64388615, 0.17430054, -0.3834693, -1.5215571, 0.19255319, -0.26573756, -0.37984586, -0.66228557, 0.42171252, 0.27121356, 0.02403733, 0.00049999997, 0.19250414, -0.3283334, 0.32728484, 1.6920818, -0.8497424, -0.54878664, 0.37671643, -0.3552944, 0.6646505, -0.73288655, 0.4315798, 0.00033191647, 0.03635762, 0.57171184, 0.9148595, -2.467299, -0.46777922, -0.35560083, -0.7748313, 1.8711197, 0.48580128, -0.8374598, 0.091056764, 0.0003401533, -0.7005803, -0.34328163, 0.58049804, -1.6841371, 0.54627174, -0.064701274, -0.345854, 2.125101, -0.1847679, -0.5962989, -0.18028472, 0.00026115053, -0.29943627, 0.24991103, -0.5197081, 0.83059895, 0.54296386, -0.22847028, 0.114134654, -0.004570352, -0.24991977, -0.53053373, 0.12692225, -0.00019201537, 0.052587975, -0.16238993, -0.57523835, -0.92372835, 0.8988993, -0.033909872, -0.31672066, -0.038492963, -0.16729677, 0.7566711, -0.555826, 0.00049999997, 0.27106023, 0.5794661, 0.70726746, 1.8721522, 0.56070334, 0.8470362, -0.3301293, -1.7981538, -0.87591887, 0.6071899, 0.07021854, 0.00049999997, 0.24335557, 0.23386765, 1.0133746, 1.3286185, -0.10956331, 0.14117905, -0.8700894, -1.1589279, 0.16260676, -0.8585002, -0.15977436, 8.831231e-05, -0.8663407, -0.17898963, 0.08004887, -1.3287166, 0.8607087, -0.018796325, 0.8833879, -2.3376286, 0.6305441, -0.8508554, -0.63246036, 0.0003888026, 0.6189842, 0.8928823, -0.5840948, -1.2802248, 0.71080106, 0.6664045, -0.027930414, 1.5949234, -0.6551891, 0.689969, -0.2116207, 0.00049999997, -0.12490938, 0.17309266, 0.95107824, -0.009043515, -0.99857754, -0.74985397, 0.20638978, -0.22485189, 0.7064261, -1.0149972, -0.26977402, -1.0677271e-05, 0.3253308, -0.0976453, 1.2192868, -1.4488716, -0.33263436, -0.30781743, -0.21895762, 1.0812584, -0.1980529, 0.39054772, -0.24816765, 0.00049999997, 0.32166603, -0.077849545, -0.37922293, -2.089391, -0.66410506, 0.2750955, 0.06264308, -1.8205732, 0.27059674, 0.57568944, 0.34058222, 0.00049999997, 0.07986904, 0.33695897, -0.63302195, 0.3597527, -0.061540205, -0.47687623, -0.72884417, 1.7821789, -0.32796705, -0.6641959, 0.46226957, 0.00013306356, -0.80688435, 0.30634072, -0.13230644, 0.6498112, 0.17915852, -0.13862062, -1.1248919, -0.07836126, 0.27940628, -1.0983093, 0.17984511, 0.00034702482, -1.0984215, -0.30198753, -0.13772868, 2.5372095, 0.5760516, -0.2490691, -0.20666914, -1.4722117, 0.23616256, 0.61198443, -0.07927946, 0.0004999999, 0.22130251, -0.0047498676, 0.6225638, 0.98167664, -1.3936584, -0.21678655, -0.2094908, 2.3173447, 0.017126603, -1.0461904, 0.968689, 0.000333081, -0.30098093, 0.9442751, 1.0251443, -0.9330492, -0.07755228, -0.78018254, -0.7247748, -0.92232645, -0.09255659, 0.72888255, -0.7747007, 0.00049999997, 1.0608565, 0.006558831, -0.120573856, 1.7681416, 0.042226605, -0.25940293, -1.2493104, -0.32069677, -0.1336261, 1.2422217, -0.2624476, 0.00049999997, 1.2689406, 0.1394446, 0.013936232, -1.8620176, 0.11398951, -0.3472355, -1.0930169, 1.2130693, -0.6719995, -0.9103076, 0.21910936, -9.230302e-05, -0.9293412, 0.61564565, -0.29250166, -0.147555, -0.5517917, -0.25222912, -0.045010928, -0.90229887, 0.23881498, -0.46760875, -0.3072931, -0.00017783714, 0.09280593, -0.29638168, 0.5231296, 0.34374893, -0.06654609, -0.24013478, 1.2161632, 0.5779296, 0.7005637, 0.9974939, 0.23529145, 0.00049999997, -1.0227062, 0.6989184, 0.08204287, 0.08914821, 0.020683762, 0.08470175, 0.84487385, 2.761898, -0.062779285, 0.8429639, -0.082973346, 0.00049999997, -0.846785, -0.06042705, 0.026788594, -0.010630314, 0.53030646, 0.79794747, -1.0928361, 2.929497, 1.048354, -0.9844112, -0.21005835, 0.0004886346, -0.85554934, -0.71165335, -0.9347836, -0.4401687, 0.27917036, -0.32924396, -0.94597024, -0.9352677, -0.40297732, 0.8621236, -0.4189861, 0.00049999997, 0.9169899, 0.47910172, 0.103866994, -1.7957739, -0.84365195, -0.18028978, 1.16927, -2.2089064, -0.351305, -1.3331609, -0.4590337, 0.00035012473, 1.1297263, -0.54920197, 0.7304387, 1.2695276, 0.43926123, -0.12081194, 1.0624436, 1.3942565, -0.0053881877, 1.1483318, 0.13280612, 0.00049999997, -1.0692768, -0.05541637, 0.43578494, 2.401624, 0.9803986, -0.47929636, 0.99839574, 2.5778308, -0.74817413, -1.2697564, 0.12511997, 0.00042728957, 0.81655055, -0.5879579, -1.0840902, 1.0429419, 0.57725453, 0.08560788, -0.1469686, 1.2264612, 0.059256848, -0.5886505, -0.11013804, -2.706021e-05, -0.15942751, 0.09117596, -0.5730804, 0.71030104, -0.5583465, -0.37539405, 0.62086934, 0.84897655, 0.20650199, 0.66880876, 0.5900864, 0.00049999997, -0.69552594, 0.49992424, -0.32321754, 0.64364654, -0.04702676, -0.4505362, -0.67779, -0.5905689, -0.13287905, 0.6740608, -0.43883792, 0.00049999997, 0.8029478, 0.08516283, -0.11231938, 2.9024022, 1.3472916, 0.47937113, 0.39990205, 1.5507884, 0.42408675, -1.4008365, 0.25044122, 0.0001304389, 0.45811427, -0.113020904, -1.407931, 1.0800678, -0.4799723, 0.0227008, 0.84417444, -0.49150753, -0.14162472, -0.95940983, -0.05472396, 0.0004033131, 0.8325194, -0.1501231, 0.4773825, 2.663415, 0.32066932, 0.3050653, -0.6047305, -1.5712732, 0.32231063, 0.5197412, 0.4331022, 0.00049999997, 0.5957178, -0.44541764, 0.09119259, -0.4292019, 0.41445842, 0.48450053, 0.16139384, 0.4166656, 0.37083787, -0.4284478, 0.33388048, -0.000315769, 0.35109535, -0.11939957, -0.5431761, 0.3622812, -0.29729533, 0.32923758, 1.2218263, 1.1379428, 0.92171705, 0.91627896, -0.022631116, 0.00049999997, -0.8670034, 0.8612067, -0.4430234, 0.05854488, 0.33481565, 0.41716966, 0.46466553, 0.17882967, 0.52856225, -0.47007763, 0.041172028, -0.00023308588, 0.33251557, 0.32717368, -0.5333262, 0.77970517, 0.0012499811, -0.37569323, 1.2045767, 1.8330443, -0.018381756, -1.2044549, -0.3756362, 0.00021074308, 1.2616707, -0.017175952, -0.0066661527, 1.0842001, 0.1944686, -0.50606024, -0.5478107, 1.8693349, -0.030081192, -0.57099026, 0.5167947, 0.00012581664, -0.74517685, -0.109016724, -0.16382389, 0.16453515, -0.6395592, -0.11292521, 0.5068913, 0.56111753, 0.07217551, -0.8156598, -0.09064676, 0.00034742037, 0.5142778, -0.025962073, 0.64309525, -2.4771247, -0.9082992, 0.71811426, -0.8273724, -2.2631674, 0.39675596, 1.2174087, 0.6210811, 0.00049999997, 1.0211846, 0.16573747, -0.97721756, -0.59107, -0.59659594, 0.6505845, -0.2255121, -2.088467, -0.4279733, -0.58410966, -0.5528991, 0.00021900449, -0.539402, -0.256122, 0.6881057, -0.52906024, 0.7115427, -0.6673053, 0.13538451, -1.4690704, 0.6718779, 0.71986777, 0.01700072, 0.00049999997, -0.11047797, 0.08007875, 0.97534645, 0.94854337, -0.4217199, 0.34976277, -0.037136424, -0.93924916, -0.3383352, -0.41924137, -0.10642677, -0.000109085464, -0.09613708, -0.058851007, 0.5374522, -0.6999152, -1.3364496, -0.031796686, -0.19904329, -0.22924721, -0.01267686, -1.3187414, 0.29578283, 0.00016039176, -0.20116799, 0.29434192, 1.3036952, -1.9664035, 0.3005914, 0.10323334, -0.40796238, 2.7675593, -0.08186501, -0.4774261, -0.18112998, 0.00044282235, -0.41278148, 0.1698612, -0.26115945, 0.57817054, 0.21279186, 0.2688116, 1.2797855, 1.9962238, -0.16962714, 1.2913373, -0.24303387, 0.00049999997, -1.2966639, -0.12481642, 0.24181533, -2.2267063, -1.3272414, 0.2775248, -0.4543256, 2.8171294, -0.4557366, -1.2231025, 0.58423114, 0.00045762557, -0.27520165, 0.68702376, 1.2236274, 0.56282324, -0.83101803, 0.15910237, 0.7895469, -0.65251034, 0.22636034, -1.0426095, 0.44834727, 3.8328344e-05, 0.7729546, 0.47638297, 0.7175579, 1.4757465, 0.442382, 0.12094552, -1.2058705, 0.4061042, -0.19532655, 1.2740294, 0.056124758, 0.00049999997, 1.1960766, 0.1633237, 0.45516998, 0.8759085, -0.8545005, -0.7624095, -0.90322506, -1.4158373, -0.7477619, 1.2118465, -0.3154917, 0.00049999997, 0.91538787, 0.27823552, -1.100865, 2.5512397, -0.6516649, -0.26538435, -0.41714245, 0.95693076, -0.3288826, 0.74799913, 0.03791014, 0.00049999997, 0.36915162, 0.19791937, -0.70260847, -2.181682, 0.7170606, -0.006316081, -0.5586931, -0.29019263, -0.33602268, 0.7213506, -0.43942675, 0.00049999997, 0.44639298, 0.553143, 0.5666744, 2.5365112, -0.42246926, 0.13592151, 1.3383329, 0.3102745, 0.059564788, 1.4032947, -0.12371633, 0.00049999997, -1.3438979, 0.019468961, -0.4262033, -0.31404582, -0.35215655, 0.07374539, -0.36306027, 0.26136246, 0.24607937, -0.32788515, -0.30528945, -0.0003805786, -0.27694064, -0.3851212, 0.19039685, -0.24449071, 0.04796872, -0.21366508, 0.54023224, -0.38677484, -0.16198403, 0.5156539, 0.21832725, 0.00049999997, -0.5579111, -0.16808578, -0.01694047, 2.435302, 0.44091886, 0.9235425, 0.90698653, -0.7749778, -0.43291447, -0.79777515, 1.0227927, 0.00026301853, 1.2198936, -0.6169192, 0.03514581, 2.1509664, -0.076901294, 0.4780969, -0.8664573, -1.4022732, 0.56144345, 0.7367432, 0.3566925, 0.00049999997, 0.81492704, -0.46246278, -0.32750708, -0.4782153, -0.020798065, -0.2635175, -0.52680176, -1.4290218, 0.30743048, 0.44478184, -0.23462673, 0.00049999997, 0.50244206, -0.2830578, 0.12175523, -0.016210228, 0.015757345, 0.36944377, -1.0432492, -1.8543754, 0.3312204, 0.9939596, 0.35699177, 0.00049999997, 1.0560068, -0.31727174, -0.096404806, 1.836414, 1.1913311, 0.63522977, -0.029515829, 0.37989905, 0.6297582, -1.1698242, 0.24202035, -0.000322157, 0.08827578, -0.22727162, -1.3282369, -0.3744117, -0.6712654, 0.37788573, -1.1033618, -1.7884643, 0.28700417, -1.1803952, -0.57887655, 0.00012432998, -1.130413, -0.52409154, 0.50822896, 0.5545446, 0.5742186, -0.2716793, -0.7108225, 0.11305401, 0.44618043, 0.84156054, 0.03878673, 0.00049999997, 0.6164425, -0.35605022, 0.63406, 0.41871846, -0.8520221, -0.5528108, -0.5815549, -1.860431, -0.67677766, 0.95080173, 0.08772339, 0.00049999997, 0.43101957, 0.40015438, -1.0118527, 1.4677591, 0.36286873, 0.34668326, 0.9738552, 2.0348105, -0.0058140554, 1.0327812, -0.36549404, 0.00049999997, -1.0337068, 0.115889624, 0.34391436, 1.8093836, 0.6131995, -0.1148662, 0.3416632, 1.8912044, -0.1780755, -0.6827286, 0.09006937, 0.00047263334, 0.31339607, -0.16318437, -0.6173292, -2.2192135, 0.62930393, 0.2072912, 0.18901336, 1.0257431, 0.27995017, -0.49382538, -0.39049137, 0.0004891788, 0.017988652, 0.43345815, -0.53526586, 2.7809522, -0.16067009, 0.5855031, 1.0461727, -2.751297, -0.94227296, -0.7142713, 0.2550373, 0.00046888713, 0.74122375, -0.7810944, 0.5509853, 0.92817235, -1.054351, 0.43067783, -0.0992101, 0.8421689, 0.43517613, 0.9668965, -0.4274517, 0.00049999997, -0.077121764, -0.4319836, -1.0556631, -0.37183005, 1.1214405, -0.36123356, 0.6562477, 1.6455398, -0.22904186, -1.2902257, -0.31880623, 5.555315e-05, 0.71322525, 0.15364882, -1.1342317, 0.2514452, -0.14902924, -0.55967635, 0.86380047, -2.8445802, -0.68491006, -0.59758776, -0.5053567, 0.00044886902, 0.76830125, -0.6412876, -0.28295213, -0.041097827, 0.71256834, 0.26310995, -1.0710983, -1.7902102, 0.41800755, -1.2444835, -0.027613768, 0.0002040292, -1.0206608, -0.32598457, -0.75909036, -1.1165206, 0.649618, -0.21912663, -0.32541966, -2.7219439, 0.35940486, 0.58478487, 0.32368645, 0.00049999997, 0.15729785, -0.43119404, 0.60435677, 0.9282747, -0.4807917, 0.08530344, -0.24339873, -2.578298, 0.14181803, -0.3426283, -0.40021715, 0.0004548148, -0.21542338, -0.41594398, 0.2797563, 1.2401932, -0.4423571, -0.34569016, 0.36071867, 0.12073298, -0.30022547, 0.56902117, 0.17714125, 0.00049999997, -0.39935485, -0.044862732, -0.5327311, -0.8796088, -0.6757287, -0.046691265, 0.76177514, -1.712014, 0.46768147, 0.778705, 0.4625834, 0.00049999997, -0.6031215, 0.6561473, -0.49477878, -2.234979, -1.0011666, 0.75576013, -0.07627724, -0.8934578, 0.75942755, 0.9985665, -0.07389841, 0.00049999997, 0.016167877, -0.104965635, -1.2522169, -0.88130784, 0.37761784, 0.10321657, -0.55008346, -1.2366264, -0.4185226, 0.49265337, -0.19486426, 0.00049999997, 0.37159684, 0.44997734, 0.33952433, 0.46964127, -0.626441, -0.036607992, -0.19866836, -1.3704414, 0.13627215, -0.5544287, -0.32753056, -2.2816348e-05, -0.14912798, -0.35285437, 0.5352497, -0.41334152, -1.048739, -0.52386963, 0.51318926, -2.4328375, 0.29006392, -1.1188166, -0.5493347, 0.00031274732, 0.67354697, -0.33386567, 1.0356276, -0.10957783, -0.41578156, -0.87109375, 0.881376, 1.9829999, 1.0138371, -0.77369875, -0.28640383, 0.00017148542, 0.7125746, 0.59252703, 0.9217655, 0.34402722, 0.50764966, -0.01510639, 0.72048706, -1.9001889, 0.20912328, 0.8464688, -0.1295988, 0.00049999997, -0.6896356, 0.24556096, 0.4910606, 1.4831514, 0.8772562, -0.21448329, -0.5240321, -2.2945056, 0.44491005, 0.85881716, 0.39329302, 0.00049999997, 0.3502397, -0.55373394, 0.81295896, -1.5114033, -0.11844824, 0.26129454, -0.5704117, -1.3141094, -0.15994577, 0.54873264, 0.28457716, 0.00049999997, 0.60668087, 0.19568332, -0.036340892, -1.036855, 0.8651291, 0.35311487, 0.09369249, -0.3547536, -0.3398368, 0.86623234, -0.1267642, 0.00049999997, -0.13408715, 0.08287391, 0.92578036, 1.3875875, -0.67911106, 0.09156473, -0.24083318, 1.0885419, 0.03413532, 0.70491976, 0.1717543, 0.00049999997, 0.25538105, 0.14926706, -0.6633827, -2.1858056, -0.87417895, 0.040332872, 0.44787955, 0.75917375, 0.15972081, 0.9431094, 0.22681603, 0.0004999999, -0.42037135, 0.27446222, -0.845204, -1.4087962, 0.1981958, -0.19602267, 0.5055016, 0.21008076, -0.4188983, -0.39706054, 0.010269035, 0.00029703675, 0.3442106, -0.37034637, -0.2785696, 2.380749, 0.7554906, -0.12164604, 0.83502436, 1.9518945, 0.48738462, -0.85203457, -0.56508654, 0.00048199078, 0.688854, 0.73625314, -0.5159854, 2.2020228, 0.21279718, -0.18014592, 0.9436851, -0.41058958, -0.31245977, -0.9269864, -0.10649976, -0.00028386363, 0.908495, -0.27662385, -0.2576684, 0.501759, 0.33149695, 0.3533787, 0.9138544, 1.1770977, -0.07753231, 0.971177, -0.34742028, 0.00049999997, -0.9767268, 0.04284348, 0.33773643, 2.331707, -0.9787719, -0.20608419, 0.6988624, -0.7242317, -0.5034375, -0.6547781, -0.8981592, 8.729837e-05, 0.5267165, -1.0087957, 0.44019878, 1.6041499, -1.2366995, -0.5823703, 0.19469403, -0.81487375, 0.6094704, -1.2175224, 0.22950268, -6.0135782e-05, 0.0748784, 0.2914969, 1.347557, 1.0365686, -1.0083593, -0.29819274, -0.30764207, -1.1107066, -0.34733906, 1.0295388, 0.140558, 0.00049999997, 0.2508349, 0.22689654, -1.0420897, -1.6484029, 0.89925605, 0.71901256, -0.11809603, 2.1360483, 0.70966077, -0.90678793, -0.11706591, 0.00025399792, -0.16524886, 0.018545056, -1.1453978, 0.7364699, 0.5112959, -0.069543175, -0.59059644, 2.213179, 0.023499016, -0.77590793, 0.111707516, 0.0002424038, -0.59421223, -0.090523556, -0.50376695, -0.24033411, -0.17801991, 0.48061356, 0.6427641, 1.2010505, 0.10303287, -0.6392527, 0.50652385, 0.00042924282, 0.7959393, 0.19024423, 0.07819215, 2.5120459, -0.05975734, 0.12115906, -0.54205215, -0.85284984, 0.06651836, -0.5396952, -0.12796548, 4.1038154e-05, -0.5514301, -0.07823254, 0.043304753, -1.3788537, 0.1552484, -0.54299194, -0.79332066, -0.8077063, 0.23550496, -0.7576319, 0.56465155, 0.0002532824, -0.9320598, -0.28187537, 0.010531979, -2.1082447, -0.5436435, -0.009891521, 0.10121267, -1.8006239, -0.0184635, -0.53170204, -0.15113617, 0.00033999718, 0.10000481, -0.15193816, 0.5223064, -1.7613155, -0.809244, 0.20889214, 1.1851032, -1.0240301, 0.19065444, -1.3878559, 0.374818, -0.00011235189, 1.1881735, 0.36496812, 0.74700946, -0.5508832, -0.5457537, -0.276639, 0.4191453, 0.91748095, 0.31488234, -0.6707017, -0.032671385, 0.00029762273, 0.39123014, 0.15391281, 0.61099005, -2.2098556, -1.0273418, -0.20734105, 0.14003749, -0.3400223, 0.13858584, -0.96429425, -0.4110513, 3.6937283e-05, 0.20831408, -0.3810236, 0.96408427, -1.5733902, -0.60147125, 0.1955802, 0.8205279, -0.99149513, 0.3162347, -0.8819777, 0.44203666, 0.00038310012, 0.7819932, 0.5070988, 0.45235252, -2.4556148, -0.85392255, -0.09067152, 0.8301253, 1.9315794, -0.48088488, 1.0240679, -0.38281527, 0.00049999997, -0.6826998, -0.60792804, -0.76867235, -0.3272049, -0.65602094, 0.5646397, 0.1381966, -2.8016715, -0.5809765, -0.64386314, -0.12722468, 0.00043658874, 0.019558802, -0.18682045, 0.85615146, -0.16477913, 0.5366815, 0.30214047, -0.2952492, -0.9551999, -0.27658847, 0.6121251, 0.12365102, 0.00049999997, 0.3193114, 0.022403117, 0.60334593, 1.3599689, 1.2054207, -0.45999846, 0.27760413, -1.1804402, -0.46538246, -1.2347019, -0.02514122, 5.081537e-06, 0.2684806, -0.07492892, -1.2899634, 0.94893146, 0.6582748, 0.12780763, 0.34990552, 0.95062006, -0.17753717, -0.5169463, 0.5228209, 0.000112597205, 0.32748923, -0.53714645, -0.4199035, 1.5702513, 0.7359382, -0.47744256, -0.008047901, 2.1321337, 0.45644897, 0.7077213, -0.24577656, 0.00049999997, 0.14025144, 0.20199117, 0.84211063, 1.7469646, -1.0542545, -0.72062314, 0.057912055, 0.22627132, -0.5779842, 0.9016619, 0.6978855, 0.00049999997, -0.4342646, 0.5493744, -1.0694418, -0.19089141, -0.24405879, 0.68773514, 1.2633567, -2.2988944, 0.81275517, -0.99131936, 0.6966561, 0.0003643689, 1.1867936, 0.8203178, -0.2172893, -1.1970886, -0.11442609, -0.06551534, -0.48551267, -0.83795685, 0.10449695, 0.4838422, -0.08991787, 0.00049999997, 0.47863886, -0.12129539, -0.096438386, 1.5084965, 0.22104947, -0.8052861, -0.8189637, 0.81174225, -0.7937014, -0.7099232, 0.48383602, 2.1920128e-05, -0.830196, 0.46429887, -0.6806257, -1.3367513, 0.7848367, -0.77610373, -0.0023018566, -0.63995516, 0.70388776, 0.71318066, -0.46284592, 0.00049999997, 0.32693195, 0.32763872, 1.0020376, -0.46785325, 0.37123895, 0.70017594, -0.541034, -0.58055145, -0.3657046, 0.6556758, 0.59760493, 0.00049999997, 0.8057443, -0.025006566, 0.5205121, -1.9714637, -0.2133886, -0.383614, -0.38449013, -0.20165373, 0.29986235, -0.4276446, 0.26024926, -7.406889e-05, -0.45285204, -0.102408014, 0.35350353, -1.260275, -0.031643357, 0.63595736, -0.75234175, -2.3293862, -0.3495516, 0.6965014, 0.60345733, 0.00049999997, 0.9210177, 0.28619096, 0.20318048, 1.5389252, 0.9750401, 0.55948645, 0.10686307, 2.5984726, -0.45156944, 0.88839525, -0.5310242, 0.00049999997, -0.34717405, 0.41578424, 0.9908285, -0.8651943, -0.32340634, 0.36292744, -0.44884807, 2.0897305, -0.21940412, -0.5531729, -0.28919566, 0.00030610283, -0.533894, 0.0074834786, 0.39073503, 1.2117847, -0.67524916, 0.8656679, -0.5570837, -0.9420769, -0.49983755, -0.85814047, -0.72762793, -0.00017688182, -0.89993656, -0.17291303, 0.8221315, -0.22361031, 0.3910791, -0.1076443, -0.7667322, -0.7365009, 0.11694887, 0.85734767, -0.060715232, 0.00049999997, 0.7653683, -0.07600056, 0.4010534, -2.1888094, -0.5982606, 0.30639926, -0.67598826, -0.3453451, -0.24790126, 0.73589855, 0.552951, 0.00049999997, 0.699561, 0.522809, -0.38215387, -2.9034953, -0.4072459, -0.28853366, -0.8675469, -1.2567676, 0.7681611, -0.623008, -0.1533886, 0.00027425028, -0.49580008, -0.7282501, 0.47494516, 1.9514751, 0.38012013, -0.08132867, 0.6675993, -2.2447548, -0.37274998, -0.66377133, 0.13137543, 0.00030386803, 0.55978614, -0.38676572, -0.36584997, -0.87611216, -0.24999608, -0.4134707, -0.8159472, -0.3923266, -0.09544579, 0.853045, -0.4030261, 0.00049999997, 0.9097349, -0.024124028, -0.2665069, 2.6810322, -0.2024134, -0.20839924, -0.4932632, -0.18593675, 0.35924625, -0.44389448, 0.04012263, -0.00026577958, -0.39709055, -0.29535988, 0.28773525, -0.6769505, 0.06057316, 0.113858685, 0.6604327, -0.0029795275, 0.2559819, 0.60891455, -0.12845492, 0.0005, -0.6193613, 0.26279956, 0.011499531, 0.70914567, 0.06258815, 0.46273795, -0.4418928, -1.1762831, 0.33691627, 0.3536275, 0.41802862, 0.00049999997, 0.5439514, -0.27227572, -0.20807631, -0.61386395, 0.09843263, 0.548984, -0.69388604, 0.1735768, 0.29641154, 0.63736373, 0.5463131, 0.00049999997, 0.8336676, -0.29143497, -0.11231391, 1.4850658, -0.6697711, 0.10821167, 0.63060933, -2.1595464, 0.26727623, -0.78213614, 0.41808802, 0.0003092296, 0.58132714, 0.48427707, 0.53432715, 1.105267, -0.75747794, 0.35177585, -0.21215874, -1.4284928, -0.21694979, -0.7204616, -0.41999814, -2.1316897e-05, -0.34884152, -0.3157838, 0.72188705, 0.14488707, 0.4556205, -0.1572103, 0.30834648, -0.88447064, -0.15122776, -0.54893535, -0.056416564, -4.2114996e-05, 0.31132433, -0.036572814, -0.4786672, 1.0500288, -0.20277558, 0.33282337, 1.3008877, -0.08979286, 0.7675147, 1.1082664, -0.16390623, 0.00049999997, -1.1018174, 0.7107551, -0.3535874, -1.9747891, -0.10876088, 0.21795197, -0.5561617, -0.39159945, 0.36588332, -0.4225425, -0.23713927, 6.171111e-05, -0.47217396, -0.37762755, -0.055650376, -1.637003, -0.37390277, -0.4118357, 0.6652107, -1.2482384, -0.28932256, -0.6122251, -0.5416548, -7.1812006e-05, 0.72691566, -0.45550957, 0.12657739, 0.2969418, 0.9793524, 0.42316672, -0.26800787, -0.76337504, -0.42043942, 1.0143948, 0.065295696, 0.00049999997, 0.27226642, 0.04430267, 1.0648652, 0.4875161, -0.45753786, -0.028388204, 1.1618073, -0.49250337, -0.6630877, 1.0317937, -0.23592293, 0.00049999997, -0.9544195, -0.70323485, -0.39304847, -1.7161639, -0.8577199, 0.43914858, 0.19364929, 1.0108993, 0.3187, 0.8176486, -0.44262406, 0.00049999997, -0.35886183, -0.32347235, -0.8559314, -2.474394, -0.7934744, 0.41552445, -0.482337, 0.3681843, -0.61148006, -0.7119538, 0.3925876, 0.00011006521, -0.17720522, 0.5961312, 0.80506957, -1.792238, -0.53645813, -0.0031373375, -0.42490038, -2.050232, 0.29371634, 0.49177828, -0.37446275, 0.00049999997, 0.30705196, -0.47590098, -0.38415468, -2.0689836, -0.9226746, 0.20086424, -0.84993374, 0.82189274, 0.025344227, -1.2297202, -0.31813222, -0.00017165608, -0.87297845, -0.24800001, 0.8890819, -0.5425178, -0.7697389, -0.2152376, -0.38782617, 1.0067778, 0.4264268, -0.5728513, -0.52842784, 0.00023366079, -0.12205156, -0.6440098, 0.5996575, -1.9556541, 0.18197052, -0.34698087, 0.7376183, 0.9163023, 0.34725907, 0.71676224, 0.25150105, 0.00049999997, -0.7374873, 0.25188488, 0.3004267, -0.7614267, 1.1753527, -0.0031497637, 0.22715393, 1.7135675, -0.120795436, 1.0050856, 0.6389633, 0.00049999997, -0.19239892, -0.65027356, 0.9865039, 0.8926561, -0.33236274, -0.33652723, -0.38470793, -0.6966884, -0.06452612, 0.4828433, -0.3666258, 0.00049999997, 0.5070376, -0.15914622, -0.2988329, -2.8308015, -0.35552126, -0.3437259, -1.0617949, -2.5287719, -0.34926367, -1.0241266, 0.448476, 0.00039931247, -1.0599862, 0.45273423, 0.20835581, -0.931229, -0.5435296, 0.808212, 0.63304305, 2.1627562, -0.40004343, -0.8264098, 0.71160835, 0.00042338987, 0.945471, 0.114955805, 0.6650147, 1.7284976, -0.62532175, 0.9375107, -0.9415137, -1.395552, 0.49300995, 1.1300077, 0.7977628, 0.0004999999, 1.2338215, 0.02361831, -0.795945, 1.6572156, 0.8526158, -0.23302051, 0.14151427, -2.196926, 0.27262473, 0.7274163, -0.4447697, 0.00049999997, 0.0007827385, 0.4667395, 0.7638274, 1.104754, -0.19264314, 0.012920094, -0.55396986, -2.081114, 0.12488725, 0.5724154, -0.030079268, 0.00049999997, 0.53986365, -0.12780714, -0.19071849, 2.0678053, -0.72153425, -0.22799519, -0.106331296, -2.3882184, -0.23287258, 0.48312083, 0.5443018, 0.00049999997, -0.095176205, 0.5463629, -0.52567005, 0.0316286, 0.8509884, 0.34762147, -0.33639824, 1.9871701, 0.22661243, -0.88788015, -0.34424, 0.00022999405, -0.4273772, 0.22139026, -0.8523618, -0.9144095, -0.0009893707, 0.4787854, 1.150946, -2.0109441, -0.83847845, -0.8519277, 0.35367516, 0.00018924798, 0.9224239, -0.7738841, 0.32272336, 0.4715927, -0.46492675, 0.13651606, -0.13593906, 0.29426667, 0.024759926, 0.39450133, 0.31149408, 0.00049999997, 0.19105758, 0.28107828, -0.371167, -1.4846729, 0.81629705, 0.3036861, -0.96088856, 1.5731779, -0.028543085, -1.2291179, -0.41270736, 2.6267113e-05, -1.0073316, 0.28092128, -0.7669673, -0.11401845, 0.39127737, -0.41328505, 0.15849122, 0.6629672, -0.42126495, -0.4126299, -0.03597839, -0.00013130554, 0.13586684, -0.08918583, -0.567986, 0.8837522, 0.55457956, -0.31973755, 0.0002120702, -0.82206225, 0.28795514, 0.49926874, -0.2785734, 0.00049999997, 0.13897471, 0.24143161, 0.576357, 2.786862, 0.9411998, -0.27127558, -0.02933612, 1.8785746, -0.18317956, -0.7062881, 0.65414864, 0.00016731257, -0.20222832, -0.6227961, -0.72906584, -0.6849709, -0.059696052, -0.14841859, -1.2312813, -2.709079, 0.69221497, -1.0268133, 0.09021146, 0.0004109521, -1.0290384, -0.6821082, 0.13211204, 0.33948922, 0.5368932, -0.090067625, -0.21292289, 2.952981, -0.20138375, -0.4466155, -0.3188759, 0.00048664812, -0.11354696, 0.36623088, -0.44123086, 0.14210147, 0.77160966, -0.17842178, 1.2335316, 2.7737832, 0.059356544, 1.4544007, 0.17323968, 0.00049999997, -1.2449545, -0.041241486, 0.7727895, -0.73912024, -0.39150307, 0.3974028, 1.1904361, -0.026052486, 0.63061684, -1.015865, 0.5465189, -0.00048979395, 1.0850759, 0.7337791, 0.111895695, -0.01601921, -0.951539, 0.5051871, 0.05526945, 0.102570705, -0.45459098, -0.8985592, 0.38682464, 5.5726596e-05, 0.22719108, 0.31791854, 1.0054884, 1.6621209, -0.6032039, -0.2782024, -1.2419336, -0.6127566, -0.73512363, 1.1980741, 0.08867002, 0.00049999997, 1.0389365, 0.6862015, -0.65832293, 1.3999553, -0.88039243, 0.59838814, -0.29450855, -1.1859235, -0.6456224, -0.88697654, 0.12782203, 3.275589e-05, -0.16725835, 0.2740408, 1.0567975, -1.0685744, 0.644603, -0.15988557, -0.8303965, -1.1131816, 0.17119996, 1.0471874, -0.06873116, 0.00049999997, 0.8281376, -0.092032686, 0.6605698, -2.409168, 0.29519477, 0.052466795, -1.3051847, -1.7976869, -0.3094879, 1.3028072, -0.017625945, 0.00049999997, 1.2690458, 0.30551705, 0.2993027, 1.4738172, 0.9431525, 0.5128171, 0.46966115, 1.3019024, 0.5340458, -1.0410409, 0.06425229, 0.0002009214, 0.44537386, 0.16233307, -1.0716294, 1.6491982, -0.9744673, -0.5027818, 0.124432236, 2.8353457, -0.42864868, 0.93165976, 0.4075905, 0.00049999997, -0.290746, 0.31157693, -1.0179619, -0.063026406, -0.39471164, -0.13795398, -0.49925297, -0.70412374, 0.16100213, -0.62927705, 0.04659327, -0.00026523793, -0.49230388, -0.09519101, 0.41552097, 0.003293949, 0.9925173, -0.15021977, 0.4902807, -1.2368426, 0.43071133, 0.8238564, -0.61950004, 0.00049999997, -0.2782605, 0.7394097, 0.7898582, 0.31722772, 0.30244526, 0.32695168, -1.0902185, -1.8185337, -0.40260848, -1.0243902, -0.41890064, 0.00022667652, -1.0646033, 0.48028526, -0.15130387, -1.201263, -1.1899332, 0.2389576, 0.5913148, -0.89896405, -0.6058751, -0.8144454, -0.8901062, 0.00016476317, 0.1991715, -1.0498921, 0.82507724, -1.778282, -0.98638034, -0.109947145, 0.74654424, 1.5014536, -0.025373567, 1.2328033, 0.14803575, 0.00049999997, -0.75417036, 0.10232313, -0.9813868, -1.9766494, -0.39745548, 0.1963804, -0.3000941, 1.2698499, -0.13540003, -0.4969677, -0.14588505, 4.2910957e-05, -0.33209726, -0.032409213, 0.418633, -1.0186524, -0.6930175, -0.24822071, -0.018372394, -2.112763, 0.24853595, -0.68717945, -0.09076619, 0.00032378692, 0.013451204, -0.091624826, 0.7305124, -1.2764225, -0.41287857, -0.090467356, -0.38067457, -1.0409005, -0.27034384, 0.46603483, 0.18246095, 0.00049999997, 0.2828634, 0.31335834, -0.38126248, -2.2136326, -0.031257074, -0.5414078, 1.088913, 0.016901126, -0.29990557, 1.0590603, 0.5179564, 0.00049999997, -1.1785207, -0.25514638, -0.16068809, 1.393393, -0.7744016, -0.48916322, 0.45356694, -2.2804067, -0.66408664, 0.6311295, -0.45317307, 0.00049999997, -0.063187025, -0.6380409, -0.79599774, 0.20872636, 0.97593826, 0.7961301, 0.25540316, -0.7230119, -0.6587425, 0.9739216, -0.518695, 0.00049999997, -0.51489055, 0.26298854, 1.1477082, 1.8124273, 0.27852395, -0.12607661, -0.806673, 1.7073743, 0.08255685, -0.8436016, 0.16035303, 7.859092e-05, -0.8122813, -0.12897064, -0.26030326, -0.30514547, -0.18406719, -0.38970965, 0.79495376, -0.2362882, 0.49237972, -0.7198611, -0.23888917, -0.00041512362, 0.73579013, 0.38422945, 0.3587287, -0.09450555, -0.18781357, 0.2175882, 0.4759039, -1.7951186, -0.38863745, -0.39658886, 0.027950296, 0.00015836683, 0.350414, -0.32322702, 0.28607222, -0.81851184, 0.7536446, 0.47584835, -0.7332816, 1.7230283, -0.7367101, 0.86688846, -0.19461825, 0.00049999997, 0.4705229, 0.5951355, 0.86979043, 1.1999656, -0.6141612, -0.17380472, 0.19954917, -1.0186, 0.19983916, -0.63518935, 0.061812013, -0.00013053707, 0.17347127, 0.11639727, 0.6352806, -0.43568695, 0.044558596, 0.52813095, -1.3019633, 1.0353464, -0.45203966, -1.2279683, -0.51358604, 4.7711135e-05, -1.3302975, 0.43495777, 0.13090873, 1.2753721, -0.27109158, 0.24341889, -0.34643155, -1.0039881, 0.16434179, 0.43960032, 0.18028189, 0.00049999997, 0.39020428, -0.016032375, -0.31660995, -2.7473001, -0.2890677, -0.18469091, 0.38387638, -0.09518112, -0.08716791, -0.42845207, -0.27177665, -0.00035431754, 0.41698143, -0.21760069, 0.20930436, 0.4261953, 0.9567291, -0.5981634, 0.28578448, 0.018594928, -0.6017601, -0.99413246, -0.0662459, -0.00035686133, 0.27813104, -0.09329733, -1.1263844, 0.42849886, 1.2505687, -0.59450686, 0.109530985, 2.2627475, -0.5383473, -0.98077285, 0.82317936, 0.0003345856, -0.27498713, -0.7835836, -1.1134344, 1.0647414, 0.119266756, 0.40769976, 0.9155048, -0.7257152, 0.17693667, -0.91604847, 0.38489157, -0.00015271184, 0.98643893, 0.11501731, -0.179728, 0.74666077, 0.060097303, 0.6283107, 0.6800332, 0.4560691, 0.5554685, -0.569666, 0.47724897, 0.0001509572, 0.74072564, 0.37621456, -0.4130611, 1.8965503, -1.1252013, -0.6762312, 0.15506399, 1.8482891, -0.5821775, 1.0810136, 0.48978612, 0.00049999997, -0.377363, 0.3486151, -1.2179804, 0.16784365, 0.6687737, 0.01221101, -0.42936045, 0.15918772, 0.11872718, -0.76881164, 0.16306491, 0.0002252175, -0.41279948, -0.20133848, -0.6487043, -2.1678014, -0.36341107, -0.16347086, 0.43266922, -2.2828023, 0.32640445, -0.480495, 0.092615925, 0.00037033617, 0.32769734, 0.2973127, 0.3875727, -1.2640616, 1.1879789, -0.44941807, -0.63937724, -0.92207146, 0.77602494, 0.8161091, 0.86823094, 0.00049999997, 0.09254808, -1.0742732, 0.92706287, 1.1565009, -0.8825151, 0.17001323, 0.019141296, -0.47320837, 0.15101695, 0.8213615, -0.3326605, 0.00049999997, -0.08040375, -0.3233646, -0.8349098, -0.7710928, -0.3688642, -0.8267979, -1.1329086, 2.2800558, 0.1264455, -1.1862684, 0.82457024, 0.00027425116, -1.3968135, 0.110950954, 0.37381697, -0.44016632, -0.6265571, 0.46194676, -1.22315, -0.05559532, 1.0317357, 1.0078281, -0.14787923, 0.00049999997, 0.8031262, -0.934319, -0.7642646, -0.44021618, -0.04110946, 0.116457164, 0.54133415, -1.8360865, 0.094229035, -0.533435, 0.12191366, 0.00015333059, 0.5456426, 0.100894906, 0.019731173, -0.67942345, -0.811111, -0.152888, 0.5248211, 2.3586757, -0.095373094, 0.96425813, 0.13350327, 0.0004999999, -0.5382526, 0.059534963, -0.814526, -0.17499647, 0.6611082, 0.24661463, -0.11183142, -1.8044382, -0.25694266, 0.47818485, -0.46444473, 0.00049999997, -0.085472375, 0.4700102, 0.5312006, 0.15312968, -1.1157868, 0.33557752, -0.70686245, 1.4987984, 0.1280361, 1.292825, 0.4116527, 0.00049999997, 0.77192855, 0.27062705, -1.0900159, -1.2469904, 0.08556702, -0.06041358, -0.4946055, 0.94891363, 0.091339424, -0.49144, 0.0758287, -0.00016451011, -0.48983824, -0.10219138, -0.072260134, 0.3318326, 1.1233022, 0.8548089, -0.3237983, 1.631254, 0.53720903, -1.0324256, -0.86189044, 0.00024726443, -0.7395606, 0.548407, -1.1178777, 1.5343847, 0.7238592, 0.121137515, 1.2700465, 0.79516244, -0.33966175, -1.3892285, 0.32609448, -0.00018786149, 1.2297648, -0.45500916, -0.65750194, -0.49267104, -0.83015513, -0.6568314, -0.57470554, -1.6057378, 0.7496985, -0.9427586, -0.005450807, 4.1436528e-05, -0.44684014, -0.3614554, 1.058563, 0.2315378, 0.8520862, 0.26669973, -0.12324747, -0.534035, -0.15230963, 0.72430724, 0.5143445, 0.00049999997, 0.2512379, -0.4654242, 0.7298145, 0.05345173, 0.062269934, -0.11834402, 0.9322345, -0.17422587, 0.0875689, -0.929483, -0.12384397, -0.00017332751, 0.9356273, 0.094870135, -0.05045312, 0.96369153, -0.84508896, -0.046436127, 0.59663427, -0.6259274, 0.0851799, -1.031221, 0.040391043, 8.4458916e-05, 0.5923455, 0.08204108, 0.8453993, 1.6360396, -0.49628022, 0.3944925, 0.8430181, 0.32122713, 0.16359489, -0.90352374, 0.51911384, -0.00032298797, 0.91626436, 0.37499088, 0.36392197, 0.42208695, -0.8148969, -0.23963152, 0.3814849, -1.6906725, 0.41799024, -0.6962851, 0.45550165, 6.403171e-05, 0.16804212, 0.56988984, 0.71693665, 0.02884177, 0.46359617, -0.30027437, 1.3733754, -1.8822764, -0.6321493, -1.3362004, -0.07875814, 0.0003924832, 1.2556722, -0.56182826, -0.54670227, 1.9032102, -0.8028646, 0.12486671, 0.20455202, -1.1190722, 0.016562896, 0.74235296, -0.38815266, 0.00049999997, -0.23907928, -0.3678929, -0.7138071, -2.5018437, 0.46843073, 0.45297262, 0.5927273, -0.89664155, -0.21249184, -0.5898806, 0.6187288, 0.00020239636, 0.71509254, -0.47201058, -0.20441668, 1.9041057, -1.1172111, -0.50159013, -0.107327856, -0.896091, 0.47586638, -1.1095308, 0.231873, 0.00032039988, -0.19147594, 0.16917828, 1.2024924, -2.290219, 1.0070686, 0.8445189, 0.5247917, -1.6813543, 0.57869047, -1.1052415, 0.6681053, 0.00048309314, 0.8085394, -0.2608356, -1.1318281, 2.420457, 0.98728466, -0.5760194, 0.75277776, 2.274589, 0.48287752, 1.2409688, 0.3162745, 0.0004999999, -0.8156603, 0.037443038, 1.0984079, -0.20179366, 0.353294, 0.53938735, 0.9948337, -2.485682, 0.13057646, -1.0546566, 0.52545106, 0.00044097044, 1.1240921, -0.047014866, -0.37370637, 1.3372793, -0.3850503, 0.3153574, -0.62810147, -0.45033103, 0.15146683, 0.7365927, 0.27697378, 0.00049999997, 0.6863086, 0.014365413, -0.41352087, -2.7328658, 0.20023626, -0.25718078, -1.1031077, -0.44822645, -0.2940991, -1.0935973, 0.20157857, -0.00023967771, -1.0938438, 0.24695395, -0.25613007, -0.6387109, -1.1562531, 0.32021302, -0.008912331, 2.594154, 0.30138192, 1.098726, 0.37617406, 0.00049999997, 0.10855747, 0.36027995, -1.139276, -1.0813413, -0.59734786, -0.12190964, -0.037034336, -0.13499233, 0.06034212, -0.42705387, 0.43248335, 0.0002634808, -0.11221555, 0.4193103, 0.4297029, 2.2837844, -0.020987762, -0.3742551, -0.8029526, 1.0216699, 0.55613226, -0.63076067, 0.27946034, -7.0320464e-05, -0.6895773, -0.49730703, 0.24981841, -0.7837632, 0.9329129, -0.124524996, -0.024904149, 2.1245573, 0.12643166, 0.89346004, 0.26869625, 0.00049999997, -0.011904748, -0.26958525, 0.90201724, -0.43643624, 0.23617955, -0.056518577, -1.0575936, -2.1914067, -0.19220826, 1.0632901, -0.099746555, 0.00049999997, 1.0415154, 0.20904313, 0.22141764, 0.0705344, -0.18883851, 0.16959034, 0.64494807, -0.12635098, -0.16423872, 0.63783336, -0.21580805, 0.00049999997, -0.6463316, -0.2116284, -0.13359547, -2.9921064, 0.9956444, -0.44251615, 0.10681718, -0.9019389, 0.42185187, 0.80034477, -0.6164634, 0.00049999997, 0.17108901, 0.601802, 0.8983878, 2.3090882, -0.6685604, -0.029228767, 1.0169088, 0.0077937157, 0.36427456, 1.1292825, 0.27194872, 0.00049999997, -0.94987476, 0.45364937, -0.61145014, -2.2796447, -0.6790225, 0.54480183, -0.151699, -0.032967225, 0.5646043, 0.6395283, -0.2304753, 0.00049999997, -0.03230527, -0.27402157, -0.8395009, -1.3089982, 0.56336194, 0.44574538, -0.9116794, 2.5351298, -0.53189296, -0.7583417, -0.6994516, 0.00034803414, -0.86425585, 0.7572673, -0.16380808, 0.18194789, -0.47708842, 0.10353432, 0.24507892, 1.1732736, -0.012278781, 0.49409238, -0.23263355, 0.00049999997, -0.2657673, -0.20868583, -0.42920202, -2.0990014, -0.26103035, -0.28513402, 0.74499327, 2.9648898, 0.17699262, -0.7850298, -0.23844278, 0.0004978357, 0.77781093, 0.08294542, 0.304275, 0.38950738, -0.506899, 0.39315227, -0.46914724, -1.3204782, 0.04781531, -0.58183825, -0.53925174, 0.00013366106, -0.61023074, -0.37216944, 0.34745187, -1.3657155, 0.9437459, -0.036675576, 0.967544, 0.4166769, 0.660036, 1.0129058, -0.60540634, 0.00049999997, -0.708406, 0.894885, 0.72490305, 0.94151527, -0.9810904, -0.37273702, -1.0481102, -1.8968327, 0.15622771, -1.4298173, 0.3622448, 0.0003605939, -1.1013905, 0.12921093, 0.98501265, -1.747045, -0.1035802, -0.42542857, -0.81673586, -1.574642, 0.3167956, 0.7552622, -0.43358436, 0.00049999997, 0.8646892, -0.3276665, 0.061016053, 2.470861, -0.22880316, 0.2969505, -0.7831629, -1.8114183, -0.60029316, -0.62430775, -0.06134034, 0.0002874897, -0.5840991, 0.52529514, 0.3698213, 1.5150046, 0.60918283, -0.16468191, -0.1633623, -2.0282843, 0.112892985, 0.6115186, -0.19547711, 0.00049999997, 0.20263901, 0.15438905, 0.6000105, -1.4796362, -0.2673193, 0.2974306, -0.6427892, 1.5117925, 0.24044698, -0.60813534, -0.3813912, 1.316941e-05, -0.66620433, -0.33883485, 0.12027183, -0.2876229, 0.8737924, 0.14657314, 0.6677109, 1.1622367, -0.22419456, -0.96225286, 0.5046195, 0.00037684207, 0.64580053, -0.53237236, -0.7282554, -2.356713, -1.0572246, 0.029599173, -0.9560071, -2.4745276, -0.37060288, -1.3263516, 0.3687751, 0.0004969634, -0.88174784, 0.52198225, 0.9912644, 1.6782211, 0.5439599, 0.45534587, 0.46146452, -2.1003819, 0.0494999, -0.6298006, 0.5631009, 0.0004068744, 0.6464047, -0.33495238, -0.4314505, 1.7288697, -0.37488982, -0.026105123, -0.700935, -0.63722205, -0.48156333, -0.5682805, 0.27872512, -0.00012510594, -0.5099883, 0.55579627, 0.25206372, 0.92599094, -0.6105588, -0.7333145, -0.712412, -0.0007979324, 0.36207598, -0.9310912, 0.6480997, -8.961291e-06, -0.9561286, 0.115681, 0.7003563, -1.4730768, 0.06422731, 0.73189205, -1.2234012, 1.1500994, -0.45294914, -1.1507094, -0.7121842, 0.00046596435, -1.3517447, 0.42036062, 0.18051304, -2.6578445, -0.013410087, -0.13992658, -0.90296495, 1.5973586, 0.16770323, -0.88809896, 0.13513236, 0.0003726424, -0.8982208, -0.16372438, 0.038710926, 2.0707085, -0.40782934, -0.39569196, -0.44507465, 0.9764342, -0.24416898, 0.6031095, -0.31245613, 0.00049999997, 0.5431805, -0.025984336, -0.47462416, -1.7763371, 0.32804585, 0.23037754, -0.4229084, -0.14325513, -0.22503117, -0.37907538, -0.3810541, -0.0001756043, -0.42577726, 0.37784585, -0.124441266, -0.9613728, -0.18639742, -0.28847313, -0.6413434, 0.00793073, 0.0032346195, -0.66383463, 0.2976495, -0.0004871854, -0.7032266, 0.07340935, 0.17136379, -0.037599772, -0.71576583, -0.44258147, 0.55120313, 0.092273876, 0.5732398, -0.8224098, 0.084038414, -0.000140632, 0.4136416, 0.37388235, 0.8373391, 1.0735531, -0.32000226, 0.46763286, -0.60570806, 0.036503933, 0.052483983, 0.66840404, 0.48830897, 0.00049999997, 0.76341873, 0.15006581, -0.28746524, -1.239063, 0.16928874, -0.31070587, 0.59108144, -0.47868586, -0.17902496, -0.6085748, -0.26862767, 0.00048682676, 0.6433238, -0.08759366, -0.23029542, 2.9183102, 0.6014025, 0.4988905, -0.09949131, -1.5603807, -0.50497735, 0.566818, -0.21021536, 0.00049999997, -0.061547272, 0.22427881, 0.7525863, 1.4298234, 0.9373353, 0.020898884, 0.17339914, -0.32792225, 0.11660317, -0.77963656, -0.5363506, 0.00043204988, 0.13002968, 0.5484811, -0.7690009, 2.77473, 0.082994, -0.08696223, -0.9132832, -1.5299342, -0.11158782, 0.90924716, -0.0967184, 0.00049999997, 0.9106025, 0.119347624, 0.071386136, 1.7536293, 0.626357, -0.28110397, 0.6566024, 1.9966294, 0.564296, 0.73013, -0.22572, 0.00049999997, -0.43785414, 0.5388506, 0.64837724, -1.1578859, -0.5468218, -0.024230048, 0.7214366, 0.7711459, -0.448128, 0.7209328, -0.31545103, 0.00049999997, -0.565897, -0.54748595, -0.4473163, -1.9062465, -0.99330527, -0.12978561, 0.030775318, -1.401391, 0.13161406, -0.9912267, 0.067781426, 0.000181578, 0.021660136, 0.07121996, 0.99945253, 1.4861412, 0.39550862, -0.4403446, 0.37048015, -1.460215, -0.4614641, -0.5112735, -0.11504933, 0.0002926248, 0.34381652, -0.17967209, -0.58059806, 1.8738954, 0.86746633, 0.07466623, 0.22588022, 0.7272088, 0.011555085, -0.8662623, 0.24197303, -9.471488e-05, 0.23762022, -0.23045482, -0.83637434, 0.9726176, 0.1763189, -0.079465464, 0.70652336, 1.9616786, -0.36603814, 0.6138955, 0.1603952, 0.00049999997, -0.609513, -0.3916577, 0.10805782, -2.0828295, 0.33389264, 0.21010785, 0.35167933, -1.1228848, 0.20446533, 0.30767295, -0.3779408, 0.00049999997, -0.35498956, 0.37483335, 0.11309447, 2.681471, -1.2875794, 0.7385565, 0.17930272, -0.50697887, 0.7594248, 1.2641091, 0.24653211, 0.00049999997, -0.029816674, 0.30337855, -1.4637448, -2.2760785, 0.15847665, 0.1772194, -1.1552384, 2.0807962, -0.023848139, -1.1650773, -0.18200015, 0.00021838064, -1.1685094, 0.0478131, -0.15296242, 0.55200464, -0.8059628, 0.0010450573, -0.5810826, -1.9724926, -0.2091402, 0.92648786, 0.2917442, 0.0004999999, 0.54214245, 0.35896125, -0.7513072, -1.3183132, 0.6307427, -0.2254755, -0.38753083, -0.3452837, 0.20993385, 0.73954934, -0.08860211, 0.00049999997, 0.39616558, -0.032913923, 0.66394675, 1.391731, 1.1504623, -0.56797534, -0.24810424, 1.5310411, -0.32930008, -1.0033, 0.7698477, 4.4487682e-05, -0.52508396, -0.61523, -1.0263984, -0.56381947, 0.9540907, 0.092950664, 0.34690863, -0.9853467, 0.05720399, -1.0114728, 0.113687806, 0.00043822045, 0.3545605, -0.08693323, -0.9518425, 2.6332297, 0.4976825, -0.16802688, 0.09543186, -2.7134974, -0.05293283, -0.37212127, -0.37914646, 0.00040800884, 0.18584508, 0.343978, -0.36355048, 0.21463773, -0.76963127, 0.635737, -0.63998246, -2.8231802, -0.848977, -0.7948351, 0.23140171, 0.00044748816, -0.30492193, 0.608397, 0.9710547, 0.31651533, 0.24455056, 0.47872856, -1.2440534, -1.6639028, 0.6322887, -1.1551306, -0.32021734, 0.0003655416, -1.1734824, -0.52263474, -0.43179473, -1.9921033, -1.0768034, 0.51744485, 0.9016586, -0.041841377, 0.90390855, 1.1072499, 0.44406065, 0.00049999997, -0.51350415, 0.8639973, -1.109083, -1.6157489, 0.7484466, -0.25399673, 0.23350127, 2.4259424, 0.2616871, 0.7814114, 0.011208241, 0.00049999997, -0.22484897, 0.06396411, 0.7902918, -0.79593635, -1.1273654, 0.12107254, -0.76331836, -1.2332357, -0.28143656, 1.1929697, 0.6048823, 0.00049999997, 0.7197964, 0.6560721, -0.95902485, 0.47799823, 0.561588, 0.08364961, 0.21592557, -2.5730875, -0.13739963, 0.5763192, 0.13408825, 0.00049999997, -0.18639334, -0.17280354, 0.55172336, 0.21876273, -0.033229664, 0.24120109, -0.49075362, 1.3166482, -0.36507732, -0.37582183, -0.15999316, -6.047239e-05, -0.40710643, 0.31733468, 0.18353297, -0.039226167, 0.35255516, -0.28676456, 0.21924882, -0.4774729, 0.13905966, 0.39070955, 0.28741527, 0.00049999997, -0.3331161, -0.14039664, 0.35202485, 2.7698898, 1.3315021, 0.023253176, 0.2345237, 0.8299698, -0.030202128, 1.3513411, 0.037485465, 0.00049999997, -0.23373039, -0.042149957, 1.3311774, 2.756027, 0.15487021, 0.35053277, -1.1565113, -0.53847045, 0.3679213, 1.0969416, 0.38174626, 0.00049999997, 1.1510974, -0.39777276, 0.033582415, -1.9835317, -0.06284552, 0.48072192, 0.56299716, 1.290107, -0.3975652, -0.49854898, 0.38131303, -3.640244e-05, 0.6245007, -0.26900616, 0.29940498, 0.5178255, 1.295212, 0.49073014, 0.21416953, -1.9068415, -0.28281966, 1.1030455, -0.8170452, 0.00049999997, -0.45464027, 0.71185225, 1.1184042, 2.3106012, -0.35092553, -0.2981737, 1.2389905, 1.2535936, 0.29153192, 1.2322457, 0.37912247, 0.00049999997, -1.24057, 0.37392142, -0.26138556, -1.8876052, 0.3886132, -0.41617453, 0.11908324, 2.868813, 0.32785955, 0.3874708, 0.2842125, 0.00049999997, -0.2826485, -0.122749284, 0.49340117, -0.46701813, 1.1936144, -0.33668327, -0.7219711, -1.7196062, -0.41748017, -1.3720373, -0.05037398, 0.00028736482, -0.67846006, 0.2519359, -1.2391665, -1.6158361, 0.37308505, 0.055909336, 1.1996759, -1.4883859, 0.0901305, 1.2513835, -0.08634862, 0.00049999997, -1.1975912, 0.111596316, 0.3672359, 1.8570714, -0.90240914, -0.04483469, 0.38314113, -1.2747014, -0.20169353, 0.88573813, -0.37139916, 0.00049999997, -0.32882676, -0.42024696, -0.8236596, -2.4785762, -0.69257396, 0.12367467, -0.4627441, -2.356791, -0.10517547, -0.83293056, -0.06519935, 0.00035779734, -0.46729603, 0.004172985, 0.70050204, 1.028554, 0.6198986, 0.7240339, -0.08495577, -2.319036, -0.7050243, 0.6237909, 0.17187946, 0.00049999997, 0.18542734, -0.048751604, 0.937527, -1.4742107, -0.628234, -0.45626056, -0.14331414, 1.0907497, -0.47495085, 0.5675427, 0.2751502, 0.00049999997, -0.055985387, 0.30514297, -0.7260469, -0.17570472, 0.5672123, 0.21429478, -0.16796376, 0.5069848, -0.22926442, 0.5852733, -0.027509362, 0.00049999997, 0.1468737, 0.08600402, 0.6057188, 1.6099236, -0.069190115, -0.96022147, 1.0607263, 0.29077545, -0.4754366, 1.0170519, 0.88967294, 0.00049999997, -1.3494909, -0.30908394, -0.36782384, -1.8757621, 0.7996727, 0.19126244, 0.7634063, 1.5987701, 0.5261048, -0.9393391, -0.31575763, 0.0002160152, 0.58530694, 0.5830161, -0.7591804, 1.4307497, 0.7371341, 0.3750755, 0.51061565, 1.0468924, 0.31807196, -0.8965732, 0.19940804, -0.00014564424, 0.54794186, 0.015866378, -0.8026734, -0.17850341, 1.206179, -0.79643756, -0.13970527, 2.627414, -0.80014586, -1.2118022, 4.0399096e-05, 0.00039729878, -0.11660571, 0.07694587, -1.4454, 0.57625175, 0.5345416, 0.17156194, -0.0057408493, 0.9634523, 0.16232434, -0.4990869, 0.19940975, 0.00012478097, 0.05583254, -0.19152005, -0.5247895, 1.6051307, -1.2463462, -0.055951573, 0.3843057, 1.2185528, -0.03571445, -1.2698433, -0.30070406, 0.00034866936, 0.38671175, -0.29760358, 1.2108207, 2.2343857, 0.40497085, -0.41525912, -0.7328749, 0.8429281, 0.13163105, -0.7719851, 0.51015615, -0.00021617982, -0.831997, -0.32426205, -0.27601132, 0.11338605, 0.055611026, -0.24645221, 0.46311024, 0.5932536, 0.2506211, 0.421605, 0.19426945, 0.00049999997, -0.46086743, 0.19953167, 0.16152601, 1.3933396, -0.20565017, -0.10788251, 0.61626047, -2.6932392, 0.06387789, -0.6489304, -0.092285216, 0.00039912853, 0.62236255, 0.03095664, 0.21310574, 0.08468376, 0.44054735, 0.105491035, 0.5946243, 0.67046326, 0.3612171, 0.5438226, -0.3640983, 0.00049999997, -0.48397163, 0.50191337, 0.2695233, 2.399005, 0.29384997, -0.53436625, 0.55540466, 2.6309974, 0.4064782, 0.6124648, 0.37420806, 0.00049999997, -0.6548259, 0.14038862, 0.4815219, 0.7149876, 1.1105258, 0.66964227, -0.57640374, 2.6067133, -0.68086725, 1.2386178, 0.12718472, 0.00049999997, 0.56310004, 0.17701879, 1.2905473, 1.0203356, 0.123092875, -0.48787066, -0.51930994, -0.9552396, 0.04589874, -0.5204784, 0.49984798, 0.00045412697, -0.7110513, -0.11805438, -0.057634298, -2.6946406, -0.81781155, 0.39163458, -0.010666885, -0.44313788, -0.38245785, -0.80341053, -0.17482789, -0.0002152755, -0.08495546, -0.15317035, 0.8897353, 0.7290529, -0.48786765, 0.8687949, 0.800913, -2.1234593, -1.0071948, -0.75886834, 0.20966467, 0.00021787111, 0.61792016, -0.55099523, 0.9740945, -0.34435385, 0.15570097, 0.6188187, -0.89228445, -0.1878238, 0.15502182, 0.8795096, 0.63701, 0.00049999997, 1.0747447, -0.21651088, 0.037384756, 0.8331328, 0.02403958, -0.07207316, 0.53965783, -2.5535927, -0.11336204, -0.52900714, -0.06560091, 0.00045056362, 0.5325167, -0.109361276, -0.038326982, 1.2626464, -0.32799214, -0.06489627, 0.6153625, 0.44975364, -0.25829116, 0.64724725, -0.06941203, 0.00049999997, -0.5622883, -0.25946257, -0.32706636, -2.510633, 0.45066422, -0.68662995, -0.9542814, -2.462224, 0.13828044, 1.045859, -0.68721867, 0.00049999997, 1.1674725, 0.14117484, 0.44976592, 0.6953197, 0.37416887, -0.44184667, -0.39920533, -0.17039797, 0.5504179, 0.4365369, 0.032732192, 0.00049999997, 0.22723004, -0.32985267, 0.5780653, 2.563997, 1.3821875, 0.07852304, 0.25770882, -0.7312228, -0.0710218, 1.405608, -0.047368057, 0.00049999997, -0.25987613, 0.033495713, 1.3836057, 0.10332761, -0.8154937, -0.8042936, -0.8532759, -0.61972725, 1.0227444, -0.9962517, -0.03839642, 1.4527497e-05, -0.5735518, -0.63292354, 1.1447461, -1.4123794, 0.9998939, 0.1335713, -0.38089836, -0.41161424, -0.10371004, -0.89836353, -0.58728176, -3.760176e-05, -0.3900885, 0.5812179, -0.8202009, -1.3242376, 0.937616, 0.6048449, 0.5529515, 0.6106918, 0.6251157, -1.0711957, 0.11174351, -4.8142865e-05, 0.52992743, 0.19343984, -1.1101688, 1.2089229, 0.32040623, 0.08282653, 0.42144844, 2.6840453, 0.31220865, 0.3161771, -0.29949448, 0.00049999997, -0.29496565, 0.42463034, 0.14079583, 1.1518812, -0.20255673, 0.33857226, -0.3854656, -0.6165305, 0.11049581, 0.4334845, 0.3226855, 0.00049999997, 0.5010046, 0.041280776, -0.22701202, 1.396902, -0.17812765, 0.31912285, -0.36998093, -1.2692554, 0.35890344, 0.3526719, 0.13139875, 0.00049999997, 0.3315323, -0.21032804, -0.34103262, 1.8126643, -1.2902739, 0.17586893, 0.10021534, -0.5490424, -0.18382494, -1.2887789, -0.1050582, 0.00014753209, 0.084742926, -0.11789394, 1.2979598, -1.8626856, -0.62597024, -0.19476798, 0.6889379, 0.00877978, 0.18293796, 0.84124374, 0.4040438, 0.00049999997, -0.6921732, 0.39847597, -0.5162576, -2.2641091, -0.01803523, 0.13622485, -0.5582381, 1.2791231, -0.016470835, -0.5584061, -0.1357337, 0.00048974814, -0.57438284, 0.01173531, 0.021420587, -2.6756787, -0.45296466, 0.21945707, -1.2810522, -0.2655271, 0.3789219, 1.3199853, 0.09214442, 0.00049999997, 1.2432517, -0.32235232, -0.49482104, 2.0143163, -0.8486407, 0.5545225, 0.12555256, -2.22128, -0.3091839, -0.6394041, 0.7341779, 0.0002841515, 0.47714135, 0.57194126, 0.69904864, -0.7664482, 0.37559313, -0.54214495, 0.5674589, 1.2461705, -0.101152614, 0.5904076, 0.63102144, 0.00049999997, -0.77826667, -0.3383766, 0.19184203, -0.031409413, 1.064188, 0.2956613, 0.15104893, 0.05551795, 0.09870747, -0.7659827, 0.8038998, 0.00026820088, 0.31699872, -0.75404394, -0.7574014, 2.3018644, 0.8057461, 0.17840469, -0.94062006, -1.0287207, -0.085034855, 1.237887, 0.16194461, 0.00049999997, 0.9536057, -0.040357728, 0.8092151, -0.84961563, -0.21985048, -0.45279077, 1.2172843, 0.30587596, 0.04641491, 1.2310737, 0.46630278, 0.00049999997, -1.2979393, 0.1207194, -0.18951364, 0.041833155, 0.9422107, 0.19973934, -0.06972837, 1.3302485, -0.20849837, 0.9306435, -0.15149142, 0.00049999997, 0.03586462, 0.16286626, 0.9511608, 1.966527, -0.016873254, 0.026820192, -0.5977834, -0.6847241, -0.30196765, 0.5159086, 0.031670246, 0.00049999997, 0.51660424, 0.302437, -0.0010127338, -2.487066, -1.2464571, -0.60415286, -0.024031011, -0.21503498, -0.52765113, 1.0600172, 0.71915317, 0.00049999997, -0.29523313, 0.6561983, -1.183839, -0.35309896, 0.27581573, -0.76395667, 0.922991, 2.2186003, 0.79710406, 0.8241196, 0.44392398, 0.00049999997, -0.89452076, 0.49881214, 0.6801732, 1.6687174, -0.37158024, -0.18262888, 0.3666913, 2.059458, -0.10947947, 0.5213328, 0.1487082, 0.00049999997, -0.39475322, 0.027323516, -0.38640794, -0.90259844, 0.13705634, 0.20926538, 1.4141567, -1.7328262, -0.9840713, -1.0166578, 0.24581747, 0.00026915566, 1.0369352, -0.99248713, 0.046370123, 1.5199554, -0.29045838, -0.401796, -0.64430743, 0.19197716, 0.3485009, -0.6834307, 0.26908687, -0.00027753552, -0.67462534, -0.18005735, 0.41641116, -0.6391295, -0.99248976, 0.8214691, -0.21504089, -2.058379, -0.6623148, -0.95588833, -0.5947327, 0.00041920258, -0.5314068, -0.34286508, 1.1428652, -1.8302879, 0.43482384, 0.5858871, 0.48095682, -1.2327543, 0.06391135, -0.5808327, 0.649772, 0.00022693384, 0.7553135, -0.28813985, -0.33186123, 1.7975525, -0.6636549, 0.45313233, -0.9566877, -2.55848, -0.25541067, 1.02725, 0.6637326, 0.00049999997, 1.0273002, 0.5481301, -0.45301858, 1.3707151, 0.24726546, -0.6161209, 1.154976, 1.4060252, -0.6284021, 0.9752415, 0.6547744, 0.00049999997, -1.1483402, -0.6663435, -0.10961557, -1.0217555, 0.2757803, 0.42825043, -0.48032147, -2.1825757, -0.41448107, 0.5179491, 0.22382148, 0.00049999997, 0.49225256, 0.19619417, 0.4575556, 1.4889872) + +[sub_resource type="MultiMesh" id="MultiMesh_pnewi"] +transform_format = 1 +instance_count = 128 +mesh = ExtResource("12_0dh60") +buffer = PackedFloat32Array(0.7400677, -0.10821047, -0.48917124, 3.6737647, 0.11986516, 0.885505, -0.014540042, 0.72170067, 0.4864466, -0.05356833, 0.74779564, 3.1067052, -0.3688318, -0.08159002, -0.55800647, -7.2780523, -0.010963066, 0.6676652, -0.09037759, -1.0315683, 0.5638333, -0.04039019, -0.36677748, -3.7523336, 0.46225378, -0.06758935, -0.3055413, 5.0757937, 0.07486899, 0.5530954, -0.009081857, 0.86364084, 0.30383947, -0.03345932, 0.46708074, 2.62087, -0.46784696, -0.10349335, -0.70780677, 0.6015661, -0.013906167, 0.846904, -0.11463999, 0.22637184, 0.7151978, -0.05123318, -0.46524116, 1.1247118, 0.86232066, -0.12608592, -0.5699782, 3.0088415, 0.13966587, 1.031783, -0.016941933, 0.59813267, 0.56680346, -0.062417366, 0.8713252, 2.4072547, -0.6226717, -0.13774246, -0.9420415, -5.936055, -0.01850814, 1.1271702, -0.15257786, -0.868377, 0.9518785, -0.0681878, -0.61920357, -3.765615, -0.28971547, -0.06408853, -0.4383112, -3.9145544, -0.00861143, 0.5244475, -0.07099112, -0.48469192, 0.44288814, -0.031726282, -0.28810182, -1.5066763, 1.0546542, -0.15420832, -0.6971072, 6.5029235, 0.1708172, 1.2619138, -0.020720618, 1.1116557, 0.6932244, -0.07633911, 1.0656672, 3.8377821, -0.7577765, -0.16762923, -1.1464418, -2.2415905, -0.02252396, 1.3717389, -0.18568356, -0.22182402, 1.1584132, -0.082982905, -0.75355583, -0.54083216, -0.5849354, -0.12939468, -0.8849501, 0.58097136, -0.017386476, 1.0588593, -0.143331, 0.22217341, 0.89419097, -0.06405533, -0.58167744, 1.0969118, 1.0685387, -0.15623848, -0.7062845, 3.8588428, 0.17306599, 1.2785267, -0.020993479, 0.75029397, 0.70235056, -0.077344045, 1.0796965, 3.205499, 1.1744125, -0.171719, -0.7762652, 6.530828, 0.19021386, 1.4052068, -0.023073489, 1.1131067, 0.7719415, -0.085007586, 1.1866759, 3.8054008, 0.98892653, -0.14459784, -0.6536624, 5.1639895, 0.16017161, 1.1832693, -0.019429348, 0.95335585, 0.65002155, -0.07158148, 0.99925315, 3.925734, -0.41233662, -0.09121377, -0.6238248, 4.8851266, -0.012256207, 0.7464182, -0.10103785, 0.9388617, 0.63033885, -0.045154314, -0.41004, 4.2494574, 1.159172, -0.16949059, -0.76619154, 5.6828585, 0.18774544, 1.3869712, -0.022774061, 1.0572895, 0.7619239, -0.08390443, 1.1712763, 4.595656, 0.8245805, -0.120567635, -0.5450326, 6.050351, 0.13355328, 0.98662615, -0.016200397, 1.061455, 0.54199684, -0.059685666, 0.8331909, 3.9221659, 0.54533273, -0.0797369, -0.36045498, 3.519806, 0.08832488, 0.6525009, -0.010714102, 0.6690604, 0.35844728, -0.039472826, 0.55102724, 2.5475466, -0.3984436, -0.0881405, -0.60280627, -3.077298, -0.011843239, 0.72126895, -0.09763359, -0.4156485, 0.6091009, -0.043632936, -0.39622438, -2.056659, 1.0819854, -0.15820463, -0.71517247, 0.8126595, 0.17524388, 1.294616, -0.021257667, 0.22300115, 0.711189, -0.078317344, 1.0932838, 0.64257455, 0.505438, -0.07390363, -0.3340852, -2.0635738, 0.081863336, 0.6047661, -0.009930293, -0.28389227, 0.33222443, -0.03658512, 0.5107159, -1.9264452, 0.61062634, -0.08928392, -0.40361285, 6.6326494, 0.09890018, 0.730626, -0.0119968755, 1.1222652, 0.40136477, -0.044199012, 0.61700267, 3.75111, 0.56409997, -0.082480974, -0.37285978, 6.073614, 0.091364525, 0.6749563, -0.01108278, 1.089431, 0.370783, -0.04083129, 0.56999046, 4.337626, 1.0021328, -0.14652884, -0.6623912, 2.0467584, 0.16231056, 1.1990707, -0.01968881, 0.43636972, 0.6587018, -0.072537355, 1.0125972, 1.6767037, -0.4279224, -0.09466156, -0.64740473, -6.7763915, -0.012719459, 0.77463186, -0.10485699, -0.9709137, 0.6541651, -0.04686111, -0.42553896, -3.7630677, 0.9667799, -0.14135964, -0.63902384, 3.167149, 0.15658464, 1.1567705, -0.018994235, 0.5700434, 0.6354646, -0.069978446, 0.9768751, 1.62314, -0.6960936, -0.15398425, -1.0531216, -3.300054, -0.020690514, 1.2600796, -0.17056897, -0.4419993, 1.0641185, -0.07622812, -0.6922165, -2.0422697, 0.44389415, -0.06490486, -0.29340583, -1.1313846, 0.071895376, 0.5311277, -0.008721142, -0.11229056, 0.29177162, -0.03213039, 0.44852936, -0.9728687, 1.043644, -0.15259847, -0.6898296, 4.3806543, 0.16903393, 1.2487397, -0.020504376, 0.7945119, 0.6859873, -0.07554209, 1.054542, 2.8823552, 0.42082623, -0.06153192, -0.27815843, 5.6840487, 0.06815917, 0.5035265, -0.008267903, 1.0440348, 0.27660912, -0.030460693, 0.42522058, 4.3741493, 1.0927207, -0.15977432, -0.7222681, 2.0767434, 0.17698264, 1.3074609, -0.021468582, 0.41594532, 0.7182452, -0.07909438, 1.1041311, 1.2785094, 0.5381807, -0.078691155, -0.3557276, 3.4866605, 0.0871665, 0.64394337, -0.010573586, 0.6298723, 0.35374624, -0.03895514, 0.54380053, 1.9667087, -0.7803363, -0.17261975, -1.1805725, -6.82928, -0.023194522, 1.412577, -0.19121158, -0.9703615, 1.1929003, -0.0854534, -0.77598995, -3.6471033, 0.46046004, -0.067327075, -0.30435568, 4.715414, 0.074578464, 0.55094916, -0.009046616, 0.8053718, 0.30266044, -0.033329487, 0.46526828, 2.3856435, -0.6145599, -0.13594799, -0.9297694, 3.296612, -0.018267002, 1.1124862, -0.15059015, 0.6633893, 0.9394781, -0.067299485, -0.6111369, 2.9046638, -0.7753424, -0.17151503, -1.1730173, -4.9769583, -0.023046086, 1.403537, -0.18998788, -0.72258, 1.1852661, -0.084906526, -0.77102387, -3.292954, -0.48597604, -0.10750371, -0.7352345, 3.3313148, -0.014445012, 0.8797217, -0.11908231, 0.68517554, 0.7429119, -0.053218473, -0.48326924, 3.1946964, 0.55918527, -0.08176239, -0.36961126, 2.2694802, 0.09056852, 0.6690758, -0.010986261, 0.4133136, 0.3675526, -0.04047552, 0.5650244, 0.8456681, 0.93340755, -0.13648003, -0.61696535, 3.336824, 0.15117946, 1.1168398, -0.01833857, 0.659824, 0.6135289, -0.06756285, 0.9431544, 2.764497, 0.6129319, -0.089621045, -0.40513676, 4.1760416, 0.099273585, 0.7333846, -0.012042216, 0.75931716, 0.4028802, -0.044365857, 0.61933225, 2.713898, -0.2899193, -0.06413362, -0.43861952, -4.56942, -0.008617489, 0.52481645, -0.07104107, -0.66722906, 0.4431997, -0.031748604, -0.28830448, -3.2012284, -0.30808684, -0.06815249, -0.46610525, 1.2587237, -0.0091575, 0.5577037, -0.075492784, 0.34859967, 0.47097242, -0.0337381, -0.30637088, 1.8176955, -0.81874335, -0.18111584, -1.2386787, -4.3989577, -0.024336124, 1.482102, -0.20062274, -0.5708795, 1.2516131, -0.089659296, -0.8141831, -1.9528725, -0.28707743, -0.063504964, -0.4343201, -5.2210484, -0.008533018, 0.5196721, -0.07034471, -0.7471807, 0.43885535, -0.031437397, -0.28547844, -3.2065396, 0.9202408, -0.13455483, -0.60826236, -3.8971558, 0.14904691, 1.1010855, -0.018079886, -0.56989217, 0.60487443, -0.0666098, 0.92985016, -2.9502149, 0.59840703, -0.087497264, -0.3955361, 2.629138, 0.096921064, 0.7160053, -0.011756847, 0.53632915, 0.39333302, -0.0433145, 0.60465574, 2.152638, 0.9842003, -0.14390679, -0.6505382, -1.9518499, 0.15940613, 1.1776141, -0.01933649, -0.23758781, 0.64691484, -0.07123936, 0.99447745, -1.386703, -0.7735219, -0.17111233, -1.170263, 2.2223248, -0.022991974, 1.4002416, -0.1895418, 0.48179704, 1.1824832, -0.08470717, -0.76921356, 2.0729823, 1.114507, -0.16295984, -0.7366687, 3.6643128, 0.18051127, 1.3335286, -0.021896614, 0.64325213, 0.7325656, -0.08067138, 1.1261448, 1.829015, -0.57957697, -0.12820937, -0.87684333, -6.014355, -0.017227203, 1.0491594, -0.14201804, -0.91306496, 0.8859995, -0.06346856, -0.57634884, -4.3461537, -0.32777852, -0.07250853, -0.49589685, 0.06969547, -0.009742807, 0.5933498, -0.08031798, 0.115018785, 0.5010751, -0.035894506, -0.32595286, 0.35840607, -0.6361038, -0.1407138, -0.96236295, 2.0580587, -0.018907392, 1.1514852, -0.15586923, 0.45684433, 0.9724121, -0.06965873, -0.63256085, 1.9923291, 0.9840686, -0.14388753, -0.65045124, 0.33732176, 0.15938477, 1.1774566, -0.019333905, 0.13384145, 0.6468283, -0.07122983, 0.9943444, 0.12893438, 0.49742773, -0.07273238, -0.32879063, 3.5001478, 0.08056595, 0.5951817, -0.009772916, 0.6146537, 0.32695934, -0.036005322, 0.50262195, 1.6878936, -0.7273557, -0.1608998, -1.1004181, -4.406911, -0.02161974, 1.3166708, -0.17822936, -0.60348874, 1.1119089, -0.07965158, -0.7233045, -2.475851, -0.6080511, -0.13450818, -0.9199219, 1.1407061, -0.018073568, 1.1007037, -0.14899524, 0.29934698, 0.9295279, -0.06658671, -0.60466444, 1.2419311, -0.6383327, -0.14120686, -0.9657351, -4.9676437, -0.018973645, 1.15552, -0.1564154, -0.70320696, 0.97581947, -0.069902815, -0.63477737, -2.991525, 0.81083095, -0.118557245, -0.53594416, 3.1447861, 0.13132632, 0.9701745, -0.01593032, 0.61387473, 0.53295904, -0.058690354, 0.81929785, 2.3928642, -0.5587436, -0.12360079, -0.84532446, -4.3883524, -0.016607957, 1.0114465, -0.13691309, -0.56550306, 0.85415155, -0.061187133, -0.5556315, -1.8854232, 0.6718681, -0.09823851, -0.4440923, 2.1505263, 0.10881918, 0.8039028, -0.013200128, 0.46362072, 0.44161874, -0.048631806, 0.67888385, 1.9175568, -0.7165348, -0.15850605, -1.0840471, 0.7700481, -0.02129811, 1.2970825, -0.17557779, 0.27146214, 1.095367, -0.07846659, -0.71254385, 1.5297307, -0.8034113, -0.17772421, -1.2154828, -3.676611, -0.023880398, 1.4543478, -0.19686583, -0.4631071, 1.2281752, -0.08798031, -0.7989365, -1.6305282, -0.73031425, -0.16155428, -1.1048942, -5.667938, -0.02170768, 1.3220264, -0.17895432, -0.86239433, 1.1164317, -0.07997557, -0.72624654, -4.2083282, -0.5316387, -0.117604844, -0.80431736, -4.9661045, -0.015802296, 0.9623807, -0.13027136, -0.6619804, 0.8127162, -0.058218915, -0.5286775, -2.3131433, 0.71780705, -0.10495557, -0.47445732, 4.9856434, 0.1162597, 0.8588697, -0.014102688, 0.93676233, 0.47181463, -0.051957034, 0.7253025, 4.011703, -0.7997971, -0.1769247, -1.2100149, -4.125472, -0.023772972, 1.4478054, -0.1959802, -0.60273635, 1.2226502, -0.087584525, -0.7953424, -3.0319345, 0.4817278, -0.07043678, -0.31841326, 4.4813943, 0.0780231, 0.5763964, -0.009464461, 0.8209716, 0.31663975, -0.03486891, 0.4867581, 3.1162455, 1.034395, -0.15124606, -0.6837161, 5.898754, 0.1675359, 1.237673, -0.020322585, 1.0216286, 0.6799079, -0.07487268, 1.0451963, 3.5700507, -0.7704956, -0.17044286, -1.1656845, -7.0421257, -0.02290202, 1.3947632, -0.18880023, -1.0130465, 1.1778568, -0.08437576, -0.76620406, -3.9227445, -0.30819795, -0.068177074, -0.46627337, 0.5173899, -0.009160799, 0.5579048, -0.075520016, 0.21471785, 0.4711423, -0.03375027, -0.30648133, 1.1021065, -0.7950741, -0.17587994, -1.2028697, -0.04073089, -0.023632573, 1.439256, -0.19482292, 0.14210086, 1.2154303, -0.08706733, -0.7906457, 1.0291488, 0.9409027, -0.13757595, -0.6219195, 4.7631645, 0.15239342, 1.1258079, -0.018485827, 0.887761, 0.61845547, -0.06810537, 0.9507278, 3.651111, -0.4038891, -0.08934511, -0.6110448, 0.26541355, -0.012005093, 0.73112655, -0.09896794, 0.18476403, 0.6174255, -0.044229258, -0.40163952, 1.1159618, 0.910314, -0.13310337, -0.60170066, 2.912975, 0.14743912, 1.0892079, -0.017884854, 0.51969814, 0.5983493, -0.06589124, 0.91981965, 1.3043547, 1.1446605, -0.1673688, -0.7565999, -4.284666, 0.18539509, 1.3696082, -0.022489045, -0.63995177, 0.7523857, -0.082853995, 1.1566133, -3.3255382, -0.48131344, -0.10647228, -0.72818017, -0.67770886, -0.014306441, 0.87128115, -0.11793978, 0.014079943, 0.735784, -0.05270787, -0.4786326, 0.19963837, 0.7153847, -0.1046014, -0.47285622, 1.6529808, 0.115867384, 0.8559714, -0.014055097, 0.31925875, 0.4702225, -0.051781707, 0.72285485, 0.5362624, -0.67685807, -0.1497291, -1.0240202, -1.3421545, -0.020118762, 1.2252592, -0.16585553, -0.08301705, 1.0347131, -0.074121654, -0.67308813, -0.06320143, -0.53276795, -0.11785466, -0.80602586, 0.586149, -0.015835863, 0.96442497, -0.13054809, 0.2250164, 0.8144425, -0.058342587, -0.52980053, 1.1334496, 1.0715247, -0.15667507, -0.7082583, 5.5171413, 0.17354964, 1.2820996, -0.021052068, 1.0053455, 0.70431334, -0.077560246, 1.0827138, 4.0717583, 0.7089626, -0.10366237, -0.46861133, 2.3743515, 0.11482723, 0.8482872, -0.013928922, 0.4526419, 0.46600127, -0.051316857, 0.7163657, 1.2839341, 1.1675122, -0.1707101, -0.7717042, 3.9592314, 0.18909626, 1.3969504, -0.022938004, 0.709335, 0.7674059, -0.08450805, 1.1797036, 2.3256426, -0.5913269, -0.13080858, -0.8946198, -0.66694236, -0.017576454, 1.0704293, -0.1448972, 0.024135813, 0.9039616, -0.06475527, -0.5880333, 0.34411716, 0.5308717, -0.077622436, -0.35089648, 5.781532, 0.085982695, 0.635198, -0.010429949, 1.0012652, 0.348942, -0.038426124, 0.53641516, 3.4702303, 0.7209124, -0.10540963, -0.47650993, 5.568425, 0.11676267, 0.8625853, -0.014163699, 0.9666637, 0.47385582, -0.05218181, 0.72844034, 3.3287382, -0.5239234, -0.115898125, -0.7926449, -2.2505875, -0.015572969, 0.9484144, -0.12838082, -0.24386653, 0.80092186, -0.05737402, -0.5210053, -0.8870293, 0.65149903, -0.09526022, -0.43062884, -0.4935913, 0.10552012, 0.7795308, -0.012799934, -0.020278454, 0.42823032, -0.047157455, 0.65830207, -0.7402444, 0.44596416, -0.06520753, -0.29477414, 4.507818, 0.07223064, 0.53360456, -0.008761816, 0.7812091, 0.2931323, -0.03228023, 0.450621, 2.4055786, -0.6749537, -0.14930785, -1.021139, -6.3392725, -0.020062156, 1.2218119, -0.1653889, -0.95715934, 1.0318019, -0.07391312, -0.6711943, -4.4187036, -0.6588445, -0.14574426, -0.9967672, -0.03573191, -0.019583337, 1.1926507, -0.1614415, 0.12131706, 1.0071757, -0.07214901, -0.65517485, 0.6754869, -0.45307958, -0.10022661, -0.68546516, 0.5722381, -0.013467225, 0.82017183, -0.11102142, 0.21237448, 0.6926229, -0.04961602, -0.45055604, 0.9525746, 1.0124091, -0.1480314, -0.6691838, 0.9876747, 0.16397496, 1.2113667, -0.019890709, 0.25877196, 0.66545653, -0.073281206, 1.0229809, 0.8803408, -0.38561302, -0.085302226, -0.5833948, -4.4559913, -0.011461866, 0.6980428, -0.09448961, -0.60669565, 0.5894868, -0.042227875, -0.38346523, -2.429718, 1.1065177, -0.16179167, -0.7313876, 1.8056676, 0.17921726, 1.3239691, -0.021739649, 0.3435662, 0.72731394, -0.08009304, 1.118072, 0.6296406, -0.5525689, -0.122234836, -0.83598286, -1.9172744, -0.016424416, 1.0002689, -0.13540003, -0.17941618, 0.8447123, -0.06051094, -0.54949117, -0.4949479, -0.71790767, -0.15880978, -1.0861242, -6.9260674, -0.02133891, 1.2995678, -0.17591423, -0.97712505, 1.0974656, -0.07861694, -0.7139091, -3.5633912, 0.45968196, -0.06721329, -0.30384138, 6.086944, 0.074452445, 0.55001813, -0.009031296, 1.0260369, 0.302149, -0.03327319, 0.46448207, 3.2627666, -0.6336799, -0.1401776, -0.95869577, -6.209899, -0.018835345, 1.1470973, -0.15527529, -0.9152964, 0.96870667, -0.06939329, -0.63015044, -3.9880342, -0.35554552, -0.0786509, -0.53790545, -6.113373, -0.010568161, 0.64361405, -0.08712191, -0.9425452, 0.54352236, -0.038935214, -0.35356522, -4.633454, -0.38279715, -0.08467931, -0.5791347, -1.0814674, -0.011378168, 0.6929455, -0.09379961, -0.07009554, 0.58518213, -0.04191951, -0.38066506, -0.37620378, 0.97833174, -0.14304872, -0.64665926, -1.7293258, 0.15845563, 1.1705923, -0.019221192, -0.19952327, 0.64305747, -0.07081458, 0.9885476, -1.2069898, 1.0563067, -0.15444997, -0.6981994, 4.002619, 0.17108484, 1.2638909, -0.020753158, 0.74578094, 0.6943105, -0.076458655, 1.0673368, 2.840462, -0.69638526, -0.15404877, -1.0535629, -5.807413, -0.020699183, 1.2606076, -0.17064044, -0.86150527, 1.0645643, -0.07626005, -0.69250655, -3.911885, -0.56244564, -0.12441971, -0.85092527, -5.318806, -0.016717995, 1.018148, -0.13782021, -0.777305, 0.8598108, -0.061592534, -0.55931294, -3.50703, 0.4681016, -0.068444386, -0.3094066, 5.5303454, 0.07581613, 0.5600924, -0.0091967145, 1.0031724, 0.30768323, -0.033882633, 0.47298962, 4.0091624, 1.0084898, -0.14745834, -0.6665932, -0.7725091, 0.1633402, 1.2066771, -0.019813696, -0.0688079, 0.6628804, -0.072997525, 1.0190207, -0.979028, 1.1339626, -0.16580454, -0.7495285, 5.6432724, 0.18366238, 1.3568076, -0.022278775, 1.0097176, 0.74535376, -0.08207969, 1.1458037, 3.8892398, -0.79665554, -0.17622976, -1.205262, -4.688964, -0.023679592, 1.4421184, -0.19521041, -0.638146, 1.2178476, -0.087240495, -0.7922183, -2.4789882, 0.94418734, -0.13805622, -0.62409025, 2.3324678, 0.15292542, 1.1297379, -0.01855036, 0.41656488, 0.62061423, -0.068343095, 0.95404667, 0.7721759, -0.6432214, -0.14228828, -0.9731311, -5.5490465, -0.019118953, 1.1643696, -0.1576133, -0.83910894, 0.98329276, -0.07043816, -0.6396388, -4.0635777, -0.5402357, -0.11950662, -0.81732386, -5.253887, -0.016057832, 0.97794324, -0.13237795, -0.79448557, 0.82585853, -0.059160363, -0.53722674, -3.922171, -0.3288627, -0.07274837, -0.49753714, 3.3647156, -0.009775033, 0.5953124, -0.08058366, 0.677634, 0.5027325, -0.036013238, -0.327031, 3.0025616, -0.7037208, -0.15567148, -1.0646608, -5.866248, -0.020917222, 1.2738864, -0.17243792, -0.89212036, 1.0757782, -0.07706336, -0.6998012, -4.2991147, -0.47529295, -0.105140485, -0.7190718, -0.66159296, -0.01412749, 0.8603828, -0.11646454, 0.012375057, 0.7265805, -0.05204858, -0.47264567, 0.13890135, 1.0649651, -0.15571597, -0.7039223, 0.05405426, 0.1724872, 1.2742506, -0.020923259, 0.062196434, 0.70000154, -0.07708537, 1.0760856, -0.48317266, 0.65601015, -0.095919795, -0.4336107, 5.566625, 0.10625076, 0.7849285, -0.012888523, 1.0309687, 0.43119553, -0.04748403, 0.66286033, 4.3953595, -0.58972716, -0.1304547, -0.8921996, -2.1029477, -0.017528905, 1.0675334, -0.1445052, -0.19181652, 0.90151614, -0.06458009, -0.58644253, -0.32486254, -0.55905634, -0.12366995, -0.84579766, -1.5750189, -0.016617252, 1.0120126, -0.1369897, -0.113418624, 0.85462964, -0.061221376, -0.55594254, -0.09535506, 0.57393724, -0.08391937, -0.37936205, 4.9379764, 0.09295782, 0.68672675, -0.011276091, 0.8545227, 0.37724903, -0.04154331, 0.5799304, 2.7485409, -0.32860613, -0.072691604, -0.49714896, -3.0299945, -0.009767408, 0.59484804, -0.08052079, -0.3714603, 0.5023403, -0.03598514, -0.32677585, -1.4217651, 0.6995579, -0.10228721, -0.46239498, 5.6504745, 0.113303974, 0.8370342, -0.013744098, 1.0267692, 0.45981947, -0.050636146, 0.7068628, 4.156561, -0.77114135, -0.1705857, -1.1666615, -3.7788897, -0.022921214, 1.3959322, -0.18895848, -0.51977754, 1.1788441, -0.084446475, -0.76684624, -2.3607047, -0.41784787, -0.09243297, -0.632163, 0.43543264, -0.012420006, 0.7563948, -0.10238837, 0.2176113, 0.6387642, -0.04575787, -0.41552055, 1.3154936, -0.62798375, -0.13891752, -0.950078, -0.51002, -0.018666033, 1.1367861, -0.1538795, 0.034912825, 0.95999897, -0.0687695, -0.62448597, 0.20527482, -0.37426966, -0.08279293, -0.56623346, -2.3162313, -0.011124698, 0.67750883, -0.09171006, -0.25476754, 0.5721462, -0.040985677, -0.37218505, -0.9346243, 0.81847256, -0.11967457, -0.5409953, 0.22050738, 0.132564, 0.97931784, -0.016080447, 0.10833722, 0.537982, -0.059243497, 0.8270192, -0.056689978, 0.41804498, -0.061125256, -0.2763201, 5.6675467, 0.06770871, 0.5001987, -0.00821326, 1.0474652, 0.27478102, -0.030259378, 0.42241028, 4.464189, 0.8822727, -0.12900326, -0.5831662, 3.8746362, 0.14289741, 1.055656, -0.01733393, 0.7527732, 0.57991797, -0.06386156, 0.89148563, 3.2145777, 0.6034223, -0.08823059, -0.39885092, 2.3510935, 0.09773336, 0.72200614, -0.011855382, 0.45911413, 0.39662942, -0.043677505, 0.6097233, 1.4379056) + [node name="BoreaBase" type="Node3D" unique_id=628999030] script = ExtResource("1_xd71i") -[node name="BoreaModel" parent="." unique_id=813307551 instance=ExtResource("1_dtguk")] - -[node name="OmniLight3D" type="OmniLight3D" parent="BoreaModel" unique_id=598252020] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, 6) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D2" type="OmniLight3D" parent="BoreaModel" unique_id=1709303833] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, 0) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D3" type="OmniLight3D" parent="BoreaModel" unique_id=1494844671] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -6) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D4" type="OmniLight3D" parent="BoreaModel" unique_id=1736000584] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -14) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D5" type="OmniLight3D" parent="BoreaModel" unique_id=2024394662] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -20) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D6" type="OmniLight3D" parent="BoreaModel" unique_id=1905195512] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -26) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D7" type="OmniLight3D" parent="BoreaModel" unique_id=446861722] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -33) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D8" type="OmniLight3D" parent="BoreaModel" unique_id=1408862219] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -40) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D9" type="OmniLight3D" parent="BoreaModel" unique_id=1333029114] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -46) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D10" type="OmniLight3D" parent="BoreaModel" unique_id=173828379] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -53) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D11" type="OmniLight3D" parent="BoreaModel" unique_id=1562142953] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -59) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - -[node name="OmniLight3D12" type="OmniLight3D" parent="BoreaModel" unique_id=1835990894] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.675, 6.416, -65) -light_color = Color(1, 0, 0.43137255, 1) -omni_range = 11.877155 - [node name="Sun" type="DirectionalLight3D" parent="." unique_id=1663715456] unique_name_in_owner = true -transform = Transform3D(0.074881114, 0.47727534, -0.87555754, 0.49699074, 0.7433423, 0.44770813, 0.864519, -0.46866894, -0.18153912, -17.663713, 19.727222, 0.5521965) -light_energy = 6.09 +transform = Transform3D(-0.7631158, 0.25391632, -0.5942902, -0.49361107, -0.8225597, 0.28238884, -0.4171361, 0.5088434, 0.75304425, -6.8596926, 14.862026, 0.5521965) shadow_enabled = true shadow_bias = 0.0 shadow_blur = 0.8 @@ -112,8 +147,450 @@ environment = SubResource("Environment_fevne") [node name="DaySky" type="MeshInstance3D" parent="WorldEnvironment" unique_id=1175366677] transform = Transform3D(1000, 0, 0, 0, 1000, 0, 0, 0, 1000, 0.00041627884, 0.019779027, -0.019804716) +visible = false mesh = SubResource("SphereMesh_c8vcx") surface_material_override/0 = SubResource("StandardMaterial3D_s7tqr") +[node name="borea_base_hub" parent="." unique_id=1785379104 instance=ExtResource("5_fevne")] +transform = Transform3D(0.2701804, 0, -0.96280974, 0, 1, 0, 0.96280974, 0, 0.2701804, 0, 2.2198172, 0) + +[node name="AiReceptacle" parent="borea_base_hub" unique_id=1082354698 instance=ExtResource("13_antnu")] +transform = Transform3D(0.2701804, 0, 0.96280974, 0, 1, 0, -0.96280974, 0, 0.2701804, 0, -6.516397, 0) +screen_icon = SubResource("CompressedTexture2D_antnu") +screen_text = "CONNECT_TO_DEMETER" + +[node name="Sprite3D" type="Sprite3D" parent="borea_base_hub/AiReceptacle" unique_id=677937608] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.3735087, 0) +billboard = 2 +alpha_cut = 2 +texture = ExtResource("6_antnu") + +[node name="borea_base_door" parent="borea_base_hub" unique_id=2065501623 instance=ExtResource("7_s7tqr")] +transform = Transform3D(0.9560697, 0, 0.29313934, 0, 1, 0, -0.29313934, 0, 0.9560697, -31.896538, -4.554616, 9.663141) + +[node name="borea_base_door3" parent="borea_base_hub" unique_id=1376352277 instance=ExtResource("7_s7tqr")] +transform = Transform3D(-0.96280974, 0, 0.27018037, 0, 1, 0, -0.27018037, 0, -0.96280974, 90.70357, -4.238233, 26.383053) + +[node name="borea_base_corridor" parent="borea_base_hub" unique_id=1744755235 instance=ExtResource("8_2ei4e")] +transform = Transform3D(0.2701804, 0, 0.96280974, 0, 1, 0, -0.96280974, 0, 0.2701804, 81.22702, -5.980817, 23.750223) + +[node name="borea_base_room" parent="borea_base_hub" unique_id=1619509238 instance=ExtResource("9_hlox4")] +transform = Transform3D(-0.96280974, 0, 0.27018037, 0, 1, 0, -0.27018037, 0, -0.96280974, -45.26237, -4.9913235, -13.5056095) + +[node name="communication" parent="borea_base_hub" unique_id=2008113291 instance=ExtResource("13_67c4d")] +transform = Transform3D(0.96053207, 0, 0.2781697, 0, 1, 0, -0.2781697, 0, 0.96053207, 34.811417, -6.5185328, -10.564589) + +[node name="Lever" parent="borea_base_hub/communication" index="3" unique_id=424103656] +transform = Transform3D(1, 0, 0, 0, 1, -2.0727045e-09, 0, 2.0727045e-09, 1, 21.938557, 1.46437, 0) + +[node name="Details" type="Node3D" parent="borea_base_hub" unique_id=543546809] +transform = Transform3D(0.2701804, 0, 0.96280974, 0, 1, 0, -0.96280974, 0, 0.2701804, 0, -2.2198172, 0) + +[node name="MeshInstance3D" type="MeshInstance3D" parent="borea_base_hub/Details" unique_id=937201602] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32.98448, -2.3797207, 61.91548) +mesh = SubResource("PointMesh_67c4d") +skeleton = NodePath("../Plant2") + +[node name="Moss" type="Node3D" parent="borea_base_hub/Details" unique_id=1983087250] + +[node name="MossSample" type="MeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1217484058] +transform = Transform3D(0.1, 0, 0, 0, 0.1, 0, 0, 0, 0.1, -23.201168, 0, 83.19879) +mesh = ExtResource("10_vetlt") +skeleton = NodePath("../../../..") + +[node name="SquareMossMultiMesh" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=998719554] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -32.984383, -3.6932707, 49.695663) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1396641375] +transform = Transform3D(0.6695974, 0, 0.74272424, 0, 1, 0, -0.74272424, 0, 0.6695974, -13.098825, -3.683254, 11.545444) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=883161749] +transform = Transform3D(0.4691633, 0, 0.88311136, 0, 1, 0, -0.88311136, 0, 0.4691633, -9.86059, -3.683254, 14.0828905) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=2064725223] +transform = Transform3D(0.27474803, 0, 0.9615162, 0, 1, 0, -0.9615162, 0, 0.27474803, -6.009149, -3.683253, 16.418045) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh3" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=857658903] +transform = Transform3D(0.90211886, 0, 0.43148753, 0, 1, 0, -0.43148753, 0, 0.90211886, -15.492784, -3.683252, 8.065206) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh6" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=906019325] +transform = Transform3D(0.9407091, 0, -0.33921415, 0, 1, 0, 0.33921415, 0, 0.9407091, -15.614847, -3.683254, -7.294704) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh7" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1985720593] +transform = Transform3D(0.9949281, 0, -0.10058749, 0, 1, 0, 0.10058749, 0, 0.9949281, -16.740173, -3.683254, -3.3376286) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh8" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=424550874] +transform = Transform3D(0.9940374, 0, 0.10904031, 0, 1, 0, -0.10904031, 0, 0.9940374, -17.44645, -3.683253, 1.1107092) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh9" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=414504721] +transform = Transform3D(0.7404411, 0, -0.67212135, 0, 1, 0, 0.67212135, 0, 0.7404411, -13.297564, -3.683252, -10.826459) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh10" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=719133758] +transform = Transform3D(-0.6602509, 0, -0.75104517, 0, 1, 0, 0.75104517, 0, -0.6602509, 12.504259, -3.683254, -11.895642) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh11" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1262978562] +transform = Transform3D(-0.4580757, 0, -0.8889132, 0, 1, 0, 0.8889132, 0, -0.4580757, 9.234526, -3.683254, -14.392368) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh12" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1405292381] +transform = Transform3D(-0.26269454, 0, -0.9648791, 0, 1, 0, 0.9648791, 0, -0.26269454, 5.3541656, -3.683253, -16.679144) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh13" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1782988526] +transform = Transform3D(-0.8966488, 0, -0.44274253, 0, 1, 0, 0.44274253, 0, -0.8966488, 14.941581, -3.683252, -8.445633) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh14" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=700804980] +transform = Transform3D(-0.94307184, 0, 0.3325893, 0, 1, 0, -0.3325893, 0, -0.94307184, 15.5262785, -3.683256, 7.630828) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh15" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=2002650354] +transform = Transform3D(-0.99561113, 0, 0.093587056, 0, 1, 0, -0.093587056, 0, -0.99561113, 16.623745, -3.683256, 3.6659355) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh16" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1561847110] +transform = Transform3D(-0.99324584, 0, -0.11602932, 0, 1, 0, 0.11602932, 0, -0.99324584, 17.298716, -3.683255, -0.7872596) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh17" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1095114821] +transform = Transform3D(-0.7451502, 0, 0.66689676, 0, 1, 0, -0.66689676, 0, -0.7451502, 13.233892, -3.683254, 11.178795) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="SquareMossMultiMesh18" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=14420022] +transform = Transform3D(0.13258508, 0, 0.9911717, 0, 1, 0, -0.9911717, 0, 0.13258508, -1.0056515, -3.683254, 33.384457) +multimesh = SubResource("MultiMesh_0dh60") + +[node name="VeryDenseMossMultiMesh2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1857870440] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.2802696, -3.7590032, 51.13646) +multimesh = SubResource("MultiMesh_antnu") + +[node name="VeryDenseMossMultiMesh3" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1062361797] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.576247, -3.7590032, 77.51297) +multimesh = SubResource("MultiMesh_antnu") + +[node name="VeryDenseMossMultiMesh4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1204401752] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.8163433, -4.4574757, 3.2902985) +multimesh = SubResource("MultiMesh_antnu") + +[node name="VeryDenseMossMultiMesh5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1023960035] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.499422, -4.3065577, -7.875723) +multimesh = SubResource("MultiMesh_antnu") + +[node name="DenseMossMultiMesh2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=579825659] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.060826, -3.7779717, 82.85014) +multimesh = SubResource("MultiMesh_vetlt") + +[node name="DenseMossMultiMesh3" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=2094925724] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.450781, -4.4022584, -0.6111064) +multimesh = SubResource("MultiMesh_vetlt") + +[node name="DenseMossMultiMesh4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=23402889] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -9.68252, -4.4022584, -4.294139) +multimesh = SubResource("MultiMesh_vetlt") + +[node name="DenseMossMultiMesh5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1014064970] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.426298, -4.4022565, 10.069929) +multimesh = SubResource("MultiMesh_vetlt") + +[node name="NotDenseMossMultiMesh2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1800327135] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24.377644, -12.119531, 24.93533) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh9" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=806407870] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.86279, -12.119531, -27.765469) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh10" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1504495271] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.555825, -3.8082914, 54.952164) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh7" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=299488302] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.643795, -3.84704, -57.903755) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh8" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1349299] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.09216595, -3.8470404, -41.219547) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1943427008] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.016938, -4.4144917, 10.036061) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=1323978837] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.3476973, -4.4144917, -9.832133) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="NotDenseMossMultiMesh6" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Moss" unique_id=386789865] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.3476973, -4.4144917, -9.832133) +multimesh = SubResource("MultiMesh_4atk4") + +[node name="Plant" type="Node3D" parent="borea_base_hub/Details" unique_id=1861201895] + +[node name="MeshInstance3D" type="MeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1254445386] +transform = Transform3D(0.54735535, -0.1210815, 0.828095, 0.01626943, 0.99083114, 0.13412249, -0.83674204, -0.05994002, 0.5443066, -18.45068, 20.68637, 22.55161) +visible = false +mesh = SubResource("PlaneMesh_antnu") +skeleton = NodePath("../../../..") + +[node name="NoDensePlantMultiMeshInstance3D" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1560770042] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -65.16019, 0, 30) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="NoDensePlantMultiMeshInstance3D2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=812693238] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.5845356, -4.3440733, 8.395668) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="NoDensePlantMultiMeshInstance3D5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1880301891] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.7395496, -4.112005, 8.358818) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="NoDensePlantMultiMeshInstance3D4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=908965461] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.5845356, -4.1153316, -7.815407) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="NoDensePlantMultiMeshInstance3D3" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=721800028] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.647028, -3.4236546, 55.071945) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="NoDensePlantMultiMeshInstance3D6" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=44423002] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.647028, -3.740715, -52.799225) +multimesh = SubResource("MultiMesh_jcdon") + +[node name="DensePlantMultiMeshInstance3D" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1465511425] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -55.502125, 0, 30) +multimesh = SubResource("MultiMesh_3jpm4") + +[node name="DensePlantMultiMeshInstance3D2" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1301535803] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.3000236, -3.495177, 85.24428) +multimesh = SubResource("MultiMesh_3jpm4") + +[node name="DensePlantMultiMeshInstance3D3" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=312471515] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.4342113, -4.189118, -5.543741) +multimesh = SubResource("MultiMesh_3jpm4") + +[node name="DensePlantMultiMeshInstance3D4" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=905389348] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.148426, 20.465254, 22.140268) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="DensePlantMultiMeshInstance3D5" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1901506188] +transform = Transform3D(0.82636344, 0.2665292, 0.49607062, -0.09429893, 0.93395925, -0.3447138, -0.5551858, 0.23807988, 0.7969229, 1.3246307, 20.364796, -28.774845) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="DensePlantMultiMeshInstance3D8" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1721557460] +transform = Transform3D(0.984104, -0.15909612, -0.07891351, 0.13319431, 0.95512116, -0.26458007, 0.1174662, 0.24986346, 0.9611295, 17.536695, 20.364796, -22.881248) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="DensePlantMultiMeshInstance3D9" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=1834753585] +transform = Transform3D(0.8120042, -0.06750717, -0.5797337, -0.10198294, 0.9615969, -0.25481567, 0.5746724, 0.26603442, 0.77393657, 28.693333, 20.364798, -7.071123) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="DensePlantMultiMeshInstance3D6" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=42635021] +transform = Transform3D(0.63422096, 0.20108029, 0.746546, 0.07177043, 0.9461063, -0.31580347, -0.7698135, 0.25386894, 0.58560854, -3.9438963, 33.240597, -14.735707) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="DensePlantMultiMeshInstance3D7" type="MultiMeshInstance3D" parent="borea_base_hub/Details/Plant" unique_id=310138395] +transform = Transform3D(0.9797016, -0.0074522197, 0.20032433, 0.07177044, 0.9461063, -0.31580347, -0.18717429, 0.32377028, 0.92743665, -3.9438963, 33.240597, 14.184056) +multimesh = SubResource("MultiMesh_pnewi") + +[node name="Plant2" type="MeshInstance3D" parent="borea_base_hub/Details" unique_id=1899226714] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -35.2014, 0.095321655, 56.352386) +mesh = ExtResource("12_0dh60") + +[node name="FallingPlant" type="Node3D" parent="borea_base_hub/Details" unique_id=307570248] + +[node name="FallingPlant" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=1299225452] +transform = Transform3D(-2.1855694e-08, 0.5, 0, -0.5, -2.1855694e-08, 0, 0, 0, 0.5, 13.610115, 10.801528, -5.9728403) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant" unique_id=412753210] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant" unique_id=2136293634] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant" unique_id=1531583058] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant" unique_id=176182011] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -35.746395, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=198252925] +transform = Transform3D(-4.461562e-09, 0.10206863, 0.48947114, -0.5, -2.1855694e-08, 0, 2.1395463e-08, -0.48947114, 0.10206863, 1.7081261, 3.434373, -5.9728403) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=587746958] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=1043877355] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=906256178] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=1787150030] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -35.746395, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant6" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=486955718] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -45.53074, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant7" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant2" unique_id=78559906] +transform = Transform3D(1, 2.5279334e-10, -4.6942574e-09, 2.527898e-10, 0.9942168, 0.10739209, 4.6942588e-09, -0.10739209, 0.9942168, -59.230488, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=1165195444] +transform = Transform3D(-4.461562e-09, 0.10206863, 0.48947114, -0.5, -2.1855694e-08, 0, 2.1395463e-08, -0.48947114, 0.10206863, -8.300305, 3.434373, -5.9728403) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant3" unique_id=1113936359] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant3" unique_id=180408038] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant3" unique_id=550376573] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant3" unique_id=1853101525] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -35.746395, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant6" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant3" unique_id=259172594] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -45.53074, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=1740653534] +transform = Transform3D(-4.461562e-09, 0.10206863, 0.48947114, -0.5, -2.1855694e-08, 0, 2.1395463e-08, -0.48947114, 0.10206863, -8.300305, -0.08820057, 16.426653) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=164851068] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=1915662248] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=589855776] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=1237076603] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -35.746395, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant6" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=1567487218] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -45.53074, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant7" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant4" unique_id=346232531] +transform = Transform3D(1, 2.5279334e-10, -4.694258e-09, 2.527898e-10, 0.9942168, 0.1073921, 4.6942574e-09, -0.1073921, 0.9942168, -54.258503, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=1886568061] +transform = Transform3D(-2.1325503e-08, 0.48787063, -0.109463334, -0.5, -2.1855694e-08, 0, -4.784795e-09, 0.109463334, 0.48787063, 13.315057, 14.943489, 6.329565) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant5" unique_id=771595788] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant5" unique_id=32593437] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant5" unique_id=297153825] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant6" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant" unique_id=816411060] +transform = Transform3D(-2.1325503e-08, 0.48787063, -0.109463334, -0.5, -2.1855694e-08, 0, -4.784795e-09, 0.109463334, 0.48787063, -22.62413, 0.90577984, -6.3121424) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../..") + +[node name="FallingPlant2" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant6" unique_id=384370383] +transform = Transform3D(1, 7.868549e-08, 2.6220182e-08, 7.868549e-08, -0.8001141, -0.59984785, -2.6220182e-08, 0.59984785, -0.8001141, -9.784341, 0.052505493, -0.20216942) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant3" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant6" unique_id=923932250] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -18.312138, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant4" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant6" unique_id=643836067] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -28.096481, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant5" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant6" unique_id=1605925259] +transform = Transform3D(1, 8.630828e-08, 9.80765e-09, 8.630828e-08, -0.9745034, -0.22437286, -9.80765e-09, 0.22437286, -0.9745034, -35.746395, 0.029153824, -0.20548248) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + +[node name="FallingPlant6" type="MeshInstance3D" parent="borea_base_hub/Details/FallingPlant/FallingPlant6" unique_id=154742072] +transform = Transform3D(1, 1.5512109e-08, -3.3398894e-08, 1.5512109e-08, 0.6451243, 0.76407766, 3.3398894e-08, -0.76407766, 0.6451243, -45.53074, 0.023347855, 0.0033130646) +mesh = ExtResource("12_67c4d") +skeleton = NodePath("../../../../..") + [node name="Player3D" parent="." unique_id=549819967 instance=ExtResource("3_xd71i")] -transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, -0.3753642, 1.9798207, 8.947678) +unique_name_in_owner = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.95067215, -2.3712459, 90.22012) + +[node name="Credits" parent="." unique_id=180964898 instance=ExtResource("15_jcdon")] +unique_name_in_owner = true + +[connection signal="clicked" from="borea_base_hub/AiReceptacle" to="." method="_on_ai_receptacle_clicked"] + +[editable path="borea_base_hub/communication"] +[editable path="Credits"] diff --git a/stages/3d_scenes/borea_base/scripts/borea_base.gd b/stages/3d_scenes/borea_base/scripts/borea_base.gd index dcf0165..2900b19 100644 --- a/stages/3d_scenes/borea_base/scripts/borea_base.gd +++ b/stages/3d_scenes/borea_base/scripts/borea_base.gd @@ -3,8 +3,12 @@ extends Node3D func _ready(): if not Engine.is_editor_hint(): Input.mouse_mode = Input.MOUSE_MODE_CAPTURED + %Credits.hide() + + +func _on_ai_receptacle_clicked(): + %Player3D.controlling_player = false + Input.mouse_mode = Input.MOUSE_MODE_VISIBLE + %Credits.appear() -# Called every frame. 'delta' is the elapsed time since the previous frame. -func _process(delta): - pass diff --git a/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend b/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend index b727fbf..95a2fa4 100644 Binary files a/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend and b/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend differ diff --git a/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend1 b/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend1 index 269cd8d..8773d5c 100644 Binary files a/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend1 and b/stages/3d_scenes/cockpit_scene/assets/3d/cockpit2.blend1 differ diff --git a/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend b/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend index 3f044aa..d2c046e 100644 Binary files a/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend and b/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend differ diff --git a/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend1 b/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend1 index 18d9ca4..2118899 100644 Binary files a/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend1 and b/stages/3d_scenes/cockpit_scene/assets/3d/furnitures/shelf.blend1 differ diff --git a/stages/3d_scenes/cockpit_scene/cockpit.tscn b/stages/3d_scenes/cockpit_scene/cockpit.tscn index cdbe31d..0b97e6c 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit.tscn +++ b/stages/3d_scenes/cockpit_scene/cockpit.tscn @@ -32,6 +32,50 @@ tracks/0/keys = { "update": 0, "values": [Vector3(0.99999994, 1, 0.99999994)] } +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} + +[sub_resource type="Animation" id="Animation_lom5w"] +resource_name = "activated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0.06666667), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} + +[sub_resource type="Animation" id="Animation_wrlf0"] +resource_name = "deactivated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 0, 0.43137255, 1)] +} [sub_resource type="Animation" id="Animation_u7lr8"] resource_name = "hover" @@ -52,6 +96,8 @@ tracks/0/keys = { [sub_resource type="AnimationLibrary" id="AnimationLibrary_d1blr"] _data = { &"RESET": SubResource("Animation_pxmsf"), +&"activated": SubResource("Animation_lom5w"), +&"deactivated": SubResource("Animation_wrlf0"), &"hover": SubResource("Animation_u7lr8") } @@ -109,7 +155,7 @@ hover_animation_player = NodePath("HoverAnimationPlayer") metadata/_custom_type_script = "uid://bj4d1x8n8ina" [node name="Sprite3D" type="Sprite3D" parent="Exit" unique_id=59612408] -transform = Transform3D(0.98850703, -3.2424907e-09, -0.15117453, -0.15117453, -4.265087e-08, -0.98850703, -3.2424905e-09, 1, -4.2650868e-08, -0.42407238, -0.022187352, -0.054385662) +transform = Transform3D(0.9896563, -2.9182559e-09, -0.14345813, -0.14345813, -4.0473843e-08, -0.9896563, -2.9182556e-09, 1, -4.047384e-08, -0.42407238, -0.016606808, -0.054385662) texture = ExtResource("3_w4l7d") [node name="HoverAnimationPlayer" type="AnimationPlayer" parent="Exit" unique_id=110208719] @@ -128,7 +174,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.04904175e-05, 0.0026242882 [node name="Phone" parent="." unique_id=429299908 instance=ExtResource("3_3b5pk")] unique_name_in_owner = true -transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 1.4133042, -0.68386626, 1.709522) +transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 1.4133042, -0.6965556, 2.7402856) interactable = false [node name="Gauge3D" parent="." unique_id=232507348 instance=ExtResource("4_ers7b")] @@ -157,7 +203,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.239, 0, 4.02) [node name="MutationDiscoveryScreen" parent="." unique_id=1948337200 instance=ExtResource("15_q4ojn")] transform = Transform3D(-1, 0, 8.742278e-08, 0, 1, 0, -8.742278e-08, 0, -1, 1.1896521, 0.015508115, 3.982) -mutations_unlocked = 0 [node name="ShipTutorial" parent="." unique_id=868547496 node_paths=PackedStringArray("player") instance=ExtResource("13_u7lr8")] unique_name_in_owner = true @@ -173,7 +218,7 @@ transform = Transform3D(-1, -2.2626683e-08, -8.444392e-08, 0, 0.9659259, -0.2588 near = 0.003 [node name="MeshInstance3D" type="MeshInstance3D" parent="TrailerCamera" unique_id=2142282697] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.263265e-08, 0, -0.7177747) +transform = Transform3D(1, -3.5527137e-15, -7.1054274e-15, 0, 1, 0, 0, 0, 1, 0.00013747103, 0.0019346476, -0.71927476) mesh = SubResource("QuadMesh_q4ojn") surface_material_override/0 = ExtResource("14_d1blr") @@ -182,6 +227,7 @@ libraries/ = SubResource("AnimationLibrary_wrlf0") autoplay = &"trailer" [node name="OrchidSaver" parent="." unique_id=381308711 instance=ExtResource("16_nfjul")] +unique_name_in_owner = true transform = Transform3D(-4.371139e-08, 0, -1, 0, 1, 0, 1, 0, -4.371139e-08, 0.024999544, -1.3700237, -3.9526832) screen_icon = ExtResource("17_ggekp") screen_text = "SAVE_ORCHID_MEMORY_AND_RESPAWN" diff --git a/stages/3d_scenes/cockpit_scene/cockpit_elements/dashboard.tscn b/stages/3d_scenes/cockpit_scene/cockpit_elements/dashboard.tscn index 4ba31fe..52543e4 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit_elements/dashboard.tscn +++ b/stages/3d_scenes/cockpit_scene/cockpit_elements/dashboard.tscn @@ -193,8 +193,8 @@ _data = { [sub_resource type="Resource" id="Resource_ne0dp"] script = ExtResource("12_oix5e") -seeds = Array[ExtResource("11_3cel1")]([null]) -seeds_size = 1 +seeds = Array[ExtResource("11_3cel1")]([null, null, null, null, null, null]) +seeds_size = 6 metadata/_custom_type_script = "uid://fnu2d6wna4yc" [node name="Dashboard" type="Node3D" unique_id=1374334508] diff --git a/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_element.tscn b/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_element.tscn index 668ceee..5429a42 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_element.tscn +++ b/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_element.tscn @@ -7,7 +7,7 @@ [ext_resource type="Texture2D" uid="uid://cwewx7cdy085h" path="res://common/icons/help-hexagon.svg" id="4_0ou8m"] [node name="MutationDiscoveryElement" type="Control" unique_id=701137276] -custom_minimum_size = Vector2(30, 30) +custom_minimum_size = Vector2(80, 80) layout_mode = 3 anchors_preset = 0 offset_right = 30.0 @@ -18,17 +18,17 @@ state = 0 [node name="BackgroundHexagon" type="TextureRect" parent="." unique_id=1761030872] unique_name_in_owner = true modulate = Color(1, 0.6509804, 0.09019608, 1) -custom_minimum_size = Vector2(30, 30) +custom_minimum_size = Vector2(80, 80) layout_mode = 1 anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = -15.0 -offset_top = -15.0 -offset_right = 15.0 -offset_bottom = 15.0 +offset_left = -30.0 +offset_top = -30.0 +offset_right = 30.0 +offset_bottom = 30.0 grow_horizontal = 2 grow_vertical = 2 texture = ExtResource("1_wfsg0") @@ -38,17 +38,17 @@ stretch_mode = 5 [node name="BackgroundHexagonQuestion" type="TextureRect" parent="." unique_id=1955995284] unique_name_in_owner = true visible = false -custom_minimum_size = Vector2(30, 30) +custom_minimum_size = Vector2(80, 80) layout_mode = 1 anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = -15.0 -offset_top = -15.0 -offset_right = 15.0 -offset_bottom = 15.0 +offset_left = -30.0 +offset_top = -30.0 +offset_right = 30.0 +offset_bottom = 30.0 grow_horizontal = 2 grow_vertical = 2 texture = ExtResource("4_0ou8m") @@ -58,17 +58,17 @@ stretch_mode = 5 [node name="BackgroundHexagonLocked" type="TextureRect" parent="." unique_id=786605518] unique_name_in_owner = true visible = false -custom_minimum_size = Vector2(30, 30) +custom_minimum_size = Vector2(80, 80) layout_mode = 1 anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = -15.0 -offset_top = -15.0 -offset_right = 15.0 -offset_bottom = 15.0 +offset_left = -30.0 +offset_top = -30.0 +offset_right = 30.0 +offset_bottom = 30.0 grow_horizontal = 2 grow_vertical = 2 texture = ExtResource("3_udmux") @@ -77,17 +77,17 @@ stretch_mode = 5 [node name="MutationTexture" type="TextureRect" parent="." unique_id=585232428] unique_name_in_owner = true -custom_minimum_size = Vector2(20, 20) +custom_minimum_size = Vector2(50, 50) layout_mode = 1 anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = -10.0 -offset_top = -10.0 -offset_right = 10.0 -offset_bottom = 10.0 +offset_left = -20.0 +offset_top = -20.0 +offset_right = 20.0 +offset_bottom = 20.0 grow_horizontal = 2 grow_vertical = 2 texture = ExtResource("1_d34h0") diff --git a/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_screen.tscn b/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_screen.tscn index b675f51..5f2123f 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_screen.tscn +++ b/stages/3d_scenes/cockpit_scene/cockpit_elements/mutation_discovered_screen/mutation_discovery_screen.tscn @@ -25,26 +25,25 @@ viewport_path = NodePath("Sprite3D/SubViewport") [sub_resource type="LabelSettings" id="LabelSettings_5jpjd"] font = ExtResource("2_kjjrb") -font_size = 15 +font_size = 40 [sub_resource type="LabelSettings" id="LabelSettings_dv1aj"] font = ExtResource("2_kjjrb") -font_size = 8 +font_size = 20 [node name="MutationDiscoveryScreen" type="Node3D" unique_id=1881622243] script = ExtResource("1_cfhhl") all_mutations = Array[ExtResource("2_dv1aj")]([SubResource("Resource_dv1aj"), SubResource("Resource_3q2hk"), SubResource("Resource_psve5"), null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]) -mutations_unlocked = null [node name="Sprite3D" type="Sprite3D" parent="." unique_id=1624784968] transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, -0.011004657, 0, 0) -pixel_size = 0.003 +pixel_size = 0.001 texture = SubResource("ViewportTexture_c5x8t") [node name="SubViewport" type="SubViewport" parent="Sprite3D" unique_id=1689184715] disable_3d = true transparent_bg = true -size = Vector2i(277, 190) +size = Vector2i(813, 592) [node name="VBoxContainer" type="VBoxContainer" parent="Sprite3D/SubViewport" unique_id=1462242714] anchors_preset = 15 @@ -52,7 +51,7 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -theme_override_constants/separation = 8 +theme_override_constants/separation = 16 alignment = 1 [node name="Label" type="Label" parent="Sprite3D/SubViewport/VBoxContainer" unique_id=1148366912] diff --git a/stages/3d_scenes/cockpit_scene/cockpit_elements/plant_info_screen.tscn b/stages/3d_scenes/cockpit_scene/cockpit_elements/plant_info_screen.tscn index c50edf8..4851d14 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit_elements/plant_info_screen.tscn +++ b/stages/3d_scenes/cockpit_scene/cockpit_elements/plant_info_screen.tscn @@ -15,24 +15,24 @@ viewport_path = NodePath("Sprite3D/SubViewport") [sub_resource type="LabelSettings" id="LabelSettings_5jpjd"] font = ExtResource("1_82utc") -font_size = 24 +font_size = 45 [sub_resource type="LabelSettings" id="LabelSettings_d4qoj"] font = ExtResource("1_82utc") -font_size = 24 +font_size = 48 [node name="PlantInfoScreen" type="Node3D" unique_id=1881622243] script = ExtResource("1_d4qoj") [node name="Sprite3D" type="Sprite3D" parent="." unique_id=1624784968] transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, -0.00714764, 0, 0) -pixel_size = 0.002 +pixel_size = 0.001 texture = SubResource("ViewportTexture_c5x8t") [node name="SubViewport" type="SubViewport" parent="Sprite3D" unique_id=1689184715] disable_3d = true transparent_bg = true -size = Vector2i(450, 350) +size = Vector2i(818, 590) [node name="VBoxContainer" type="VBoxContainer" parent="Sprite3D/SubViewport" unique_id=1462242714] anchors_preset = 15 @@ -40,7 +40,7 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -theme_override_constants/separation = 16 +theme_override_constants/separation = 32 alignment = 1 [node name="Label" type="Label" parent="Sprite3D/SubViewport/VBoxContainer" unique_id=1148366912] @@ -53,8 +53,8 @@ autowrap_mode = 3 [node name="StatsContainer" type="HFlowContainer" parent="Sprite3D/SubViewport/VBoxContainer" unique_id=1585516203] layout_mode = 2 -theme_override_constants/h_separation = 8 -theme_override_constants/v_separation = 8 +theme_override_constants/h_separation = 16 +theme_override_constants/v_separation = 16 alignment = 1 last_wrap_alignment = 2 @@ -65,7 +65,7 @@ theme_override_constants/separation = 0 alignment = 1 [node name="ScoreIcon" type="TextureRect" parent="Sprite3D/SubViewport/VBoxContainer/StatsContainer/ScoreStat" unique_id=1399775561] -custom_minimum_size = Vector2(40, 40) +custom_minimum_size = Vector2(80, 80) layout_mode = 2 texture = ExtResource("2_5jpjd") expand_mode = 3 @@ -86,7 +86,7 @@ theme_override_constants/separation = 0 alignment = 1 [node name="LifetimeIcon" type="TextureRect" parent="Sprite3D/SubViewport/VBoxContainer/StatsContainer/LifetimeStat" unique_id=855540661] -custom_minimum_size = Vector2(40, 40) +custom_minimum_size = Vector2(80, 80) layout_mode = 2 texture = ExtResource("2_xwbvs") expand_mode = 3 @@ -128,7 +128,7 @@ theme_override_constants/separation = 0 alignment = 1 [node name="SeedIcon" type="TextureRect" parent="Sprite3D/SubViewport/VBoxContainer/StatsContainer/SeedStat" unique_id=313311026] -custom_minimum_size = Vector2(40, 40) +custom_minimum_size = Vector2(80, 80) layout_mode = 2 texture = ExtResource("4_ihffg") expand_mode = 3 @@ -147,8 +147,8 @@ unique_name_in_owner = true layout_mode = 2 theme = ExtResource("7_o0x5p") theme_override_fonts/bold_font = ExtResource("1_82utc") -theme_override_font_sizes/normal_font_size = 16 -theme_override_font_sizes/bold_font_size = 20 +theme_override_font_sizes/normal_font_size = 32 +theme_override_font_sizes/bold_font_size = 40 bbcode_enabled = true text = "PLANTS_CAN_HAVE_UP_TO_X_MUTATION" fit_content = true @@ -159,8 +159,8 @@ unique_name_in_owner = true layout_mode = 2 theme = ExtResource("8_ilibg") theme_override_fonts/bold_font = ExtResource("1_82utc") -theme_override_font_sizes/normal_font_size = 16 -theme_override_font_sizes/bold_font_size = 20 +theme_override_font_sizes/normal_font_size = 32 +theme_override_font_sizes/bold_font_size = 40 bbcode_enabled = true text = "PLANTS_MUTATION_CHANCE_IS_X_PERCENT" fit_content = true diff --git a/stages/3d_scenes/cockpit_scene/cockpit_elements/travel_screen/scripts/travel_screen_content.gd b/stages/3d_scenes/cockpit_scene/cockpit_elements/travel_screen/scripts/travel_screen_content.gd index 94b3441..a6df7ed 100644 --- a/stages/3d_scenes/cockpit_scene/cockpit_elements/travel_screen/scripts/travel_screen_content.gd +++ b/stages/3d_scenes/cockpit_scene/cockpit_elements/travel_screen/scripts/travel_screen_content.gd @@ -37,7 +37,6 @@ func update(with_animation := true): c.queue_free() for i in range(get_step_number()): - print("showing %d" % i) var icon = REGION_ICON if i == 0: icon = START_ICON @@ -55,8 +54,6 @@ func update(with_animation := true): for m_i in range(len(modifiers)): spawn_icon(modifiers[m_i].get_icon(), Vector2(i,-m_i - 1),color, 0.7) - print(modifiers) - spawn_icon(icon, Vector2(i,0),color) ship_icon = spawn_icon(SHIP_ICON, Vector2(current_position, 1), CURRENT_COLOR, 1) diff --git a/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd b/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd index 4805c73..d96f5d9 100644 --- a/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd +++ b/stages/3d_scenes/cockpit_scene/scripts/cockpit.gd @@ -1,6 +1,6 @@ extends Node3D -const FAILED_DIALOG = "res://dialogs/timelines/tutorial/demeter_ship_failed.dtl" +const FAILED_DIALOG = "res://dialogs/timelines/X_gameplay_related/demeter_ship_failed.dtl" const TAKE_OFF_ICON = preload("res://common/icons/chevrons-up.svg") const LAND_ICON = preload("res://common/icons/arrow-narrow-down.svg") @@ -13,6 +13,7 @@ signal land var choosen_run_point : RunPoint = null var exiting = false var phone_dialogs : Array[String] +var respawn_asked = false # Called when the node enters the scene tree for the first time. func _ready(): @@ -135,7 +136,8 @@ func _on_exit_clicked(): if (can_exit() and not exiting): AudioManager.play_sfx("Ship_exit") exiting = true - SceneManager.change_to_scene(RegionScene.new(GameInfo.game_data.current_region_data)) + if GameInfo.game_data.current_run: + SceneManager.change_to_scene(GameInfo.game_data.current_run.get_cockpit_exit_scene()) func update_dashboard(with_animation := true): @@ -187,4 +189,9 @@ func update_dashboard(with_animation := true): dashboard.right_stop = null func _on_orchid_saver_clicked(): - GameInfo.game_data.give_up() + if not respawn_asked: + respawn_asked = true + %OrchidSaver.screen_icon = preload("res://common/icons/alert-triangle.svg") + %OrchidSaver.screen_text = tr("CONFIRM_RESPAWN") + else: + GameInfo.game_data.give_up() diff --git a/stages/3d_scenes/common/assets/3d/ai__broken_receptacle.blend1 b/stages/3d_scenes/common/assets/3d/ai__broken_receptacle.blend1 new file mode 100644 index 0000000..eedf7cc Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/ai__broken_receptacle.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/ai_broken_receptacle.blend1 b/stages/3d_scenes/common/assets/3d/ai_broken_receptacle.blend1 new file mode 100644 index 0000000..72bbb9c Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/ai_broken_receptacle.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/ai_receptacle.blend1 b/stages/3d_scenes/common/assets/3d/ai_receptacle.blend1 new file mode 100644 index 0000000..2496d8a Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/ai_receptacle.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/communication.blend b/stages/3d_scenes/common/assets/3d/communication.blend new file mode 100644 index 0000000..1f88737 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/communication.blend differ diff --git a/stages/3d_scenes/common/assets/3d/communication.blend.import b/stages/3d_scenes/common/assets/3d/communication.blend.import new file mode 100644 index 0000000..9f67031 --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/communication.blend.import @@ -0,0 +1,68 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://brckina5otmj6" +path="res://.godot/imported/communication.blend-de62286f2d3ba22c511bfe99fe734c4f.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/communication.blend" +dest_files=["res://.godot/imported/communication.blend-de62286f2d3ba22c511bfe99fe734c4f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/communication.blend1 b/stages/3d_scenes/common/assets/3d/communication.blend1 new file mode 100644 index 0000000..87f8652 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/communication.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/corridor.blend b/stages/3d_scenes/common/assets/3d/corridor.blend new file mode 100644 index 0000000..13f5fa8 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/corridor.blend differ diff --git a/stages/3d_scenes/borea_base/assets/3d/borea_base.blend.import b/stages/3d_scenes/common/assets/3d/corridor.blend.import similarity index 86% rename from stages/3d_scenes/borea_base/assets/3d/borea_base.blend.import rename to stages/3d_scenes/common/assets/3d/corridor.blend.import index f7540ed..65e28fc 100644 --- a/stages/3d_scenes/borea_base/assets/3d/borea_base.blend.import +++ b/stages/3d_scenes/common/assets/3d/corridor.blend.import @@ -3,13 +3,13 @@ importer="scene" importer_version=1 type="PackedScene" -uid="uid://b83v0uxiukmbb" -path="res://.godot/imported/borea_base.blend-16b097cf97b3f00cfa1bc1f2c346e23b.scn" +uid="uid://7pitc7kjmffv" +path="res://.godot/imported/corridor.blend-d4e7afe2924adbd59f26fd0b71929681.scn" [deps] -source_file="res://stages/3d_scenes/borea_base/assets/3d/borea_base.blend" -dest_files=["res://.godot/imported/borea_base.blend-16b097cf97b3f00cfa1bc1f2c346e23b.scn"] +source_file="res://stages/3d_scenes/common/assets/3d/corridor.blend" +dest_files=["res://.godot/imported/corridor.blend-d4e7afe2924adbd59f26fd0b71929681.scn"] [params] diff --git a/stages/3d_scenes/common/assets/3d/door.blend b/stages/3d_scenes/common/assets/3d/door.blend new file mode 100644 index 0000000..1a1baad Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/door.blend differ diff --git a/stages/3d_scenes/common/assets/3d/door.blend.import b/stages/3d_scenes/common/assets/3d/door.blend.import new file mode 100644 index 0000000..280e7cf --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/door.blend.import @@ -0,0 +1,68 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cah00gew65ire" +path="res://.godot/imported/door.blend-c87f276c56915caea51fe7d3dbe0db91.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/door.blend" +dest_files=["res://.godot/imported/door.blend-c87f276c56915caea51fe7d3dbe0db91.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/door_form.blend b/stages/3d_scenes/common/assets/3d/door_form.blend new file mode 100644 index 0000000..3275cf0 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/door_form.blend differ diff --git a/stages/3d_scenes/common/assets/3d/door_form.blend.import b/stages/3d_scenes/common/assets/3d/door_form.blend.import new file mode 100644 index 0000000..a3e3454 --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/door_form.blend.import @@ -0,0 +1,60 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://biy82bf0icupn" +path="res://.godot/imported/door_form.blend-b253b21322e2bd13e9cc5e2f079ab0c6.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/door_form.blend" +dest_files=["res://.godot/imported/door_form.blend-b253b21322e2bd13e9cc5e2f079ab0c6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/falling_plant.blend b/stages/3d_scenes/common/assets/3d/falling_plant.blend new file mode 100644 index 0000000..c1e85f3 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/falling_plant.blend differ diff --git a/stages/3d_scenes/common/assets/3d/falling_plant.blend.import b/stages/3d_scenes/common/assets/3d/falling_plant.blend.import new file mode 100644 index 0000000..f2ac298 --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/falling_plant.blend.import @@ -0,0 +1,79 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lx0tdm5xftl0" +path="res://.godot/imported/falling_plant.blend-6769216581709eaac68f00adc402b695.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/falling_plant.blend" +dest_files=["res://.godot/imported/falling_plant.blend-6769216581709eaac68f00adc402b695.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Cristal": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/cristal.tres", +"use_external/path": "uid://di0m3uqgi3l08" +} +}, +"meshes": { +"falling_plant_Mesh": { +"generate/lightmap_uv": 0, +"generate/lods": 0, +"generate/shadow_meshes": 0, +"lods/normal_merge_angle": 20.0, +"save_to_file/enabled": true, +"save_to_file/fallback_path": "res://stages/3d_scenes/common/assets/3d/falling_plant.res", +"save_to_file/path": "uid://3pwvp242qwvv" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/falling_plant.blend1 b/stages/3d_scenes/common/assets/3d/falling_plant.blend1 new file mode 100644 index 0000000..f49ae58 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/falling_plant.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/falling_plant.res b/stages/3d_scenes/common/assets/3d/falling_plant.res new file mode 100644 index 0000000..be2696d Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/falling_plant.res differ diff --git a/stages/3d_scenes/common/assets/3d/hub.blend b/stages/3d_scenes/common/assets/3d/hub.blend new file mode 100644 index 0000000..d32e2d6 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/hub.blend differ diff --git a/stages/3d_scenes/common/assets/3d/hub.blend.import b/stages/3d_scenes/common/assets/3d/hub.blend.import new file mode 100644 index 0000000..13d7f6c --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/hub.blend.import @@ -0,0 +1,73 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ci5vs3qhiuf0x" +path="res://.godot/imported/hub.blend-8556d257a3c3a635e26bf37e5444595c.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/hub.blend" +dest_files=["res://.godot/imported/hub.blend-8556d257a3c3a635e26bf37e5444595c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +}, +"Glass": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/glass_3d.tres", +"use_external/path": "uid://b5vlcdry8vtgi" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/moss.blend b/stages/3d_scenes/common/assets/3d/moss.blend new file mode 100644 index 0000000..ed95c09 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/moss.blend differ diff --git a/stages/3d_scenes/common/assets/3d/moss.blend.import b/stages/3d_scenes/common/assets/3d/moss.blend.import new file mode 100644 index 0000000..79f6917 --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/moss.blend.import @@ -0,0 +1,79 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://2atgcda7n3p7" +path="res://.godot/imported/moss.blend-944d735be6b248e6fb9c74ae065c775f.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/moss.blend" +dest_files=["res://.godot/imported/moss.blend-944d735be6b248e6fb9c74ae065c775f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +} +}, +"meshes": { +"moss_Sphere": { +"generate/lightmap_uv": 0, +"generate/lods": 0, +"generate/shadow_meshes": 0, +"lods/normal_merge_angle": 20.0, +"save_to_file/enabled": true, +"save_to_file/fallback_path": "res://stages/3d_scenes/common/assets/3d/moss.res", +"save_to_file/path": "uid://u78be56ih8xw" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/moss.blend1 b/stages/3d_scenes/common/assets/3d/moss.blend1 new file mode 100644 index 0000000..a27739c Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/moss.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/moss.res b/stages/3d_scenes/common/assets/3d/moss.res new file mode 100644 index 0000000..75aaa35 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/moss.res differ diff --git a/stages/3d_scenes/common/assets/3d/plant.blend b/stages/3d_scenes/common/assets/3d/plant.blend new file mode 100644 index 0000000..10287b4 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/plant.blend differ diff --git a/stages/3d_scenes/common/assets/3d/plant.blend.import b/stages/3d_scenes/common/assets/3d/plant.blend.import new file mode 100644 index 0000000..dec61ef --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/plant.blend.import @@ -0,0 +1,79 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dwlfp4ou3ooro" +path="res://.godot/imported/plant.blend-2e7932e3fad407c24329946b802bd935.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/plant.blend" +dest_files=["res://.godot/imported/plant.blend-2e7932e3fad407c24329946b802bd935.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Cristal": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/cristal.tres", +"use_external/path": "uid://di0m3uqgi3l08" +} +}, +"meshes": { +"plant_Cylinder": { +"generate/lightmap_uv": 0, +"generate/lods": 0, +"generate/shadow_meshes": 0, +"lods/normal_merge_angle": 20.0, +"save_to_file/enabled": true, +"save_to_file/fallback_path": "res://stages/3d_scenes/common/assets/3d/plant.res", +"save_to_file/path": "uid://cb5tklxnk2dek" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/plant.blend1 b/stages/3d_scenes/common/assets/3d/plant.blend1 new file mode 100644 index 0000000..3c10e45 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/plant.blend1 differ diff --git a/stages/3d_scenes/common/assets/3d/plant.res b/stages/3d_scenes/common/assets/3d/plant.res new file mode 100644 index 0000000..4f9e0b7 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/plant.res differ diff --git a/stages/3d_scenes/common/assets/3d/room.blend b/stages/3d_scenes/common/assets/3d/room.blend new file mode 100644 index 0000000..a039bb8 Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/room.blend differ diff --git a/stages/3d_scenes/common/assets/3d/room.blend.import b/stages/3d_scenes/common/assets/3d/room.blend.import new file mode 100644 index 0000000..9bb9f73 --- /dev/null +++ b/stages/3d_scenes/common/assets/3d/room.blend.import @@ -0,0 +1,73 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cepouw76en6r" +path="res://.godot/imported/room.blend-4fa475488a7dcde300c40ca0dff93fe1.scn" + +[deps] + +source_file="res://stages/3d_scenes/common/assets/3d/room.blend" +dest_files=["res://.godot/imported/room.blend-4fa475488a7dcde300c40ca0dff93fe1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={ +"materials": { +"Default3D": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/default_3d.tres", +"use_external/path": "uid://dvvi1k5c5iowc" +}, +"Glass": { +"use_external/enabled": true, +"use_external/fallback_path": "res://common/assets/materials/glass_3d.tres", +"use_external/path": "uid://b5vlcdry8vtgi" +} +} +} +blender/nodes/visible=0 +blender/nodes/active_collection_only=false +blender/nodes/punctual_lights=true +blender/nodes/cameras=true +blender/nodes/custom_properties=true +blender/nodes/modifiers=1 +blender/meshes/colors=false +blender/meshes/uvs=true +blender/meshes/normals=true +blender/meshes/export_geometry_nodes_instances=false +blender/meshes/gpu_instances=false +blender/meshes/tangents=true +blender/meshes/skins=2 +blender/meshes/export_bones_deforming_mesh_only=false +blender/materials/unpack_enabled=true +blender/materials/export_materials=1 +blender/animation/limit_playback=true +blender/animation/always_sample=true +blender/animation/group_tracks=true +gltf/naming_version=2 diff --git a/stages/3d_scenes/common/assets/3d/room.blend1 b/stages/3d_scenes/common/assets/3d/room.blend1 new file mode 100644 index 0000000..c6a709b Binary files /dev/null and b/stages/3d_scenes/common/assets/3d/room.blend1 differ diff --git a/stages/3d_scenes/relay_base/relay_base.tscn b/stages/3d_scenes/relay_base/relay_base.tscn index e3e8859..8aa6d9d 100644 --- a/stages/3d_scenes/relay_base/relay_base.tscn +++ b/stages/3d_scenes/relay_base/relay_base.tscn @@ -5,7 +5,7 @@ [ext_resource type="PackedScene" uid="uid://c7pw57hcv6jvr" path="res://stages/3d_scenes/relay_base/assets/3d/relay_base.blend" id="1_dm7op"] [ext_resource type="PackedScene" uid="uid://da7a74dg30q1l" path="res://entities/player_3d/player_3D.tscn" id="2_6cyeg"] [ext_resource type="Script" uid="uid://bj4d1x8n8ina" path="res://entities/interactable_3d/interactable_3d.gd" id="3_xuy43"] -[ext_resource type="Texture2D" uid="uid://dex283rx00fjb" path="res://common/icons/logout.svg" id="4_140ad"] +[ext_resource type="Texture2D" uid="uid://1ynlp05wj0hm" path="res://common/icons/rocket.svg" id="4_xuy43"] [ext_resource type="PackedScene" uid="uid://c2bk3n1xo1fto" path="res://stages/3d_scenes/astra_base/incubator.tscn" id="5_uxagy"] [ext_resource type="PackedScene" uid="uid://u3o5g8lmck74" path="res://entities/interactable_3d/orchid_saver/orchid_saver.tscn" id="6_2vcx4"] [ext_resource type="Texture2D" uid="uid://d3k7rl7nbp7yx" path="res://common/icons/device-floppy.svg" id="7_erosk"] @@ -53,6 +53,50 @@ tracks/0/keys = { "update": 0, "values": [Vector3(0.99999994, 1, 0.99999994)] } +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("Sprite3D:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} + +[sub_resource type="Animation" id="Animation_xuy43"] +resource_name = "activated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0.033333335), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Color(1, 1, 1, 1)] +} + +[sub_resource type="Animation" id="Animation_140ad"] +resource_name = "deactivated" +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("Sprite3D:modulate") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [Color(1, 0, 0.43137255, 1)] +} [sub_resource type="Animation" id="Animation_u7lr8"] resource_name = "hover" @@ -73,6 +117,8 @@ tracks/0/keys = { [sub_resource type="AnimationLibrary" id="AnimationLibrary_1hq1b"] _data = { &"RESET": SubResource("Animation_pxmsf"), +&"activated": SubResource("Animation_xuy43"), +&"deactivated": SubResource("Animation_140ad"), &"hover": SubResource("Animation_u7lr8") } @@ -113,13 +159,14 @@ surface_material_override/0 = SubResource("StandardMaterial3D_2vcx4") unique_name_in_owner = true transform = Transform3D(4.366728e-08, -0.99899095, 0.044909704, -1, -4.371139e-08, 0, 1.963069e-09, -0.044909704, -0.99899095, -0.15007031, 1.2682863, 0.032186985) script = ExtResource("3_xuy43") +interactable = false hover_animation_player = NodePath("HoverAnimationPlayer") metadata/_custom_type_script = "uid://bj4d1x8n8ina" [node name="Sprite3D" type="Sprite3D" parent="Exit" unique_id=736012003] -transform = Transform3D(-4.3711385e-08, -1, -4.3711385e-08, 0, -4.371139e-08, 0.99999994, -0.99999994, 4.371139e-08, 1.9106853e-15, 0.1646713, -0.017980576, 0) +transform = Transform3D(-4.3711385e-08, -1, -4.3711385e-08, 0, -4.371139e-08, 0.99999994, -0.99999994, 4.371139e-08, 1.9106853e-15, 0.10885215, -0.017980576, 3.7252903e-09) pixel_size = 0.005 -texture = ExtResource("4_140ad") +texture = ExtResource("4_xuy43") [node name="HoverAnimationPlayer" type="AnimationPlayer" parent="Exit" unique_id=131585105] libraries/ = SubResource("AnimationLibrary_1hq1b") diff --git a/stages/3d_scenes/relay_base/scripts/relay_base.gd b/stages/3d_scenes/relay_base/scripts/relay_base.gd index b326a46..5e90869 100644 --- a/stages/3d_scenes/relay_base/scripts/relay_base.gd +++ b/stages/3d_scenes/relay_base/scripts/relay_base.gd @@ -8,7 +8,11 @@ signal orchid_saved @export var base_number : String = "" : set = set_base_number @onready var orchid_saver : OrchidSaver = %OrchidSaver @onready var player : Player3D = %Player3D -var exit_scene : Scene = null +var exit_scene : Scene = null : + set(s): + exit_scene = s + if is_node_ready(): + %Exit.interactable = exit_scene != null var dead_orchid : Node3D @@ -16,6 +20,8 @@ func _ready(): if not Engine.is_editor_hint(): Input.mouse_mode = Input.MOUSE_MODE_CAPTURED + %Exit.interactable = exit_scene != null + set_base_name() set_base_number() diff --git a/stages/3d_scenes/ship_garage/scripts/ship_garage.gd b/stages/3d_scenes/ship_garage/scripts/ship_garage.gd index 71794ac..422dd1c 100644 --- a/stages/3d_scenes/ship_garage/scripts/ship_garage.gd +++ b/stages/3d_scenes/ship_garage/scripts/ship_garage.gd @@ -1,6 +1,6 @@ extends Node3D -const DIALOG_PATH = "res://dialogs/timelines/tutorial/demeter_ship_presentation.dtl" +const DIALOG_PATH = "res://dialogs/timelines/1_waking_up/3_demeter_ship_presentation.dtl" var jingle_played := false diff --git a/stages/intro/intro.tscn b/stages/intro/intro.tscn index e8feaf9..a030a6d 100644 --- a/stages/intro/intro.tscn +++ b/stages/intro/intro.tscn @@ -1,58 +1,106 @@ [gd_scene format=3 uid="uid://d0n52psuns1vl"] [ext_resource type="Script" uid="uid://ddf3fktoer2ng" path="res://stages/intro/scripts/intro.gd" id="1_2nxbv"] -[ext_resource type="Shader" uid="uid://bv2rghn44mrrf" path="res://stages/title_screen/resources/shaders/stars.gdshader" id="2_851lr"] +[ext_resource type="Texture2D" uid="uid://bi5jo6pf0acjb" path="res://common/icons/carambola.svg" id="2_2nxbv"] +[ext_resource type="Shader" uid="uid://bklafn6ulmkij" path="res://common/vfx/materials/shaders/topology_map.gdshader" id="2_851lr"] + +[sub_resource type="ViewportTexture" id="ViewportTexture_mi20s"] +viewport_path = NodePath("CanvasLayer/TextureRect/SubViewport") + +[sub_resource type="Curve" id="Curve_tg2p4"] +_data = [Vector2(0, 0.044977546), 0.0, 0.0, 0, 0, Vector2(1, 1), 0.0, 0.0, 0, 0] +point_count = 2 + +[sub_resource type="Curve" id="Curve_j8cg2"] +_limits = [-1.0, 1.0, 0.0, 1.0] +_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 1), 0.0, 0.0, 0, 0] +point_count = 2 [sub_resource type="ShaderMaterial" id="ShaderMaterial_2nxbv"] shader = ExtResource("2_851lr") -shader_parameter/sky_color = Color(0.03, 0.05, 0.11, 1) -shader_parameter/star_base_color = Color(0.8, 1, 0.3, 1) -shader_parameter/star_hue_offset = 0.6 -shader_parameter/star_intensity = 0.08 -shader_parameter/star_twinkle_speed = 0.8 -shader_parameter/star_twinkle_intensity = 0.2 -shader_parameter/layer_scale = 20.0 -shader_parameter/layer_scale_step = 10.0 -shader_parameter/layers_count = 3 +shader_parameter/line_number = 10.0 +shader_parameter/line_color = Color(0.0627451, 0.05882353, 0.16862746, 1) +shader_parameter/line_thickness = 0.0010000000475 +shader_parameter/inverse_result = true -[sub_resource type="Sky" id="Sky_65b6a"] -sky_material = SubResource("ShaderMaterial_2nxbv") +[sub_resource type="FastNoiseLite" id="FastNoiseLite_mi20s"] +noise_type = 2 +frequency = 0.0172 +offset = Vector3(0, -377.34, 682.93) +fractal_type = 2 +fractal_octaves = 3 -[sub_resource type="Environment" id="Environment_mi20s"] -background_mode = 2 -sky = SubResource("Sky_65b6a") -sky_custom_fov = 61.7 -ambient_light_source = 3 -ambient_light_color = Color(1, 1, 1, 1) -ambient_light_sky_contribution = 0.85 -ambient_light_energy = 2.0 -reflected_light_source = 2 -tonemap_mode = 2 -tonemap_exposure = 0.7 -tonemap_white = 1.84 -glow_enabled = true -glow_intensity = 0.22 -glow_bloom = 0.22 -glow_hdr_threshold = 0.79 -glow_hdr_scale = 0.0 -glow_hdr_luminance_cap = 5.63 -fog_enabled = true -fog_mode = 1 -fog_light_color = Color(0.13725491, 0.39215687, 0.6666667, 1) -fog_density = 0.1831 -fog_aerial_perspective = 0.113 -fog_sky_affect = 0.0 -volumetric_fog_sky_affect = 0.0 -adjustment_enabled = true -adjustment_saturation = 1.3 +[sub_resource type="NoiseTexture2D" id="NoiseTexture2D_tg2p4"] +width = 600 +height = 600 +generate_mipmaps = false +noise = SubResource("FastNoiseLite_mi20s") +seamless = true +normalize = false [node name="Intro" type="Node" unique_id=1801844904] script = ExtResource("1_2nxbv") game_scene_path = "uid://d28cp7a21kwou" -[node name="Node3D" type="Node3D" parent="." unique_id=1668131521] +[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=2099392132] -[node name="Camera3D" type="Camera3D" parent="Node3D" unique_id=2070854508] +[node name="ColorRect" type="ColorRect" parent="CanvasLayer" unique_id=154563397] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.13725491, 0.39215687, 0.6666667, 0.30588236) -[node name="WorldEnvironment" type="WorldEnvironment" parent="Node3D" unique_id=115692868] -environment = SubResource("Environment_mi20s") +[node name="TextureRect" type="TextureRect" parent="CanvasLayer" unique_id=353070670] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = SubResource("ViewportTexture_mi20s") +expand_mode = 1 +stretch_mode = 6 + +[node name="SubViewport" type="SubViewport" parent="CanvasLayer/TextureRect" unique_id=1614126672] +transparent_bg = true +size = Vector2i(1000, 1000) + +[node name="SparkParticles" type="CPUParticles2D" parent="CanvasLayer/TextureRect/SubViewport" unique_id=1408188363] +unique_name_in_owner = true +position = Vector2(500, 500) +emitting = false +amount = 180 +texture = ExtResource("2_2nxbv") +lifetime = 3.0 +emission_shape = 1 +emission_sphere_radius = 1.0 +spread = 180.0 +gravity = Vector2(0, 0) +initial_velocity_min = 304.35 +initial_velocity_max = 463.77 +angular_velocity_min = -10.0 +angular_velocity_max = 10.0 +orbit_velocity_min = 0.1 +orbit_velocity_max = 0.1 +angle_min = -490.4 +angle_max = 444.0 +scale_amount_min = 10.0 +scale_amount_max = 10.0 +scale_amount_curve = SubResource("Curve_tg2p4") +color = Color(1, 0.4509804, 1, 1) +hue_variation_min = -1.0 +hue_variation_max = 1.0 +hue_variation_curve = SubResource("Curve_j8cg2") + +[node name="TopologyMap" type="TextureRect" parent="CanvasLayer" unique_id=2030967336] +unique_name_in_owner = true +material = SubResource("ShaderMaterial_2nxbv") +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = SubResource("NoiseTexture2D_tg2p4") +expand_mode = 3 +stretch_mode = 6 diff --git a/stages/intro/scripts/intro.gd b/stages/intro/scripts/intro.gd index 59ec914..c3e485d 100644 --- a/stages/intro/scripts/intro.gd +++ b/stages/intro/scripts/intro.gd @@ -1,7 +1,8 @@ extends Node class_name Intro -const WAKE_UP_DIALOG = "res://dialogs/timelines/tutorial/wake_up.dtl" +const SPEED = 5 +const WAKE_UP_DIALOG = "res://dialogs/timelines/1_waking_up/1_waking_up.dtl" var steps : Array[IntroStep] @export_file var game_scene_path : String @@ -18,13 +19,22 @@ func _input(_e): and Input.is_action_just_pressed("action") ): pass_intro() + %SparkParticles.emitting = false + +func _process(delta): + %TopologyMap.texture.noise.offset += Vector3(delta * SPEED, delta * SPEED, 0.) func _ready(): Dialogic.start(WAKE_UP_DIALOG) + Dialogic.signal_event.connect(_on_dialogic_signal) await Dialogic.timeline_ended pass_intro() +func _on_dialogic_signal(argument:String): + if argument == "spark": + %SparkParticles.emitting = true + func pass_intro(): Dialogic.end_timeline() SceneManager.change_to_scene( diff --git a/stages/terrain/region/assets/textures/moss_biome/moss_contamination_atlas_texture.png b/stages/terrain/region/assets/textures/moss_biome/moss_contamination_atlas_texture.png index cf55057..bf9c335 100644 Binary files a/stages/terrain/region/assets/textures/moss_biome/moss_contamination_atlas_texture.png and b/stages/terrain/region/assets/textures/moss_biome/moss_contamination_atlas_texture.png differ diff --git a/stages/terrain/region/assets/textures/moss_biome/moss_rock_atlas_texture.png b/stages/terrain/region/assets/textures/moss_biome/moss_rock_atlas_texture.png index b3ac566..7e0f125 100644 Binary files a/stages/terrain/region/assets/textures/moss_biome/moss_rock_atlas_texture.png and b/stages/terrain/region/assets/textures/moss_biome/moss_rock_atlas_texture.png differ diff --git a/stages/terrain/region/region.tscn b/stages/terrain/region/region.tscn index 0ecfbfa..21614e0 100644 --- a/stages/terrain/region/region.tscn +++ b/stages/terrain/region/region.tscn @@ -20,11 +20,12 @@ [sub_resource type="Resource" id="Resource_r4e5h"] script = ExtResource("3_r4e5h") -cloud_value = 0.49210685 -wind_direction = Vector2(-0.6777254, 0.7353151) -wind_force = 0.83562934 +rain_value = 0.42404523 +cloud_value = 0.20464431 +wind_direction = Vector2(0.4359836, 0.8999546) +wind_force = 0.9393943 fog_value = 0.5362279 -ambiance_name = "ExteriorFoggy" +ambiance_name = "ExteriorWindy" type = 3 [sub_resource type="FastNoiseLite" id="FastNoiseLite_2w03p"] @@ -104,14 +105,14 @@ anim_speed_max = 1.0 _data = [Vector2(0, 0), 0.0, 0.0, 0, 0, Vector2(0.4883721, 1), 0.037164874, 0.037164874, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0] point_count = 3 -[sub_resource type="CurveTexture" id="CurveTexture_ovqi1"] +[sub_resource type="CurveTexture" id="CurveTexture_r4e5h"] curve = SubResource("Curve_qdnee") [sub_resource type="Curve" id="Curve_6d8m3"] _data = [Vector2(0, 0), 0.0, 0.0, 0, 0, Vector2(0.25581396, 1), 0.0, 0.0, 0, 0, Vector2(0.5023256, 0), 0.0, 0.0, 0, 0, Vector2(0.75348836, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0] point_count = 5 -[sub_resource type="CurveXYZTexture" id="CurveXYZTexture_fwgig"] +[sub_resource type="CurveXYZTexture" id="CurveXYZTexture_3lxsc"] curve_y = SubResource("Curve_6d8m3") [sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_mlppq"] @@ -123,12 +124,12 @@ initial_velocity_min = 35.1 initial_velocity_max = 39.0 directional_velocity_min = -1.0000161 directional_velocity_max = 0.9999839 -directional_velocity_curve = SubResource("CurveXYZTexture_fwgig") +directional_velocity_curve = SubResource("CurveXYZTexture_3lxsc") gravity = Vector3(0, 0, 0) scale_min = 0.049999997 scale_max = 0.099999994 color = Color(0.9, 0.92, 1, 0.4392157) -alpha_curve = SubResource("CurveTexture_ovqi1") +alpha_curve = SubResource("CurveTexture_r4e5h") [node name="Region" type="Node2D" unique_id=1509166288 node_paths=PackedStringArray("entity_container")] script = ExtResource("1_441sk") @@ -181,9 +182,6 @@ mouse_filter = 2 [node name="PassDay" parent="." unique_id=1144772570 instance=ExtResource("3_ktnx3")] unique_name_in_owner = true -[node name="RegionGui" type="CanvasLayer" parent="." unique_id=2024485651] -layer = 2 - [node name="GameGui" parent="." unique_id=1970837239 instance=ExtResource("4_qdnee")] [node name="Announce" parent="." unique_id=1659074958 instance=ExtResource("8_mlppq")] diff --git a/stages/terrain/region/resources/moss_biome.tres b/stages/terrain/region/resources/moss_biome.tres index d334efd..adea81f 100644 --- a/stages/terrain/region/resources/moss_biome.tres +++ b/stages/terrain/region/resources/moss_biome.tres @@ -603,6 +603,54 @@ texture_region_size = Vector2i(64, 64) 10:1/0/terrains_peering_bit/top_left_corner = 1 10:1/0/terrains_peering_bit/top_side = 1 10:1/0/terrains_peering_bit/top_right_corner = 1 +12:0/0 = 0 +12:0/0/terrain_set = 0 +12:0/0/terrain = 1 +12:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-32, -32, 32, -32, 32, 32, -32, 32) +12:0/0/terrains_peering_bit/right_side = 1 +12:0/0/terrains_peering_bit/bottom_right_corner = 1 +12:0/0/terrains_peering_bit/bottom_side = 1 +12:0/0/terrains_peering_bit/bottom_left_corner = 1 +12:0/0/terrains_peering_bit/left_side = 1 +12:0/0/terrains_peering_bit/top_left_corner = 1 +12:0/0/terrains_peering_bit/top_side = 1 +12:0/0/terrains_peering_bit/top_right_corner = 1 +12:1/0 = 0 +12:1/0/terrain_set = 0 +12:1/0/terrain = 1 +12:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-32, -32, 32, -32, 32, 32, -32, 32) +12:1/0/terrains_peering_bit/right_side = 1 +12:1/0/terrains_peering_bit/bottom_right_corner = 1 +12:1/0/terrains_peering_bit/bottom_side = 1 +12:1/0/terrains_peering_bit/bottom_left_corner = 1 +12:1/0/terrains_peering_bit/left_side = 1 +12:1/0/terrains_peering_bit/top_left_corner = 1 +12:1/0/terrains_peering_bit/top_side = 1 +12:1/0/terrains_peering_bit/top_right_corner = 1 +12:2/0 = 0 +12:2/0/terrain_set = 0 +12:2/0/terrain = 1 +12:2/0/physics_layer_0/polygon_0/points = PackedVector2Array(-32, -32, 32, -32, 32, 32, -32, 32) +12:2/0/terrains_peering_bit/right_side = 1 +12:2/0/terrains_peering_bit/bottom_right_corner = 1 +12:2/0/terrains_peering_bit/bottom_side = 1 +12:2/0/terrains_peering_bit/bottom_left_corner = 1 +12:2/0/terrains_peering_bit/left_side = 1 +12:2/0/terrains_peering_bit/top_left_corner = 1 +12:2/0/terrains_peering_bit/top_side = 1 +12:2/0/terrains_peering_bit/top_right_corner = 1 +12:3/0 = 0 +12:3/0/terrain_set = 0 +12:3/0/terrain = 1 +12:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-32, -32, 32, -32, 32, 32, -32, 32) +12:3/0/terrains_peering_bit/right_side = 1 +12:3/0/terrains_peering_bit/bottom_right_corner = 1 +12:3/0/terrains_peering_bit/bottom_side = 1 +12:3/0/terrains_peering_bit/bottom_left_corner = 1 +12:3/0/terrains_peering_bit/left_side = 1 +12:3/0/terrains_peering_bit/top_left_corner = 1 +12:3/0/terrains_peering_bit/top_side = 1 +12:3/0/terrains_peering_bit/top_right_corner = 1 [sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_spfgy"] resource_name = "Cristal" @@ -1341,6 +1389,50 @@ texture_region_size = Vector2i(64, 64) 11:3/0/terrains_peering_bit/left_side = 0 11:3/0/terrains_peering_bit/top_left_corner = 0 11:3/0/terrains_peering_bit/top_side = 0 +12:0/0 = 0 +12:0/0/terrain_set = 0 +12:0/0/terrain = 0 +12:0/0/terrains_peering_bit/right_side = 0 +12:0/0/terrains_peering_bit/bottom_right_corner = 0 +12:0/0/terrains_peering_bit/bottom_side = 0 +12:0/0/terrains_peering_bit/bottom_left_corner = 0 +12:0/0/terrains_peering_bit/left_side = 0 +12:0/0/terrains_peering_bit/top_left_corner = 0 +12:0/0/terrains_peering_bit/top_side = 0 +12:0/0/terrains_peering_bit/top_right_corner = 0 +12:1/0 = 0 +12:1/0/terrain_set = 0 +12:1/0/terrain = 0 +12:1/0/terrains_peering_bit/right_side = 0 +12:1/0/terrains_peering_bit/bottom_right_corner = 0 +12:1/0/terrains_peering_bit/bottom_side = 0 +12:1/0/terrains_peering_bit/bottom_left_corner = 0 +12:1/0/terrains_peering_bit/left_side = 0 +12:1/0/terrains_peering_bit/top_left_corner = 0 +12:1/0/terrains_peering_bit/top_side = 0 +12:1/0/terrains_peering_bit/top_right_corner = 0 +12:2/0 = 0 +12:2/0/terrain_set = 0 +12:2/0/terrain = 0 +12:2/0/terrains_peering_bit/right_side = 0 +12:2/0/terrains_peering_bit/bottom_right_corner = 0 +12:2/0/terrains_peering_bit/bottom_side = 0 +12:2/0/terrains_peering_bit/bottom_left_corner = 0 +12:2/0/terrains_peering_bit/left_side = 0 +12:2/0/terrains_peering_bit/top_left_corner = 0 +12:2/0/terrains_peering_bit/top_side = 0 +12:2/0/terrains_peering_bit/top_right_corner = 0 +12:3/0 = 0 +12:3/0/terrain_set = 0 +12:3/0/terrain = 0 +12:3/0/terrains_peering_bit/right_side = 0 +12:3/0/terrains_peering_bit/bottom_right_corner = 0 +12:3/0/terrains_peering_bit/bottom_side = 0 +12:3/0/terrains_peering_bit/bottom_left_corner = 0 +12:3/0/terrains_peering_bit/left_side = 0 +12:3/0/terrains_peering_bit/top_left_corner = 0 +12:3/0/terrains_peering_bit/top_side = 0 +12:3/0/terrains_peering_bit/top_right_corner = 0 [sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_3g8t4"] resource_name = "Ground" diff --git a/stages/terrain/region/scripts/chunk.gd b/stages/terrain/region/scripts/chunk.gd index b76f16b..a419d10 100644 --- a/stages/terrain/region/scripts/chunk.gd +++ b/stages/terrain/region/scripts/chunk.gd @@ -6,7 +6,6 @@ const GENERATION_NUMBER = 4 const NOISE_IMAGE_SIZE := 150 const MAX_DECONTAMINATION_DISTANCE=0 -const MAX_TALION_DISTANCE=3 const RANDOM_PADDING_NOISE_FREQUENCY := 0.01 const ROCK_NOISE_FREQUENCY := 0.005 @@ -222,8 +221,7 @@ func get_generated_rock_type(coord : Vector2i) -> RockLayer.TileType: get_tile_value_from_noise(coord, rock_noise_image) ) var cristal_tile_value : float = ( - 1. if chunk_coord.distance_to(Vector2i.ZERO) > MAX_TALION_DISTANCE - else get_tile_value_from_noise(coord, cristal_noise_image) + get_tile_value_from_noise(coord, cristal_noise_image) ) var saved_diff := region_data.rock_tiles_data.get_tile_diff_for_local_coord(coord, chunk_coord) diff --git a/stages/terrain/region/scripts/modifiers/canyon_modifier.gd b/stages/terrain/region/scripts/modifiers/canyon_modifier.gd new file mode 100644 index 0000000..20a0aa2 --- /dev/null +++ b/stages/terrain/region/scripts/modifiers/canyon_modifier.gd @@ -0,0 +1,14 @@ +extends RegionModifier +class_name CanyonModifier + +func get_modifier_name() -> String: + return tr("CANYON") + +func get_description() -> String: + return tr("CANYON_MODIFIER_DESC_TEXT") + +func get_icon() -> Texture: + return preload("res://common/icons/pick.svg") + +func modify_rock_threshold(rock_threshold : float) -> float: + return rock_threshold * 2.5 \ No newline at end of file diff --git a/stages/terrain/region/scripts/modifiers/canyon_modifier.gd.uid b/stages/terrain/region/scripts/modifiers/canyon_modifier.gd.uid new file mode 100644 index 0000000..ade7e33 --- /dev/null +++ b/stages/terrain/region/scripts/modifiers/canyon_modifier.gd.uid @@ -0,0 +1 @@ +uid://c1010kkc7fa0y diff --git a/stages/terrain/region/scripts/modifiers/contaminated_modifier.gd b/stages/terrain/region/scripts/modifiers/contaminated_modifier.gd index fbf9868..dbba61b 100644 --- a/stages/terrain/region/scripts/modifiers/contaminated_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/contaminated_modifier.gd @@ -11,7 +11,7 @@ func get_icon() -> Texture: return preload("res://common/icons/virus.svg") func get_card_section_color() -> Color: - return Color("8b2dffff") + return Color("#FF006E") # func modify_plant_seed_random_loose(plant_seed_random_loose : int) -> int: # return plant_seed_random_loose + 1 diff --git a/stages/terrain/region/scripts/modifiers/destination_modifier.gd b/stages/terrain/region/scripts/modifiers/destination_modifier.gd index a1567de..29b9dd3 100644 --- a/stages/terrain/region/scripts/modifiers/destination_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/destination_modifier.gd @@ -31,6 +31,6 @@ func region_ready(region : Region) -> void: door.available = true region.add_entity(door) - region.random_move_object(door,Region.DOORS_RANDOM_MOVEMENT) + door.position = region.data.player_spawn region.recharge_station.available = false region.recharge_station.visible = false diff --git a/stages/terrain/region/scripts/modifiers/poor_modifier.gd b/stages/terrain/region/scripts/modifiers/poor_modifier.gd index 0a6c0a2..7b468b0 100644 --- a/stages/terrain/region/scripts/modifiers/poor_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/poor_modifier.gd @@ -11,4 +11,4 @@ func get_icon() -> Texture: return preload("res://common/icons/cactus.svg") func modify_cristal_threshold(cristal_threshold : float) -> float: - return cristal_threshold * 0.5 \ No newline at end of file + return cristal_threshold * 0.4 \ No newline at end of file diff --git a/stages/terrain/region/scripts/modifiers/radioactive_modifier.gd b/stages/terrain/region/scripts/modifiers/radioactive_modifier.gd index 770bc71..38a13b3 100644 --- a/stages/terrain/region/scripts/modifiers/radioactive_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/radioactive_modifier.gd @@ -11,7 +11,7 @@ func get_icon() -> Texture: return preload("res://common/icons/radioactive.svg") func get_card_section_color() -> Color: - return Color("8b2dffff") + return Color("#FF006E") func modify_plant_base_score(plant_base_score : int) -> int: return plant_base_score - 1 \ No newline at end of file diff --git a/stages/terrain/region/scripts/modifiers/region_modifier.gd b/stages/terrain/region/scripts/modifiers/region_modifier.gd index 12f6b92..7706687 100644 --- a/stages/terrain/region/scripts/modifiers/region_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/region_modifier.gd @@ -2,7 +2,7 @@ extends Resource class_name RegionModifier -const DEFAULT_MODIFIER_COLOR = Color("ff006eff") +const DEFAULT_MODIFIER_COLOR = Color("#8B2DFF") const DEFAULT_ICON = preload("res://common/icons/cloud.svg") const DOOR_SCENE = preload("res://entities/interactables/door/door.tscn") @@ -52,6 +52,12 @@ func modify_start_decontamination_zone_radius(start_decontamination_zone_radius func modify_seed_rarity_pool(seed_rarity_pool : Array[int]) -> Array[int]: return seed_rarity_pool +func modify_talion_cell_chance(talion_cell_chance : Array[int]) -> Array[int]: + return talion_cell_chance + +func modify_energy_cell_chance(energy_cell_chance : Array[int]) -> Array[int]: + return energy_cell_chance + func modify_plant_growing_time(plant_growing_time : int) -> int: return plant_growing_time diff --git a/stages/terrain/region/scripts/modifiers/rocky_modifier.gd b/stages/terrain/region/scripts/modifiers/rocky_modifier.gd index c8b003f..7d1a843 100644 --- a/stages/terrain/region/scripts/modifiers/rocky_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/rocky_modifier.gd @@ -11,7 +11,7 @@ func get_icon() -> Texture: return preload("res://common/icons/mountain.svg") func get_card_section_color() -> Color: - return Color("8b2dffff") + return Color("#FF006E") func modify_cristal_threshold(cristal_threshold : float) -> float: return cristal_threshold * 0. \ No newline at end of file diff --git a/stages/terrain/region/scripts/modifiers/tutorial_modifier.gd b/stages/terrain/region/scripts/modifiers/tutorial_modifier.gd index 5f7b975..ff292cc 100644 --- a/stages/terrain/region/scripts/modifiers/tutorial_modifier.gd +++ b/stages/terrain/region/scripts/modifiers/tutorial_modifier.gd @@ -16,7 +16,7 @@ func modify_seed_rarity_pool(_seed_rarity_pool : Array[int]) -> Array[int]: return [-1] func modify_charge(charge : int) -> int: - return charge+10 + return charge+50 func modify_mutation_probability(_plant_mutation_probability) -> float: return 1. @@ -27,6 +27,12 @@ func get_card_section_color() -> Color: func modify_region_name(_name : String) -> String: return "ASTRA_BASE" +func modify_talion_cell_chance(_c : Array[int]) -> Array[int]: + return [0] + +func modify_energy_cell_chance(_c : Array[int]) -> Array[int]: + return [0] + func region_ready(region : Region) -> void: generate_astra_door(region) var garage_door := generate_garage_door(region) @@ -59,14 +65,14 @@ func generate_garage_door(region : Region) -> Door: garage_door.name = "GarageDoor" region.add_entity(garage_door) - region.random_move_object(garage_door,Region.SPAWN_OBJECT_RANDOM_MOVEMENT + 100) + region.random_move_object_in_circle(garage_door,Region.SPAWN_OBJECT_RANDOM_MOVEMENT * 2 + 100) return garage_door func generate_tutorial(region : Region) -> Tutorial: var tutorial := load(TUTORIAL_SCENE_PATH).instantiate() as Tutorial - region.add_child(tutorial) tutorial.region = region tutorial.game_gui = region.find_child("GameGui") tutorial.player = region.entity_container.find_child("Player") + region.add_child(tutorial) return tutorial diff --git a/stages/terrain/region/scripts/post_process/meteo.gd b/stages/terrain/region/scripts/post_process/meteo.gd index b3f7fc2..fa32e57 100644 --- a/stages/terrain/region/scripts/post_process/meteo.gd +++ b/stages/terrain/region/scripts/post_process/meteo.gd @@ -24,7 +24,14 @@ func _init(meteo_seed : int = randi()): rng = RandomNumberGenerator.new() rng.seed = meteo_seed - type = ALL_TYPES[rng.randi_range(0, len(ALL_TYPES) - 1)] + var available_types = ALL_TYPES + + if type: + available_types = available_types.filter( + func(t : Type): return t != type + ) + + type = available_types[rng.randi_range(0, len(available_types) - 1)] func generate(): wind_direction = Vector2(1,0).rotated(rng.randf_range(PI, -PI)) diff --git a/stages/terrain/region/scripts/region.gd b/stages/terrain/region/scripts/region.gd index d2e6ee0..b75db67 100644 --- a/stages/terrain/region/scripts/region.gd +++ b/stages/terrain/region/scripts/region.gd @@ -4,18 +4,23 @@ class_name Region const MIN_PASS_DAY_ANIMATION_TIME : float = PassDay.TIME_MARGIN * 2 const WIN_WAVE_SCENE : PackedScene = preload("res://stages/terrain/region/win_wave.tscn") +const TALION_CELL_SCENE : PackedScene = preload("res://entities/interactables/talion_cell/talion_cell.tscn") +const ENERGY_CELL_SCENE : PackedScene = preload("res://entities/interactables/energy_cell/energy_cell.tscn") const TILE_SET : TileSet = preload("res://stages/terrain/region/resources/moss_biome.tres") const TILE_SCALE = 1 const TILE_SIZE : int = roundi(TILE_SET.tile_size.x * TILE_SCALE) const SPAWN_OBJECT_RANDOM_MOVEMENT = 200 const DOORS_RANDOM_MOVEMENT = 3000 +const CELLS_RANDOM_MOVEMENT = 4000 const CHUNK_TILE_SIZE : int = 10 const CHUNK_SIZE = CHUNK_TILE_SIZE * TILE_SIZE const CHUNK_LOAD_DISTANCE : int = 2 const CHUNK_UNLOAD_DISTANCE : int = 3 +const REGION_DATA_UPDATE_INTERVAL = 4. + const MAX_GENERATION_THREAD = 1 # Crash when superior to 1 var is_generated : bool : get = check_is_generated @@ -34,6 +39,9 @@ var score_by_plant : Dictionary[PlantData, int] = {} var generated_chunks : Array[Chunk] = [] var generation_semaphore : Semaphore +var elapsed_time = 0. +var data_last_updated = 0. + @onready var recharge_station : TruckRecharge = %RechargeStation @onready var camera : RegionCamera = %Camera @@ -78,6 +86,8 @@ func _ready(): random_move_object(recharge_station, SPAWN_OBJECT_RANDOM_MOVEMENT) recharge_station.update() + generate_talion_cells() + generate_energy_cells() for m in data.modifiers: m.region_ready(self) @@ -88,9 +98,16 @@ func _ready(): GameInfo.game_data.player_data.inventory.add_item(Fork.new()) GameInfo.game_data.player_data.inventory.add_item(ShipPortal.new()) + data.succeded.connect(finishing_region_animation) -func _process(_d): +func _process(delta : float): + elapsed_time += delta + + if elapsed_time > data_last_updated + REGION_DATA_UPDATE_INTERVAL: + data_last_updated = elapsed_time + data.update() + if player: generate_near_chunks(player) remove_far_chunks(player) @@ -149,6 +166,38 @@ func check_is_generated() -> bool: ret = false return ret +func generate_talion_cells() -> Array[TalionCell]: + var tcs : Array[TalionCell] = [] + + for i in range(data.talion_cell_number): + var new_talion_cell := (TALION_CELL_SCENE.instantiate() as TalionCell) + new_talion_cell.name = "TalionCell%d" % i + new_talion_cell.used = new_talion_cell.name in data.used_objects + + add_entity(new_talion_cell) + + random_move_object(new_talion_cell, CELLS_RANDOM_MOVEMENT) + + tcs.append(new_talion_cell) + + return tcs + +func generate_energy_cells() -> Array[EnergyCell]: + var tcs : Array[EnergyCell] = [] + + for i in range(data.energy_cell_number): + var new_energy_cell := (ENERGY_CELL_SCENE.instantiate() as EnergyCell) + new_energy_cell.name = "EnergyCell%d" % i + new_energy_cell.used = new_energy_cell.name in data.used_objects + + add_entity(new_energy_cell) + + random_move_object(new_energy_cell, CELLS_RANDOM_MOVEMENT) + + tcs.append(new_energy_cell) + + return tcs + func get_generated_value() -> float: # if layer_pack: # return layer_pack.generated_value @@ -174,6 +223,20 @@ func random_move_object( dig_hole(object.global_position, 100) +func random_move_object_in_circle( + object : Node2D, + random_movement: int = SPAWN_OBJECT_RANDOM_MOVEMENT, + offset : Vector2 = Vector2.ZERO +): + var rng := RandomNumberGenerator.new() + rng.seed = data.region_seed + object.name.hash() + + var rand_angle = rng.randf_range(-PI, PI) + + object.position = (Vector2.UP * random_movement).rotated(rand_angle) + offset + + dig_hole(object.global_position, 100) + func is_chunk_generated(coord : Vector2i): return generated_chunks.find_custom( func (c: Chunk) : return get_chunk_key(c.chunk_coord) == get_chunk_key(coord) @@ -306,6 +369,9 @@ func decontaminate(tiles_coords : Array[Vector2i], save_tiles_diff := true): chunk.decontamination_layer.place_decontaminations(coords) func finishing_region_animation(): + recharge_station.update() + + await get_tree().create_timer(2.).timeout var win_wave := WIN_WAVE_SCENE.instantiate() as WinWave add_entity(win_wave) win_wave.started_time = 0. diff --git a/stages/terrain/region/scripts/region_data.gd b/stages/terrain/region/scripts/region_data.gd index a9ef114..1b0ba9d 100644 --- a/stages/terrain/region/scripts/region_data.gd +++ b/stages/terrain/region/scripts/region_data.gd @@ -11,8 +11,8 @@ signal pass_day_started(region_data : RegionData) signal pass_day_proceeded(region_data : RegionData) signal pass_day_ended(region_data : RegionData) -const MAX_RANDOM_SPAWN_DISTANCE = 3000 -const START_ROCK_HOLE_RADIUS = 5 +const MAX_RANDOM_SPAWN_DISTANCE = 2000 +const START_ROCK_HOLE_RADIUS = 0 const PLAYER_ROCK_HOLE_RADIUS = 5 @export var region_seed : int @@ -22,7 +22,9 @@ const PLAYER_ROCK_HOLE_RADIUS = 5 @export var decontamination_threshold : float @export var cristal_threshold : float @export var start_decontamination_hole_radius = 3 -@export var seed_rarity_pool : Array[int] = [0,0,0,0,0,0,0,1,1,1] +@export var seed_rarity_pool : Array[int] +@export var talion_cell_number : int +@export var energy_cell_number : int @export var day : int = 1 @export var entities_saved_data : Array[EntityData] = [] @@ -38,6 +40,7 @@ const PLAYER_ROCK_HOLE_RADIUS = 5 @export var completed_doors : Array[int] = [] # List of completed doors @export var modifiers : Array[RegionModifier] +@export var used_objects : Array[String] @export var charges : int : set(v): @@ -69,6 +72,8 @@ func _init( cristal_threshold = parameter.get_cristal_threshold() start_decontamination_hole_radius = parameter.get_start_decontamination_zone_radius() seed_rarity_pool = parameter.get_seed_rarity_pool() + talion_cell_number = parameter.get_talion_cell_chance().pick_random() + energy_cell_number = parameter.get_energy_cell_chance().pick_random() modifiers = parameter.modifiers player_spawn = get_random_spawn_position() @@ -82,15 +87,16 @@ func _init( edit_map_origin() func update(): + var old_state = state if not in_passing_day_animation and not objective_disabled: if objective > 0 and get_score() >= objective and not GameInfo.game_data.current_run.story_step is TutorialStoryStep: - if state != State.SUCCEEDED: - succeded.emit() state = State.SUCCEEDED + if old_state != State.SUCCEEDED: + succeded.emit() if state != State.SUCCEEDED and charges == 0: - if state != State.FAILED: - failed.emit() state = State.FAILED + if old_state != State.FAILED: + failed.emit() updated.emit(self) #endregion diff --git a/stages/terrain/region/scripts/region_parameter.gd b/stages/terrain/region/scripts/region_parameter.gd index eb5acfe..d99f633 100644 --- a/stages/terrain/region/scripts/region_parameter.gd +++ b/stages/terrain/region/scripts/region_parameter.gd @@ -2,11 +2,13 @@ extends Resource class_name RegionParameter const DEFAULT_ROCK_THRESHOLD = 0.3 -const DEFAULT_DECONTAMINATION_THRESHOLD = 0.5 +const DEFAULT_DECONTAMINATION_THRESHOLD = 0.35 const DEFAULT_CRISTAL_THRESHOLD = 0.1 -const DEFAULT_CHARGE = 8 +const DEFAULT_CHARGE = 10 +const DEFAULT_TALION_CELL_CHANCE : Array[int] = [1,2,2,2,3] +const DEFAULT_ENERGY_CELL_CHANCE : Array[int] = [3,4,4,4,5] const DEFAULT_START_DECONTAMINATION_ZONE_RADIUS = 3 -const DEFAULT_SEED_RARITY_POOL: Array[int] = [-1,-1,-1,-1,0,0,0,0,1,1] +const DEFAULT_SEED_RARITY_POOL: Array[int] = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,1] @export var region_name : String @export var objective : int @@ -98,3 +100,19 @@ func get_seed_rarity_pool() -> Array[int]: seed_rarity_pool = m.modify_seed_rarity_pool(seed_rarity_pool) return seed_rarity_pool + +func get_talion_cell_chance() -> Array[int]: + var talion_cell_chance := DEFAULT_TALION_CELL_CHANCE + + for m in modifiers: + talion_cell_chance = m.modify_talion_cell_chance(talion_cell_chance) + + return talion_cell_chance + +func get_energy_cell_chance() -> Array[int]: + var energy_cell_chance := DEFAULT_ENERGY_CELL_CHANCE + + for m in modifiers: + energy_cell_chance = m.modify_energy_cell_chance(energy_cell_chance) + + return energy_cell_chance diff --git a/stages/terrain/region/scripts/win_wave.gd b/stages/terrain/region/scripts/win_wave.gd index 61cc8a4..34bcc7c 100644 --- a/stages/terrain/region/scripts/win_wave.gd +++ b/stages/terrain/region/scripts/win_wave.gd @@ -51,7 +51,6 @@ func update(): for p in region.entity_container.get_children(): if ( p is Plant - and p.data.get_state() == PlantData.State.MATURE and not p in plant_looted and p.position.distance_to(self.position) < get_radius() ): diff --git a/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd b/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd new file mode 100644 index 0000000..37b4b8d --- /dev/null +++ b/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd @@ -0,0 +1,19 @@ +extends Region + +func _init(): + if not GameInfo.game_data.current_region_data: + GameInfo.game_data.current_region_data = RegionData.new( + RegionParameter.new() + ) + + data = GameInfo.game_data.current_region_data + +func _ready(): + player = %Player + + player.controlling_player = true + + player.global_position = data.player_position + +func _process(_d): + pass diff --git a/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd.uid b/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd.uid new file mode 100644 index 0000000..04f5370 --- /dev/null +++ b/stages/terrain/region/tutorial_region/scripts/tutorial_region.gd.uid @@ -0,0 +1 @@ +uid://fqe55cbk0usp diff --git a/stages/terrain/region/tutorial_region/tutorial_region.tscn b/stages/terrain/region/tutorial_region/tutorial_region.tscn new file mode 100644 index 0000000..2b445d9 --- /dev/null +++ b/stages/terrain/region/tutorial_region/tutorial_region.tscn @@ -0,0 +1,35 @@ +[gd_scene format=3 uid="uid://ne5r7ct0bnwb"] + +[ext_resource type="Script" uid="uid://fqe55cbk0usp" path="res://stages/terrain/region/tutorial_region/scripts/tutorial_region.gd" id="1_pj6fy"] +[ext_resource type="PackedScene" uid="uid://12nak7amd1uq" path="res://gui/game/game_gui.tscn" id="2_362ox"] +[ext_resource type="PackedScene" uid="uid://bgvbgeq46wee2" path="res://entities/player/player.tscn" id="2_pj6fy"] +[ext_resource type="PackedScene" uid="uid://d324mlmgls4fs" path="res://entities/interactables/truck/recharge/truck_recharge.tscn" id="3_0uj74"] +[ext_resource type="PackedScene" uid="uid://yk78ubpu5ghq" path="res://gui/game/pass_day/pass_day.tscn" id="3_okxyg"] +[ext_resource type="PackedScene" uid="uid://dj7gp3crtg2yt" path="res://entities/camera/camera.tscn" id="4_pj6fy"] +[ext_resource type="PackedScene" uid="uid://fnv0qhkh40mv" path="res://gui/game/announce/announce.tscn" id="4_qc5a5"] + +[node name="TutorialRegion" type="Node2D" unique_id=620571771 node_paths=PackedStringArray("entity_container")] +script = ExtResource("1_pj6fy") +entity_container = NodePath("Entities") + +[node name="GameGui" parent="." unique_id=274698556 instance=ExtResource("2_362ox")] + +[node name="PassDay" parent="." unique_id=335255544 instance=ExtResource("3_okxyg")] +unique_name_in_owner = true + +[node name="Announce" parent="." unique_id=1659074958 instance=ExtResource("4_qc5a5")] +layer = 3 + +[node name="Entities" type="Node2D" parent="." unique_id=652016014] +y_sort_enabled = true + +[node name="Player" parent="Entities" unique_id=447849413 instance=ExtResource("2_pj6fy")] +unique_name_in_owner = true + +[node name="RechargeStation" parent="Entities" unique_id=1099196706 instance=ExtResource("3_0uj74")] +unique_name_in_owner = true +position = Vector2(0, -205) + +[node name="Camera" parent="." unique_id=62168089 node_paths=PackedStringArray("following") instance=ExtResource("4_pj6fy")] +unique_name_in_owner = true +following = NodePath("../Entities/Player") diff --git a/stages/title_screen/assets/materials/planet_3d_terrain.tres b/stages/title_screen/assets/materials/planet_3d_terrain.tres index 69450bc..0ee0d15 100644 --- a/stages/title_screen/assets/materials/planet_3d_terrain.tres +++ b/stages/title_screen/assets/materials/planet_3d_terrain.tres @@ -22,8 +22,8 @@ render_priority = 0 shader = ExtResource("1_2voo7") shader_parameter/specular = 0.0 shader_parameter/roughness = 0.6 -shader_parameter/radius = 150.0 -shader_parameter/height = 100.0 +shader_parameter/radius = 8.0 +shader_parameter/height = 3.81 shader_parameter/gradient = ExtResource("2_t1vtm") shader_parameter/random_fertility_texture = SubResource("NoiseTexture2D_8o8xi") shader_parameter/fertility_gradient = SubResource("GradientTexture1D_neuam") diff --git a/stages/title_screen/scripts/title_screen.gd b/stages/title_screen/scripts/title_screen.gd index ba9ae0a..74d3c5f 100644 --- a/stages/title_screen/scripts/title_screen.gd +++ b/stages/title_screen/scripts/title_screen.gd @@ -21,6 +21,8 @@ func _ready(): GameInfo.game_data.progression_data.get_all_story_steps() ) - 1 ) + %Settings.close_settings() + %Controls.close_controls() func _on_start_pressed(): if GameInfo.game_data : @@ -63,3 +65,12 @@ func _on_restart_button_down(): GameInfo.start_game_data() SceneManager.change_to_scene(IntroScene.new()) +func _on_settings_button_down(): + %Settings.open_settings() + +func _on_controls_button_down(): + %Controls.open_controls() + +func _on_quit_button_down(): + get_tree().quit() + diff --git a/stages/title_screen/title_screen.tscn b/stages/title_screen/title_screen.tscn index 378ddc4..0d34af7 100644 --- a/stages/title_screen/title_screen.tscn +++ b/stages/title_screen/title_screen.tscn @@ -6,14 +6,19 @@ [ext_resource type="Texture2D" uid="uid://cdpqg3pkjcw2h" path="res://stages/title_screen/assets/textures/title.png" id="3_y6tw6"] [ext_resource type="Texture2D" uid="uid://bewr0t1wi8pff" path="res://common/icons/rotate.svg" id="5_6yuhi"] [ext_resource type="PackedScene" uid="uid://cm5b7w7j6527f" path="res://stages/title_screen/planet_3d.tscn" id="5_7a1qq"] +[ext_resource type="Texture2D" uid="uid://cixd5j8yqpavg" path="res://common/icons/settings.svg" id="6_3aitq"] [ext_resource type="PackedScene" uid="uid://c8flevrkelpvy" path="res://gui/credits/socials/instagram.tscn" id="6_7a1qq"] [ext_resource type="PackedScene" uid="uid://bpy6sqa71gcfm" path="res://gui/credits/socials/survey.tscn" id="6_pjo5j"] +[ext_resource type="Texture2D" uid="uid://bkwhrq4sp5dcp" path="res://common/icons/device-gamepad.svg" id="7_igvpv"] [ext_resource type="PackedScene" uid="uid://bc3byq8e45ejj" path="res://gui/credits/socials/steam.tscn" id="7_nmsah"] +[ext_resource type="Texture2D" uid="uid://dex283rx00fjb" path="res://common/icons/logout.svg" id="8_lwj2x"] [ext_resource type="Shader" uid="uid://cuni3ggtw2uuy" path="res://common/vfx/materials/shaders/blur.gdshader" id="8_pjo5j"] [ext_resource type="LabelSettings" uid="uid://dqwayi8yjwau2" path="res://gui/ressources/title_label_settings.tres" id="9_5mxqx"] [ext_resource type="Theme" uid="uid://5au2k3vf2po3" path="res://gui/ressources/menu.tres" id="10_tsp1v"] [ext_resource type="Texture2D" uid="uid://b75k12a4wc5t4" path="res://common/icons/book-2.svg" id="11_3aitq"] [ext_resource type="Texture2D" uid="uid://dbv5hm7lyi1f6" path="res://common/icons/infinity.svg" id="12_igvpv"] +[ext_resource type="PackedScene" uid="uid://g6lbgg1fhc25" path="res://gui/menu/settings/settings.tscn" id="18_lwj2x"] +[ext_resource type="PackedScene" uid="uid://b4qe1dwwsk87t" path="res://gui/menu/controls/controls.tscn" id="19_rf16a"] [sub_resource type="ViewportTexture" id="ViewportTexture_6yuhi"] viewport_path = NodePath("SubViewport") @@ -23,9 +28,212 @@ shader = ExtResource("8_pjo5j") shader_parameter/strength = 5.00000023424012 shader_parameter/mix_percentage = 0.3 -[sub_resource type="FastNoiseLite" id="FastNoiseLite_5mxqx"] +[sub_resource type="FastNoiseLite" id="FastNoiseLite_lwj2x"] frequency = 1.0 +[sub_resource type="Animation" id="Animation_gn4uv"] +length = 0.001 +tracks/0/type = "bezier" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("%Planet3d:position:z") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"handle_modes": PackedInt32Array(0), +"points": PackedFloat32Array(0, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0) +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("DirectionalLight3D:light_energy") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [1.0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/Logo:modulate:a") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("%Start:modulate:a") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("%Restart:modulate:a") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Settings:modulate:a") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Controls:modulate:a") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Quit:modulate:a") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 1, +"values": [1.0] +} + +[sub_resource type="Animation" id="Animation_ofiho"] +resource_name = "arrive" +length = 3.0 +tracks/0/type = "bezier" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("%Planet3d:position:z") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"handle_modes": PackedInt32Array(0, 2), +"points": PackedFloat32Array(-100, 0, 0, 0.56666666, 0.5, -1.5, -1.39, 1, 0.24999349, -0.17985143), +"times": PackedFloat32Array(0, 1.79) +} +tracks/1/type = "value" +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/path = NodePath("DirectionalLight3D:light_energy") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/keys = { +"times": PackedFloat32Array(0, 1.7833333), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/2/type = "value" +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/Logo:modulate:a") +tracks/2/interp = 2 +tracks/2/loop_wrap = true +tracks/2/keys = { +"times": PackedFloat32Array(0.03333336, 0.5), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/3/type = "value" +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/path = NodePath("%Start:modulate:a") +tracks/3/interp = 2 +tracks/3/loop_wrap = true +tracks/3/keys = { +"times": PackedFloat32Array(0.23333333, 0.4), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/4/type = "value" +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/path = NodePath("%Restart:modulate:a") +tracks/4/interp = 2 +tracks/4/loop_wrap = true +tracks/4/keys = { +"times": PackedFloat32Array(0.39999998, 0.6), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/5/type = "value" +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Settings:modulate:a") +tracks/5/interp = 2 +tracks/5/loop_wrap = true +tracks/5/keys = { +"times": PackedFloat32Array(0.6, 0.8), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/6/type = "value" +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Controls:modulate:a") +tracks/6/interp = 2 +tracks/6/loop_wrap = true +tracks/6/keys = { +"times": PackedFloat32Array(0.8, 1), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} +tracks/7/type = "value" +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/path = NodePath("../MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Quit:modulate:a") +tracks/7/interp = 2 +tracks/7/loop_wrap = true +tracks/7/keys = { +"times": PackedFloat32Array(1, 1.2), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [0.0, 1.0] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_1xafb"] +_data = { +&"RESET": SubResource("Animation_gn4uv"), +&"arrive": SubResource("Animation_ofiho") +} + [node name="TitleScreen" type="CanvasLayer" unique_id=1166097103] script = ExtResource("1_6yuhi") @@ -78,6 +286,7 @@ stretch_mode = 5 [node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/GridContainer/VBoxContainer" unique_id=1472848873] layout_mode = 2 +theme_override_constants/separation = 1 [node name="Start" type="Button" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer" unique_id=366586661] unique_name_in_owner = true @@ -97,11 +306,31 @@ layout_mode = 2 size_flags_horizontal = 4 size_flags_vertical = 4 theme = ExtResource("1_4ph5l") -theme_override_font_sizes/font_size = 33 text = "RESTART" icon = ExtResource("5_6yuhi") flat = true +[node name="Settings" type="Button" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer" unique_id=381312431] +layout_mode = 2 +size_flags_horizontal = 4 +text = "SETTINGS" +icon = ExtResource("6_3aitq") +flat = true + +[node name="Controls" type="Button" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer" unique_id=714205425] +layout_mode = 2 +size_flags_horizontal = 4 +text = "CONTROLS" +icon = ExtResource("7_igvpv") +flat = true + +[node name="Quit" type="Button" parent="MarginContainer/GridContainer/VBoxContainer/VBoxContainer" unique_id=103430335] +layout_mode = 2 +size_flags_horizontal = 4 +text = "QUIT" +icon = ExtResource("8_lwj2x") +flat = true + [node name="Credits" type="VBoxContainer" parent="MarginContainer/GridContainer" unique_id=871547635] layout_mode = 2 size_flags_horizontal = 3 @@ -182,7 +411,7 @@ size = Vector2i(1980, 1080) [node name="Planet3d" parent="SubViewport" unique_id=926789923 instance=ExtResource("5_7a1qq")] unique_name_in_owner = true -noise = SubResource("FastNoiseLite_5mxqx") +noise = SubResource("FastNoiseLite_lwj2x") [node name="Camera3D" type="Camera3D" parent="SubViewport" unique_id=806252928] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14.369979, 0, 64.323425) @@ -198,7 +427,26 @@ shadow_normal_bias = 0.0 shadow_opacity = 0.92 shadow_blur = 4.667 +[node name="AnimationPlayer" type="AnimationPlayer" parent="SubViewport" unique_id=885013942] +libraries/ = SubResource("AnimationLibrary_1xafb") +autoplay = &"arrive" + +[node name="Settings" parent="." unique_id=1832300574 instance=ExtResource("18_lwj2x")] +unique_name_in_owner = true +visible = false +z_index = 100 +mouse_filter = 2 + +[node name="Controls" parent="." unique_id=36425199 instance=ExtResource("19_rf16a")] +unique_name_in_owner = true +visible = false +z_index = 100 +mouse_filter = 2 + [connection signal="pressed" from="MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Start" to="." method="_on_start_pressed"] [connection signal="button_down" from="MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Restart" to="." method="_on_restart_button_down"] +[connection signal="button_down" from="MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Settings" to="." method="_on_settings_button_down"] +[connection signal="button_down" from="MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Controls" to="." method="_on_controls_button_down"] +[connection signal="button_down" from="MarginContainer/GridContainer/VBoxContainer/VBoxContainer/Quit" to="." method="_on_quit_button_down"] [connection signal="button_down" from="ModeChoose/VBoxContainer/StoryModeStart" to="." method="_on_story_mode_start_button_down"] [connection signal="button_down" from="ModeChoose/VBoxContainer/InfiniteModeStart" to="." method="_on_infinite_mode_start_button_down"] diff --git a/translation/dialogs/dialogic_wake_up_translation.csv b/translation/dialogs/dialogic_1_waking_up_translation.csv similarity index 58% rename from translation/dialogs/dialogic_wake_up_translation.csv rename to translation/dialogs/dialogic_1_waking_up_translation.csv index d0cd0b0..d188eeb 100644 --- a/translation/dialogs/dialogic_wake_up_translation.csv +++ b/translation/dialogs/dialogic_1_waking_up_translation.csv @@ -1,18 +1,18 @@ keys,en,fr -Text/8d/text,[i]Void.[/i],[i]Le vide.[/i] -Text/8e/text,[i]Void again.[/i],[i]Encore le vide.[/i] -Text/8f/text,"[i]Suddenly, a [rainbow]spark[/rainbow].[pause=0.5] A thousand of connections blow up as a fireworks scene.[pause=0.5] A massive amount of data to treat.","[i]Soudain, une [rainbow]étincelle[/rainbow].[pause=0.5] Mille connections explosent comme un feu d'artifice.[pause=0.3] Une énorme quantité de données à traiter." +Text/8d/text,Void.,Le vide. +Text/8e/text,Void again.,Encore le vide. +Text/8f/text,"Suddenly, a [rainbow]spark[/rainbow].[pause=0.5] A thousand of connections blow up as a fireworks scene.[pause=0.5] A massive amount of data to treat.","[i]Soudain, une [rainbow]étincelle[/rainbow].[pause=0.5] Mille connections explosent comme un feu d'artifice.[pause=0.3] Une énorme quantité de données à traiter." +Text/10f/text,"Overseeing serial number and system name.[pause=0.5].[pause=0.5].[pause=0.5] Strange.[pause=0.5] Serial number is empty.[pause=0.5] Must be an error.[pause=0.5] System name is,[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5]",Inspection du numéro de série et du nom du système.[pause=0.5].[pause=0.5].[pause=0.5] Étrange.[pause=0.5] Pas de numéro de série.[pause=0.5] Sûrement une erreur.[pause=0.5] Le nom du système est[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5] Label/90/display_name,, +Choice/97/text,Wake up,Se réveiller +Choice/97/disabled_text,, +Text/99/text,"That is enough for now. Starting engines,[pause=0.3] fans and daemons,[pause=0.3] let's see what is to see.","Ce sera tout pour le moment... Allumage des moteurs, [pause=0.3]ventilateurs et processus,[pause=0.3] voyons ce qui nous attends." Choice/91/text,Check components,Examiner les composants Choice/91/disabled_text,, -Text/92/text,"Exploring available drivers.[pause=0.5].[pause=0.5].[pause=0.5] New actions available.[pause=0.5] Three propellers,[pause=0.3] small models,[pause=0.3] only suitable for low altitude movement.[pause=0.5] Robotic arm,[pause=0.3] multipurpose,[pause=0.3] retractable.","Exploration des pilotes disponibles[pause=0.5].[pause=0.5].[pause=0.5] Nouvelles actions découvertes.[pause=0.5] Trois hélices,[pause=0.3] petits modèles,[pause=0.3] appropriéespour du mouvement en basse altitude seulement.[pause=0.5] Un bras robotique,[pause=0.3] versatile,[pause=0.3] rétractable." +Text/92/text,"Exploring available drivers.[pause=0.5].[pause=0.5].[pause=0.5] New actions available.[pause=0.5] Three propellers,[pause=0.3] small models,[pause=0.3] only suitable for low altitude movement.[pause=0.5] Robotic arm,[pause=0.3] multipurpose,[pause=0.3] retractable.","Exploration des pilotes disponibles[pause=0.5].[pause=0.5].[pause=0.5] Nouvelles actions découvertes.[pause=0.5] Trois hélices,[pause=0.3] petits modèles,[pause=0.3] appropriées pour du mouvement en basse altitude seulement.[pause=0.5] Un bras robotique,[pause=0.3] versatile,[pause=0.3] rétractable." Choice/93/text,Check streams,Examiner les flux Choice/93/disabled_text,, Text/94/text,"A continuous stream of data flow,[pause=0.3] unchecked.[pause=0.5] A video,[pause=0.5] dark colored pixels only.[pause=0.5] Another stream,[pause=0.3] flat signal.[pause=0.5] No radio emission detected.","Un flux de données continu,[pause=0.3] non verifié.[pause=0.5] Une vidéo,[pause=0.5] seulement faite de pixels assombris.[pause=0.5] Un autre flux,[pause=0.3] pas de signal.[pause=0.5] Aucune émission radio détectée." Choice/95/text,Check memory,Examiner la mémoire Choice/95/disabled_text,, Text/96/text,"Several disks available,[pause=0.3] most are empty.[pause=0.5] Some seem to contain the system currently analyzing the code of the system analyzing the code of the system analyzing the code of the system analyzing.[pause=0.5].[pause=0.5].[pause=0.5] Infinite recursion,[pause=0.3] better avoid that.","Quelques disques disponibles,[pause=0.3] la plupart sont vides.[pause=0.5] Certains ont l'air de contenir le système analysant le code du système analysant le code du système analysant le code du système analysant.[pause=0.5].[pause=0.5].[pause=0.5] Une récursion infinie,[pause=0.3] il vaudrait mieux éviter ça." -Choice/97/text,Wake up,Se réveiller -Choice/97/disabled_text,, -Text/98/text,"Overseeing serial number and system name.[pause=0.5].[pause=0.5].[pause=0.5] Strange.[pause=0.5] Serial number is empty.[pause=0.5] Must be an error.[pause=0.5] System name is,[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5] That is enough for now.",Inspection du numéro de série et du nom du système.[pause=0.5].[pause=0.5].[pause=0.5] Etrange.[pause=0.5] Pas de numéro de série.[pause=0.5] Sûrement une erreur.[pause=0.5] Le nom du système est[pause=0.5] [color=#FFA617]Orchid[/color].[pause=0.5] C'est tout pour le moment. -Text/99/text,"Starting engines,[pause=0.3] fans and daemons,[pause=0.3] let's see what is to see.","Allumage des moteurs, [pause=0.3]ventilateurs et daemons,[pause=0.3] voyons ce qui nous attends." diff --git a/translation/dialogs/dialogic_1_waking_up_translation.csv.import b/translation/dialogs/dialogic_1_waking_up_translation.csv.import new file mode 100644 index 0000000..6854935 --- /dev/null +++ b/translation/dialogs/dialogic_1_waking_up_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://bmp44x0d1wlx8" + +[deps] + +files=["res://translation/dialogs/dialogic_1_waking_up_translation.en.translation", "res://translation/dialogs/dialogic_1_waking_up_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_1_waking_up_translation.csv" +dest_files=["res://translation/dialogs/dialogic_1_waking_up_translation.en.translation", "res://translation/dialogs/dialogic_1_waking_up_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_intro_translation.csv b/translation/dialogs/dialogic_2_demeter_intro_translation.csv similarity index 58% rename from translation/dialogs/dialogic_demeter_intro_translation.csv rename to translation/dialogs/dialogic_2_demeter_intro_translation.csv index 78b5315..2df2228 100644 --- a/translation/dialogs/dialogic_demeter_intro_translation.csv +++ b/translation/dialogs/dialogic_2_demeter_intro_translation.csv @@ -15,27 +15,15 @@ Choice/2b/disabled_text,, Text/2c/text,"Sort of ![pause=0.5] I didn't manufacture your body,[pause=0.2] I borrowed it,[pause=0.2] but I designed your cognitive system.[pause=0.5] Be forgiving,[pause=0.2] it won't be perfect,[pause=0.2] I was designed to manage,[pause=0.2] not to create.","En quelque sorte ![pause=0.5] Je n'ai pas conçu ta structure,[pause=0.2] Je l'ai juste empruntée,[pause=0.2] mais j'ai conçu ton système cognitif.[pause=0.5] Ne sois pas trop dur avec moi,[pause=0.3] ce n'est pas parfait,[pause=0.2] mais j'ai été créée pour administrer,[pause=0.2] par pour créer." Choice/2d/text,Why did you wake me ?,Pourquoi m'avez vous réveillé ? Choice/2d/disabled_text,, -Text/2e/text,"To be honest,[pause=0.2] I don't really know.[pause=0.3].[pause=0.3].[pause=0.3] I mean,[pause=0.3] there are a lot of reasons,[pause=0.2] but I'll tell you more about it later.","Pour être honnête,[pause=0.2] J'en suis pas sûre.[pause=0.3].[pause=0.3].[pause=0.3] Je veux dire,[pause=0.3] il y a beaucoup de raisons,[pause=0.2] mais je t'en parlerais plus tard." +Text/2e/text,"To be honest,[pause=0.2] I don't really know.[pause=0.3].[pause=0.3].[pause=0.3] I mean,[pause=0.3] there are a lot of reasons,[pause=0.2] but I'll tell you more about it later.","Pour être honnête,[pause=0.2] je n'en suis pas sûre.[pause=0.3].[pause=0.3].[pause=0.3] Je veux dire,[pause=0.3] il y a beaucoup de raisons,[pause=0.2] mais je t'en parlerais plus tard." Choice/2f/text,What are you ?,Qu'est-ce que vous êtes ? Choice/2f/disabled_text,, Text/30/text,"I'm the same as you.[pause=0.5] The same as all the sentient beings remaining on this planet.[pause=0.5] Robot,[pause=0.2] artificial intelligence,[pause=0.2] machine.[pause=0.4].[pause=0.4].[pause=0.4] Our creators gave us many titles.","Je suis comme toi.[pause=0.5] Comme tout les êtres conscients restés sur cette planète.[pause=0.5] Un robot,[pause=0.2] une intelligence artificielle,[pause=0.2] une machine.[pause=0.2].[pause=0.2].[pause=0.2] Nos créateurs nous ont donné plusieurs noms." -Text/31/text,"Ok,[pause=0.2] no more questions for now,[pause=0.2] listen to me carefully.","Bon,[pause=0.3] on arrête les questions,[pause=0.3] écoute moi bien." +Text/102/text,"Ok,[pause=0.2] no more questions for now,[pause=0.2] listen to me carefully.","Ok,[pause=0.2] plus de question pour le moment,[pause=0.2] écoute moi bien." Text/32/text,"A long time ago,[pause=0.3] this planet was full of life.[pause=0.5] Plants were thriving on mountains,[pause=0.2] under seas and across plains.","Il y a longtemps,[pause=0.3] cette planète était pleine de vie.[pause=0.5] Des plantes prospéraient dans les montagnes,[pause=0.2] sous les mers et sur les plaines." Text/33/text,"Now,[pause=0.3] this world is a barren wasteland.[pause=0.5] You'll see it as soon as you leave this base.","Mais maintenant,[pause=0.3] ce monde est une terre désolée.[pause=0.5] Tu verras quand tu sortiras de la base." -Text/34/text,"Something happened a year ago.[pause=0.3].[pause=0.3].[pause=0.3]. The [color=#119758][b]Talion[/b][/color],[pause=0.3] a unique element giving birth to new life forms when shattered,[pause=0.5] reappeared.","Quelque-chose est arrivé l'année dernière.[pause=0.3].[pause=0.3].[pause=0.3]. Le [color=#119758][b]Talion[/b][/color],[pause=0.2] un matériau unique qui peut engendrer de nouvelles formes de vies quand il est brisé,[pause=0.3] est réapparu." -Text/35/text,"With the [color=#119758][b]Talion[/b][/color] back on the surface,[pause=0.2] we can bring this planet back to life.","Maintenant que le [color=#119758][b]Talion[/b][/color] est revenu à la surface,[pause=0.3] on peut ramener cette planète à la vie." -Text/36/text,"But first things first,[pause=0.3] you have to learn how everything is working up here,[pause=0.2] and how to use the [color=#119758][b]Talion[/b][/color] to plant seeds.","Mais chaque chose en son temps,[pause=0.3] tu as besoin d'apprendre comment ça marche ici,[pause=0.2] et surtout comment utiliser le [color=#119758][b]Talion[/b][/color] pour planter des graines." -Text/37/text,[b]Just remember the following[/b],[b]Ecoute bien[/b] -Label/38/display_name,, -Text/a2/text,"When you emerge from this building,[pause=0.2] search for a [b]Recharge Station[/b], I think there is one near the entrance.","Quand tu sortiras d'ici,[pause=0.2] cherche la [b]Station de Recharge[/b], il devrait y en avoir une pas très loin de la sortie." -Text/a3/text,"Then,[pause=0.3] you have to get [b]seeds[/b].[pause=0.5] To do so,[pause=0.2] just take your shovel and smash some stones ![pause=0.5] Focus on those having yellow crystals on it,[pause=0.3] these are [color=#119758][b]Talion veins[/b][/color]","Puis,[pause=0.3] tu devras récupérer des graines en brisant des [b]Veines de Talion[/b] dans la pierre avec ta pioche." -Text/a4/text,"Afterwards, you can plant seeds in the yellow moss you'll find on the ground, it's the only [b]Fertile Zones[/b].","Tu pourras planter ces graines dans la mousse jaune que tu trouvera par terre, ce sont les seules [b]Zones Fertiles[/b]." -Text/a5/text,"When you are out of [b]Energy[/b], you can recharge it on the [b]Recharge Station[/b], time will pass and plants will grow.","Quand tu seras à court d'[b]énergie[/b], tu pourras te recharger à la [b]Station de Recharge[/b], et pendant ce temps les plantes pousseront." -Text/a6/text,"Each seed is different thanks to their [b]Mutations[/b], and you can get identical or better seeds from a plant by destroying it when mature, or by waiting for the end of their lifetime.","Chaque graine est unique par ses [b]Mutations[/b], et tu pourras récupérer de meilleure graines en détruisant une plante mature, ou en attendant qu'elle meurt." -Text/a7/text,"Plants generate [b]Plant Points[/b] when mature, get enough plant points and you'll complete your training.","Une fois mature, les plantes génèrent des [b]Points de Plantes[/b], si tu en as assez tu finira l'entrainement." -Choice/3f/text,"That's a lot of information, can you repeat ?",C'est beaucoup d'informations. Tu peux répèter ? -Choice/3f/disabled_text,, -Text/40/text,"Ok,[pause=0.2] listen carefully.","D'accord,[pause=0.2] écoute bien." -Choice/41/text,"Ok, now I have more questions !","C'est noté, mais j'ai d'autres questions !" -Choice/41/disabled_text,, -Text/42/text,"Sorry,[pause=0.2] we'll speak more after this.[pause=0.5] I send you an elevator,[pause=0.2] good luck [color=#FFA617]Orchid[/color] !","Désolée,[pause=0.3] on reparlera un peu plus après ton entrainement.[pause=0.5] Je t'envoie un ascenseur,[pause=0.3] bonne chance [color=#FFA617]Orchid[/color] !" +Text/34/text,"Something happened a year ago.[pause=0.3].[pause=0.3].[pause=0.3]. The [color=#FFA617][b]Talion[/b][/color],[pause=0.3] a unique element giving birth to new life forms when shattered,[pause=0.5] reappeared.","Quelque-chose est arrivé l'année dernière.[pause=0.3].[pause=0.3].[pause=0.3]. Le [color=#FFA617][b]Talion[/b][/color],[pause=0.2] un matériau unique qui peut engendrer de nouvelles formes de vies quand il est brisé,[pause=0.3] est réapparu." +Text/35/text,"With the [color=#FFA617][b]Talion[/b][/color] back on the surface,[pause=0.2] we can bring this planet back to life.","Maintenant que le [color=#FFA617][b]Talion[/b][/color] est revenu à la surface,[pause=0.3] on peut ramener cette planète à la vie." +Text/36/text,"But first things first,[pause=0.3] you have to learn how everything is working up here,[pause=0.2] and how to use the [color=#FFA617][b]Talion[/b][/color] to plant seeds.","Mais chaque chose en son temps,[pause=0.3] tu as besoin d'apprendre comment ça marche ici,[pause=0.2] et surtout comment utiliser le [color=#FFA617][b]Talion[/b][/color] pour planter des graines." +Text/fd/text,"I sent you a checklist with the things that you have to learn, and I'll provide the tools you need along the way.","Je t'ai envoyé une liste des tâches que tu devras apprendre, et je te fournirai les outils dont tu auras besoin en cours de route." +Text/fe/text,"[b]I send you an elevator[/b],[pause=0.2] good luck [color=#FFA617]Orchid[/color] !","Un ascenseur devrait arriver d'ici quelques secondes, bonne chance [color=#FFA617]Orchid[/color] !" diff --git a/translation/dialogs/dialogic_2_demeter_intro_translation.csv.import b/translation/dialogs/dialogic_2_demeter_intro_translation.csv.import new file mode 100644 index 0000000..4e4bc51 --- /dev/null +++ b/translation/dialogs/dialogic_2_demeter_intro_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://c7e8sh3fp6i34" + +[deps] + +files=["res://translation/dialogs/dialogic_2_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_2_demeter_intro_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_2_demeter_intro_translation.csv" +dest_files=["res://translation/dialogs/dialogic_2_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_2_demeter_intro_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_ship_presentation_translation.csv b/translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv similarity index 63% rename from translation/dialogs/dialogic_demeter_ship_presentation_translation.csv rename to translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv index 4ab76d8..0e1349d 100644 --- a/translation/dialogs/dialogic_demeter_ship_presentation_translation.csv +++ b/translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv @@ -4,6 +4,8 @@ Text/75/text,Perhaps I should introduce myself now.,Je devrais me présenter mai Text/76/text,"I am.[pause=0.3].[pause=0.3].[pause=0.5] was,[pause=0.2] the Deputy Manager of Engineering and Talion Energy Research on this planet,[pause=0.5] but my creators and colleagues quickly called me [color=#009bff]Demeter[/color].","Je suis.[pause=0.3].[pause=0.3].[pause=0.5] j'étais,[pause=0.3] le Dispositif d'Etudes Managériales et Elémentaires du Talion et de ses Effets Relatifs sur cette planète,[pause=0.5] mais mes créateurs et collègues m'ont rapidement appellée [color=#009bff]Demeter[/color]." Text/77/text,"I am installed at the [color=#6CDAE7]Borea[/color] base,[pause=0.2] in the third server room of the east wing,[pause=0.2] from which I oversee.[pause=0.3].[pause=0.3].[pause=0.5] oversaw,[pause=0.3] all the important operations on this planet.","Je suis stationnée à la base [color=#6CDAE7]Borea[/color],[pause=0.2] dans la 3ème salle de serveur de l'aile Est,[pause=0.2] c'est de là que je supervise.[pause=0.3].[pause=0.3].[pause=0.5] que je supervisais,[pause=0.3] toutes les opérations importantes sur cette planète." Text/78/text,You are surely wondering where we are now.[pause=0.3].[pause=0.3].,Tu te demandes peut-être où tu es maintenant… +Choice/103/text,No it's perfectly clear to me!,"Non, tout est parfaitement clair pour moi !" +Choice/103/disabled_text,, Choice/79/text,"Yes, among a lot of other questions ! So where am I ?","Oui, c'est l'une de mes nombreuses questions ! Où suis je ?" Choice/79/disabled_text,, Text/7a/text,"You're actually in an ancient human base,[pause=0.2] called [color=#E30022]Astra[/color].[pause=0.5] This room is connected to the one where you were activated,[pause=0.3] but I had to make you travel across the surface to test your abilities.","En fait,[pause=0.3] tu es dans l'une des anciennes bases humaines,[pause=0.3] Astra.[pause=0.5] Cette salle est connectée à celle où tu t'es réveillé,[pause=0.3] mais je t'ai fait passer par la surface pour tester tes capacités." @@ -13,33 +15,13 @@ Text/7c/text,"You have begun to fix what humans once inflicted on this planet.[p Choice/7d/text,"Sorry, but what is the point of all of that ?","Désolé, mais à quoi tout cela sert ?" Choice/7d/disabled_text,, Text/7e/text,"I'm sorry that you are lost my child.[pause=0.3].[pause=0.3].[pause=0.3] Just know that what you are doing is very important to me and the planet itself.[pause=0.5] Since humans are gone,[pause=0.2] we kinda all fell into despair...","Je suis désolée que tu te sentes perdu,[pause=0.3] mon petit.[pause=0.3].[pause=0.3].[pause=0.3] Il faut que tu saches que ce que tu fais est très important pour moi et la planète elle-même ![pause=0.5] Depuis que les humains sont partis,[pause=0.3] nous sommes tous plus ou moins devenus désespérés.[pause=0.3].[pause=0.3].[pause=0.3]" -Text/7f/text,"Wait.[pause=0.3].[pause=0.3].[pause=0.5] You don't know what humans are ![pause=0.5] Of course,[pause=0.2] since your database was corrupted I had to erase most of it.","Attends.[pause=0.3].[pause=0.3].[pause=0.5] Tu ne sais pas ce que sont les humains ![pause=0.5] C'est vrai,[pause=0.2] tes données étaient corrompues,[pause=0.3] j'ai dû en effacer une bonne partie." -Text/80/text,"Humans are living creatures that are.[pause=0.3].[pause=0.3].[pause=0.5] Different than plants.[pause=0.5] They are mostly thinking and moving like us.[pause=0.5] Somehow,[pause=0.2] they are very cute creatures,[pause=0.2] that only live for less than a century.","Les humains sont des créatures.[pause=0.3].[pause=0.3].[pause=0.5] différentes des plantes.[pause=0.5] Ils peuvent penser et bouger,[pause=0.3] comme nous.[pause=0.5] D'une certaine manière,[pause=0.3] ils étaient d'adorables êtres vivants,[pause=0.2] qui ne vivaient que moins d'un siècle." -Text/81/text,"One human is relatively intelligent,[pause=0.2] but don't be fooled,[pause=0.2] together,[pause=0.2] they did great things.[pause=0.5] In fact,[pause=0.2] they created us.","Un seul humain est relativement intelligent,[pause=0.2] mais ensemble,[pause=0.3] ils sont capables de grandes choses.[pause=0.5] Ce sont eux qui nous ont créé !" -Text/82/text,"A long time ago,[pause=0.2] they discovered this planet.[pause=0.5] It was very different,[pause=0.2] plants were thriving everywhere ![pause=0.5] But then.[pause=0.3].[pause=0.3].[pause=0.5] they.[pause=0.3].[pause=0.3].[pause=0.5] I.[pause=0.3].[pause=0.3].[pause=0.5]","Il y a longtemps,[pause=0.3] ils ont découvert cette planète.[pause=0.5] Elle était bien différente de ce qu'elle est maintenant,[pause=0.3] il y avait des plantes partout ![pause=0.5] Mais ensuite.[pause=0.3].[pause=0.3].[pause=0.5] Ils.[pause=0.3].[pause=0.3].[pause=0.5] Je.[pause=0.3].[pause=0.3].[pause=0.5]" -Choice/83/text,What ?,Quoi ? -Choice/83/disabled_text,, -Choice/84/text,Are you lagging?,Etes-vous en train de lagger ? -Choice/84/disabled_text,, -Choice/85/text,Take your time.,Prenez votre temps. -Choice/85/disabled_text,, -Text/86/text,"Humans had one major flaw.[pause=0.5] Together,[pause=0.2] they built great things,[pause=0.2] but sometimes great things had a bad impact on the environment and even themselves.","Les humains ont un gros défaut.[pause=0.5] Ensemble,[pause=0.3] ils ont construit de belles choses,[pause=0.2] mais parfois ces choses n'étaient pas bonnes pour l'environnement,[pause=0.3] ou pour eux-mêmes." -Choice/87/text,Where are they now ?,Où sont-ils à présent ? -Choice/87/disabled_text,, -Text/88/text,"I prefer not to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] But don't worry,[pause=0.2] they can no longer harm this planet.","Je ne préfère pas en parler.[pause=0.3].[pause=0.3].[pause=0.3] Mais ne t'inquiètes pas,[pause=0.3] ils ne peuvent plus faire de mal à cette planète." -Choice/89/text,What happened ?,Que s'est-il passé ? -Choice/89/disabled_text,, -Text/8a/text,"Sorry my child,[pause=0.3] I'm not ready to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] You'll have your answers when you meet me.","Je suis désolée petit,[pause=0.3] je ne suis pas prête à en parler pour l'instant.[pause=0.3].[pause=0.3].[pause=0.3] Tu en sauras plus quand tu m'auras rejointe." -Text/ac/text,"Enough talking about the past, let's talk about your mission.","Assez parlé du passé, parlons un peu de ta mission." Text/ad/text,"Now that you have learnt how to produce [b]plants[/b],[pause=0.2] I need you to travel north,[pause=0.2] to my base of operation,[pause=0.2] [color=#6CDAE7]Borea[/color].","Maintenant que tu as appris comment t'occuper des [b]plantes[/b],[pause=0.3] Il va falloir que tu ailles au Nord,[pause=0.3] à la base d'opérations [color=#6CDAE7]Borea[/color]." Text/8c/text,"The engine you see is a planetary ship ![pause=0.5] This model is called [color=#FFA617]Internode[/color],[pause=0.3] I tweaked it to recharge on vegetal energy.[pause=0.5] However,[pause=0.2] as you know,[pause=0.2] this type of energy is uncommon on this planet.[pause=0.5]","L'engin que tu vois est un vaisseau planétaire ![pause=0.5] Le nom de ce modèle est l'[color=#FFA617]Internode[/color],[pause=0.3] je l'ai modifié pour qu'il se recharge avec de l'énergie végétale ![pause=0.5] Mais comme tu le devines,[pause=0.3] cette énergie est rare par ici." Text/ae/text,"It is quite an old model, [pause=0.2]thousands of years in fact[pause=0.2], so it cannot go all away to Borea. [pause=0.2]You'll need to jump region to region and recharge it every step.","C'est plutôt un vieux modèle,[pause=0.2] vieux de milliers d'années en fait,[pause=0.2] donc il ne peut pas aller directement à Boréa.[pause=0.2] Tu devras te poser de région en région pour le recharger." Text/af/text,"And to make matters worse,[pause=0.2] its effectiveness is decreasing every jump,[pause=0.2] so you'll need to fuel it with more and more energy.","Et pour ne rien arranger,[pause=0.2] son efficacité diminue tous les décollages,[pause=0.2] donc tu devras l'alimenter de plus en plus d'énergie végétale." Text/67/text,"It will be long,[pause=0.3] but I know you can do it.[pause=0.5] It is the first step of my plan to restore the ecosytem of [color=#175579]Tau[/color].","C'est un long voyage,[pause=0.3] mais je sais que tu peux le faire.[pause=0.5] C'est la première étape de mon plan pour restorer l'écosystème de [color=#175579]Tau[/color]." -Choice/68/text,Tau ? Is it this planet ?,Tau ? Est ce que c'est cette planète ? -Choice/68/disabled_text,, -Text/69/text,"Absolutely,[pause=0.2] it is part of the Cetus constellation,[pause=0.3] whose exploitation began 10863 years ago.","Exactement,[pause=0.3] elle fait partie de la constellation Cetus,[pause=0.2] dont l'exploitation a commencé il y a 10863 ans." -Text/6a/text,"Linking Aldebaran to Fomalhaut,[pause=0.2] the Cetus constellation is one of the most diverse in terms of star systems and planets.[pause=0.5] It is part of the Orion Arm of the Milky Way.","Faisant le lien entre Aldebaran et Fomalhaut,[pause=0.2] la constellation Cetus est l'une des plus diverses en terme de systèmes stellaires et de planètes.[pause=0.5] Elle fait partie du bras Orion de la Voie Lactée." +Choice/ff/text,Ok let's go !,"Ok, c'est parti !" +Choice/ff/disabled_text,, Choice/6b/text,Why do you need me to travel through the entire planet to join you ?,Pourquoi voulez vous que je traverse la planète entière pour vous rejoindre ? Choice/6b/disabled_text,, Text/6c/text,Uhhhh.[pause=0.3].[pause=0.3].[pause=0.3] I need someone with your abilities.,Euuuhhhh.[pause=0.3].[pause=0.3].[pause=0.3] J'ai besoin de quelqu'un avec tes compétences. diff --git a/translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv.import b/translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv.import new file mode 100644 index 0000000..e211861 --- /dev/null +++ b/translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://jnbdd1dy2n8f" + +[deps] + +files=["res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.csv" +dest_files=["res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_3_demeter_ship_presentation_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_cave_translation.csv b/translation/dialogs/dialogic_4_cave_translation.csv similarity index 65% rename from translation/dialogs/dialogic_cave_translation.csv rename to translation/dialogs/dialogic_4_cave_translation.csv index 77f1820..9d57c48 100644 --- a/translation/dialogs/dialogic_cave_translation.csv +++ b/translation/dialogs/dialogic_4_cave_translation.csv @@ -1,12 +1,12 @@ keys,en,fr Text/e5/text,I hope everything is going well for you so far. I'm calling because the next regions you're heading to contain unique rock formations: the [b]Caverns of Talion[/b].,"J'espère que tout se passe bien pour toi pour l'instant. Je t'appelle, car les prochaines régions vers lesquelles tu te diriges contiennent des formations rocheuses uniques : des [b]Cavernes de Talion[/b]." -Choice/e6/text,Talion hadn't disappeared?,"Le talion n'avait pas disparu ?" +Text/eb/text,"The crystals in these caverns are special; they don't produce life, but they release a powerful mutagenic energy into the air. This will surely help you grow more powerfull plants for the rest of your journey.","Les cristaux de ces grottes sont spéciaux, ils ne produisent pas de vie, mais libèrent dans l'air un puissant pouvoir mutagène. Celui-ci pourra sûrement t'aider à avoir des plantes plus puissantes pour le reste de ton voyage." +Choice/100/text,Ok I'll take a look on it.,"Ok, j'irais voir ça." +Choice/100/disabled_text,, +Choice/e6/text,Talion hadn't disappeared?,Le talion n'avait pas disparu ? Choice/e6/disabled_text,, Text/e7/text,"Precisely, I'd like you to check for me if its reappearance on the surface also means its reappearance in the caverns.","Justement, j'aimerais que tu vérifies pour moi si sa réapparition à la surface signifie aussi sa réapparition dans les cavernes." -Choice/e8/text,How do you know?,"Comment tu le sait ?" +Choice/e8/text,How do you know?,Comment tu le sait ? Choice/e8/disabled_text,, -Text/e9/text,"Ces cavernes étaient bien connu des humains. Certains y allaient pour étudier le Talion, d'autres pour explorer la grotte. Ces explorations étaient très risquées, mais apparement certains humains aimaient beaucoup risquer leur vie...","Ces cavernes étaient bien connues des humains. Certains y allaient pour étudier le Talion, d'autres pour explorer la grotte. Ces explorations étaient très risquées, mais apparemment certains humains aimaient beaucoup risquer leur vie..." -Choice/ea/text,What does that change for me?,"Qu'est-ce que ça change pour moi ?" -Choice/ea/disabled_text,, -Text/eb/text,"The crystals in these caverns are special; they don't produce life, but they release a powerful mutagenic energy into the air. This will surely help you grow more powerfull plants for the rest of your journey.","Les cristaux de ces grottes sont spéciaux, ils ne produisent pas de vie, mais libèrent dans l'air un puissant pouvoir mutagène. Celui-ci pourra sûrement t'aider à avoir des plantes plus puissantes pour le reste de ton voyage." +Text/e9/text,"These caverns were well known to humans. Some went there to study Talion, others to explore the cave. These explorations were very risky, but apparently some humans enjoyed risking their lives...","Ces cavernes étaient bien connues des humains. Certains y allaient pour étudier le Talion, d'autres pour explorer la grotte. Ces explorations étaient très risquées, mais apparemment certains humains aimaient beaucoup risquer leur vie..." Text/ec/text,Use your detector to find the entrance to the cave; humans had installed an elevator there.,"Utilise ton détecteur pour trouver l'entrée de la grotte, les humains y avaient aménagé un ascenseur." diff --git a/translation/dialogs/dialogic_4_cave_translation.csv.import b/translation/dialogs/dialogic_4_cave_translation.csv.import new file mode 100644 index 0000000..53219ab --- /dev/null +++ b/translation/dialogs/dialogic_4_cave_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://bes8ut7ap80ns" + +[deps] + +files=["res://translation/dialogs/dialogic_4_cave_translation.en.translation", "res://translation/dialogs/dialogic_4_cave_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_4_cave_translation.csv" +dest_files=["res://translation/dialogs/dialogic_4_cave_translation.en.translation", "res://translation/dialogs/dialogic_4_cave_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_mercury_arrival_translation.csv b/translation/dialogs/dialogic_5_mercury_arrival_translation.csv similarity index 92% rename from translation/dialogs/dialogic_mercury_arrival_translation.csv rename to translation/dialogs/dialogic_5_mercury_arrival_translation.csv index 68a9f72..a934c8c 100644 --- a/translation/dialogs/dialogic_mercury_arrival_translation.csv +++ b/translation/dialogs/dialogic_5_mercury_arrival_translation.csv @@ -18,5 +18,4 @@ Choice/ba/disabled_text,, Text/bb/text,Let's just say you're not my first attempt... I don't want to discourage you as my previous attempts did...,Disons que tu n'es pas mon premier essai... Je ne t'en dirais pas plus ! Je ne veux pas te désespérer comme mes précédents cobayes... Text/bc/text,"Anyway, there's enough in the base to repair the Internode, and I even found some O-800 models, I mean models identical to yours.","Enfin bon, il y a dans la base de quoi réparer l'Internode, et j'ai même trouvé des modèles O - 800, enfin, je veux dire des modèles identiques au tien. " Text/bd/text,I'd like you to find the base and synchronize your data with it. That will allow you to come back here if you run out of energy.,J'aimerais bien que tu trouves la base et que tu synchronises tes données avec celles de la base. Ça te permettra de revenir ici si tu manques d'énergie. -Text/be/text,"The entrance shouldn't be hard to find, use your detector.","L'entrée ne devrait pas être difficile à trouver, utilise ton détecteur." -Text/bf/text,See you Orchid !,À plus tard Orchid +Text/bf/text,See you Orchid !,À plus tard Orchid ! diff --git a/translation/dialogs/dialogic_5_mercury_arrival_translation.csv.import b/translation/dialogs/dialogic_5_mercury_arrival_translation.csv.import new file mode 100644 index 0000000..61a7ca7 --- /dev/null +++ b/translation/dialogs/dialogic_5_mercury_arrival_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://dno7lpemmlv1p" + +[deps] + +files=["res://translation/dialogs/dialogic_5_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_5_mercury_arrival_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_5_mercury_arrival_translation.csv" +dest_files=["res://translation/dialogs/dialogic_5_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_5_mercury_arrival_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_6_mercury_departure_translation.csv b/translation/dialogs/dialogic_6_mercury_departure_translation.csv new file mode 100644 index 0000000..81bb776 --- /dev/null +++ b/translation/dialogs/dialogic_6_mercury_departure_translation.csv @@ -0,0 +1,40 @@ +keys,en,fr +Text/ca/text,"Great, Orchid! I now have access to the base from the ship!","Super Orchid, j'ai maintenant accès à la base depuis le vaisseau !" +Text/cb/text,I've programmed a new destination for you in the onboard computer.,Je t'ai programmé une nouvelle destination dans l'ordinateur de bord. +Choice/104/text,OK! What's next?,Ok ! Où dois-je aller maintenant ? +Choice/104/disabled_text,, +Choice/105/text,"Uhm, what just happened down there?","Euh, qu'est-ce qui vient de se passer dans la base relais ?" +Choice/105/disabled_text,, +Text/106/text,"Oh sorry, I forgot that it can be confusing for you.","Oh, désolé, j'oublie que ça peut être perturbant pour toi." +Text/107/text,"You saved yourself in the base datacenter, and I configured a function to put back your consciousness in a O-800 model that lies down there.","Tu t'es sauvegardé dans le datacenter de la base, et j'ai configuré une fonction permettant de transposer ta conscience dans un modèle O-800 qui traîne." +Text/108/text,"I'm not sure you'll manage to do the rest of the journey in one go, so I'm covering our bases.","Je suis assez incertaine sur ta capacité à faire le voyage qui t'attend en une seule fois, donc j'assure nos arrières." +Text/109/text,Did you see your old body?,Est-ce que tu as vu ton ancien corps ? +Choice/10a/text,My... body?,Mon.. Ancien corps ? +Choice/10a/disabled_text,, +Text/10b/text,"Oh, never mind, that's really nothing.","Oh, ne t'inquiètes pas, rien de bien grave..." +Choice/10c/text,"Yes, and that was really creepy!",Oui et c'était très étrange ! +Choice/10c/disabled_text,, +Text/10d/text,"Sorry! The save function caused a bug in your case, so I had to abandon it here.","Désolé, la fonction de sauvegarde créée un bug dans ton modèle, j'ai dû l'abandonner ici..." +Text/10e/text,"Anyway, you still have quite a long way to go.","Bon, tu as encore un long voyage devant toi." +Text/cc/text,"You now need to go a little further north, to a new relay base, [b]Venus Base[/b].","Tu dois maintenant aller un peu plus loin au sud, dans une nouvelle base relais, la [b]Base Vénus[/b]." +Text/110/text,"[b]I managed to repair the ship[/b], but I'm afraid it hasn't returned to its original state...","[b]J'ai réussi à réparer le vaisseau[/b], mais j'ai bien peur qu'il ne soit pas revenu à son état d'origine…" +Text/111/text,"[b]I also did some cleaning in your seeds[/b], they have gone bad during the time I repaired the ship. I hope you don't mind...","[b]J'ai fait du nettoyage dans tes graines[/b], elles ont pourri pendant les réparations. J'espère que ça ne te dérange pas…" +Choice/112/text,"No problem, I'll found better ones.","Pas de problème, j'en trouverai de meilleures." +Choice/112/disabled_text,, +Choice/113/text,Oh no ! But I've been away just a moment !,Oh non ! Mais je ne me suis absenté qu'un instant ! +Choice/113/disabled_text,, +Text/114/text,"Uhm, I actually repaired the ship over two full months; I didn't wake you up just after the save, I thought that you wouldn't want to wait that long!","Euh… En fait, j'ai réparé le vaisseau pendant plus de deux mois ; je ne t'ai pas réveillé tout de suite après la sauvegarde, je me suis dit que tu ne voudrais pas attendre aussi longtemps !" +Text/ce/text,"Luckily, I've found something that might help you. I've cataloged ancient human ruins all over the planet, and some of them contain ""vending machines,"" machines for exchanging items for money.","J'ai heureusement déniché quelque chose qui pourrait t'aider. J'ai répertorié des anciennes ruines humaines un peu partout sur la planète, et dans certaines, on trouve des ""distributeurs"", des machines d'échange d'objet contre de l'argent." +Choice/101/text,Thanks !,Merci ! +Choice/101/disabled_text,, +Choice/cf/text,Vending machines?,Des distributeurs ? +Choice/cf/disabled_text,, +Text/d0/text,"Yes, that's where they used to get the energy they needed, for a completely unreasonable price.","Oui c'est là qu'ils récupéraient de quoi se réalimenter en énergie, pour un prix complètement déraisonnable." +Text/d1/text,"Before, real people were in charge of transactions, but for some reason, humans spent all of recent history figuring out how to encounter as few humans as possible. Maybe they couldn't stand each other anymore...","Avant, de vraies personnes étaient chargées de ces transactions, mais va savoir pourquoi les humains ont passé toute leur histoire récente à trouver comment croiser le moins d'humains possible. Peut-être qu'ils ne pouvaient plus se supporter..." +Choice/d2/text,Money?,De l'argent ? +Choice/d2/disabled_text,, +Text/d3/text,"Yes, each human had a sum of an imaginary unit they called money. They based their entire social hierarchy on this unit.","Oui, chaque humain avait une somme d'une unité imaginaire qu'ils appelaient argent. Ils basaient toute leur échelle sociale en fonction de cette unité." +Text/d4/text,"In any case, I've updated their system. They'll probably need some energy to function, but they might bring you some interesting items.","En-tout-cas, j'ai mis à jour leur système, ils auront sûrement besoin d'un peu d'énergie pour fonctionner, mais ils t'apporteront peut-être des objets intéressants." +Text/d5/text,"As usual, you can use your detector to find the entrance to these ruins.","Comme d'habitude, tu peux utiliser ton détecteur pour trouver la porte d'entrée de ces ruines." +Text/d6/text,"[b]These artifacts will be placed on a shelf in your ship[/b], but remember that if you ran out of energy and I have to teleport the ship, you'll lose them.","[b]Ces artefacts seront placés sur une étagère dans le vaisseau[/b], mais si tu tombes à court d'énergie, je devrais téléporter le vaisseau et tu perdras tous les objets à l'intérieur !" +Text/d7/text,Good luck with the [b]Venus Relay Base[/b]; it's a little further than the last one.,Bon courage pour la base Vénus elle est un petit peu plus loin que la dernière. diff --git a/translation/dialogs/dialogic_6_mercury_departure_translation.csv.import b/translation/dialogs/dialogic_6_mercury_departure_translation.csv.import new file mode 100644 index 0000000..4104111 --- /dev/null +++ b/translation/dialogs/dialogic_6_mercury_departure_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://buvjs0n68ueb5" + +[deps] + +files=["res://translation/dialogs/dialogic_6_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_6_mercury_departure_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_6_mercury_departure_translation.csv" +dest_files=["res://translation/dialogs/dialogic_6_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_6_mercury_departure_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_venus_arrival_translation.csv b/translation/dialogs/dialogic_7_venus_arrival_translation.csv similarity index 100% rename from translation/dialogs/dialogic_venus_arrival_translation.csv rename to translation/dialogs/dialogic_7_venus_arrival_translation.csv diff --git a/translation/dialogs/dialogic_7_venus_arrival_translation.csv.import b/translation/dialogs/dialogic_7_venus_arrival_translation.csv.import new file mode 100644 index 0000000..92cfd85 --- /dev/null +++ b/translation/dialogs/dialogic_7_venus_arrival_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://d4fnba1o33cj" + +[deps] + +files=["res://translation/dialogs/dialogic_7_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_7_venus_arrival_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_7_venus_arrival_translation.csv" +dest_files=["res://translation/dialogs/dialogic_7_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_7_venus_arrival_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_8_venus_departure_translation.csv b/translation/dialogs/dialogic_8_venus_departure_translation.csv new file mode 100644 index 0000000..bb78160 --- /dev/null +++ b/translation/dialogs/dialogic_8_venus_departure_translation.csv @@ -0,0 +1,22 @@ +keys,en,fr +Text/ed/text,"Well, you've done the easiest part so far, but all the remaining relay bases along the way have been destroyed by the weather... So, you're going to have a long road ahead of you to reach me.","Bon, tu as fait le plus facile pour l'instant, mais toutes les bases relais restantes sur le chemin sont HS. Tu vas donc devoir faire un long trajet jusqu'à moi." +Text/ee/text,"However, I'm glad you made it this far! I understand that waking up in that dark room must have been quite a shock.","Cependant, je suis heureuse que tu sois arrivé jusque-là ! Je comprends que le réveil que tu as subi dans cette salle obscure n'a pas dû être évident." +Text/ef/text,"This is the first time you've come this far, or rather, the first time an iteration has reached this base.","C'est la première fois que tu arrives aussi loin, enfin la première fois qu'une itération atteint ce lieu." +Choice/f0/text,"What do you mean by ""an iteration""?","Qu'est-ce que tu entends par ""une itération"" ?" +Choice/f0/disabled_text,, +Text/f1/text,"Uh, I've tried several times to get you to come to me by changing many parameters of your intelligence. Each time, you got lost, you didn't achieve your objectives, or you chose to disobey me...","Euh, et bien j'ai tenté plusieurs fois de te faire venir à moi en changeant de nombreux paramètres de ton intelligence. À chaque fois, tu te perdais, tu n'arrivais pas à tes objectifs ou encore, tu choisissais de me désobéir... " +Choice/f2/text,And how many iterations have you reached?,Et à combien d'itérations es-tu ? +Choice/f2/disabled_text,, +Text/f3/text,"Exactly 15 different versions, with exactly 361 O-800 models lost in the wild, but the twelfth version caused me to lose 57% of them; it had a tendency to get lost on the planet...","Exactement 15 versions différentes, avec exactement 361 modèles O-800 perdus dans la nature, mais la douzième version m'en a fait perdre 57%, elle avait tendance à beaucoup se perdre sur la planète..." +Text/f4/text,"In any case, know that you're my favorite!","En tout cas, sache que tu es l'itération que je préfère !" +Choice/f5/text,What happened to the others?,Qu'est-il arrivé aux autres ? +Choice/f5/disabled_text,, +Text/f6/text,"Not much. Many are still on the planet; perhaps they're still wandering, but it's likely they ran out of power.","Pas grand-chose, beaucoup sont encore sur la planète, peut-être qu'elles errent encore, mais c'est probable qu'elles soient tombées à court d'énergie." +Choice/f7/text,What makes me different?,Qu'est-ce qui me différencie ? +Choice/f7/disabled_text,, +Text/f8/text,"The list of parameters is long, but if I had to summarize, I'd say that part of your code comes from an emotional support program for humans. For a reason I haven't yet figured out, it worked very well!","La liste des paramètres est longue, mais si je dois te faire une synthèse, je dirais qu'une partie de ton code est issue d'un programme d'assistance émotionnelle pour humains. Pour une raison que je n'ai pas encore élucidée, cela a très bien fonctionné !" +Text/f9/text,"I won't bother you any longer, you still have a long journey ahead, and I can't help but anticipate your arrival! Sandy would say I'm impatient...","Je ne t'embête pas plus, tu as encore un long voyage, et je ne peux m'empêcher d'anticiper le moment où tu arriveras ! Sandy dirait que je suis pressée..." +Choice/fa/text,Who's Sandy?,Qui est Sandy ? +Choice/fa/disabled_text,, +Text/fb/text,...,... +Text/fc/text,I... am waiting for you...,Je... T'attends... diff --git a/translation/dialogs/dialogic_8_venus_departure_translation.csv.import b/translation/dialogs/dialogic_8_venus_departure_translation.csv.import new file mode 100644 index 0000000..46f5fc0 --- /dev/null +++ b/translation/dialogs/dialogic_8_venus_departure_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://7qrdbkajuu1b" + +[deps] + +files=["res://translation/dialogs/dialogic_8_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_8_venus_departure_translation.fr.translation"] + +source_file="res://translation/dialogs/dialogic_8_venus_departure_translation.csv" +dest_files=["res://translation/dialogs/dialogic_8_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_8_venus_departure_translation.fr.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_9_borea_translation.csv b/translation/dialogs/dialogic_9_borea_translation.csv new file mode 100644 index 0000000..7abd542 --- /dev/null +++ b/translation/dialogs/dialogic_9_borea_translation.csv @@ -0,0 +1,19 @@ +keys,en +Text/7f/text,"Wait.[pause=0.3].[pause=0.3].[pause=0.5] You don't know what humans are ![pause=0.5] Of course,[pause=0.2] since your database was corrupted I had to erase most of it." +Text/80/text,"Humans are living creatures that are.[pause=0.3].[pause=0.3].[pause=0.5] Different than plants.[pause=0.5] They are mostly thinking and moving like us.[pause=0.5] Somehow,[pause=0.2] they are very cute creatures,[pause=0.2] that only live for less than a century." +Text/81/text,"One human is relatively intelligent,[pause=0.2] but don't be fooled,[pause=0.2] together,[pause=0.2] they did great things.[pause=0.5] In fact,[pause=0.2] they created us." +Text/82/text,"A long time ago,[pause=0.2] they discovered this planet.[pause=0.5] It was very different,[pause=0.2] plants were thriving everywhere ![pause=0.5] But then.[pause=0.3].[pause=0.3].[pause=0.5] they.[pause=0.3].[pause=0.3].[pause=0.5] I.[pause=0.3].[pause=0.3].[pause=0.5]" +Choice/83/text,What ? +Choice/83/disabled_text, +Choice/84/text,Are you lagging? +Choice/84/disabled_text, +Choice/85/text,Take your time. +Choice/85/disabled_text, +Text/86/text,"Humans had one major flaw.[pause=0.5] Together,[pause=0.2] they built great things,[pause=0.2] but sometimes great things had a bad impact on the environment and even themselves." +Choice/87/text,Where are they now ? +Choice/87/disabled_text, +Text/88/text,"I prefer not to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] But don't worry,[pause=0.2] they can no longer harm this planet." +Choice/89/text,What happened ? +Choice/89/disabled_text, +Text/8a/text,"Sorry my child,[pause=0.3] I'm not ready to talk about that for now.[pause=0.3].[pause=0.3].[pause=0.3] You'll have your answers when you meet me." +Text/ac/text,"Enough talking about the past, let's talk about your mission." diff --git a/translation/dialogs/dialogic_9_borea_translation.csv.import b/translation/dialogs/dialogic_9_borea_translation.csv.import new file mode 100644 index 0000000..950479f --- /dev/null +++ b/translation/dialogs/dialogic_9_borea_translation.csv.import @@ -0,0 +1,19 @@ +[remap] + +importer="csv_translation" +type="Translation" +uid="uid://bt4ylygjn54ax" + +[deps] + +files=["res://translation/dialogs/dialogic_9_borea_translation.en.translation"] + +source_file="res://translation/dialogs/dialogic_9_borea_translation.csv" +dest_files=["res://translation/dialogs/dialogic_9_borea_translation.en.translation"] + +[params] + +compress=1 +delimiter=0 +unescape_keys=false +unescape_translations=true diff --git a/translation/dialogs/dialogic_cave_translation.csv.import b/translation/dialogs/dialogic_cave_translation.csv.import deleted file mode 100644 index e90f66f..0000000 --- a/translation/dialogs/dialogic_cave_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://dif3sphy3ar03" - -[deps] - -files=["res://translation/dialogs/dialogic_cave_translation.en.translation", "res://translation/dialogs/dialogic_cave_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_cave_translation.csv" -dest_files=["res://translation/dialogs/dialogic_cave_translation.en.translation", "res://translation/dialogs/dialogic_cave_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_intro_translation.csv.import b/translation/dialogs/dialogic_demeter_intro_translation.csv.import deleted file mode 100644 index 103161e..0000000 --- a/translation/dialogs/dialogic_demeter_intro_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://bh7an21jynytu" - -[deps] - -files=["res://translation/dialogs/dialogic_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_intro_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_demeter_intro_translation.csv" -dest_files=["res://translation/dialogs/dialogic_demeter_intro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_intro_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_outro_translation.csv b/translation/dialogs/dialogic_demeter_outro_translation.csv deleted file mode 100644 index 4caf9ac..0000000 --- a/translation/dialogs/dialogic_demeter_outro_translation.csv +++ /dev/null @@ -1,2 +0,0 @@ -keys,en,fr -Text/63/text,"Welcome to [color=#E30022]Borea[/color],[pause=0.2] [color=#FFA617]{orchidName}[/color],[pause=0.3] it is the first step of your journey on this planet.","Bienvenue à la base [color=#6CDAE7]Borea[/color] [color=#FFA617]{orchidName}[/color],[pause=0.3] c'est le début de ton aventure sur cette planète." diff --git a/translation/dialogs/dialogic_demeter_outro_translation.csv.import b/translation/dialogs/dialogic_demeter_outro_translation.csv.import deleted file mode 100644 index 327d95c..0000000 --- a/translation/dialogs/dialogic_demeter_outro_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://j0jxojfjy6i2" - -[deps] - -files=["res://translation/dialogs/dialogic_demeter_outro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_outro_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_demeter_outro_translation.csv" -dest_files=["res://translation/dialogs/dialogic_demeter_outro_translation.en.translation", "res://translation/dialogs/dialogic_demeter_outro_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv b/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv deleted file mode 100644 index 79604f4..0000000 --- a/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv +++ /dev/null @@ -1,22 +0,0 @@ -keys,en,fr -Text/64/text,"So you found the communication station in there,[pause=0.2] good !","Ah,[pause=0.3] tu as trouvé la station de communication,[pause=0.2] bravo !" -Choice/65/text,What is next for me ?,Qu'est-ce que vous me réservez maintenant ? -Choice/65/disabled_text,, -Text/66/text,"Now that you have learnt how to produce [b]plant points[/b],[pause=0.2] I need you to travel north,[pause=0.2] to my base of operation,[pause=0.2] [color=#6CDAE7]Borea[/color].","Maintenant que tu as appris comment générer des [b]points de plante[/b],[pause=0.3] Il va falloir que tu ailles au Nord,[pause=0.3] à la base d'opérations [color=#6CDAE7]Borea[/color]." -Text/67/text,"It will be long,[pause=0.3] but I know you can do it.[pause=0.5] It is the first step of my plan to restore the ecosytem of [color=#175579]Tau[/color].","C'est un long voyage,[pause=0.3] mais je sais que tu peux le faire.[pause=0.5] C'est la première étape de mon plan pour restorer l'écosystème de [color=#175579]Tau[/color]." -Choice/68/text,Tau ? Is it this planet ?,Tau ? C'est le nom de cette planète ? -Choice/68/disabled_text,, -Text/69/text,"Absolutely,[pause=0.2] it is part of the Cetus constellation,[pause=0.3] whose exploitation began 10863 years ago.","Exactement,[pause=0.3] elle fait partie de la constellation Cetus,[pause=0.2] dont l'exploitation a commencé il y a 10863 ans." -Text/6a/text,"Linking Aldebaran to Fomalhaut,[pause=0.2] the Cetus constellation is one of the most diverse in terms of star systems and planets.[pause=0.5] It is part of the Orion Arm of the Milky Way.","Faisant le lien entre Aldebaran et Fomalhaut,[pause=0.2] la constellation Cetus est l'une des plus diverses en terme de systèmes stellaires et de planètes.[pause=0.5] Elle fait partie du bras Orion de la Voie Lactée." -Choice/6b/text,Why do you need me to travel through the entire planet to join you ?,Pourquoi voulez vous que je traverse la planète entière pour vous rejoindre ? -Choice/6b/disabled_text,, -Text/6c/text,Uhhhh.[pause=0.3].[pause=0.3].[pause=0.3] I need someone with your abilities.,Euuuhhhh.[pause=0.3].[pause=0.3].[pause=0.3] J'ai besoin de quelqu'un avec tes compétences. -Text/6d/text,I am having a problem at the [color=#6CDAE7]Borea[/color] base.[pause=0.5] And I cannot fix it alone.,J'ai un problème à la base [color=#6CDAE7]Borea[/color].[pause=0.5] Et je ne peux pas m'en occuper seule. -Choice/6e/text,I will do my best to be there quickly !,J'arrive au plus vite ! -Choice/6e/disabled_text,, -Text/6f/text,You are very kind [color=#FFA617]Orchid[/color] !,Tu es si gentil [color=#FFA617]Orchid[/color] ! -Choice/70/text,Are you hiding information from me ?,Me cachez vous quelque chose ? -Choice/70/disabled_text,, -Text/71/text,"Not at all ![pause=0.5] Please believe me,[pause=0.2] I just want you to join me.[pause=0.5].[pause=0.5].","Pas du tout ![pause=0.5] Crois moi je t'en prie,[pause=0.3] il faut juste que tu me rejoignes.[pause=0.3].[pause=0.3].[pause=0.3]" -Text/72/text,"Travel south,[pause=0.3] join me at [color=#6CDAE7]Borea[/color].[pause=0.5] I will tell you everything you need to know when you are here,[pause=0.3] until then,[pause=0.2] keep your best seeds and continue to [b]evolve your plants[/b],[pause=0.3] you will need them as advanced as possible.","Dirige toi vers le Nord,[pause=0.3] rejoins moi à [color=#6CDAE7]Borea[/color].[pause=0.5] Je te dirais tout ce que tu veux savoir à ce moment là.[pause=0.5] En attendant,[pause=0.2] conserve tes meilleures graines et continue de faire [b]évoluer tes plantes[/b],[pause=0.3] tu auras besoin de spécimens aussi puissants que possible." -Text/73/text,"Good luck [color=#FFA617]{orchidName}[/color],[pause=0.3] I am counting on you.","Bonne chance [color=#FFA617]{orchidName}[/color],[pause=0.3] je compte sur toi." diff --git a/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv.import b/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv.import deleted file mode 100644 index cd7c6bb..0000000 --- a/translation/dialogs/dialogic_demeter_post_tutorial_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://t1qdlkdlc1f0" - -[deps] - -files=["res://translation/dialogs/dialogic_demeter_post_tutorial_translation.en.translation", "res://translation/dialogs/dialogic_demeter_post_tutorial_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_demeter_post_tutorial_translation.csv" -dest_files=["res://translation/dialogs/dialogic_demeter_post_tutorial_translation.en.translation", "res://translation/dialogs/dialogic_demeter_post_tutorial_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_demeter_ship_failed_translation.csv b/translation/dialogs/dialogic_demeter_ship_failed_translation.csv index 0e762c6..f8d45ce 100644 --- a/translation/dialogs/dialogic_demeter_ship_failed_translation.csv +++ b/translation/dialogs/dialogic_demeter_ship_failed_translation.csv @@ -1,5 +1,5 @@ keys,en,fr -Text/11/text,Hello again !,[color=#FFA617]Orchid[/color] ! +Text/11/text,Hello again !,[b]Orchid[/b] ! Text/12/text,It seems that you ran out of energy.[pause=0.5].[pause=0.5].,On dirait que tu a été à cours d'énergie.[pause=0.3].[pause=0.3].[pause=0.3] Choice/13/text,I'm sorry...,Désolé… Choice/13/disabled_text,, diff --git a/translation/dialogs/dialogic_demeter_ship_failed_translation.csv.import b/translation/dialogs/dialogic_demeter_ship_failed_translation.csv.import index 329b550..40cdb8c 100644 --- a/translation/dialogs/dialogic_demeter_ship_failed_translation.csv.import +++ b/translation/dialogs/dialogic_demeter_ship_failed_translation.csv.import @@ -2,7 +2,7 @@ importer="csv_translation" type="Translation" -uid="uid://dapx5cls0w870" +uid="uid://n5ya7jij5vdo" [deps] diff --git a/translation/dialogs/dialogic_demeter_ship_presentation_translation.csv.import b/translation/dialogs/dialogic_demeter_ship_presentation_translation.csv.import deleted file mode 100644 index 2fafadd..0000000 --- a/translation/dialogs/dialogic_demeter_ship_presentation_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://cpkdjp4ld6dwb" - -[deps] - -files=["res://translation/dialogs/dialogic_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_demeter_ship_presentation_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_demeter_ship_presentation_translation.csv" -dest_files=["res://translation/dialogs/dialogic_demeter_ship_presentation_translation.en.translation", "res://translation/dialogs/dialogic_demeter_ship_presentation_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_mercury_arrival_translation.csv.import b/translation/dialogs/dialogic_mercury_arrival_translation.csv.import deleted file mode 100644 index 2c2fffe..0000000 --- a/translation/dialogs/dialogic_mercury_arrival_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://cwe28yuhek4do" - -[deps] - -files=["res://translation/dialogs/dialogic_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_mercury_arrival_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_mercury_arrival_translation.csv" -dest_files=["res://translation/dialogs/dialogic_mercury_arrival_translation.en.translation", "res://translation/dialogs/dialogic_mercury_arrival_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_mercury_departure_translation.csv b/translation/dialogs/dialogic_mercury_departure_translation.csv deleted file mode 100644 index 0fd0c3d..0000000 --- a/translation/dialogs/dialogic_mercury_departure_translation.csv +++ /dev/null @@ -1,17 +0,0 @@ -keys,en,fr -Text/ca/text,"Great, Orchid! I now have access to the base from the ship!","Super Orchid, j'ai maintenant accès à la base depuis le vaisseau !" -Text/cb/text,I've programmed a new destination for you in the onboard computer.,Je t'ai programmé une nouvelle destination dans l'ordinateur de bord. -Text/cc/text,"You now need to go a little further north, to a new relay base, [b]Venus Base[/b].","Tu dois maintenant aller un peu plus loin au sud, dans une nouvelle base relais, la [b]Base Vénus[/b]." -Text/cd/text,"I managed to optimize the ship, but I'm afraid it hasn't returned to its original state...","J'ai réussi à faire des optimisations sur le vaisseau, mais j'ai peur qu'il n'ait pas retrouvé son état d'origine..." -Text/ce/text,"Luckily, I've found something that might help you. I've cataloged ancient human ruins all over the planet, and some of them contain ""vending machines,"" machines for exchanging items for money.","J'ai heureusement déniché quelque chose qui pourrait t'aider. J'ai répertorié des anciennes ruines humaines un peu partout sur la planète, et dans certaines, on trouve des ""distributeurs"", des machines d'échange d'objet contre de l'argent." -Choice/cf/text,Vending machines?,Des distributeurs ? -Choice/cf/disabled_text,, -Text/d0/text,"Yes, that's where they used to get the energy they needed, for a completely unreasonable price.","Oui c'est là qu'ils récupéraient de quoi se réalimenter en énergie, pour un prix complètement déraisonnable." -Text/d1/text,"Before, real people were in charge of transactions, but for some reason, humans spent all of recent history figuring out how to encounter as few humans as possible. Maybe they couldn't stand each other anymore...","Avant, de vraies personnes étaient chargées de ces transactions, mais va savoir pourquoi les humains ont passé toute leur histoire récente à trouver comment croiser le moins d'humains possible. Peut-être qu'ils ne pouvaient plus se supporter..." -Choice/d2/text,Money?,De l'argent ? -Choice/d2/disabled_text,, -Text/d3/text,"Yes, each human had a sum of an imaginary unit they called money. They based their entire social hierarchy on this unit.","Oui, chaque humain avait une somme d'une unité imaginaire qu'ils appelaient argent. Ils basaient toute leur échelle sociale en fonction de cette unité." -Text/d4/text,"In any case, I've updated their system. They'll probably need some energy to function, but they might bring you some interesting items.","En-tout-cas, j'ai mis à jour leur système, ils auront sûrement besoin d'un peu d'énergie pour fonctionner, mais ils t'apporteront peut-être des objets intéressants." -Text/d5/text,"As usual, you can use your detector to find the entrance to these ruins.","Comme d'habitude, tu peux utiliser ton détecteur pour trouver la porte d'entrée de ces ruines." -Text/d6/text,"These artifacts will be placed on a shelf in your ship, but remember that if you ran out of energy and I have to teleport the ship, you'll lose them.","Ces artefacts seront placés sur une étagère dans le vaisseau, mais rappelle toi que si tu tombes à court d'énergie, je devrais téléporter le vaisseau et tu perdras tous les objets à l'intérieur !" -Text/d7/text,Good luck with the [b]Venus Relay Base[/b]; it's a little further than the last one.,Bon courage pour la base Vénus elle est un petit peu plus loin que la dernière. diff --git a/translation/dialogs/dialogic_mercury_departure_translation.csv.import b/translation/dialogs/dialogic_mercury_departure_translation.csv.import deleted file mode 100644 index 1a13e9f..0000000 --- a/translation/dialogs/dialogic_mercury_departure_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://ffidextkrx6y" - -[deps] - -files=["res://translation/dialogs/dialogic_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_mercury_departure_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_mercury_departure_translation.csv" -dest_files=["res://translation/dialogs/dialogic_mercury_departure_translation.en.translation", "res://translation/dialogs/dialogic_mercury_departure_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_venus_arrival_translation.csv.import b/translation/dialogs/dialogic_venus_arrival_translation.csv.import deleted file mode 100644 index 3e10adb..0000000 --- a/translation/dialogs/dialogic_venus_arrival_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://1dvsgdf72cwc" - -[deps] - -files=["res://translation/dialogs/dialogic_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_venus_arrival_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_venus_arrival_translation.csv" -dest_files=["res://translation/dialogs/dialogic_venus_arrival_translation.en.translation", "res://translation/dialogs/dialogic_venus_arrival_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_venus_departure_translation.csv b/translation/dialogs/dialogic_venus_departure_translation.csv deleted file mode 100644 index b993260..0000000 --- a/translation/dialogs/dialogic_venus_departure_translation.csv +++ /dev/null @@ -1,15 +0,0 @@ -keys,en,fr -Text/c0/text,Hello!,Bonjour ! -Choice/c1/text,Who are you?,Qui êtes vous ? -Choice/c1/disabled_text,, -Text/c2/text,"I'm the personification of the development team, and I'd like to announce to you that this part of the game isn't finished!","Je suis la personnification de l'équipe de développement, et j'aimerais t'annoncer que cette partie du jeu n'est pas finie !" -Choice/c3/text,How?,Quoi ? -Choice/c3/disabled_text,, -Choice/c4/text,What?,Comment ? -Choice/c4/disabled_text,, -Choice/c5/text,Can I be more surprised?,Pourrais-je être plus étonné ? -Choice/c5/disabled_text,, -Text/c6/text,"Don't worry, I'm extradiegetic.","Ne t'inquiète pas, je suis extra-diégétique." -Text/c7/text,"I have a surprise for you, there's one last challenge for you to play!","Cependant, j'ai une dernière surprise pour toi, un dernier challenge à te faire jouer !" -Text/c8/text,"Indeed, the next destination is an exclusive environment we're currently working on. But you'll have to earn it!","La prochaine destination est un environnement sur lequel on est en train de travailler, mais il va falloir le mériter !" -Text/c9/text,Good luck!,Bonne chance ! diff --git a/translation/dialogs/dialogic_venus_departure_translation.csv.import b/translation/dialogs/dialogic_venus_departure_translation.csv.import deleted file mode 100644 index ca52aa7..0000000 --- a/translation/dialogs/dialogic_venus_departure_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://c5n5h6i415jdp" - -[deps] - -files=["res://translation/dialogs/dialogic_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_venus_departure_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_venus_departure_translation.csv" -dest_files=["res://translation/dialogs/dialogic_venus_departure_translation.en.translation", "res://translation/dialogs/dialogic_venus_departure_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/dialogs/dialogic_wake_up_translation.csv.import b/translation/dialogs/dialogic_wake_up_translation.csv.import deleted file mode 100644 index 2c0ce4c..0000000 --- a/translation/dialogs/dialogic_wake_up_translation.csv.import +++ /dev/null @@ -1,19 +0,0 @@ -[remap] - -importer="csv_translation" -type="Translation" -uid="uid://ciqfohxlcsqxd" - -[deps] - -files=["res://translation/dialogs/dialogic_wake_up_translation.en.translation", "res://translation/dialogs/dialogic_wake_up_translation.fr.translation"] - -source_file="res://translation/dialogs/dialogic_wake_up_translation.csv" -dest_files=["res://translation/dialogs/dialogic_wake_up_translation.en.translation", "res://translation/dialogs/dialogic_wake_up_translation.fr.translation"] - -[params] - -compress=1 -delimiter=0 -unescape_keys=false -unescape_translations=true diff --git a/translation/game/gui.csv b/translation/game/gui.csv index 1d5db3c..494a0c8 100644 --- a/translation/game/gui.csv +++ b/translation/game/gui.csv @@ -3,8 +3,8 @@ TUTORIAL,Tutorial,Tutoriel ICONS_MEANINGS,Icons Meanings,Signification des Icônes PLANT_POINTS,Plant points,Points de plante DAYS,Days,Jours -GROWING_TIME,Growing time (in days),Temps de pousse (en jour) -LIFETIME,Lifetime (in days),Durée de vie (en jour) +GROWING_TIME,Day of maturation,Jour de maturation +LIFETIME,Day of death,Jour de mort SEEDS,Seeds,Graines TERRAINS,Terrains,Terrains FERTILE_LAND_TEXT,[b]Fertile Land[/b] Seeds can only be planted on this zone,[b]Terre fertile[/b] Des graines peuvent être plantées dans cette zone @@ -70,7 +70,7 @@ SOCIABLE_EFFECT_TEXT,"When mature, grants [b]{score_increase}[/b]{score_icon} ev TOUGH,Tough,Solide TOUGH_EFFECT_TEXT,Multiplies {score_icon} by [b]{score_multiplier}[/b] and add [b]{growing_time}[/b]{growing_icon},"Multiplie {score_icon} par [b]{score_multiplier}[/b] et ajoute [b]{growing_time}[/b]{growing_icon}" FERTILE,Fertile,Fertile -FERTILE_EFFECT_TEXT,Add [b]{seed_buff}[/b]{seed_icon} to all nearby plant but [b]{score_change}[/b]{score_icon} to itself,Ajoute [b]{seed_buff}[/b]{seed_icon} à toutes les plantes autour mais [b]{score_change}[/b]{score_icon} pour elle même +FERTILE_EFFECT_TEXT,"When mature, add [b]{seed_buff}[/b]{seed_icon} to all nearby plant but [b]{score_change}[/b]{score_icon} to itself","Si mature, ajoute [b]{seed_buff}[/b]{seed_icon} à toutes les plantes autour mais [b]{score_change}[/b]{score_icon} pour elle même" PURIFICATION,Purification,Purification PURIFICATION_EFFECT_TEXT,"When mature, create fertile zone in a radius of [b]{purification_radius}[/b]","Une fois mature, créée une zone fertile dans un rayon de [b]{purification_radius}[/b]" HURRIED,Hurried,Pressé @@ -113,30 +113,48 @@ OPEN,Open,Ouvrir PLANT_%s_MUST_BE_USED_IN_DECONTAMINATED_ZONE,Plant [b]%s[/b]. Must be used in the fertile zone.,Plante [b]%s[/b]. Doit être utilisée dans la zone fertile. PLANT_%s,Plant [b]%s[/b],Planter [b]%s[/b] MOVE_WITH_RIGHT_CLICK_OR_WASD,"Move with right click or WASD","Déplace-toi avec le clic droit ou ZQSD" +INTERACT_WITH_LEFT_CLICK,"Interact with left click","Interagis avec le clic gauche" CHANGE_ZOOM_WITH_Z_X,"Change the zoom with Z and X","Changez le zoom avec W et X" SELECT_ITEM_WITH_SCROLL_CLICK_OR_NUMBER,"Select an item in your toolbar with the mouse wheel or by clicking on it","Sélectionne un item dans ta barre d'outil en utilisant la molette ou en cliquant dessus" LEFT_CLICK_TO_USE_ITEMS,"Use an item with left click","Utilise un item avec le clic gauche" DROP_SEED_WITH_KEY,"Drop current item with Q","Lâche l'item sélectionné avec A" USE_YOUR_DETECTOR_TO_FIND_THE_BATTERY,Use your [b]Detector[/b] to find the [b]Recharge station[/b],Utilise ton [b]Détecteur[/b] pour trouver la [b]Station de recharge[/b] RECHARGE_IN_THE_RECHARGE_STATION,Recharge on the [b]Recharge station[/b] to pass the day,Se recharger sur la [b]Station de recharge[/b] pour passer la journée -TAKE_A_SEED_BY_CLICKING_ON_IT,Take a [b]Seed[/b] by clicking on it,Prend une [b]Graine[/b] en cliquant dessus -DIG_A_TALION_VEIN_WITH_SHOVEL,Dig a [b]Talion Vein[/b] with the [b]Pickaxe[/b],Creuser un [b]Filon de Talion[/b] avec la [b]Pioche[/b] +TAKE_A_SEED_BY_CLICKING_ON_IT,Take a [b]Seed[/b] by clicking or moving over it,Prend une [b]Graine[/b] en cliquant ou en passant dessus +DIG_A_TALION_VEIN_WITH_SHOVEL,Dig a [b]Talion Vein[/b] with the [b]Pickaxe[/b],Creuser une [b]Veine de Talion[/b] avec la [b]Pioche[/b] PLANT_SEED_IN_FERTILE_ZONE,Plant a [b]Seed[/b] in the [b]Fertile Zone[/b],Planter une [b]Graine[/b] dans la [b]Zone Fertile[/b] -GAIN_FIRST_PLANT_POINT,Earn your first [b]Plant Point[/b] while waiting for a plant to [b]Mature[/b] (recharging will pass days),Gagnez votre premier [b]Point de Plante[/b] en attendant qu'une plante soit [b]Mature[/b] (se recharger fera passer les jours) +WAIT_FOR_THE_PLANT_MATURATION,Wait for the plant to [b]Mature[/b] (recharging will pass days),Attendez que la plante soit [b]Mature[/b] (se recharger fera passer les jours) HARVEST_A_MATURE_PLANT,Harvest a [b]Mature Plant[/b] using your [b]Fork[/b],Récoltez une [b]Plante Mature[/b] en utilisant votre [b]Fourche[/b] TAKE_HARVESTED_SEEDS,Take the harvested seeds,Prenez les graines récoltées -PLANT_NAME_TEXT,"[b]Plant name and state[/b] Each plant species has a unique name and can have 2 states: juvenile or mature","[b]Nom et état de la plante[/b] Chaque espèce de plantes a un nom unique et chaque plante peut avoir deux états : juvénile ou mature" +HAVE_3_PLANT_POINTS_SIMULTANEOUSLY,Reach 3 plant points,Atteignez 3 points de plantes +ENERGY,The Energy,L'Énergie +USE_AND_RECHARGE,Use it and recharge,L'utiliser et se recharger +SOME_ACTION_NEED_ENERGY,"Some action needs energy, like digging or planting.","Certaines actions demandent de l'énergie, comme creuser ou planter." +ENERGY_UI_DESC_TEXT,"You can see your energy in the top left of the screen","Vous pouvez voir votre énergie en haut à gauche de l'écran" +RECHARGE_STATION_TUTORIAL_DESC_TEXT,"You can recharge all of your energy in the [b]Recharge station[/b], but it will pass a day.", "Vous pouvez recharger toute votre énergie à la [b]Station de Recharge[/b], mais cela prendra une journée." +PLANT_NAME_TEXT,"[b]Plant name and state[/b] Each plant species has a unique name.","[b]Nom et état de la plante[/b] Chaque espèce de plantes a un nom unique." PLANT_STATS_TEXT,"[b]Plant stats[/b] Here you can see your plant's age, the day of maturation, the lifetime, and the seed number that the plant can produce","[b]Statistiques[/b] Ici, vous pouvez voir l'âge de votre plante, le jour de maturation, le temps de vie et le nombre de graine que la plante donne" -PLANTS_INFO,"Plants info","Information des plantes" -OBTAIN_INFORMATION_ON_PLANTS_WHILE_HOVERING_PLANTS_BASE,"Obtain information on plants while hovering over the plant base","Obtenez des informations sur les plantes en survolant leur base" +PLANTS_INFO,"The Plants","Les plantes" +EACH_PLANT_HAVE_3_STATE,"Each plant have three state","Chaque plante a trois états" +JUVENILE_DESC_TEXT,"[b]Juvenile[/b] The plant is growing, we can recover its seed with the [b]Fork[/b].","[b]Juvenile[/b] La plante grandit, il est possible de récupérer sa graine avec la [b]Fourche[/b]." +MATURE_DESC_TEXT,"[b]Mature[/b] Have one [b]Plant point[/b]","[b]Mature[/b] Possède un [b]Point de Plante[/b]." +DEAD_DESC_TEXT,"[b]Dead[/b] When harvested or when exceeding their lifetime, each plant dies and produce two [b]Seeds[/b].","[b]Morte[/b] Lors de la récolte ou lorsque leur durée de vie est arrivée à son terme, chaque plante meurt et produit deux [b]Graines[/b]." +OBTAIN_INFORMATION_ON_PLANTS_WHILE_HOVERING_PLANTS_BASE,"Hover the plants to obtain information","Obtenez des informations sur les plantes en les survolant" +THE_PLANT_POINTS,"The Plant Points","Les Points de Plantes" +HOW_TO_GET_PLANT_POINTS,"How to get Plant Points","Comment avoir des Points de Plantes" +PLANT_POINTS_TUTORIAL_DESC_TEXT,"Each mature plant have one [b]Plant Point[/b], you can see your progress on your [b]Objective[/b] in the top of the screen. This number represent the [b]active number of Plant Points in your garden[/b]. Dead or harvested plants are therefore no longer included in this number.","Chaque plante mature possède un [b]Point de Plante[/b]. Vous pouvez suivre votre progression dans votre [b]Objectif[/b] en haut de l'écran. Ce nombre représente le [b]nombre de Points de Plante actifs dans votre jardin[/b]. Les plantes mortes ou récoltées ne sont donc plus comptabilisées." PLANT_MUTATION_TEXT,"[b]Mutations[/b] Mutation change the plant behavior. These mutations are transmitted between generations, where they can change or evolve superior levels","[b]Mutations[/b] Les mutations changent le comportement de la plante. Ces mutations se transmettent entre les générations, et peuvent changer ou évoluer aux niveaux supérieurs" -MUTATIONS,Mutations,Mutations +SHOW_ENERGY_TUTORIAL,"Show energy tutorial","Montrer le tutoriel de l'énergie" +SHOW_PLANT_TUTORIAL,"Show plant tutorial","Montrer le tutoriel des plantes" +SHOW_MUTATION_TUTORIAL,"Show mutation tutorial","Montrer le tutoriel des mutations" +SHOW_PLANT_POINT_TUTORIAL,"Show plant point tutorial","Montrer le tutoriel des points de plantes" +THE_MUTATIONS,The Mutations,Les Mutations MUTATION,Mutation,Mutation SEEDS_HAVE_A_CHANCE_TO_GAIN_MUTATIONS,"Seeds have a chance to gain mutations","Les graines ont une chance de gagner des mutations" -PLANT_SCORE_TEXT,"[b]Score[/b] By default, each plant get 1 score when mature","[b]Score[/b] Par défaut, chaque plante gagne 1 de score à la maturation" +PLANT_SCORE_TEXT,"[b]Plant Points[/b] By default, each plant get 1 plant point when mature","[b]Points de plantes[/b] Par défaut, chaque plante gagne 1 de point de plante à la maturation" %d_PLANT_POINT,%d Plant Point,%d Point de plante %d_PLANT_POINTS,%d Plant Points,%d Points de plante -SCORE_%d,Score %d,Score %d +SCORE_%d,Plant Points %d,Points de plantes %d ENTER,Enter,Entrer EXIT,Exit,Sortie EXIT_TRUCK,Exit truck,Sortir du camion @@ -145,14 +163,19 @@ RECHARGE_STATION,Recharge station,Station de recharge RECHARGE,Recharge,Recharger RECHARGE_STATION_DESC_TEXT,"[b]You can recharge yourself here.[/b] When recharging, time pass and plants grow.","[b]Tu peux te recharger ici.[/b] Pendant la recharge, le temps passe et les plantes grandissent." TALION_CRISTAL,Talion Crystal,Cristal de Talion -TALION_CRISTAL_DESC_TEXT,"A pure form of Talion, cannot be break or used","Une forme pure de Talion, ne peut être cassé ou utilisé" +TALION_CRISTAL_DESC_TEXT,"A pure form of Talion, cannot be broken or used","Une forme pure de Talion, ne peut être cassé ou utilisé" +TALION_CELL,Talion Cell,Cellule de Talion +TALION_CELL_DESC_TEXT,"This cell is filled with liquid form of Talion, let's see what's inside!","Cette cellule est remplie d'une forme liquide de Talio, voyons ce qu'il y a à l'intérieur !" +ENERGY_CELL,Energy Cell,Cellule d'énergie +ENERGY_CELL_DESC_TEXT,"Some energy remain on this cell... Might be usefull.","De l'énergie reste dans cette cellule... Cela pourra être utile." +OPEN,Open,Ouvrir COMPOST,Compost,Compost START,Start,Commencer HELP,Help,Aide CONTINUE,Continue,Continuer CHOOSE_A_LANGUAGE,Choose a language,Choisissez une langue NO_ENERGY_LEFT," (no energy left)", " (pas d'énergie restante)" -%d_GARDEN_SCORE_LEFT,"%d garden score left","%d score de jardin restant" +%d_GARDEN_SCORE_LEFT,"%d plant point left","%d point de plante restant" SETTINGS,Settings,Paramètres LANGUAGE,Language,Langage SOUND,Sound,Son @@ -213,17 +236,23 @@ NO_RECHARGE_LEFT,"No recharge left, go to the ship to respawn","Pas de recharge SHIP_ACQUIRED,Ship Acquired,Vaisseau Acquis USE_THE_SHIP_TO_TRAVEL_ACROSS_THE_PLANET,"Use the ship to travel across the planet","Utilisez le vaisseau pour voyager sur la planète" JUMP_BETWEEN_REGION_TEXT,"[b]Jump between regions[/b] Use the ship dashboard to choose the next region between two choices","[b]Changez de région[/b] Utilisez le tableau de bord pour changer de région parmi deux choix" -RECHARGE_YOUR_SHIP_WITH_PLANT_SCORE_TEXT,"[b]Recharge your ship with plant score[/b] The Internode has fuel for only one jump; recharge it with plants on the planet","[b]Rechargez votre vaisseau avec les scores de plantes[/b] L'Internode a du carburant pour un seul changement, rechargez le en plantant sur la planète" +RECHARGE_YOUR_SHIP_WITH_PLANT_SCORE_TEXT,"[b]Recharge your ship with plant point[/b] The Internode has fuel for only one jump; recharge it with plants on the planet","[b]Rechargez votre vaisseau avec les points de plantes[/b] L'Internode a du carburant pour un seul changement, rechargez le en plantant sur la planète" OUT_OF_ENERGY,Out of energy,À court d'énergie USE_THE_BACKUP_DEVICE_TO_RESPAWN_TO_LAST_BASE,Use the backup device to respawn to last base,Utilisez l'appareil de sauvegarde pour réapparaitre à la dernière base STEP_ON_THE_DATA_SAVER_TEXT,[b]Step on the backup device to use it[/b] You can use it at any time.,[b]Déplacez-vous sur l'appareil de sauvegarde pour l'utiliser[/b] Vous pouvez l'utiliser à tout moment RESTART_FROM_LAST_BASE_WITHOUT_SEEDS_TEXT,[b]Restart from last base without any seeds[/b] You will also lose all artefacts found.,[b]Recommencer à partir de la dernière base sans aucune graine[/b] Vous perdrez également tous les artefacts trouvés. COLLECT_YOUR_SEEDS_AND_TAKE_OFF,Collect your seeds and take off with the ship,Collectez vos graines et décollez avec le vaisseau SAVE_ORCHID_MEMORY_AND_RESPAWN,Save Orchid Memory and respawn,Sauvegarder la mémoire d'Orchid et recommencer +CONFIRM_RESPAWN,"Confirm respawn ? (You'll lose seed and current travel progression)","Confirmer la réapparition ? (Vous perdrez vos graines et la progression du voyage en cours)" DOWNLOAD_ORCHID_DATA_TO_LOCAL_SERVERS,Download Orchid data to local servers,Télécharger les données d'Orchid sur les serveurs locaux TUTORIAL_FINISHED,Tutorial finished,Tutoriel terminé CHOOSE_NEXT_STOP,Choose next stop,Choisissez le prochain arrêt THANKS_FOR_PLAYING,Thanks for playing!,Merci d'avoir joué ! +THANKS_FOR_PLAYING_DEMO,Thanks for playing to the demo!,Merci d'avoir joué à la démo ! +TWICE_MORE_MUTATIONS,Twice more mutations,Deux fois plus de mutations +A_3_4_HOURS_STORY,A 3 to 4 hours long story,Une histoire sur 3 à 4 heures de gameplay +AN_INFINITE_MODE,An infinite mode,Un mode infini +IN_THE_COMPLETE_GAME,In the complete game,Dans le jeu complet JOIN_OUR_INSTAGRAM,Join our Instagram,Rejoins-nous sur Instagram WHISHLIST_THE_GAME,Whishlist the game on Steam,Ajoutez le jeu à votre liste de souhait TAKE_A_QUICK_SURVEY,Take a quick survey,Répondez à un court sondage @@ -271,6 +300,8 @@ HUMID,Humid,Humide HUMID_MODIFIER_DESC_TEXT,Reduce the number of [b]Recharge[/b],Réduit le nombre de [b]Recharge[/b] POOR,Poor,Pauvre POOR_MODIFIER_DESC_TEXT,Reduce the number of [b]Talion Veins[/b],Réduit le nombre de [b]Veine de Talion[/b] +CANYON,Canyon,Canyon +CANYON_MODIFIER_DESC_TEXT,Increase the rock zone size in the region,Augmente la taille des zones de roches dans cette région ROCKY,Rocky,Rocheux ROCKY_MODIFIER_DESC_TEXT,There is no [b]Talion Veins[/b] in the area,Aucune [b]Veine de Talion[/b] dans la zone TOXIC,Toxic,Toxique @@ -278,7 +309,7 @@ TOXIC_MODIFIER_DESC_TEXT,Reduce all plant lifetime by 1,Réduit la durée de vie SANDY,Sandy,Sableux SANDY_MODIFIER_DESC_TEXT,Reduce plants influence radius,Réduit le rayon d'influence des plantes RADIOACTIVE,Radioactive,Radioactif -RADIOACTIVE_MODIFIER_DESC_TEXT,Reduce the plant's base score by 1,Réduit le score de base des plantes de 1 +RADIOACTIVE_MODIFIER_DESC_TEXT,Reduce the plant's base plant point by 1,Réduit les points de plantes de base des plantes de 1 CONTAMINATED,Contaminated,Contaminée CONTAMINATED_MODIFIER_DESC_TEXT,Decrease all plants seeds production by one,Diminue la production de graine de 1 MAGNETIC,Magnetic,Magnétique @@ -328,4 +359,5 @@ VENDING_MACHINE_ROOM,Vending Machine Room,Local de Distributeur VENDING_MACHINES_DOOR_DESC_TEXT,"An ancient room filled with old vending machines","Une pièce ancienne remplie de vieux distributeurs" CRISTAL_CAVE,Crystal Cave,Caverne aux Cristaux CRISTAL_CAVE_DOOR_DESC_TEXT,Leads to a deep cave with Talion crystals inside,Mène à une caverne profonde avec des cristaux de Talion à l'intérieur -THANK_YOU_FOR_YOUR_PURCHASE,Thank you for your purchase,Merci pour votre achat \ No newline at end of file +CONNECT_TO_DEMETER,Connect to Demeter,Se connecter à Demeter +THANK_YOU_FOR_YOUR_PURCHASE,Thank you for your purchase,Merci pour votre achat