From 245be98856d5a377eb77d4762345fe641a74f8d5 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 20 Nov 2023 19:29:52 +0100 Subject: [PATCH] Add unit tests CURA-11362 --- CMakeLists.txt | 2 +- src/SkeletalTrapezoidation.cpp | 62 +- src/WallsComputation.cpp | 59 + tests/CMakeLists.txt | 1 + tests/ReadTestSettings.cpp | 43 + tests/ReadTestSettings.h | 13 + tests/VoronoiCrashTest.cpp | 137 ++ .../voronoi_crash_resources/settings_001.txt | 637 ++++++++++ .../voronoi_crash_resources/settings_002.txt | 1090 ++++++++++++++++ .../voronoi_crash_resources/settings_003.txt | 1091 ++++++++++++++++ .../voronoi_crash_resources/settings_004.txt | 1091 ++++++++++++++++ .../voronoi_crash_resources/settings_005.txt | 1092 ++++++++++++++++ .../voronoi_crash_resources/settings_006.txt | 1092 ++++++++++++++++ .../voronoi_crash_resources/settings_007.txt | 1092 ++++++++++++++++ .../voronoi_crash_resources/settings_008.txt | 1114 +++++++++++++++++ .../voronoi_crash_resources/settings_009.txt | 1114 +++++++++++++++++ .../voronoi_crash_resources/settings_010.txt | 1114 +++++++++++++++++ .../voronoi_crash_resources/settings_011.txt | 1089 ++++++++++++++++ .../slice_polygon_001.wkt | 1 + .../slice_polygon_002.wkt | 1 + .../slice_polygon_003.wkt | 1 + .../slice_polygon_004.wkt | 1 + .../slice_polygon_005.wkt | 1 + .../slice_polygon_006.wkt | 1 + .../slice_polygon_007.wkt | 1 + .../slice_polygon_008.wkt | 1 + .../slice_polygon_009.wkt | 1 + .../slice_polygon_010.wkt | 1 + .../slice_polygon_011.wkt | 1 + 29 files changed, 11937 insertions(+), 7 deletions(-) create mode 100644 tests/ReadTestSettings.cpp create mode 100644 tests/ReadTestSettings.h create mode 100644 tests/VoronoiCrashTest.cpp create mode 100644 tests/voronoi_crash_resources/settings_001.txt create mode 100644 tests/voronoi_crash_resources/settings_002.txt create mode 100644 tests/voronoi_crash_resources/settings_003.txt create mode 100644 tests/voronoi_crash_resources/settings_004.txt create mode 100644 tests/voronoi_crash_resources/settings_005.txt create mode 100644 tests/voronoi_crash_resources/settings_006.txt create mode 100644 tests/voronoi_crash_resources/settings_007.txt create mode 100644 tests/voronoi_crash_resources/settings_008.txt create mode 100644 tests/voronoi_crash_resources/settings_009.txt create mode 100644 tests/voronoi_crash_resources/settings_010.txt create mode 100644 tests/voronoi_crash_resources/settings_011.txt create mode 100644 tests/voronoi_crash_resources/slice_polygon_001.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_002.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_003.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_004.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_005.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_006.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_007.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_008.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_009.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_010.wkt create mode 100644 tests/voronoi_crash_resources/slice_polygon_011.wkt diff --git a/CMakeLists.txt b/CMakeLists.txt index 27fcdf5bd89..8c2aabc528d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -244,7 +244,7 @@ target_compile_definitions(CuraEngine PRIVATE VERSION=\"${CURA_ENGINE_VERSION}\" # Compiling the test environment. if (ENABLE_TESTING OR ENABLE_BENCHMARKS) - set(TESTS_HELPERS_SRC tests/ReadTestPolygons.cpp) + set(TESTS_HELPERS_SRC tests/ReadTestPolygons.cpp tests/ReadTestSettings.cpp) set(TESTS_SRC_ARCUS) if (ENABLE_ARCUS) diff --git a/src/SkeletalTrapezoidation.cpp b/src/SkeletalTrapezoidation.cpp index c391b0d4f61..0ec911a1ea1 100644 --- a/src/SkeletalTrapezoidation.cpp +++ b/src/SkeletalTrapezoidation.cpp @@ -17,6 +17,7 @@ #include #include #include +#include #define SKELETAL_TRAPEZOIDATION_BEAD_SEARCH_MAX \ 1000 // A limit to how long it'll keep searching for adjacent beads. Increasing will re-use beadings more often (saving performance), but search longer for beading (costing @@ -395,27 +396,61 @@ SkeletalTrapezoidation::SkeletalTrapezoidation( constructFromPolygons(polys); } +static int file_index = 0; + void SkeletalTrapezoidation::constructFromPolygons(const Polygons& polys) { + Polygons polys2; + { + std::stringstream buffer; + polys.writeWkt(buffer); + if (buffer.str().empty()) + { + polys2 = polys; + } + else + { + polys2 = Polygons::fromWkt(buffer.str()); + } + } + vd_edge_to_he_edge.clear(); vd_node_to_he_node.clear(); std::vector points; // Remains empty std::vector segments; - for (size_t poly_idx = 0; poly_idx < polys.size(); poly_idx++) + for (size_t poly_idx = 0; poly_idx < polys2.size(); poly_idx++) { - ConstPolygonRef poly = polys[poly_idx]; + ConstPolygonRef poly = polys2[poly_idx]; for (size_t point_idx = 0; point_idx < poly.size(); point_idx++) { - segments.emplace_back(&polys, poly_idx, point_idx); + segments.emplace_back(&polys2, poly_idx, point_idx); } } - vd_t vonoroi_diagram; - construct_voronoi(segments.begin(), segments.end(), &vonoroi_diagram); + vd_t voronoi_diagram; + construct_voronoi(segments.begin(), segments.end(), &voronoi_diagram); - for (vd_t::cell_type cell : vonoroi_diagram.cells()) + { + AABB aabb; + for (const auto& poly: polys2) + { + for (const auto& p: poly) + { + aabb.include(p); + } + } + aabb.expand(1000); + SVG svg("filename" + std::to_string(file_index) + ".svg", aabb); + svg.writePolygons(polys); + svg.writeVoronoiDiagram(voronoi_diagram); + } + + + file_index ++; + + for (vd_t::cell_type cell : voronoi_diagram.cells()) { if (! cell.incident_edge()) { // There is no spoon @@ -478,6 +513,21 @@ void SkeletalTrapezoidation::constructFromPolygons(const Polygons& polys) separatePointyQuadEndNodes(); +// { +// AABB aabb; +// for (const auto& poly: polys2) +// { +// for (const auto& p: poly) +// { +// aabb.include(p); +// } +// } +// aabb.expand(1000); +// SVG svg("filename_skeltal_trapezoidation_graph" + std::to_string(file_index) + ".svg", aabb); +// svg.writePolygons(polys); +// svg.writeSkeletalTrapezoidationGraph(graph); +// } + graph.collapseSmallEdges(); // Set [incident_edge] the the first possible edge that way we can iterate over all reachable edges from node.incident_edge, diff --git a/src/WallsComputation.cpp b/src/WallsComputation.cpp index 09dfa368eda..76d55accc47 100644 --- a/src/WallsComputation.cpp +++ b/src/WallsComputation.cpp @@ -1,6 +1,15 @@ // Copyright (c) 2023 UltiMaker // CuraEngine is released under the terms of the AGPLv3 or higher +#include +#include + +#include +#include +#include +#include +#include + #include "WallsComputation.h" #include "Application.h" #include "ExtruderTrain.h" @@ -84,6 +93,56 @@ void WallsComputation::generateWalls(SliceLayerPart* part, SectionType section_t */ void WallsComputation::generateWalls(SliceLayer* layer, SectionType section) { + // TODO remove this block before merging PR! + // This code exists to generate the test wkt, and setting files + { + std::ofstream SettingsFile("settings.txt"); + SettingsFile.clear(); + for (auto [key, value]: settings.getFlattendSettings()) + { + if (value == "") + { + continue; + } + SettingsFile << key << "=" << value << std::endl; + } + SettingsFile.close(); + + std::ofstream PolygonFile("slice_polygon.wkt"); + PolygonFile.clear(); + + std::vector multi_polygons; + for (const auto& part : layer->parts) + { + multi_polygons.push_back(part.outline); + } + + PolygonFile << "MULTIPOLYGON ("; + const auto paths_str + = multi_polygons + | ranges::views::transform([](const auto& path) { + const auto path_str + = path + | ranges::views::transform([](const auto& path) { + const auto path_str + = path + | ranges::views::transform([](const auto& point) { return fmt::format("{} {}", point.X, point.Y); }) + | ranges::views::join(ranges::views::c_str(", ")) | ranges::to(); + return "(" + path_str + ")"; + }) + | ranges::views::join(ranges::views::c_str(" ")) + | ranges::to(); + return "(" + path_str + ")"; + }) + | ranges::views::join(ranges::views::c_str(", ")) + | ranges::to(); + + PolygonFile << paths_str; + PolygonFile << ")"; + + PolygonFile.close(); + } + for(SliceLayerPart& part : layer->parts) { generateWalls(&part, section); diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1e36893cee6..92543609e69 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -14,6 +14,7 @@ set(TESTS_SRC_BASE PathOrderMonotonicTest TimeEstimateCalculatorTest WallsComputationTest + VoronoiCrashTest ) set(TESTS_SRC_INTEGRATION diff --git a/tests/ReadTestSettings.cpp b/tests/ReadTestSettings.cpp new file mode 100644 index 00000000000..8c384e50538 --- /dev/null +++ b/tests/ReadTestSettings.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2023 UltiMaker +// CuraEngine is released under the terms of the AGPLv3 or higher. + +#include "ReadTestSettings.h" +#include +#include + +namespace cura +{ + +bool readTestSettings(const std::string& filename, Settings& settings) +{ + spdlog::info("filename: {}", filename); + + FILE* handle = std::fopen(filename.c_str(), "r"); + if (! handle) + { + spdlog::error("Failed to open file: {}", filename); + return false; + } + + while (true) + { + char key[100]; + char value[100]; + + int read = std::fscanf(handle, "%[a-zA-Z0-9_]=%[][a-zA-Z0-9_-.,:()/; ]\n", key, value); + + if (read == EOF) + { + break; + } + else if (read <= 0) + { + return false; + } + + settings.add(std::string(key), std::string(value)); + } + + return true; +} +} // namespace cura \ No newline at end of file diff --git a/tests/ReadTestSettings.h b/tests/ReadTestSettings.h new file mode 100644 index 00000000000..63f8d6d6fd5 --- /dev/null +++ b/tests/ReadTestSettings.h @@ -0,0 +1,13 @@ + +// Copyright (c) 2023 UltiMaker +// CuraEngine is released under the terms of the AGPLv3 or higher. + + +#include "settings/Settings.h" +#include +#include + +namespace cura +{ +bool readTestSettings(const std::string& filename, Settings& settings_out); +} \ No newline at end of file diff --git a/tests/VoronoiCrashTest.cpp b/tests/VoronoiCrashTest.cpp new file mode 100644 index 00000000000..d7cb2fdff6a --- /dev/null +++ b/tests/VoronoiCrashTest.cpp @@ -0,0 +1,137 @@ +// Copyright (c) 2023 UltiMaker +// CuraEngine is released under the terms of the AGPLv3 or higher + +#include +#include +#include +#include + +#include "WallsComputation.h" //Unit under test. +#include "ReadTestSettings.h" +#include "settings/Settings.h" //Settings to generate walls with. +#include "sliceDataStorage.h" //Sl +#include "utils/polygon.h" //To create example polygons. + +#include +#include +#include +#include + +#include +#include + +namespace cura +{ + +class VoronoiCrashTest : public testing::TestWithParam> +{ +public: +}; + +std::vector multiPolygonsFromWkt(const std::string& wkt) +{ + typedef boost::geometry::model::d2::point_xy point_type; + typedef boost::geometry::model::polygon polygon_type; + typedef boost::geometry::model::multi_polygon multi_polygon_type; + + multi_polygon_type boost_polygons {}; + boost::geometry::read_wkt(wkt, boost_polygons); + + std::vector polygons; + + for (const auto& boost_polygon: boost_polygons) + { + Polygons polygon; + + Polygon outer; + for (const auto& point: boost_polygon.outer()) + { + outer.add(Point(point.x(), point.y())); + } + polygon.add(outer); + + for (const auto& hole: boost_polygon.inners()) + { + Polygon inner; + for (const auto& point: hole) + { + inner.add(Point(point.x(), point.y())); + } + polygon.add(inner); + } + + polygons.push_back(polygon); + } + return polygons; +} + +/*! + * + */ +TEST_P(VoronoiCrashTest, SectionsTest) +{ + const auto params = GetParam(); + const std::string polygon_file = std::get<0>(params); + const std::string setting_file = std::get<1>(params); + + spdlog::info("Testing polygon: {}", polygon_file); + spdlog::info("Testing with settings: {}", setting_file); + + std::ifstream file(polygon_file); + std::ostringstream ss; + ss << file.rdbuf(); + const auto shapes = multiPolygonsFromWkt(ss.str()); + + Settings settings; + auto read_settings = readTestSettings(setting_file, settings); + ASSERT_TRUE(read_settings); + + size_t wall_count = settings.get("wall_line_count"); + spdlog::info("wall_count: {}", wall_count); + + SliceLayer layer; + for (const Polygons& shape : shapes) + { + layer.parts.emplace_back(); + SliceLayerPart& part = layer.parts.back(); + part.outline.add(shape); + } + + LayerIndex layer_idx(100); + WallsComputation walls_computation(settings, layer_idx); + + walls_computation.generateWalls(&layer, SectionType::WALL); +} + + +const std::vector polygon_filenames = { + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_001.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_002.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_003.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_004.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_005.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_006.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_007.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_008.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_009.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_010.wkt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/slice_polygon_011.wkt").string(), +}; + +const std::vector setting_filenames = { + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_001.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_002.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_003.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_004.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_005.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_006.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_007.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_008.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_009.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_010.txt").string(), + std::filesystem::path(__FILE__).parent_path().append("voronoi_crash_resources/settings_011.txt").string(), +}; + +INSTANTIATE_TEST_SUITE_P(TestCrashingPolygons, VoronoiCrashTest, testing::Combine(testing::ValuesIn(polygon_filenames), testing::ValuesIn(setting_filenames))); + +} // namespace cura \ No newline at end of file diff --git a/tests/voronoi_crash_resources/settings_001.txt b/tests/voronoi_crash_resources/settings_001.txt new file mode 100644 index 00000000000..06260516821 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_001.txt @@ -0,0 +1,637 @@ +wall_x_material_flow_roofing=97 +interlocking_depth=2 +machine_nozzle_size=0.4 +quality_changes_name=empty +raft_interface_line_width=1.2 +small_skin_on_surface=False +speed_support=96.0 +bridge_fan_speed_3=0 +ironing_inset=0.38 +meshfix_fluid_motion_small_distance=0.01 +jerk_wall_x=12.5 +cool_min_layer_time_fan_speed_max=11 +raft_fan_speed=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +ooze_shield_dist=2 +interlocking_beam_layer_count=2 +raft_base_acceleration=300 +wall_extruder_nr=-1 +connect_infill_polygons=False +small_feature_speed_factor_0=50 +roofing_line_width=0.4 +material_break_retracted_position=-50 +material_initial_print_temperature=250 +jerk_skirt_brim=12.5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_line_width=0.3 +ooze_shield_enabled=False +retraction_min_travel=1.6 +acceleration_layer_0=300 +retraction_retract_speed=5 +support_bottom_line_distance=2.5 +support_interface_wall_count=2 +material_shrinkage_percentage=100.0 +raft_interface_jerk=12.5 +material_bed_temperature=95 +support_tree_rest_preference=graceful +prime_tower_min_volume=6 +sub_div_rad_add=0.4 +speed_wall_0_roofing=45 +bottom_skin_preshrink=0 +min_feature_size=0.1 +brim_replaces_support=True +support_interface_skip_height=0.2 +prime_tower_wipe_enabled=True +gantry_height=320 +material_surface_energy=70 +bridge_skin_material_flow=97 +clean_between_layers=False +skin_angles=[] +machine_steps_per_mm_z=50 +minimum_support_area=0.1 +roofing_monotonic=True +skin_overlap_mm=0.0 +small_feature_max_length=0.0 +bottom_thickness=1.0 +jerk_wall=12.5 +bridge_skin_support_threshold=50 +machine_extruder_count=2 +jerk_support_roof=12.5 +wall_0_material_flow_roofing=97 +skirt_gap=3 +meshfix=0 +acceleration_skirt_brim=300 +nozzle_offsetting_for_disallowed_areas=False +z_seam_position=backright +raft_surface_speed=55 +support_interface_height=0.4 +support_tower_roof_angle=0 +extruder_prime_pos_z=0 +roofing_angles=[] +jerk_ironing=12.5 +infill_wipe_dist=0 +speed_wall_x_roofing=65 +machine_max_feedrate_e=45 +prime_tower_line_width=1 +jerk_wall_x_roofing=12.5 +acceleration_wall_0_roofing=300 +material_extrusion_cool_down_speed=0.7 +wall_transition_angle=10 +infill_support_enabled=False +cool_fan_speed_0=0 +blackmagic=0 +support_brim_line_count=3 +adhesion_type=raft +brim_line_count=13 +support_roof_line_distance=0.25773195876288657 +support_interface_enable=True +bridge_skin_density_3=100 +center_object=False +skirt_brim_line_width=0.4 +cool_fan_full_layer=1 +raft_interface_layers=2 +adaptive_layer_height_variation=0.1 +hole_xy_offset_max_diameter=0 +raft_airgap=0.3 +wall_distribution_count=1 +prime_tower_brim_enable=True +gradual_infill_step_height=1.5 +top_skin_preshrink=0 +minimum_roof_area=1.0 +machine_max_jerk_z=0.4 +support_tree_angle=50 +infill_material_flow=97 +support_structure=normal +wall_transition_filter_distance=100 +raft_interface_fan_speed=0.0 +material_break_preparation_retracted_position=-16 +infill_mesh=False +layer_height=0.2 +meshfix_extensive_stitching=False +magic_fuzzy_skin_thickness=0.3 +bottom_layers=5 +infill_multiplier=1 +support_skip_zag_per_mm=20 +support_interface_line_width=0.4 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +resolution=0 +speed_print=120.0 +optimize_wall_printing_order=True +line_width=0.4 +machine_minimum_feedrate=0.0 +raft_base_speed=5 +support_angle=50 +ironing_pattern=zigzag +layer_0_z_overlap=0.15 +speed_travel=250.0 +wall_line_width=0.4 +support_brim_enable=False +cool_fan_full_at_height=0 +acceleration_print_layer_0=300 +machine_extruders_share_heater=False +speed_wall_0=45 +cool_lift_head=False +raft_interface_acceleration=300 +raft_surface_fan_speed=0 +machine_center_is_zero=True +extruders_enabled_count=2 +speed_ironing=36.666666666666664 +default_material_bed_temperature=95 +wall_0_material_flow=97 +meshfix_maximum_extrusion_area_deviation=50000 +retraction_speed=5 +material_print_temp_prepend=True +dual=0 +support_bottom_enable=False +wall_line_count=2 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=12.0 +roofing_material_flow=97 +machine_width=410 +machine_max_feedrate_x=299792458000 +layer_start_y=0.0 +extruder_prime_pos_x=0 +build_volume_temperature=85 +switch_extruder_prime_speed=5 +wall_x_extruder_nr=-1 +min_bead_width=0.4 +roofing_layer_count=2 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +wipe_retraction_amount=0.75 +material_break_temperature=50 +speed_roofing=55 +material_standby_temperature=180 +brim_outside_only=True +small_feature_speed_factor=50 +raft_interface_extruder_nr=0 +retraction_enable=True +support_line_distance=2.5 +support_zag_skip_count=8 +material_type=empty +bridge_wall_speed=96.0 +support_bottom_offset=0 +layer_height_0=0.2 +support_initial_layer_line_distance=2.5 +support_z_distance=0.25 +meshfix_union_all=True +support_bottom_wall_count=2 +layer_start_x=0.0 +machine_min_cool_heat_time_window=15 +top_bottom_thickness=1.0 +wipe_retraction_retract_speed=5 +multiple_mesh_overlap=0 +acceleration_print=300 +support_bottom_pattern=lines +acceleration_travel_enabled=True +min_even_wall_line_width=0.4 +material_print_temperature=260 +interlocking_boundary_avoidance=2 +wall_0_material_flow_layer_0=110.00000000000001 +quality_name=Fast +speed_topbottom=55 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +group_outer_walls=True +wall_line_width_x=0.4 +jerk_support=12.5 +raft_base_thickness=0.8 +support_top_distance=0.25 +retraction_hop_after_extruder_switch=True +roofing_extruder_nr=-1 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +support_mesh=False +support_roof_pattern=lines +jerk_support_interface=12.5 +prime_tower_flow=97 +acceleration_ironing=300 +wall_x_material_flow_layer_0=95.0 +speed_print_layer_0=30 +top_skin_expand_distance=0.8 +mesh_position_z=0 +infill_overlap_mm=0.0 +conical_overhang_angle=50 +inset_direction=inside_out +remove_empty_first_layers=True +jerk_topbottom=12.5 +prime_tower_size=20 +wipe_retraction_enable=True +day=Mon +wipe_hop_amount=0.4 +support_join_distance=2.0 +meshfix_fluid_motion_shift_distance=0.1 +cool_min_layer_time=6 +switch_extruder_extra_prime_amount=0 +coasting_min_volume=0.8 +raft_surface_thickness=0.2 +prime_tower_enable=False +top_bottom=0 +cool_fan_speed=0 +material_anti_ooze_retraction_speed=5 +support_conical_enabled=False +brim_smart_ordering=True +interlocking_orientation=22.5 +min_skin_width_for_expansion=6.123233995736766e-17 +wall_x_material_flow=97 +xy_offset=0 +brim_inside_margin=2.5 +roofing_pattern=lines +cooling=0 +jerk_travel_layer_0=12.5 +infill_sparse_thickness=0.2 +ironing_line_spacing=0.1 +bridge_fan_speed=100 +support_material_flow=97 +support_tree_max_diameter=25 +hole_xy_offset=0 +material_anti_ooze_retracted_position=-4 +jerk_print_layer_0=12.5 +ironing_enabled=False +acceleration_travel=5000 +raft_base_extruder_nr=0 +acceleration_wall=300 +support_bottom_material_flow=97 +acceleration_wall_x=300 +flow_rate_extrusion_offset_factor=100 +carve_multiple_volumes=True +gradual_infill_steps=0 +machine_show_variants=False +acceleration_wall_x_roofing=300 +material_break_speed=25 +machine_max_jerk_xy=20.0 +cutting_mesh=False +infill_sparse_density=20 +support_roof_wall_count=2 +infill_extruder_nr=-1 +support=0 +infill_mesh_order=0 +retraction_prime_speed=5 +z_seam_type=sharpest_corner +ironing_only_highest_layer=False +raft_remove_inside_corners=False +acceleration_topbottom=300 +machine_settings=0 +travel_retract_before_outer_wall=False +machine_height=320 +prime_tower_base_size=10 +wipe_retraction_prime_speed=5 +wipe_pause=0 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=300 +material_alternate_walls=False +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +retraction_extra_prime_amount=0 +print_bed_temperature=95 +lightning_infill_support_angle=40 +support_interface_material_flow=97 +infill_overlap=0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=0.5 +machine_nozzle_temp_enabled=True +skirt_brim_speed=30 +support_bottom_distance=0.125 +machine_steps_per_mm_e=1600 +material_crystallinity=False +wall_thickness=0.8 +machine_acceleration=3000 +prime_tower_base_height=6 +fill_outline_gaps=True +top_layers=5 +support_offset=0.7 +material_flow=97 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=95 +default_material_print_temperature=260 +speed_slowdown_layers=1 +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +support_xy_overrides_z=z_overrides_xy +acceleration_wall_0=300 +small_skin_width=0.8 +support_infill_angles=[] +shell=0 +support_meshes_present=False +raft_interface_speed=30.0 +travel_avoid_distance=3 +meshfix_maximum_resolution=0.6 +wipe_repeat_count=5 +magic_fuzzy_skin_enabled=False +jerk_enabled=True +support_xy_distance_overhang=0.15 +material_flush_purge_length=60 +machine_nozzle_heat_up_speed=3.5 +raft_interface_line_spacing=1.4 +retraction_extrusion_window=0 +support_fan_enable=False +adaptive_layer_height_threshold=0.2 +lightning_infill_overhang_angle=40 +support_conical_min_width=10 +adaptive_layer_height_variation_step=0.01 +raft_surface_jerk=12.5 +infill_support_angle=40 +cool_fan_speed_max=100 +cool_fan_enabled=False +wall_overhang_angle=90 +cool_min_speed=9 +wipe_retraction_speed=5 +retraction_amount=0.75 +acceleration_support_interface=300 +speed_z_hop=10 +lightning_infill_prune_angle=40 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +min_wall_line_width=0.4 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +raft_acceleration=300 +material_is_support_material=False +machine_max_acceleration_z=100 +support_wall_count=0 +mesh_rotation_matrix=[] +skin_edge_support_thickness=0.8 +support_bottom_stair_step_min_slope=10.0 +support_interface_extruder_nr=0 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +conical_overhang_hole_size=0 +jerk_travel_enabled=True +machine_extruders_shared_nozzle_initial_retraction=0 +prime_tower_base_curve_magnitude=2 +extruder_prime_pos_abs=True +material_adhesion_tendency=0 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=55 +support_extruder_nr=0 +extruder_prime_pos_y=0 +support_type=everywhere +skin_edge_support_layers=4 +cool_fan_speed_min=0 +wipe_move_distance=20 +top_bottom_pattern_0=lines +alternate_extra_perimeter=False +support_roof_enable=True +skin_material_flow_layer_0=95 +wall_0_inset=0 +relative_extrusion=False +mold_width=5 +adhesion_extruder_nr=0 +small_hole_max_size=0 +material=0 +material_bed_temp_prepend=True +infill_before_walls=False +zig_zaggify_support=True +wipe_hop_enable=True +bridge_skin_material_flow_3=97 +bridge_fan_speed_2=50.0 +support_interface_pattern=lines +initial_bottom_layers=5 +wall_line_width_0=0.4 +support_tree_top_rate=30 +cross_infill_pocket_size=2.0 +interlocking_enable=False +support_bottom_line_width=0.6 +draft_shield_height=10 +z_seam_x=205.0 +machine_always_write_active_tool=False +retraction_combing_max_distance=25.0 +skin_line_width=0.4 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +bottom_skin_expand_distance=0.8 +bridge_skin_speed_2=55 +print_sequence=all_at_once +skin_overlap=0 +speed_infill=120.0 +material_shrinkage_percentage_z=100.0 +material_guid=88c8919c-6a09-471a-b7b6-e801263d862d +infill_pattern=lines +connect_skin_polygons=False +meshfix_fluid_motion_enabled=True +support_xy_distance=0.2 +speed_wall=96.0 +minimum_interface_area=1.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=True +switch_extruder_retraction_speeds=5 +machine_firmware_retract=False +speed_equalize_flow_width_factor=0 +acceleration_travel_layer_0=5000 +wipe_brush_pos_x=100 +machine_nozzle_id=1XA +machine_heated_build_volume=True +support_conical_angle=30 +initial_layer_line_width_factor=100.0 +raft_base_line_spacing=2.8 +max_extrusion_before_wipe=10 +speed_support_infill=96.0 +support_tree_limit_branch_reach=True +support_extruder_nr_layer_0=0 +meshfix_maximum_travel_resolution=0.8 +retraction_hop_enabled=True +raft_surface_extruder_nr=0 +switch_extruder_retraction_speed=5 +acceleration_roofing=300 +meshfix_fluid_motion_angle=15 +top_thickness=1.0 +acceleration_enabled=True +support_roof_extruder_nr=0 +jerk_print=12.5 +machine_nozzle_expansion_angle=45 +min_odd_wall_line_width=0.4 +wall_0_extruder_nr=-1 +infill_line_distance=2.0 +minimum_bottom_area=1.0 +support_pattern=lines +support_tree_min_height_to_model=3 +support_interface_offset=0 +meshfix_keep_open_polygons=False +skin_monotonic=True +machine_max_acceleration_y=9000 +retraction_hop=0.4 +jerk_wall_0=12.5 +support_infill_extruder_nr=0 +speed_prime_tower=30.0 +infill=0 +coasting_speed=90 +brim_width=5 +skin_preshrink=0 +magic_spiralize=False +raft_interface_thickness=0.3 +jerk_prime_tower=12.5 +skin_outline_count=0 +support_interface_priority=interface_area_overwrite_support_area +machine_steps_per_mm_x=50 +prime_tower_position_x=138.8 +bridge_wall_min_length=1.6 +experimental=0 +z_seam_relative=False +wipe_retraction_extra_prime_amount=0 +infill_offset_x=0 +material_shrinkage_percentage_xy=100.0 +bridge_wall_material_flow=97 +support_bottom_density=24 +skin_material_flow=92.14999999999999 +support_tree_branch_reach_limit=30 +date=20-11-2023 +wipe_hop_speed=10 +zig_zaggify_infill=True +material_name=empty +material_diameter=1.75 +flow_rate_max_extrusion_offset=0 +meshfix_union_all_remove_holes=False +wall_material_flow=97 +retraction_combing=off +material_flow_layer_0=100 +initial_extruder_nr=0 +z_seam_corner=z_seam_corner_none +machine_head_with_fans_polygon=[] +raft_base_line_width=1.4 +bridge_skin_density=100 +ironing_flow=10.0 +draft_shield_enabled=False +infill_angles=[] +travel_avoid_supports=False +acceleration_infill=300 +support_skip_some_zags=False +material_end_of_filament_purge_speed=0.5 +machine_max_jerk_e=5.0 +raft_margin=3 +support_interface_angles=[] +support_roof_height=1.015 +smooth_spiralized_contours=True +xy_offset_layer_0=0 +support_roof_offset=0 +acceleration_support_roof=300 +material_print_temp_wait=True +support_roof_angles=[] +machine_gcode_flavor=Griffin +wall_overhang_speed_factor=100 +jerk_support_infill=12.5 +wall_0_wipe_dist=0 +jerk_wall_0_roofing=12.5 +retract_at_layer_change=False +wall_transition_length=0.4 +speed_travel_layer_0=250.0 +conical_overhang_enabled=False +travel=0 +jerk_roofing=12.5 +machine_shape=rectangular +material_bed_temp_wait=True +machine_depth=320 +ironing_monotonic=False +mesh_position_y=0 +infill_randomize_start_location=False +raft_base_jerk=12.5 +speed_wall_x=65 +time=17:54:18 +machine_buildplate_type=glass +machine_nozzle_head_distance=3 +support_brim_width=1.2000000000000002 +meshfix_maximum_deviation=0.04 +platform_adhesion=0 +prime_tower_raft_base_line_spacing=1.4 +support_bottom_stair_step_width=5.0 +material_flush_purge_speed=0.5 +material_break_preparation_temperature=260 +wall_transition_filter_deviation=0.1 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +travel_avoid_other_parts=False +support_tree_angle_slow=33.333333333333336 +support_bottom_angles=[] +speed_support_roof=55 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=300 +machine_extruders_share_nozzle=False +support_bottom_height=0.4 +minimum_polygon_circumference=1.0 +raft_base_wall_count=1 +machine_scale_fan_speed_zero_to_one=False +infill_enable_travel_optimization=True +speed_layer_0=30 +jerk_travel=12.5 +alternate_carve_order=True +support_roof_material_flow=97 +machine_max_feedrate_y=299792458000 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +material_brand=empty_brand +prime_blob_enable=False +support_tree_tip_diameter=0.6 +speed_support_bottom=55 +bridge_skin_density_2=100 +support_tower_diameter=3.0 +mold_angle=40 +raft_speed=15 +acceleration_support=300 +jerk_layer_0=12.5 +cool_min_temperature=250 +slicing_tolerance=middle +machine_heat_zone_length=16 +magic_mesh_surface_mode=normal +top_bottom_extruder_nr=-1 +retraction_hop_after_extruder_switch_height=0.4 +acceleration_prime_tower=300 +jerk_infill=12.5 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +bridge_wall_coast=0 +material_id=empty_material +retraction_count_max=100 +skirt_line_count=1 +support_interface_density=100 +coasting_enable=False +support_bottom_extruder_nr=0 +bridge_enable_more_layers=True +command_line_settings=0 +skirt_brim_extruder_nr=0 +mesh_position_x=0 +prime_tower_position_y=118.80000000000001 +expand_skins_expand_distance=0.8 +support_enable=True +skirt_height=3 +machine_endstop_positive_direction_y=False +z_seam_y=160.0 +bridge_skin_material_flow_2=97 +speed_support_interface=55 +machine_max_acceleration_x=9000 +gradual_support_infill_steps=0 +skirt_brim_minimal_length=500 +raft_surface_layers=2 +raft_surface_line_width=0.4 +support_mesh_drop_down=True +support_roof_density=97 +machine_max_feedrate_z=299792458000 +material_print_temperature_layer_0=260 +bridge_settings_enabled=True +raft_base_fan_speed=0 +skirt_brim_material_flow=97 +bridge_skin_speed=55 +machine_nozzle_cool_down_speed=0.8 +material_final_print_temperature=250 +travel_speed=500 +speed=0 +print_temperature=210 +support_bottom_stair_step_height=0 +jerk_support_bottom=12.5 +acceleration_support_infill=300 +brim_gap=0 +infill_offset_y=0 +mold_enabled=False +support_use_towers=False +support_roof_line_width=0.25 +max_skin_angle_for_expansion=90 +bridge_sparse_infill_max_density=50 +draft_shield_height_limitation=full +top_bottom_pattern=lines +machine_max_acceleration_e=10000 +draft_shield_dist=10 +anti_overhang_mesh=False +gradual_support_infill_step_height=0.8 +raft_jerk=12.5 \ No newline at end of file diff --git a/tests/voronoi_crash_resources/settings_002.txt b/tests/voronoi_crash_resources/settings_002.txt new file mode 100644 index 00000000000..2da8498c4cd --- /dev/null +++ b/tests/voronoi_crash_resources/settings_002.txt @@ -0,0 +1,1090 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=25.0 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.8 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +machine_depth=235 +adhesion_type=raft +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +time=18:43:21 +machine_buildplate_type=glass +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=235 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=normal +clean_between_layers=False +speed_prime_tower=25.0 +speed_wall_x=25.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.8 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=50 +machine_max_jerk_e=5 +raft_margin=5 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=500 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.24 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=500 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=50 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=250 +travel_retract_before_outer_wall=True +jerk_support_interface=8 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=True +support_bottom_line_distance=2.4000240002400024 +jerk_support_bottom=8 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.2 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0.2 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=0 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=8 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +experimental=0 +bridge_wall_min_length=1 +prime_tower_position_x=227.79999999999998 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=8 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=25.0 +support_xy_distance=0.8 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=8 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=205.79999999999998 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=False +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=10 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=0.8 +raft_interface_jerk=8 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=0 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=150.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=True +material=0 +infill_before_walls=False +support_z_distance=0.2 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=500 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=50 +support_tree_rest_preference=graceful +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=25.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=25.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=off +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=0 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=30.0 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=30.0 +print_bed_temperature=50 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=25.0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=4 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=True +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=4 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=117.5 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +raft_interface_thickness=0.30000000000000004 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.2 +support_initial_layer_line_distance=2.0 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=everywhere +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=50.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=18.75 +support_angle=45 +machine_max_feedrate_x=500 +machine_width=235 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.2 +speed_travel=150.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=0.8 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=True +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +speed_support=25.0 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=2 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=45 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=8 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.1 +support_interface_height=0.8 +support_brim_enable=True +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +speed_support_bottom=25.0 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_bottom_height=0.8 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.2 +skin_overlap=10.0 +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=200 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=235 +support_xy_distance=0.8 +speed_wall=25.0 +skin_edge_support_layers=0 +speed_topbottom=25.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=25.0 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.12 +connect_skin_polygons=False +infill_pattern=cubic +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=0 +skin_edge_support_thickness=0 +support_roof_height=0.8 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=45 +travel_avoid_supports=True +acceleration_infill=500 +skin_outline_count=1 +jerk_prime_tower=8 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=500 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=4 +support_interface_pattern=grid +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=12.0 +support_tree_top_rate=30 +wall_line_width_0=0.4 +acceleration_travel=500 +support_bottom_material_flow=100 +acceleration_wall=500 +ironing_enabled=True +wipe_pause=0 +wipe_retraction_prime_speed=45 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=500 +meshfix=0 +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0.2 +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +wipe_retraction_amount=5 +material_break_temperature=50 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=25.0 +raft_base_jerk=8 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=500 +raft_base_thickness=0.24 +jerk_support=8 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=8 +retraction_hop=0.5 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +retraction_combing_max_distance=30 +z_seam_x=117.5 +infill_line_distance=12.0 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +retraction_prime_speed=45 +z_seam_type=back +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=200 +support_bottom_stair_step_height=0 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=180 +xy_offset_layer_0=0 +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +support_zag_skip_count=10 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +material_print_temperature=200 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=8 +top_skin_preshrink=0.8 +retraction_hop_enabled=True +acceleration_roofing=500 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_weighted +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=150.0 +support_angle=45 +raft_base_speed=18.75 +jerk_support_interface=8 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=10 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=8 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=500 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=45 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=25.0 +infill=0 +support_tree_rest_preference=graceful +coasting_speed=90 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=25.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +acceleration_support=500 +retraction_hop_after_extruder_switch_height=0.5 +machine_extruder_end_pos_abs=False +jerk_layer_0=8 +cool_min_temperature=200 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.8 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=5 +wipe_retraction_speed=45 +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=30.0 +jerk_wall=8 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.4000240002400024 +raft_interface_jerk=8 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=4 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=45 +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=45 +acceleration_print=500 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=500 +machine_settings=0 +skirt_line_count=3 +retraction_count_max=100 +jerk_travel_layer_0=8 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.8 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=8 +speed_z_hop=5 +wipe_hop_enable=True +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=500 +jerk_support_roof=8 +machine_endstop_positive_direction_y=False +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.30000000000000004 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=50.0 +retraction_min_travel=1.5 +support_line_width=0.4 +jerk_roofing=8 +roofing_line_width=0.4 +support_initial_layer_line_distance=2.0 +meshfix_union_all=True +support_z_distance=0.2 +support_bottom_line_width=0.4 +acceleration_wall_x=500 +skin_material_flow=100 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.8 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=2 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=8 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.2 +command_line_settings=0 +raft_margin=5 +material_end_of_filament_purge_speed=0.5 +speed_support=25.0 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=8 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=8 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.5 +wipe_retraction_enable=True +cool_min_layer_time=10 +top_thickness=0.8 +jerk_support_bottom=8 +conical_overhang_hole_size=0 +material_final_print_temperature=200 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_003.txt b/tests/voronoi_crash_resources/settings_003.txt new file mode 100644 index 00000000000..00353b70cf8 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_003.txt @@ -0,0 +1,1091 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.42 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.36 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=concentric +top_skin_expand_distance=1.2000000000000002 +raft_interface_acceleration=500 +expand_skins_expand_distance=1.2000000000000002 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=25.0 +support_roof_material_flow=95.0 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.96 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.12 +retraction_enable=True +support_line_distance=0 +machine_depth=235 +adhesion_type=skirt +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=3 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.42 +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.84 +raft_jerk=8 +time=18:49:06 +machine_buildplate_type=glass +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=7 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=235 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=tree +clean_between_layers=False +speed_prime_tower=25.0 +speed_wall_x=25.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.96 +raft_surface_line_spacing=0.42 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.12 +material_bed_temperature_layer_0=65 +machine_max_jerk_e=5 +raft_margin=15 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=500 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.144 +jerk_enabled=True +magic_fuzzy_skin_enabled=False +acceleration_support_infill=500 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +quality_changes_name=GG_Best_Dragon_1 +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=2.5200252002520025 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=50 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.42 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=5.143516556418883e-17 +raft_interface_line_width=0.84 +machine_height=250 +travel_retract_before_outer_wall=True +jerk_support_interface=12.0 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.84 +material_print_temp_prepend=True +support_bottom_line_distance=2.5200252002520025 +jerk_support_bottom=12.0 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.12 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.0 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=1.2000000000000002 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=-1 +support_top_distance=0.24 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.42 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=12.0 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +experimental=0 +bridge_wall_min_length=2.24 +prime_tower_position_x=223.58 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=12.0 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=3 +speed_wall=25.0 +support_xy_distance=0.84 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=12.0 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=201.58 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=1.2000000000000002 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=True +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=0 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=1.2000000000000002 +raft_interface_jerk=12.0 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=-1 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=150.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=True +material=0 +infill_before_walls=False +support_z_distance=0.24 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=500 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=60 +support_tree_rest_preference=buildplate +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=25.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.84 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=1.2000000000000002 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=95.0 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=25.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=noskin +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=1 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=33.333333333333336 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=95.0 +infill_overlap=30.0 +print_bed_temperature=60 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=25.0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=7 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.04 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=7 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.84 +acceleration_enabled=True +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=117.5 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=0 +raft_interface_thickness=0.18 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.12 +support_initial_layer_line_distance=0 +support_bottom_line_width=0.42 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=buildplate +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=50.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=18.75 +support_angle=40 +machine_max_feedrate_x=500 +machine_width=235 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.12 +speed_travel=150.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=1.2000000000000002 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +speed_support=25.0 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.42 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=0 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=50 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=12.0 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=0.96 +support_brim_enable=True +support_interface_skip_height=0.12 +jerk_support_infill=12.0 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=95.0 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.42 +jerk_infill=12.0 +mesh_position_y=0 +cool_fan_full_at_height=0.36 +layer_0_z_overlap=0.15 +support_pattern=concentric +top_skin_expand_distance=0.84 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.84 +support_skip_zag_per_mm=20 +speed_support_bottom=25.0 +support_roof_material_flow=95.0 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_bottom_height=0.96 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.12 +retraction_enable=True +support_line_distance=0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.12 +skin_overlap=30.0 +speed_travel_layer_0=35 +raft_surface_line_width=0.42 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.84 +raft_jerk=12.0 +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=205.0 +support_tree_min_height_to_model=3 +bottom_layers=7 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.42 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=0 +support_xy_distance=0.84 +speed_wall=25.0 +skin_edge_support_layers=0 +speed_topbottom=25.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=25.0 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.126 +connect_skin_polygons=True +infill_pattern=cubic +wall_0_material_flow=95.0 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=1 +skin_edge_support_thickness=0 +support_roof_height=0.96 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=45 +travel_avoid_supports=True +acceleration_infill=500 +skin_outline_count=0 +jerk_prime_tower=12.0 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=500 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=7 +support_interface_pattern=grid +support_xy_distance_overhang=0.42 +retract_at_layer_change=False +wall_transition_length=0.42 +wall_x_material_flow=95.0 +min_skin_width_for_expansion=5.143516556418883e-17 +cross_infill_pocket_size=5.04 +support_tree_top_rate=30 +wall_line_width_0=0.42 +acceleration_travel=500 +support_bottom_material_flow=95.0 +acceleration_wall=500 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=45 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=500 +meshfix=0 +material_flow=95.0 +support_offset=0.0 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0 +machine_steps_per_mm_e=1600 +wall_thickness=1.26 +wipe_retraction_amount=5 +material_break_temperature=50 +support_top_distance=0.24 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.42 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=20 +support_roof_line_distance=2.5200252002520025 +prime_tower_line_width=0.42 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.42 +skin_line_width=0.38 +speed_wall_x=30 +raft_base_jerk=12.0 +gradual_support_infill_steps=0 +skirt_brim_material_flow=95.0 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.42 +raft_acceleration=500 +raft_base_thickness=0.144 +jerk_support=12.0 +wall_line_width_x=0.42 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=12.0 +retraction_hop=0.2 +support_tree_tip_diameter=0.84 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=3 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +retraction_combing_max_distance=30 +z_seam_x=0.0 +infill_line_distance=5.04 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=95.0 +bottom_skin_preshrink=0.84 +sub_div_rad_add=0.42 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=12.0 +retraction_prime_speed=45 +z_seam_type=sharpest_corner +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=215.0 +support_bottom_stair_step_height=0 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=180 +xy_offset_layer_0=0 +acceleration_print_layer_0=500 +z_seam_relative=True +fill_outline_gaps=True +support_zag_skip_count=0 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +material_print_temperature=205.0 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=12.0 +top_skin_preshrink=0.84 +retraction_hop_enabled=False +acceleration_roofing=500 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_inner +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=150.0 +support_angle=40 +raft_base_speed=18.75 +jerk_support_interface=12.0 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=25.0 +skirt_brim_line_width=0.42 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=12.0 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=500 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=45 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=205.0 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=95.0 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=25.0 +infill=0 +support_tree_rest_preference=buildplate +coasting_speed=90 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=25.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=12.0 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +acceleration_support=500 +retraction_hop_after_extruder_switch_height=0.2 +machine_extruder_end_pos_abs=False +jerk_layer_0=12.0 +cool_min_temperature=205.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.84 +small_feature_max_length=0.0 +skin_overlap_mm=0.12 +support_material_flow=95.0 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.84 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=5 +wipe_retraction_speed=45 +skirt_brim_speed=30 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.84 +support_tree_branch_diameter_angle=7 +wall_material_flow=95.0 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=33.333333333333336 +jerk_wall=12.0 +extruder_nr=0 +support_interface_material_flow=95.0 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.5200252002520025 +raft_interface_jerk=12.0 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=7 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.381 +inset_direction=outside_in +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=50 +support_interface_skip_height=0.12 +jerk_support_infill=12.0 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=45 +acceleration_print=500 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=500 +machine_settings=0 +skirt_line_count=2 +retraction_count_max=100 +jerk_travel_layer_0=12.0 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.96 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=12.0 +speed_z_hop=5 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.04 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=500 +jerk_support_roof=12.0 +machine_endstop_positive_direction_y=False +acceleration_wall_0=500 +shell=0 +small_skin_width=0.76 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=0 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.18 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=60 +retraction_min_travel=1.5 +support_line_width=0.42 +jerk_roofing=12.0 +roofing_line_width=0.38 +support_initial_layer_line_distance=0 +meshfix_union_all=True +support_z_distance=0.24 +support_bottom_line_width=0.42 +acceleration_wall_x=500 +skin_material_flow=95.0 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.42 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.84 +raft_interface_line_width=0.84 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=0 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=12.0 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.105 +infill_sparse_thickness=0.12 +command_line_settings=0 +raft_margin=15 +material_end_of_filament_purge_speed=0.5 +speed_support=25.0 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=12.0 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=12.0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.2 +wipe_retraction_enable=True +cool_min_layer_time=10 +top_thickness=0.84 +jerk_support_bottom=12.0 +conical_overhang_hole_size=0 +material_final_print_temperature=205.0 +infill_material_flow=95.0 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_004.txt b/tests/voronoi_crash_resources/settings_004.txt new file mode 100644 index 00000000000..c601d4e1cf1 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_004.txt @@ -0,0 +1,1091 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.4 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=1.2000000000000002 +raft_interface_acceleration=350 +expand_skins_expand_distance=1.2000000000000002 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=20 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.8 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.1 +retraction_enable=True +support_line_distance=2.0 +machine_depth=225 +adhesion_type=brim +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=3 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +time=18:50:45 +machine_buildplate_type=glass +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=8 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=225 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=normal +clean_between_layers=False +speed_prime_tower=25.0 +speed_wall_x=25.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.8 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.1 +material_bed_temperature_layer_0=70 +machine_max_jerk_e=5 +raft_margin=15 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=350 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.24 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=350 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=60 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=250 +travel_retract_before_outer_wall=True +jerk_support_interface=8 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=True +support_bottom_line_distance=2.4000240002400024 +jerk_support_bottom=8 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.1 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0.2 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=1.2000000000000002 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=-1 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=8 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=350 +experimental=0 +bridge_wall_min_length=2.2 +prime_tower_position_x=213.12 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=8 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=350 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=350 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=25.0 +support_xy_distance=0.8 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=8 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=191.12 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=1.2000000000000002 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=22.5 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=16.875 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=False +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=10 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=1.2000000000000002 +raft_interface_jerk=8 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=-1 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=150.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=True +material=0 +infill_before_walls=False +support_z_distance=0.2 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=350 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=1 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=55 +support_tree_rest_preference=graceful +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +machine_disallowed_areas=[] +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=25.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=20 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=1.2000000000000002 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=25.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=noskin +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=0 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=8 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=20 +support_tree_angle_slow=36.666666666666664 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=30.0 +print_bed_temperature=55 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=30 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=8 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=8 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=112.5 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +raft_interface_thickness=0.15000000000000002 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.2 +support_initial_layer_line_distance=2.0 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=everywhere +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=50.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=16.875 +support_angle=55 +machine_max_feedrate_x=500 +machine_width=225 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.1 +speed_travel=150.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=1.2000000000000002 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=350 +speed_support=30 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=2 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=55 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=8 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=0.8 +support_brim_enable=True +support_interface_skip_height=0.1 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=350 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.4 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=2.4 +raft_interface_acceleration=350 +expand_skins_expand_distance=2.4 +support_skip_zag_per_mm=20 +speed_support_bottom=20 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=13.333333333333334 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=3 +support_bottom_height=0.8 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.1 +retraction_enable=True +support_line_distance=2.0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=6 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.1 +skin_overlap=10.0 +speed_travel_layer_0=90 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=12 +support_brim_width=4 +top_bottom_thickness=1.2 +raft_jerk=8 +center_object=False +speed_print=45 +travel=0 +material_print_temperature_layer_0=200 +support_tree_min_height_to_model=3 +bottom_layers=8 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=225 +support_xy_distance=0.8 +speed_wall=22.5 +skin_edge_support_layers=0 +speed_topbottom=20 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=30 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0 +connect_skin_polygons=False +infill_pattern=lines +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=0 +skin_edge_support_thickness=0 +support_roof_height=0.8 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=25 +travel_avoid_supports=True +acceleration_infill=350 +skin_outline_count=1 +jerk_prime_tower=8 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=350 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=8 +support_interface_pattern=grid +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=0.40404040404040403 +support_tree_top_rate=30 +wall_line_width_0=0.4 +acceleration_travel=500 +support_bottom_material_flow=100 +acceleration_wall=350 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=25 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=350 +meshfix=0 +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0.2 +machine_steps_per_mm_e=1600 +wall_thickness=1.2000000000000002 +wipe_retraction_amount=6.5 +material_break_temperature=50 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=15 +support_roof_line_distance=2.4000240002400024 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=35 +raft_base_jerk=8 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=350 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=350 +raft_base_thickness=0.24 +jerk_support=8 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=8 +retraction_hop=0.2 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=350 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=350 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +retraction_combing_max_distance=60 +z_seam_x=112.5 +infill_line_distance=0.40404040404040403 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=350 +prime_tower_flow=100 +bottom_skin_preshrink=2.4 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=22.5 +speed_layer_0=20.0 +jerk_print=8 +retraction_prime_speed=25 +z_seam_type=back +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=190 +support_bottom_stair_step_height=0 +speed_roofing=20 +brim_outside_only=True +material_standby_temperature=175 +xy_offset_layer_0=0 +acceleration_print_layer_0=350 +z_seam_relative=False +fill_outline_gaps=False +support_zag_skip_count=10 +raft_interface_speed=16.875 +travel_avoid_distance=0.638 +material_print_temperature=190 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=8 +top_skin_preshrink=2.4 +retraction_hop_enabled=False +acceleration_roofing=350 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=120 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_weighted +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=100 +support_angle=55 +raft_base_speed=16.875 +jerk_support_interface=8 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=99 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=8 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=350 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=25 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=190 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=20 +infill=0 +support_tree_rest_preference=graceful +coasting_speed=90 +bridge_skin_speed_3=12 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=30 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=101 +speed_print_layer_0=20 +acceleration_support=350 +retraction_hop_after_extruder_switch_height=0.2 +machine_extruder_end_pos_abs=False +jerk_layer_0=8 +cool_min_temperature=190 +mold_angle=40 +raft_speed=22.5 +roofing_monotonic=True +bottom_thickness=1.2 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=101 +speed_support_interface=20 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=2.4 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=6.5 +wipe_retraction_speed=25 +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=101 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=8 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=20 +support_tree_angle_slow=36.666666666666664 +jerk_wall=8 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.4000240002400024 +raft_interface_jerk=8 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=15.0 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=12 +top_layers=8 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=55 +support_interface_skip_height=0.1 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=25 +acceleration_print=350 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=350 +machine_settings=0 +skirt_line_count=3 +retraction_count_max=100 +jerk_travel_layer_0=10 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.8 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=8 +speed_z_hop=5 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=350 +jerk_support_roof=8 +machine_endstop_positive_direction_y=False +acceleration_wall_0=350 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=350 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.15000000000000002 +skin_material_flow_layer_0=101 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=40 +retraction_min_travel=1.5 +support_line_width=0.4 +jerk_roofing=8 +roofing_line_width=0.4 +support_initial_layer_line_distance=2.0 +meshfix_union_all=True +support_z_distance=0.2 +support_bottom_line_width=0.4 +acceleration_wall_x=350 +skin_material_flow=100 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=2.4 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=2 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=10 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.1 +command_line_settings=0 +raft_margin=15 +material_end_of_filament_purge_speed=0.5 +speed_support=30 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=8 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=8 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.2 +wipe_retraction_enable=True +cool_min_layer_time=8 +top_thickness=1.2 +jerk_support_bottom=8 +conical_overhang_hole_size=0 +material_final_print_temperature=190 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_005.txt b/tests/voronoi_crash_resources/settings_005.txt new file mode 100644 index 00000000000..366cdd5c24d --- /dev/null +++ b/tests/voronoi_crash_resources/settings_005.txt @@ -0,0 +1,1092 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=25.0 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.8 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +machine_depth=300 +adhesion_type=raft +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +time=18:54:59 +machine_buildplate_type=glass +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=300 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=normal +clean_between_layers=False +speed_prime_tower=25.0 +speed_wall_x=25.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.8 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=55 +machine_max_jerk_e=5 +raft_margin=5.0 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=3 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=500 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.24 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=500 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +quality_changes_name=empty +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=8 +support_roof_line_distance=2.4000240002400024 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=60 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=340 +travel_retract_before_outer_wall=True +jerk_support_interface=8 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=False +support_bottom_line_distance=2.4000240002400024 +jerk_support_bottom=8 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.2 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=0 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=8 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +experimental=0 +bridge_wall_min_length=2.2 +prime_tower_position_x=292.8 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=8 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=25.0 +support_xy_distance=0.8 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=8 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=270.8 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=True +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=10 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=0.8 +raft_interface_jerk=8 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=0 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=150.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=False +material=0 +infill_before_walls=False +support_z_distance=0.2 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=500 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=55 +support_tree_rest_preference=buildplate +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +machine_disallowed_areas=[] +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=25.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=25.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=noskin +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=0 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=43.333333333333336 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=30.0 +print_bed_temperature=55 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=25.0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=4 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=4 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=150.0 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +raft_interface_thickness=0.30000000000000004 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.2 +support_initial_layer_line_distance=2.0 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=buildplate +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=50.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=18.75 +support_angle=65.0 +machine_max_feedrate_x=500 +machine_width=300 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.2 +speed_travel=150.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=0.8 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +speed_support=25.0 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=2 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=65.0 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=8 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=0.8 +support_brim_enable=True +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +speed_support_bottom=25.0 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_bottom_height=0.8 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.2 +skin_overlap=10.0 +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=203.0 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=300 +support_xy_distance=0.8 +speed_wall=25.0 +skin_edge_support_layers=0 +speed_topbottom=25.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=25.0 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.12 +connect_skin_polygons=False +infill_pattern=cubic +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=0 +skin_edge_support_thickness=0 +support_roof_height=0.8 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=25 +travel_avoid_supports=True +acceleration_infill=500 +skin_outline_count=1 +jerk_prime_tower=8 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=500 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=4 +support_interface_pattern=grid +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=17.142857142857142 +support_tree_top_rate=30 +wall_line_width_0=0.4 +acceleration_travel=500 +support_bottom_material_flow=100 +acceleration_wall=500 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=25 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=500 +meshfix=0 +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0 +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +wipe_retraction_amount=6.5 +material_break_temperature=50 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=8 +support_roof_line_distance=2.4000240002400024 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=25.0 +raft_base_jerk=8 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=500 +raft_base_thickness=0.24 +jerk_support=8 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=8 +retraction_hop=0.2 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +retraction_combing_max_distance=30 +z_seam_x=150.0 +infill_line_distance=17.142857142857142 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +retraction_prime_speed=25 +z_seam_type=back +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=203.0 +support_bottom_stair_step_height=0 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=175 +xy_offset_layer_0=0 +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +support_zag_skip_count=10 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +material_print_temperature=203.0 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=8 +top_skin_preshrink=0.8 +retraction_hop_enabled=False +acceleration_roofing=500 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_weighted +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=150.0 +support_angle=65.0 +raft_base_speed=18.75 +jerk_support_interface=8 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=7 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=8 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=500 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=25 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=203.0 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=25.0 +infill=0 +support_tree_rest_preference=buildplate +coasting_speed=90 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=25.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +acceleration_support=500 +retraction_hop_after_extruder_switch_height=0.2 +machine_extruder_end_pos_abs=False +jerk_layer_0=8 +cool_min_temperature=203.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.8 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=6.5 +wipe_retraction_speed=25 +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=43.333333333333336 +jerk_wall=8 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.4000240002400024 +raft_interface_jerk=8 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=4 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=65.0 +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=3 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=25 +acceleration_print=500 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=500 +machine_settings=0 +skirt_line_count=3 +retraction_count_max=100 +jerk_travel_layer_0=8 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.8 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=8 +speed_z_hop=5 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=500 +jerk_support_roof=8 +machine_endstop_positive_direction_y=False +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.30000000000000004 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=50.0 +retraction_min_travel=1.5 +support_line_width=0.4 +jerk_roofing=8 +roofing_line_width=0.4 +support_initial_layer_line_distance=2.0 +meshfix_union_all=True +support_z_distance=0.2 +support_bottom_line_width=0.4 +acceleration_wall_x=500 +skin_material_flow=100 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.8 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=2 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=8 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.2 +command_line_settings=0 +raft_margin=5.0 +material_end_of_filament_purge_speed=0.5 +speed_support=25.0 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=8 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=8 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.2 +wipe_retraction_enable=True +cool_min_layer_time=10 +top_thickness=0.8 +jerk_support_bottom=8 +conical_overhang_hole_size=0 +material_final_print_temperature=203.0 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_006.txt b/tests/voronoi_crash_resources/settings_006.txt new file mode 100644 index 00000000000..7fff40c1354 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_006.txt @@ -0,0 +1,1092 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=grid +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=25.0 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.8 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=0 +machine_depth=220 +adhesion_type=skirt +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +time=18:56:12 +machine_buildplate_type=glass +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=220 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=tree +clean_between_layers=False +speed_prime_tower=25.0 +speed_wall_x=25.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.8 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=60 +machine_max_jerk_e=5 +raft_margin=15 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=500 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.24 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=500 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +quality_changes_name=empty +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=60 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=250 +travel_retract_before_outer_wall=True +jerk_support_interface=8 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=False +support_bottom_line_distance=2.4000240002400024 +jerk_support_bottom=8 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.2 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.0 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0.2 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=-1 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=8 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +experimental=0 +bridge_wall_min_length=2.2 +prime_tower_position_x=208.6 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=8 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=25.0 +support_xy_distance=0.8 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=8 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=186.6 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=True +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=0 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=0.8 +raft_interface_jerk=8 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=-1 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=150.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=False +material=0 +infill_before_walls=False +support_z_distance=0.2 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=500 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=60 +support_tree_rest_preference=graceful +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +machine_disallowed_areas=[] +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=25.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=25.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=noskin +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=1 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=40.0 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=30.0 +print_bed_temperature=60 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=25.0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=4 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=4 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=110.0 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=0 +raft_interface_thickness=0.30000000000000004 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.2 +support_initial_layer_line_distance=0 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=everywhere +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=50.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=18.75 +support_angle=60.0 +machine_max_feedrate_x=500 +machine_width=220 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.2 +speed_travel=150.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=0.8 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +speed_support=25.0 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=0 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=60.0 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=8 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=0.8 +support_brim_enable=True +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +layer_0_z_overlap=0.15 +support_pattern=grid +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +speed_support_bottom=25.0 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=16.666666666666668 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_bottom_height=0.8 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.2 +skin_overlap=10.0 +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=12.5 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +center_object=False +speed_print=50.0 +travel=0 +material_print_temperature_layer_0=200 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=220 +support_xy_distance=0.8 +speed_wall=25.0 +skin_edge_support_layers=0 +speed_topbottom=25.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=25.0 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.12 +connect_skin_polygons=False +infill_pattern=cubic +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=1 +skin_edge_support_thickness=0 +support_roof_height=0.8 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=25 +travel_avoid_supports=True +acceleration_infill=500 +skin_outline_count=1 +jerk_prime_tower=8 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=500 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=4 +support_interface_pattern=grid +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +wall_line_width_0=0.4 +acceleration_travel=500 +support_bottom_material_flow=100 +acceleration_wall=500 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=25 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=500 +meshfix=0 +material_flow=100 +support_offset=0.0 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0.2 +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +wipe_retraction_amount=6.5 +material_break_temperature=50 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=25.0 +raft_base_jerk=8 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=12.5 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=500 +raft_base_thickness=0.24 +jerk_support=8 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=8 +retraction_hop=0.2 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +retraction_combing_max_distance=30 +z_seam_x=110.0 +infill_line_distance=6.0 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=25.0 +speed_layer_0=20.0 +jerk_print=8 +retraction_prime_speed=25 +z_seam_type=back +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=200 +support_bottom_stair_step_height=0 +speed_roofing=25.0 +brim_outside_only=True +material_standby_temperature=175 +xy_offset_layer_0=0 +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +support_zag_skip_count=0 +raft_interface_speed=18.75 +travel_avoid_distance=0.625 +material_print_temperature=200 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=8 +top_skin_preshrink=0.8 +retraction_hop_enabled=False +acceleration_roofing=500 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_weighted +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=150.0 +support_angle=60.0 +raft_base_speed=18.75 +jerk_support_interface=8 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=20 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=8 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=500 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=25 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=25.0 +infill=0 +support_tree_rest_preference=graceful +coasting_speed=90 +bridge_skin_speed_3=12.5 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=25.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +acceleration_support=500 +retraction_hop_after_extruder_switch_height=0.2 +machine_extruder_end_pos_abs=False +jerk_layer_0=8 +cool_min_temperature=200 +mold_angle=40 +raft_speed=25.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=25.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.8 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=6.5 +wipe_retraction_speed=25 +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=25.0 +support_tree_angle_slow=40.0 +jerk_wall=8 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.4000240002400024 +raft_interface_jerk=8 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=12.5 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=4 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=60.0 +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=25 +acceleration_print=500 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=500 +machine_settings=0 +skirt_line_count=3 +retraction_count_max=100 +jerk_travel_layer_0=8 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.8 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=8 +speed_z_hop=5 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=500 +jerk_support_roof=8 +machine_endstop_positive_direction_y=False +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=0 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.30000000000000004 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=50.0 +retraction_min_travel=1.5 +support_line_width=0.4 +jerk_roofing=8 +roofing_line_width=0.4 +support_initial_layer_line_distance=0 +meshfix_union_all=True +support_z_distance=0.2 +support_bottom_line_width=0.4 +acceleration_wall_x=500 +skin_material_flow=100 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.8 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=0 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=8 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.2 +command_line_settings=0 +raft_margin=15 +material_end_of_filament_purge_speed=0.5 +speed_support=25.0 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=8 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=8 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.2 +wipe_retraction_enable=True +cool_min_layer_time=10 +top_thickness=0.8 +jerk_support_bottom=8 +conical_overhang_hole_size=0 +material_final_print_temperature=200 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_007.txt b/tests/voronoi_crash_resources/settings_007.txt new file mode 100644 index 00000000000..2a63b6dbd9f --- /dev/null +++ b/tests/voronoi_crash_resources/settings_007.txt @@ -0,0 +1,1092 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=40.0 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=26.666666666666668 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_extruder_nr=0 +support_bottom_height=0.8 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +machine_depth=220 +adhesion_type=skirt +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +machine_heated_build_volume=False +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=20.0 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +time=19:00:31 +machine_buildplate_type=glass +center_object=False +speed_print=80.0 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=220 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=0.2 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=cubic +support_structure=normal +clean_between_layers=False +speed_prime_tower=40.0 +speed_wall_x=40.0 +support_bottom_stair_step_height=0 +draft_shield_enabled=False +support_roof_height=0.8 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=60 +machine_max_jerk_e=5 +raft_margin=15 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=True +acceleration_infill=500 +acceleration_support_roof=500 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.24 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=500 +brim_gap=0 +machine_max_acceleration_y=500 +meshfix_maximum_deviation=0.025 +quality_changes_name=empty +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.12 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=60 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=305.0 +travel_retract_before_outer_wall=True +jerk_support_interface=8 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=True +support_bottom_line_distance=2.4000240002400024 +jerk_support_bottom=8 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.2 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=500 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=500 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0.2 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=-1 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=5 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=8 +support_roof_pattern=grid +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=20.0 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +experimental=0 +bridge_wall_min_length=2.2 +prime_tower_position_x=207.79999999999998 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=500 +interlocking_orientation=22.5 +jerk_support=8 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +retraction_extrusion_window=10 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=40.0 +support_xy_distance=0.8 +infill_wipe_dist=0.0 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=8 +adaptive_layer_height_variation_step=0.04 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=185.79999999999998 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +machine_max_feedrate_z=10 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=40.0 +speed_layer_0=20.0 +jerk_print=8 +top_bottom_extruder_nr=-1 +retraction_hop=0.2 +jerk_wall_0=8 +raft_interface_speed=30.0 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=10 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=210 +speed_roofing=40.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=False +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +material_type=empty +support_zag_skip_count=10 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=10.0 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.25 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=0.8 +raft_interface_jerk=8 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=-1 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=500 +travel_speed=200.0 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=True +material=0 +infill_before_walls=False +support_z_distance=0.2 +meshfix_union_all=True +z_seam_corner=z_seam_corner_weighted +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +acceleration_support=500 +jerk_layer_0=8 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.04 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=10 +infill_line_distance=6.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.25 +support_extruder_nr_layer_0=0 +material_bed_temperature=60 +support_tree_rest_preference=graceful +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=20.0 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +machine_disallowed_areas=[] +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=40.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=500 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +mold_angle=40 +raft_speed=40.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +anti_overhang_mesh=False +wall_0_material_flow_layer_0=100 +speed_support_interface=40.0 +machine_max_acceleration_x=500 +bridge_skin_material_flow_2=100 +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=40.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=noskin +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=0 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=40.0 +support_tree_angle_slow=30.0 +jerk_wall=8 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=30.0 +print_bed_temperature=60 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=40.0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=4 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +retraction_hop_after_extruder_switch_height=0.2 +acceleration_prime_tower=500 +machine_max_feedrate_y=500 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=33.333 +bridge_wall_speed=20.0 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=grid +initial_bottom_layers=4 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=8 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=110.0 +retraction_combing_max_distance=30 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +raft_interface_thickness=0.30000000000000004 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.2 +support_initial_layer_line_distance=2.0 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=everywhere +jerk_travel_layer_0=8 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=50 +skirt_line_count=3 +material_id=empty_material +retraction_count_max=100 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=8 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=80.0 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=back +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=30.0 +support_angle=45 +machine_max_feedrate_x=500 +machine_width=220 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=grid +acceleration_print=500 +material_flush_purge_speed=0.5 +minimum_interface_area=10 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=8 +bridge_wall_coast=100 +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=True +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.2 +speed_travel=200.0 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=True +machine_max_acceleration_e=5000 +roofing_layer_count=0 +skin_preshrink=0.8 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=True +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=25 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=500 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +speed_support=40.0 +retraction_min_travel=1.5 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=8 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=2 +jerk_skirt_brim=8 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=45 +machine_max_jerk_z=0.4 +cool_min_layer_time=10 +speed_z_hop=5 +xy_offset_layer_0=0 +jerk_support_roof=8 +machine_extruder_count=1 +material_final_print_temperature=210 +jerk_travel=8 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=0.8 +support_brim_enable=True +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +acceleration_travel=500 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=500 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=8 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=500 +support_interface_line_width=0.4 +jerk_infill=8 +mesh_position_y=0 +cool_fan_full_at_height=0.6000000000000001 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=500 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +speed_support_bottom=40.0 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=26.666666666666668 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=4 +support_bottom_height=0.8 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.0 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=10 +wall_0_wipe_dist=0.0 +support_infill_sparse_thickness=0.2 +skin_overlap=10.0 +speed_travel_layer_0=100.0 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=20.0 +support_brim_width=4 +top_bottom_thickness=0.8 +raft_jerk=8 +center_object=False +speed_print=80.0 +travel=0 +material_print_temperature_layer_0=225.0 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=False +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=220 +support_xy_distance=0.8 +speed_wall=40.0 +skin_edge_support_layers=0 +speed_topbottom=40.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=40.0 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.12 +connect_skin_polygons=False +infill_pattern=cubic +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=0 +skin_edge_support_thickness=0 +support_roof_height=0.8 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=45 +travel_avoid_supports=True +acceleration_infill=500 +skin_outline_count=1 +jerk_prime_tower=8 +machine_nozzle_id=unknown +acceleration_travel_layer_0=500 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=500 +brim_gap=0 +support_xy_overrides_z=xy_overrides_z +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=4 +support_interface_pattern=grid +support_xy_distance_overhang=0.4 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=6.0 +support_tree_top_rate=30 +wall_line_width_0=0.4 +acceleration_travel=500 +support_bottom_material_flow=100 +acceleration_wall=500 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=45 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=500 +meshfix=0 +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0.2 +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +wipe_retraction_amount=5 +material_break_temperature=50 +support_top_distance=0.2 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=5 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=20 +support_roof_line_distance=2.4000240002400024 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=40.0 +raft_base_jerk=8 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=20.0 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=500 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=500 +raft_base_thickness=0.24 +jerk_support=8 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=8 +retraction_hop=0.2 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=500 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=10 +support_fan_enable=False +raft_base_acceleration=500 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.0 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +material_guid=a55a7c05-b00d-42fc-953e-95b01860e05c +retraction_combing_max_distance=30 +z_seam_x=110.0 +infill_line_distance=6.0 +minimum_bottom_area=10 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=500 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=33.333 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=40.0 +speed_layer_0=20.0 +jerk_print=8 +retraction_prime_speed=45 +z_seam_type=back +support_bottom_enable=True +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=225.0 +support_bottom_stair_step_height=0 +speed_roofing=40.0 +brim_outside_only=True +material_standby_temperature=180.0 +xy_offset_layer_0=0 +acceleration_print_layer_0=500 +z_seam_relative=False +fill_outline_gaps=False +support_zag_skip_count=10 +raft_interface_speed=30.0 +travel_avoid_distance=0.625 +material_print_temperature=225.0 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=8 +top_skin_preshrink=0.8 +retraction_hop_enabled=False +acceleration_roofing=500 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_weighted +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=200.0 +support_angle=45 +raft_base_speed=30.0 +jerk_support_interface=8 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=20 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=8 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=500 +support_roof_offset=0.0 +support_interface_density=33.333 +coasting_enable=False +retraction_retract_speed=45 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=225.0 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=40.0 +infill=0 +support_tree_rest_preference=graceful +coasting_speed=90 +bridge_skin_speed_3=20.0 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=40.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=8 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=20.0 +acceleration_support=500 +retraction_hop_after_extruder_switch_height=0.2 +machine_extruder_end_pos_abs=False +jerk_layer_0=8 +cool_min_temperature=225.0 +mold_angle=40 +raft_speed=40.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=40.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.8 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=5 +wipe_retraction_speed=45 +skirt_brim_speed=20.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=10 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=40.0 +support_tree_angle_slow=30.0 +jerk_wall=8 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=30.0 +lightning_infill_support_angle=40 +support_bottom_line_distance=2.4000240002400024 +raft_interface_jerk=8 +support_interface_wall_count=0 +support_roof_enable=True +alternate_extra_perimeter=False +bridge_wall_speed=20.0 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.25 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=4 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=grid +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=45 +support_interface_skip_height=0.2 +jerk_support_infill=8 +wall_overhang_speed_factor=100 +infill_before_walls=False +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=45 +acceleration_print=500 +support_bottom_pattern=grid +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=500 +machine_settings=0 +skirt_line_count=3 +retraction_count_max=100 +jerk_travel_layer_0=8 +mold_enabled=False +support_brim_enable=True +support_interface_height=0.8 +meshfix_maximum_travel_resolution=0.25 +mold_roof_height=0.5 +jerk_ironing=8 +speed_z_hop=5 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=10.0 +acceleration_prime_tower=500 +jerk_support_roof=8 +machine_endstop_positive_direction_y=False +acceleration_wall_0=500 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=20 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=500 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.30000000000000004 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=80.0 +retraction_min_travel=1.5 +support_line_width=0.4 +jerk_roofing=8 +roofing_line_width=0.4 +support_initial_layer_line_distance=2.0 +meshfix_union_all=True +support_z_distance=0.2 +support_bottom_line_width=0.4 +acceleration_wall_x=500 +skin_material_flow=100 +support_bottom_density=33.333 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=225.0 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.8 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=2 +minimum_interface_area=10 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=8 +bridge_wall_material_flow=50 +support_interface_enable=True +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.2 +command_line_settings=0 +raft_margin=15 +material_end_of_filament_purge_speed=0.5 +speed_support=40.0 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=8 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=8 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=0.2 +wipe_retraction_enable=True +cool_min_layer_time=10 +top_thickness=0.8 +jerk_support_bottom=8 +conical_overhang_hole_size=0 +material_final_print_temperature=225.0 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=True +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_008.txt b/tests/voronoi_crash_resources/settings_008.txt new file mode 100644 index 00000000000..4c0a14ef71d --- /dev/null +++ b/tests/voronoi_crash_resources/settings_008.txt @@ -0,0 +1,1114 @@ +initial_extruder_nr=0 +date=02-06-2023 +print_temperature=200 +material_name=empty +draft_shield_height_limitation=full +prime_tower_wipe_enabled=True +top_bottom_pattern=lines +connect_infill_polygons=False +xy_offset=-0.015 +raft_base_jerk=20 +machine_heated_build_volume=True +resolution=0 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +support_roof_line_width=0.4 +material_shrinkage_percentage_xy=100.2 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.4 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +brim_inside_margin=2.5 +interlocking_depth=2 +skirt_gap=3 +mold_roof_height=0.5 +machine_max_acceleration_e=10000 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +machine_gcode_flavor=Griffin +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +infill_offset_y=0 +switch_extruder_retraction_speeds=20 +machine_firmware_retract=False +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +adaptive_layer_height_variation=0.1 +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +prime_tower_size=20 +extruders_enabled_count=2 +smooth_spiralized_contours=True +time=15:31:27 +machine_buildplate_type=glass +mesh_position_y=0 +jerk_print=20 +machine_max_feedrate_y=300 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +acceleration_wall_x=1500 +carve_multiple_volumes=True +flow_rate_extrusion_offset_factor=100 +speed_support_roof=35 +retraction_extra_prime_amount=0 +jerk_topbottom=20 +remove_empty_first_layers=True +wall_transition_angle=10 +support_extruder_nr=0 +z_seam_position=back +material_id=empty_material +retraction_count_max=25 +inset_direction=outside_in +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +meshfix_maximum_deviation=0.04 +mold_width=5 +adhesion_extruder_nr=-1 +brim_smart_ordering=True +raft_interface_acceleration=3500 +support_roof_material_flow=95.0 +cool_min_layer_time_fan_speed_max=11 +quality_changes_name=empty +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +material_break_speed=25 +speed_print=35 +speed_slowdown_layers=1 +default_material_print_temperature=200 +jerk_support_interface=20 +support_tree_branch_reach_limit=30 +support_bottom_stair_step_min_slope=10.0 +bottom_thickness=1 +infill_material_flow=100 +infill_angles=[ ] +skirt_height=3 +sub_div_rad_add=0.4 +speed_layer_0=14.999999999999998 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=300 +switch_extruder_retraction_amount=8 +skirt_brim_speed=14.999999999999998 +raft_surface_line_width=0.4 +roofing_pattern=lines +jerk_ironing=20 +machine_shape=rectangular +slicing_tolerance=middle +raft_interface_fan_speed=50.0 +wipe_retraction_amount=6.5 +material_break_temperature=50 +print_bed_temperature=60 +lightning_infill_support_angle=40 +acceleration_support_interface=1000 +wipe_retraction_extra_prime_amount=0 +skirt_brim_extruder_nr=-1 +material_print_temperature_layer_0=200 +cool_fan_full_at_height=0.2 +machine_disallowed_areas=[] +z_seam_relative=False +support_structure=tree +infill_sparse_thickness=0.15 +cool_min_speed=4 +wall_transition_filter_distance=100 +conical_overhang_enabled=False +support_xy_distance=0.7 +speed_wall=30 +speed_wall_x=30 +material_bed_temp_wait=True +retraction_min_travel=5 +coasting_speed=90 +material_print_temp_prepend=True +support_bottom_line_width=0.4 +support_interface_extruder_nr=0 +support_tower_maximum_supported_diameter=3.0 +nozzle_disallowed_areas=[] +brim_replaces_support=True +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +wipe_brush_pos_x=100 +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +machine_acceleration=3000 +raft_surface_fan_speed=100 +switch_extruder_prime_speed=15 +min_bead_width=0.34 +wall_x_extruder_nr=-1 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=50 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +raft_base_extruder_nr=0 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +raft_surface_extruder_nr=0 +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=20 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=20 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +interlocking_beam_layer_count=2 +infill_mesh_order=0 +support=0 +min_wall_line_width=0.34 +top_layers=7 +machine_max_jerk_z=0.4 +support_tree_angle=60 +alternate_carve_order=True +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +machine_max_feedrate_x=300 +machine_width=330 +acceleration_support=2000 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +material_alternate_walls=False +acceleration_support_bottom=1000 +material_end_of_filament_purge_length=20 +material_break_preparation_speed=2 +machine_heated_bed=True +machine_use_extruder_offset_to_offset_coords=True +infill_multiplier=1 +prime_tower_enable=False +top_bottom=0 +support_roof_density=100 +machine_max_feedrate_z=40 +bridge_wall_coast=0 +support_roof_wall_count=1 +infill_extruder_nr=-1 +infill_sparse_density=20 +magic_spiralize=False +machine_show_variants=False +layer_height=0.15 +material_break_preparation_retracted_position=-16 +infill_mesh=False +speed_ironing=13.333333333333334 +command_line_settings=0 +wall_0_inset=0 +relative_extrusion=False +infill_wipe_dist=0 +print_sequence=all_at_once +skin_overlap=10 +speed_infill=35 +support_offset=0.0 +material_flow=100 +travel_speed=150 +speed=0 +cool_fan_speed_min=50 +wipe_move_distance=20 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=10 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +interlocking_boundary_avoidance=2 +material_print_temperature=200 +min_even_wall_line_width=0.34 +support_meshes_present=False +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +speed_travel_layer_0=150 +small_feature_speed_factor=50 +raft_interface_extruder_nr=0 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +support_interface_height=0.3 +interlocking_orientation=22.5 +support_mesh_drop_down=True +skin_no_small_gaps_heuristic=False +ironing_line_spacing=0.1 +material_bed_temp_prepend=True +infill_before_walls=True +material=0 +support_interface_skip_height=0.15 +blackmagic=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=50 +bridge_enable_more_layers=False +speed_topbottom=20 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +support_infill_rate=0 +layer_start_y=228.0 +extruder_prime_pos_x=0 +build_volume_temperature=28 +jerk_enabled=True +magic_fuzzy_skin_enabled=False +adaptive_layer_height_enabled=False +support_connect_zigzags=True +ooze_shield_enabled=False +support_line_width=0.4 +roofing_line_width=0.4 +support_interface_material_flow=95.0 +infill_overlap=0 +wipe_retraction_speed=45 +retraction_amount=6.5 +jerk_travel_enabled=False +conical_overhang_hole_size=0 +jerk_support_bottom=20 +top_thickness=1 +acceleration_enabled=True +support_roof_extruder_nr=0 +machine_center_is_zero=False +machine_scale_fan_speed_zero_to_one=False +minimum_polygon_circumference=1.0 +raft_base_wall_count=1 +layer_start_x=330.0 +machine_min_cool_heat_time_window=15 +lightning_infill_overhang_angle=40 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +jerk_infill=20 +material_final_print_temperature=185 +layer_height_0=0.2 +support_initial_layer_line_distance=0 +machine_name=Ultimaker S5 +bridge_wall_min_length=2.1 +prime_tower_position_x=299.2 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +brim_width=3 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +ironing_only_highest_layer=False +raft_remove_inside_corners=False +machine_max_feedrate_e=45 +prime_tower_line_width=0.4 +wall_line_width_x=0.4 +jerk_support=20 +machine_nozzle_cool_down_speed=0.8 +skin_line_width=0.4 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +draft_shield_enabled=False +minimum_interface_area=1.0 +machine_max_jerk_xy=20.0 +cutting_mesh=False +conical_overhang_angle=50 +mesh_position_z=0 +infill_overlap_mm=0.0 +wall_line_width_0=0.4 +interlocking_enable=False +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +machine_max_jerk_e=5.0 +raft_margin=15 +acceleration_support_roof=1000 +support_roof_offset=0.0 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +support_infill_angles=[ ] +shell=0 +small_skin_width=0.8 +top_skin_expand_distance=0.8 +speed_print_layer_0=14.999999999999998 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +support_type=everywhere +skin_edge_support_layers=4 +ooze_shield_dist=2 +ironing_inset=0.38 +bridge_fan_speed_3=50 +speed_support=23 +fill_outline_gaps=True +material_type=empty +support_zag_skip_count=0 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +support_tree_limit_branch_reach=True +meshfix_maximum_travel_resolution=0.8 +support_extruder_nr_layer_0=0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +default_material_bed_temperature=60 +raft_jerk=20 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +raft_base_fan_speed=0 +bridge_settings_enabled=True +material_no_load_move_factor=0.940860215 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +material_bed_temperature_layer_0=60 +support_infill_sparse_thickness=0.15 +wall_extruder_nr=-1 +raft_base_acceleration=3500 +wall_0_extruder_nr=-1 +machine_extruders_share_heater=False +cool_lift_head=False +speed_wall_0=20 +gradual_infill_step_height=1.5 +prime_tower_brim_enable=False +minimum_roof_area=1.0 +support_bottom_density=100 +skin_material_flow=95.0 +raft_surface_jerk=20 +adaptive_layer_height_variation_step=0.01 +support_conical_min_width=5.0 +support_roof_angles=[ ] +material_print_temp_wait=True +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +bridge_skin_speed=20 +skirt_brim_material_flow=100 +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_shrinkage_percentage_z=100.1 +support_roof_line_distance=0.4 +brim_line_count=8 +support_mesh=False +support_roof_pattern=zigzag +speed_roofing=20 +support_bottom_stair_step_height=0.3 +brim_outside_only=True +material_standby_temperature=100 +raft_speed=15 +mold_angle=40 +retraction_combing=no_outer_surfaces +material_flow_layer_0=100 +wall_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=50 +coasting_min_volume=0.8 +optimize_wall_printing_order=True +line_width=0.4 +machine_minimum_feedrate=0.0 +skin_edge_support_thickness=0.6 +support_wall_count=1 +machine_max_acceleration_z=100 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +bridge_skin_density_3=100 +support_interface_enable=False +prime_tower_position_y=209.2 +mesh_position_x=0 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +top_skin_preshrink=0.8 +raft_airgap=0.25 +wall_distribution_count=1 +jerk_wall_0=20 +retraction_hop=2 +support_bottom_extruder_nr=0 +retraction_speed=45 +extruder_prime_pos_y=0 +flow_rate_max_extrusion_offset=0 +material_diameter=2.85 +support_z_distance=0.3 +meshfix_union_all=True +infill_support_angle=40 +jerk_prime_tower=20 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +support_pattern=zigzag +prime_tower_min_volume=6 +support_tree_rest_preference=graceful +material_bed_temperature=60 +support_interface_wall_count=1 +material_shrinkage_percentage=100.2 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +machine_head_with_fans_polygon=[[-41.4, -45.8], [-41.4, 36.0], [63.3, 36.0], [63.3, -45.8]] +z_seam_corner=z_seam_corner_none +nozzle_offsetting_for_disallowed_areas=False +meshfix=0 +acceleration_skirt_brim=1000 +machine_max_acceleration_y=9000 +meshfix_keep_open_polygons=False +skin_monotonic=False +support_interface_offset=0.0 +adhesion_type=brim +z_seam_type=sharpest_corner +retraction_prime_speed=15 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +clean_between_layers=False +skin_preshrink=0.8 +speed_support_interface=35 +machine_max_acceleration_x=9000 +bridge_wall_speed=20 +support_bottom_offset=0.0 +support_roof_enable=False +alternate_extra_perimeter=False +speed_prime_tower=20 +support_infill_extruder_nr=0 +infill=0 +jerk_wall_x=20 +material_flush_purge_speed=0.5 +skin_material_flow_layer_0=90.0 +top_bottom_pattern_0=lines +bridge_fan_speed=100 +support_material_flow=100 +support_tree_max_diameter=25 +support_conical_angle=30 +support_enable=True +cool_min_layer_time=6 +day=Fri +wipe_retraction_enable=True +support_skip_some_zags=False +machine_steps_per_mm_x=50 +top_bottom_extruder_nr=-1 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +roofing_extruder_nr=-1 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +bridge_skin_support_threshold=50 +prime_tower_flow=100 +acceleration_ironing=1000 +roofing_material_flow=100 +support_fan_enable=False +retraction_extrusion_window=1 +support_tower_roof_angle=65 +extruder_prime_pos_z=0 +retraction_hop_after_extruder_switch_height=2 +raft_interface_line_width=0.6000000000000001 +gantry_height=55 +material_surface_energy=100 +machine_extruder_count=2 +jerk_support_roof=20 +minimum_bottom_area=1.0 +infill_line_distance=6.0 +infill_enable_travel_optimization=False +machine_height=300 +travel_retract_before_outer_wall=False +raft_surface_speed=35 +cooling=0 +machine_extruders_share_nozzle=False +raft_acceleration=3500 +support_bottom_height=0.3 +acceleration_travel_enabled=False +travel=0 +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +min_feature_size=0.1 +quality_name=Normal +wall_0_material_flow_layer_0=110.00000000000001 +anti_overhang_mesh=False +support_interface_density=100 +ironing_monotonic=False +mold_enabled=False +jerk_travel_layer_0=20.0 +wipe_hop_enable=True +zig_zaggify_support=True +machine_depth=240 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +bridge_sparse_infill_max_density=0 +roofing_angles=[] +material_initial_print_temperature=190 +material_break_retracted_position=-50 +machine_heat_zone_length=16 +adaptive_layer_height_threshold=0.2 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +draft_shield_dist=10 +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +support_brim_enable=True +minimum_support_area=0.0 +prime_tower_wipe_enabled=True +acceleration_wall_x=1500 +machine_extruder_start_pos_abs=True +top_bottom_pattern=lines +xy_offset=-0.015 +machine_nozzle_offset_y=0 +raft_base_jerk=20 +resolution=0 +switch_extruder_retraction_speeds=20 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +connect_infill_polygons=False +support_roof_line_width=0.4 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.6 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +jerk_topbottom=20 +brim_inside_margin=2.5 +skirt_gap=3 +mold_roof_height=0.5 +mold_width=5 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +small_feature_speed_factor=50 +infill_offset_y=0 +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +mesh_position_y=0 +jerk_print=20 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +speed_support_roof=35 +retraction_extra_prime_amount=0 +skin_outline_count=1 +jerk_prime_tower=20 +wall_transition_angle=10 +z_seam_position=back +retraction_count_max=25 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +support_roof_material_flow=95.0 +retraction_prime_speed=45 +z_seam_type=sharpest_corner +cool_min_layer_time_fan_speed_max=11 +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +support_bottom_stair_step_min_slope=10.0 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=7200 +skirt_brim_speed=17.249999999999996 +switch_extruder_retraction_amount=16 +conical_overhang_angle=50 +infill_overlap_mm=0.0 +mesh_position_z=0 +skin_monotonic=False +meshfix_keep_open_polygons=False +sub_div_rad_add=0.4 +machine_extruder_end_pos_x=330 +wipe_retraction_amount=6.5 +material_break_temperature=60 +acceleration_support_interface=1000 +z_seam_relative=False +wipe_retraction_extra_prime_amount=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=100 +blackmagic=0 +slicing_tolerance=middle +machine_extruder_end_pos_y=237 +material_break_preparation_retracted_position=-16 +infill_sparse_thickness=0.15 +support_xy_distance=0.7 +speed_wall=45 +speed_wall_x=45 +retraction_min_travel=0.8 +support_bottom_line_width=0.4 +brim_replaces_support=True +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=AA 0.4 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +raft_interface_acceleration=3500 +raft_surface_fan_speed=100 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=100 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +wipe_hop_enable=True +zig_zaggify_support=True +material_alternate_walls=False +material_end_of_filament_purge_length=20 +acceleration_support_bottom=1000 +material_break_preparation_speed=50 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +support_roof_angles=[ ] +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=35 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +min_odd_wall_line_width=0.34 +top_thickness=1 +default_material_print_temperature=200 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=35 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +min_infill_area=0 +machine_nozzle_tip_outer_diameter=1.0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +support=0 +min_wall_line_width=0.34 +top_bottom=0 +support_roof_density=100 +top_layers=7 +support_tree_angle=60 +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +jerk_wall_0=20 +retraction_hop=2 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +infill_multiplier=1 +raft_interface_fan_speed=50.0 +wall_transition_filter_distance=100 +bridge_wall_coast=0 +jerk_support_interface=20 +support_roof_wall_count=1 +infill_sparse_density=20 +speed_ironing=23.333333333333332 +command_line_settings=0 +infill_wipe_dist=0 +skin_overlap=15 +speed_infill=70 +machine_nozzle_offset_x=0 +support_offset=0.0 +material_flow=100 +speed=0 +cool_fan_speed_min=100 +wipe_move_distance=20 +optimize_wall_printing_order=True +line_width=0.4 +switch_extruder_prime_speed=20 +min_bead_width=0.34 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=0 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +material_print_temperature=200 +min_even_wall_line_width=0.34 +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +conical_overhang_enabled=False +speed_travel_layer_0=150 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +roofing_pattern=lines +support_interface_material_flow=95.0 +infill_overlap=0 +extruder_nr=0 +support_interface_height=0.3 +support_skip_some_zags=False +skin_no_small_gaps_heuristic=False +speed_support=23 +ironing_inset=0.38 +bridge_fan_speed_3=100 +bridge_enable_more_layers=False +speed_topbottom=35 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +magic_fuzzy_skin_enabled=False +roofing_line_width=0.4 +jerk_infill=20 +speed_print=70 +support_bottom_offset=0.0 +bridge_wall_speed=35 +support_initial_layer_line_distance=0 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +layer_start_y=228.0 +extruder_prime_pos_x=-3 +wall_0_inset=0 +brim_width=7 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +brim_line_count=18 +support_roof_line_distance=0.4 +prime_tower_line_width=0.4 +skin_overlap_mm=0.06 +small_feature_max_length=0.0 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +support_wall_count=1 +skin_edge_support_thickness=0.6 +wall_line_width_x=0.4 +jerk_support=20 +machine_min_cool_heat_time_window=15 +layer_start_x=330.0 +machine_nozzle_cool_down_speed=0.75 +skin_line_width=0.4 +machine_extruder_start_pos_x=330 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +infill_angles=[ ] +minimum_interface_area=1.0 +raft_interface_line_width=0.6000000000000001 +material_surface_energy=100 +support_fan_enable=False +retraction_extrusion_window=1 +machine_extruder_start_pos_y=237 +support_infill_angles=[ ] +small_skin_width=0.8 +shell=0 +wall_line_width_0=0.4 +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +raft_margin=15 +material_break_preparation_temperature=210 +wall_transition_filter_deviation=0.1 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +acceleration_support_roof=1000 +support_roof_offset=0.0 +raft_surface_line_width=0.4 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +acceleration_ironing=1000 +prime_tower_flow=100 +top_skin_expand_distance=0.8 +speed_print_layer_0=17.249999999999996 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +speed_roofing=35 +brim_outside_only=True +material_standby_temperature=100 +support_bottom_stair_step_height=0.3 +fill_outline_gaps=True +support_zag_skip_count=0 +machine_endstop_positive_direction_x=False +material_final_print_temperature=185 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=2.85 +raft_jerk=20 +raft_base_acceleration=3500 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +bridge_fan_speed=100 +support_tree_max_diameter=25 +support_material_flow=100 +material_no_load_move_factor=0.91 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +support_infill_sparse_thickness=0.15 +machine_extruder_cooling_fan_number=0 +minimum_roof_area=1.0 +material_print_temperature_layer_0=200 +raft_base_fan_speed=0 +machine_steps_per_mm_x=50 +support_tree_branch_reach_limit=30 +support_bottom_density=100 +skin_material_flow=95.0 +support_conical_min_width=5.0 +support_line_width=0.4 +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +raft_speed=15 +mold_angle=40 +material_break_speed=25 +speed_wall_0=23 +cool_lift_head=False +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_guid=506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 +inset_direction=outside_in +support_roof_pattern=zigzag +bridge_skin_speed=35 +skirt_brim_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=100 +coasting_min_volume=0.8 +conical_overhang_hole_size=0 +jerk_support_bottom=20 +cool_min_speed=5 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +meshfix=0 +acceleration_skirt_brim=1000 +support_interface_offset=0.0 +mesh_position_x=0 +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=50 +z_seam_corner=z_seam_corner_none +bottom_thickness=1 +support_interface_wall_count=1 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.25 +wall_distribution_count=1 +retraction_speed=45 +extruder_prime_pos_y=6 +material=0 +infill_before_walls=True +support_z_distance=0.3 +meshfix_union_all=True +raft_surface_jerk=20 +infill_support_angle=40 +support_pattern=zigzag +clean_between_layers=False +skin_preshrink=0.8 +support_roof_enable=False +alternate_extra_perimeter=False +minimum_support_area=0.0 +lightning_infill_overhang_angle=40 +support_tree_rest_preference=graceful +coasting_speed=90 +speed_prime_tower=35 +infill=0 +jerk_wall_x=20 +mold_enabled=False +jerk_travel_layer_0=20.0 +infill_material_flow=100 +ironing_monotonic=False +extruder_prime_pos_z=2 +support_tower_roof_angle=65 +meshfix_maximum_deviation=0.04 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +cool_fan_full_at_height=0.2 +support_brim_enable=True +minimum_bottom_area=1.0 +infill_line_distance=6.0 +jerk_support_roof=20 +meshfix_maximum_travel_resolution=0.8 +support_bottom_height=0.3 +raft_acceleration=3500 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +top_bottom_pattern_0=lines +skin_material_flow_layer_0=90.0 +lightning_infill_support_angle=40 +machine_extruder_end_pos_abs=True +retraction_hop_after_extruder_switch_height=2 +acceleration_support=2000 +support_conical_angle=30 +speed_layer_0=17.249999999999996 +infill_enable_travel_optimization=False +raft_surface_speed=35 +cooling=0 +min_feature_size=0.1 +travel=0 +support_connect_zigzags=True +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +material_flush_purge_speed=0.5 +wipe_retraction_speed=45 +retraction_amount=6.5 +material_break_retracted_position=-50 +material_initial_print_temperature=190 +support_tower_maximum_supported_diameter=3.0 +jerk_ironing=20 +roofing_angles=[] +bridge_skin_density_3=100 +support_interface_enable=False +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +bridge_skin_support_threshold=50 +prime_tower_min_volume=6 +roofing_material_flow=100 +support_interface_skip_height=0.15 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +bridge_sparse_infill_max_density=0 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +gradual_infill_step_height=1.5 +machine_heat_zone_length=16 +support_interface_density=100 +support_infill_rate=0 +speed_support_interface=35 +cool_min_layer_time=6 +wipe_retraction_enable=True +support_tree_limit_branch_reach=True +wall_0_material_flow_layer_0=110.00000000000001 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +ironing_only_highest_layer=False +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_009.txt b/tests/voronoi_crash_resources/settings_009.txt new file mode 100644 index 00000000000..d18eb80b4c7 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_009.txt @@ -0,0 +1,1114 @@ +initial_extruder_nr=0 +date=02-06-2023 +print_temperature=200 +material_name=empty +draft_shield_height_limitation=full +prime_tower_wipe_enabled=True +top_bottom_pattern=lines +connect_infill_polygons=False +xy_offset=-0.015 +raft_base_jerk=20 +machine_heated_build_volume=True +resolution=0 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +support_roof_line_width=0.4 +material_shrinkage_percentage_xy=100.2 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.4 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +brim_inside_margin=2.5 +interlocking_depth=2 +skirt_gap=3 +mold_roof_height=0.5 +machine_max_acceleration_e=10000 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +machine_gcode_flavor=Griffin +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +infill_offset_y=0 +switch_extruder_retraction_speeds=20 +machine_firmware_retract=False +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +adaptive_layer_height_variation=0.1 +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +prime_tower_size=20 +extruders_enabled_count=2 +smooth_spiralized_contours=True +time=15:42:02 +machine_buildplate_type=glass +mesh_position_y=0 +jerk_print=20 +machine_max_feedrate_y=300 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +acceleration_wall_x=1500 +carve_multiple_volumes=True +flow_rate_extrusion_offset_factor=100 +speed_support_roof=35 +retraction_extra_prime_amount=0 +jerk_topbottom=20 +remove_empty_first_layers=True +wall_transition_angle=10 +support_extruder_nr=0 +z_seam_position=back +material_id=empty_material +retraction_count_max=25 +inset_direction=outside_in +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +meshfix_maximum_deviation=0.04 +mold_width=5 +adhesion_extruder_nr=-1 +brim_smart_ordering=True +raft_interface_acceleration=3500 +support_roof_material_flow=95.0 +cool_min_layer_time_fan_speed_max=11 +quality_changes_name=empty +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +material_break_speed=25 +speed_print=35 +speed_slowdown_layers=1 +default_material_print_temperature=200 +jerk_support_interface=20 +support_tree_branch_reach_limit=30 +support_bottom_stair_step_min_slope=10.0 +bottom_thickness=1 +infill_material_flow=100 +infill_angles=[ ] +skirt_height=3 +sub_div_rad_add=0.4 +speed_layer_0=14.999999999999998 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=300 +switch_extruder_retraction_amount=8 +skirt_brim_speed=14.999999999999998 +raft_surface_line_width=0.4 +roofing_pattern=lines +jerk_ironing=20 +machine_shape=rectangular +slicing_tolerance=middle +raft_interface_fan_speed=50.0 +wipe_retraction_amount=6.5 +material_break_temperature=50 +print_bed_temperature=60 +lightning_infill_support_angle=40 +acceleration_support_interface=1000 +wipe_retraction_extra_prime_amount=0 +skirt_brim_extruder_nr=-1 +material_print_temperature_layer_0=200 +cool_fan_full_at_height=0.2 +machine_disallowed_areas=[] +z_seam_relative=False +support_structure=tree +infill_sparse_thickness=0.15 +cool_min_speed=4 +wall_transition_filter_distance=100 +conical_overhang_enabled=False +support_xy_distance=0.7 +speed_wall=30 +speed_wall_x=30 +material_bed_temp_wait=True +retraction_min_travel=5 +coasting_speed=90 +material_print_temp_prepend=True +support_bottom_line_width=0.4 +support_interface_extruder_nr=0 +support_tower_maximum_supported_diameter=3.0 +nozzle_disallowed_areas=[] +brim_replaces_support=True +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +wipe_brush_pos_x=100 +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +machine_acceleration=3000 +raft_surface_fan_speed=100 +switch_extruder_prime_speed=15 +min_bead_width=0.34 +wall_x_extruder_nr=-1 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=50 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +raft_base_extruder_nr=0 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +raft_surface_extruder_nr=0 +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=20 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=20 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +interlocking_beam_layer_count=2 +infill_mesh_order=0 +support=0 +min_wall_line_width=0.34 +top_layers=7 +machine_max_jerk_z=0.4 +support_tree_angle=60 +alternate_carve_order=True +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +machine_max_feedrate_x=300 +machine_width=330 +acceleration_support=2000 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +material_alternate_walls=False +acceleration_support_bottom=1000 +material_end_of_filament_purge_length=20 +material_break_preparation_speed=2 +machine_heated_bed=True +machine_use_extruder_offset_to_offset_coords=True +infill_multiplier=1 +prime_tower_enable=False +top_bottom=0 +support_roof_density=100 +machine_max_feedrate_z=40 +bridge_wall_coast=0 +support_roof_wall_count=1 +infill_extruder_nr=-1 +infill_sparse_density=20 +magic_spiralize=False +machine_show_variants=False +layer_height=0.15 +material_break_preparation_retracted_position=-16 +infill_mesh=False +speed_ironing=13.333333333333334 +command_line_settings=0 +wall_0_inset=0 +relative_extrusion=False +infill_wipe_dist=0 +print_sequence=all_at_once +skin_overlap=10 +speed_infill=35 +support_offset=0.0 +material_flow=100 +travel_speed=150 +speed=0 +cool_fan_speed_min=50 +wipe_move_distance=20 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=10 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +interlocking_boundary_avoidance=2 +material_print_temperature=200 +min_even_wall_line_width=0.34 +support_meshes_present=False +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +speed_travel_layer_0=150 +small_feature_speed_factor=50 +raft_interface_extruder_nr=0 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +support_interface_height=0.3 +interlocking_orientation=22.5 +support_mesh_drop_down=True +skin_no_small_gaps_heuristic=False +ironing_line_spacing=0.1 +material_bed_temp_prepend=True +infill_before_walls=True +material=0 +support_interface_skip_height=0.15 +blackmagic=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=50 +bridge_enable_more_layers=False +speed_topbottom=20 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +support_infill_rate=0 +layer_start_y=228.0 +extruder_prime_pos_x=0 +build_volume_temperature=28 +jerk_enabled=True +magic_fuzzy_skin_enabled=False +adaptive_layer_height_enabled=False +support_connect_zigzags=True +ooze_shield_enabled=False +support_line_width=0.4 +roofing_line_width=0.4 +support_interface_material_flow=95.0 +infill_overlap=0 +wipe_retraction_speed=45 +retraction_amount=6.5 +jerk_travel_enabled=False +conical_overhang_hole_size=0 +jerk_support_bottom=20 +top_thickness=1 +acceleration_enabled=True +support_roof_extruder_nr=0 +machine_center_is_zero=False +machine_scale_fan_speed_zero_to_one=False +minimum_polygon_circumference=1.0 +raft_base_wall_count=1 +layer_start_x=330.0 +machine_min_cool_heat_time_window=15 +lightning_infill_overhang_angle=40 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +jerk_infill=20 +material_final_print_temperature=185 +layer_height_0=0.2 +support_initial_layer_line_distance=0 +machine_name=Ultimaker S5 +bridge_wall_min_length=2.1 +prime_tower_position_x=299.2 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +brim_width=3 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +ironing_only_highest_layer=False +raft_remove_inside_corners=False +machine_max_feedrate_e=45 +prime_tower_line_width=0.4 +wall_line_width_x=0.4 +jerk_support=20 +machine_nozzle_cool_down_speed=0.8 +skin_line_width=0.4 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +draft_shield_enabled=False +minimum_interface_area=1.0 +machine_max_jerk_xy=20.0 +cutting_mesh=False +conical_overhang_angle=50 +mesh_position_z=0 +infill_overlap_mm=0.0 +wall_line_width_0=0.4 +interlocking_enable=False +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +machine_max_jerk_e=5.0 +raft_margin=15 +acceleration_support_roof=1000 +support_roof_offset=0.0 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +support_infill_angles=[ ] +shell=0 +small_skin_width=0.8 +top_skin_expand_distance=0.8 +speed_print_layer_0=14.999999999999998 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +support_type=everywhere +skin_edge_support_layers=4 +ooze_shield_dist=2 +ironing_inset=0.38 +bridge_fan_speed_3=50 +speed_support=23 +fill_outline_gaps=True +material_type=empty +support_zag_skip_count=0 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +support_tree_limit_branch_reach=True +meshfix_maximum_travel_resolution=0.8 +support_extruder_nr_layer_0=0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +default_material_bed_temperature=60 +raft_jerk=20 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +raft_base_fan_speed=0 +bridge_settings_enabled=True +material_no_load_move_factor=0.940860215 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +material_bed_temperature_layer_0=60 +support_infill_sparse_thickness=0.15 +wall_extruder_nr=-1 +raft_base_acceleration=3500 +wall_0_extruder_nr=-1 +machine_extruders_share_heater=False +cool_lift_head=False +speed_wall_0=20 +gradual_infill_step_height=1.5 +prime_tower_brim_enable=False +minimum_roof_area=1.0 +support_bottom_density=100 +skin_material_flow=95.0 +raft_surface_jerk=20 +adaptive_layer_height_variation_step=0.01 +support_conical_min_width=5.0 +support_roof_angles=[ ] +material_print_temp_wait=True +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +bridge_skin_speed=20 +skirt_brim_material_flow=100 +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_shrinkage_percentage_z=100.1 +support_roof_line_distance=0.4 +brim_line_count=8 +support_mesh=False +support_roof_pattern=zigzag +speed_roofing=20 +support_bottom_stair_step_height=0.3 +brim_outside_only=True +material_standby_temperature=100 +raft_speed=15 +mold_angle=40 +retraction_combing=no_outer_surfaces +material_flow_layer_0=100 +wall_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=50 +coasting_min_volume=0.8 +optimize_wall_printing_order=True +line_width=0.4 +machine_minimum_feedrate=0.0 +skin_edge_support_thickness=0.6 +support_wall_count=1 +machine_max_acceleration_z=100 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +bridge_skin_density_3=100 +support_interface_enable=False +prime_tower_position_y=209.2 +mesh_position_x=0 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +top_skin_preshrink=0.8 +raft_airgap=0.25 +wall_distribution_count=1 +jerk_wall_0=20 +retraction_hop=2 +support_bottom_extruder_nr=0 +retraction_speed=45 +extruder_prime_pos_y=0 +flow_rate_max_extrusion_offset=0 +material_diameter=2.85 +support_z_distance=0.3 +meshfix_union_all=True +infill_support_angle=40 +jerk_prime_tower=20 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +support_pattern=zigzag +prime_tower_min_volume=6 +support_tree_rest_preference=graceful +material_bed_temperature=60 +support_interface_wall_count=1 +material_shrinkage_percentage=100.2 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +machine_head_with_fans_polygon=[[-41.4, -45.8], [-41.4, 36.0], [63.3, 36.0], [63.3, -45.8]] +z_seam_corner=z_seam_corner_none +nozzle_offsetting_for_disallowed_areas=False +meshfix=0 +acceleration_skirt_brim=1000 +machine_max_acceleration_y=9000 +meshfix_keep_open_polygons=False +skin_monotonic=False +support_interface_offset=0.0 +adhesion_type=brim +z_seam_type=sharpest_corner +retraction_prime_speed=15 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +clean_between_layers=False +skin_preshrink=0.8 +speed_support_interface=35 +machine_max_acceleration_x=9000 +bridge_wall_speed=20 +support_bottom_offset=0.0 +support_roof_enable=False +alternate_extra_perimeter=False +speed_prime_tower=20 +support_infill_extruder_nr=0 +infill=0 +jerk_wall_x=20 +material_flush_purge_speed=0.5 +skin_material_flow_layer_0=90.0 +top_bottom_pattern_0=lines +bridge_fan_speed=100 +support_material_flow=100 +support_tree_max_diameter=25 +support_conical_angle=30 +support_enable=True +cool_min_layer_time=6 +day=Fri +wipe_retraction_enable=True +support_skip_some_zags=False +machine_steps_per_mm_x=50 +top_bottom_extruder_nr=-1 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +roofing_extruder_nr=-1 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +bridge_skin_support_threshold=50 +prime_tower_flow=100 +acceleration_ironing=1000 +roofing_material_flow=100 +support_fan_enable=False +retraction_extrusion_window=1 +support_tower_roof_angle=65 +extruder_prime_pos_z=0 +retraction_hop_after_extruder_switch_height=2 +raft_interface_line_width=0.6000000000000001 +gantry_height=55 +material_surface_energy=100 +machine_extruder_count=2 +jerk_support_roof=20 +minimum_bottom_area=1.0 +infill_line_distance=6.0 +infill_enable_travel_optimization=False +machine_height=300 +travel_retract_before_outer_wall=False +raft_surface_speed=35 +cooling=0 +machine_extruders_share_nozzle=False +raft_acceleration=3500 +support_bottom_height=0.3 +acceleration_travel_enabled=False +travel=0 +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +min_feature_size=0.1 +quality_name=Normal +wall_0_material_flow_layer_0=110.00000000000001 +anti_overhang_mesh=False +support_interface_density=100 +ironing_monotonic=False +mold_enabled=False +jerk_travel_layer_0=20.0 +wipe_hop_enable=True +zig_zaggify_support=True +machine_depth=240 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +bridge_sparse_infill_max_density=0 +roofing_angles=[] +material_initial_print_temperature=190 +material_break_retracted_position=-50 +machine_heat_zone_length=16 +adaptive_layer_height_threshold=0.2 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +draft_shield_dist=10 +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +support_brim_enable=True +minimum_support_area=0.0 +prime_tower_wipe_enabled=True +acceleration_wall_x=1500 +machine_extruder_start_pos_abs=True +top_bottom_pattern=lines +xy_offset=-0.015 +machine_nozzle_offset_y=0 +raft_base_jerk=20 +resolution=0 +switch_extruder_retraction_speeds=20 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +connect_infill_polygons=False +support_roof_line_width=0.4 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.6 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +jerk_topbottom=20 +brim_inside_margin=2.5 +skirt_gap=3 +mold_roof_height=0.5 +mold_width=5 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +small_feature_speed_factor=50 +infill_offset_y=0 +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +mesh_position_y=0 +jerk_print=20 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +speed_support_roof=35 +retraction_extra_prime_amount=0 +skin_outline_count=1 +jerk_prime_tower=20 +wall_transition_angle=10 +z_seam_position=back +retraction_count_max=25 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +support_roof_material_flow=95.0 +retraction_prime_speed=45 +z_seam_type=sharpest_corner +cool_min_layer_time_fan_speed_max=11 +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +support_bottom_stair_step_min_slope=10.0 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=7200 +skirt_brim_speed=17.249999999999996 +switch_extruder_retraction_amount=16 +conical_overhang_angle=50 +infill_overlap_mm=0.0 +mesh_position_z=0 +skin_monotonic=False +meshfix_keep_open_polygons=False +sub_div_rad_add=0.4 +machine_extruder_end_pos_x=330 +wipe_retraction_amount=6.5 +material_break_temperature=60 +acceleration_support_interface=1000 +z_seam_relative=False +wipe_retraction_extra_prime_amount=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=100 +blackmagic=0 +slicing_tolerance=middle +machine_extruder_end_pos_y=237 +material_break_preparation_retracted_position=-16 +infill_sparse_thickness=0.15 +support_xy_distance=0.7 +speed_wall=45 +speed_wall_x=45 +retraction_min_travel=0.8 +support_bottom_line_width=0.4 +brim_replaces_support=True +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=AA 0.4 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +raft_interface_acceleration=3500 +raft_surface_fan_speed=100 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=100 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +wipe_hop_enable=True +zig_zaggify_support=True +material_alternate_walls=False +material_end_of_filament_purge_length=20 +acceleration_support_bottom=1000 +material_break_preparation_speed=50 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +support_roof_angles=[ ] +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=35 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +min_odd_wall_line_width=0.34 +top_thickness=1 +default_material_print_temperature=200 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=35 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +min_infill_area=0 +machine_nozzle_tip_outer_diameter=1.0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +support=0 +min_wall_line_width=0.34 +top_bottom=0 +support_roof_density=100 +top_layers=7 +support_tree_angle=60 +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +jerk_wall_0=20 +retraction_hop=2 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +infill_multiplier=1 +raft_interface_fan_speed=50.0 +wall_transition_filter_distance=100 +bridge_wall_coast=0 +jerk_support_interface=20 +support_roof_wall_count=1 +infill_sparse_density=20 +speed_ironing=23.333333333333332 +command_line_settings=0 +infill_wipe_dist=0 +skin_overlap=15 +speed_infill=70 +machine_nozzle_offset_x=0 +support_offset=0.0 +material_flow=100 +speed=0 +cool_fan_speed_min=100 +wipe_move_distance=20 +optimize_wall_printing_order=True +line_width=0.4 +switch_extruder_prime_speed=20 +min_bead_width=0.34 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=0 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +material_print_temperature=200 +min_even_wall_line_width=0.34 +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +conical_overhang_enabled=False +speed_travel_layer_0=150 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +roofing_pattern=lines +support_interface_material_flow=95.0 +infill_overlap=0 +extruder_nr=0 +support_interface_height=0.3 +support_skip_some_zags=False +skin_no_small_gaps_heuristic=False +speed_support=23 +ironing_inset=0.38 +bridge_fan_speed_3=100 +bridge_enable_more_layers=False +speed_topbottom=35 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +magic_fuzzy_skin_enabled=False +roofing_line_width=0.4 +jerk_infill=20 +speed_print=70 +support_bottom_offset=0.0 +bridge_wall_speed=35 +support_initial_layer_line_distance=0 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +layer_start_y=228.0 +extruder_prime_pos_x=-3 +wall_0_inset=0 +brim_width=7 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +brim_line_count=18 +support_roof_line_distance=0.4 +prime_tower_line_width=0.4 +skin_overlap_mm=0.06 +small_feature_max_length=0.0 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +support_wall_count=1 +skin_edge_support_thickness=0.6 +wall_line_width_x=0.4 +jerk_support=20 +machine_min_cool_heat_time_window=15 +layer_start_x=330.0 +machine_nozzle_cool_down_speed=0.75 +skin_line_width=0.4 +machine_extruder_start_pos_x=330 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +infill_angles=[ ] +minimum_interface_area=1.0 +raft_interface_line_width=0.6000000000000001 +material_surface_energy=100 +support_fan_enable=False +retraction_extrusion_window=1 +machine_extruder_start_pos_y=237 +support_infill_angles=[ ] +small_skin_width=0.8 +shell=0 +wall_line_width_0=0.4 +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +raft_margin=15 +material_break_preparation_temperature=210 +wall_transition_filter_deviation=0.1 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +acceleration_support_roof=1000 +support_roof_offset=0.0 +raft_surface_line_width=0.4 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +acceleration_ironing=1000 +prime_tower_flow=100 +top_skin_expand_distance=0.8 +speed_print_layer_0=17.249999999999996 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +speed_roofing=35 +brim_outside_only=True +material_standby_temperature=100 +support_bottom_stair_step_height=0.3 +fill_outline_gaps=True +support_zag_skip_count=0 +machine_endstop_positive_direction_x=False +material_final_print_temperature=185 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=2.85 +raft_jerk=20 +raft_base_acceleration=3500 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +bridge_fan_speed=100 +support_tree_max_diameter=25 +support_material_flow=100 +material_no_load_move_factor=0.91 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +support_infill_sparse_thickness=0.15 +machine_extruder_cooling_fan_number=0 +minimum_roof_area=1.0 +material_print_temperature_layer_0=200 +raft_base_fan_speed=0 +machine_steps_per_mm_x=50 +support_tree_branch_reach_limit=30 +support_bottom_density=100 +skin_material_flow=95.0 +support_conical_min_width=5.0 +support_line_width=0.4 +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +raft_speed=15 +mold_angle=40 +material_break_speed=25 +speed_wall_0=23 +cool_lift_head=False +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_guid=506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 +inset_direction=outside_in +support_roof_pattern=zigzag +bridge_skin_speed=35 +skirt_brim_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=100 +coasting_min_volume=0.8 +conical_overhang_hole_size=0 +jerk_support_bottom=20 +cool_min_speed=5 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +meshfix=0 +acceleration_skirt_brim=1000 +support_interface_offset=0.0 +mesh_position_x=0 +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=50 +z_seam_corner=z_seam_corner_none +bottom_thickness=1 +support_interface_wall_count=1 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.25 +wall_distribution_count=1 +retraction_speed=45 +extruder_prime_pos_y=6 +material=0 +infill_before_walls=True +support_z_distance=0.3 +meshfix_union_all=True +raft_surface_jerk=20 +infill_support_angle=40 +support_pattern=zigzag +clean_between_layers=False +skin_preshrink=0.8 +support_roof_enable=False +alternate_extra_perimeter=False +minimum_support_area=0.0 +lightning_infill_overhang_angle=40 +support_tree_rest_preference=graceful +coasting_speed=90 +speed_prime_tower=35 +infill=0 +jerk_wall_x=20 +mold_enabled=False +jerk_travel_layer_0=20.0 +infill_material_flow=100 +ironing_monotonic=False +extruder_prime_pos_z=2 +support_tower_roof_angle=65 +meshfix_maximum_deviation=0.04 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +cool_fan_full_at_height=0.2 +support_brim_enable=True +minimum_bottom_area=1.0 +infill_line_distance=6.0 +jerk_support_roof=20 +meshfix_maximum_travel_resolution=0.8 +support_bottom_height=0.3 +raft_acceleration=3500 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +top_bottom_pattern_0=lines +skin_material_flow_layer_0=90.0 +lightning_infill_support_angle=40 +machine_extruder_end_pos_abs=True +retraction_hop_after_extruder_switch_height=2 +acceleration_support=2000 +support_conical_angle=30 +speed_layer_0=17.249999999999996 +infill_enable_travel_optimization=False +raft_surface_speed=35 +cooling=0 +min_feature_size=0.1 +travel=0 +support_connect_zigzags=True +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +material_flush_purge_speed=0.5 +wipe_retraction_speed=45 +retraction_amount=6.5 +material_break_retracted_position=-50 +material_initial_print_temperature=190 +support_tower_maximum_supported_diameter=3.0 +jerk_ironing=20 +roofing_angles=[] +bridge_skin_density_3=100 +support_interface_enable=False +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +bridge_skin_support_threshold=50 +prime_tower_min_volume=6 +roofing_material_flow=100 +support_interface_skip_height=0.15 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +bridge_sparse_infill_max_density=0 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +gradual_infill_step_height=1.5 +machine_heat_zone_length=16 +support_interface_density=100 +support_infill_rate=0 +speed_support_interface=35 +cool_min_layer_time=6 +wipe_retraction_enable=True +support_tree_limit_branch_reach=True +wall_0_material_flow_layer_0=110.00000000000001 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +ironing_only_highest_layer=False +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_010.txt b/tests/voronoi_crash_resources/settings_010.txt new file mode 100644 index 00000000000..3843da798c5 --- /dev/null +++ b/tests/voronoi_crash_resources/settings_010.txt @@ -0,0 +1,1114 @@ +initial_extruder_nr=0 +date=02-06-2023 +print_temperature=200 +material_name=empty +draft_shield_height_limitation=full +prime_tower_wipe_enabled=True +top_bottom_pattern=lines +connect_infill_polygons=False +xy_offset=-0.015 +raft_base_jerk=20 +machine_heated_build_volume=True +resolution=0 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +support_roof_line_width=0.4 +material_shrinkage_percentage_xy=100.2 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.4 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +brim_inside_margin=2.5 +interlocking_depth=2 +skirt_gap=3 +mold_roof_height=0.5 +machine_max_acceleration_e=10000 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +machine_gcode_flavor=Griffin +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +infill_offset_y=0 +switch_extruder_retraction_speeds=20 +machine_firmware_retract=False +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +adaptive_layer_height_variation=0.1 +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +prime_tower_size=20 +extruders_enabled_count=2 +smooth_spiralized_contours=True +time=15:50:07 +machine_buildplate_type=glass +mesh_position_y=0 +jerk_print=20 +machine_max_feedrate_y=300 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +acceleration_wall_x=1500 +carve_multiple_volumes=True +flow_rate_extrusion_offset_factor=100 +speed_support_roof=35 +retraction_extra_prime_amount=0 +jerk_topbottom=20 +remove_empty_first_layers=True +wall_transition_angle=10 +support_extruder_nr=0 +z_seam_position=back +material_id=empty_material +retraction_count_max=25 +inset_direction=outside_in +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +meshfix_maximum_deviation=0.04 +mold_width=5 +adhesion_extruder_nr=-1 +brim_smart_ordering=True +raft_interface_acceleration=3500 +support_roof_material_flow=95.0 +cool_min_layer_time_fan_speed_max=11 +quality_changes_name=empty +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +material_break_speed=25 +speed_print=35 +speed_slowdown_layers=1 +default_material_print_temperature=200 +jerk_support_interface=20 +support_tree_branch_reach_limit=30 +support_bottom_stair_step_min_slope=10.0 +bottom_thickness=1 +infill_material_flow=100 +infill_angles=[ ] +skirt_height=3 +sub_div_rad_add=0.4 +speed_layer_0=14.999999999999998 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=300 +switch_extruder_retraction_amount=8 +skirt_brim_speed=14.999999999999998 +raft_surface_line_width=0.4 +roofing_pattern=lines +jerk_ironing=20 +machine_shape=rectangular +slicing_tolerance=middle +raft_interface_fan_speed=50.0 +wipe_retraction_amount=6.5 +material_break_temperature=50 +print_bed_temperature=60 +lightning_infill_support_angle=40 +acceleration_support_interface=1000 +wipe_retraction_extra_prime_amount=0 +skirt_brim_extruder_nr=-1 +material_print_temperature_layer_0=200 +cool_fan_full_at_height=0.2 +machine_disallowed_areas=[] +z_seam_relative=False +support_structure=tree +infill_sparse_thickness=0.15 +cool_min_speed=4 +wall_transition_filter_distance=100 +conical_overhang_enabled=False +support_xy_distance=0.7 +speed_wall=30 +speed_wall_x=30 +material_bed_temp_wait=True +retraction_min_travel=5 +coasting_speed=90 +material_print_temp_prepend=True +support_bottom_line_width=0.4 +support_interface_extruder_nr=0 +support_tower_maximum_supported_diameter=3.0 +nozzle_disallowed_areas=[] +brim_replaces_support=True +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +wipe_brush_pos_x=100 +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +machine_acceleration=3000 +raft_surface_fan_speed=100 +switch_extruder_prime_speed=15 +min_bead_width=0.34 +wall_x_extruder_nr=-1 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=50 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +raft_base_extruder_nr=0 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +raft_surface_extruder_nr=0 +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=20 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=20 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +interlocking_beam_layer_count=2 +infill_mesh_order=0 +support=0 +min_wall_line_width=0.34 +top_layers=7 +machine_max_jerk_z=0.4 +support_tree_angle=60 +alternate_carve_order=True +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +machine_max_feedrate_x=300 +machine_width=330 +acceleration_support=2000 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +material_alternate_walls=False +acceleration_support_bottom=1000 +material_end_of_filament_purge_length=20 +material_break_preparation_speed=2 +machine_heated_bed=True +machine_use_extruder_offset_to_offset_coords=True +infill_multiplier=1 +prime_tower_enable=False +top_bottom=0 +support_roof_density=100 +machine_max_feedrate_z=40 +bridge_wall_coast=0 +support_roof_wall_count=1 +infill_extruder_nr=-1 +infill_sparse_density=20 +magic_spiralize=False +machine_show_variants=False +layer_height=0.15 +material_break_preparation_retracted_position=-16 +infill_mesh=False +speed_ironing=13.333333333333334 +command_line_settings=0 +wall_0_inset=0 +relative_extrusion=False +infill_wipe_dist=0 +print_sequence=all_at_once +skin_overlap=10 +speed_infill=35 +support_offset=0.0 +material_flow=100 +travel_speed=150 +speed=0 +cool_fan_speed_min=50 +wipe_move_distance=20 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=10 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +interlocking_boundary_avoidance=2 +material_print_temperature=200 +min_even_wall_line_width=0.34 +support_meshes_present=False +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +speed_travel_layer_0=150 +small_feature_speed_factor=50 +raft_interface_extruder_nr=0 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +support_interface_height=0.3 +interlocking_orientation=22.5 +support_mesh_drop_down=True +skin_no_small_gaps_heuristic=False +ironing_line_spacing=0.1 +material_bed_temp_prepend=True +infill_before_walls=True +material=0 +support_interface_skip_height=0.15 +blackmagic=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=50 +bridge_enable_more_layers=False +speed_topbottom=20 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +support_infill_rate=0 +layer_start_y=228.0 +extruder_prime_pos_x=0 +build_volume_temperature=28 +jerk_enabled=True +magic_fuzzy_skin_enabled=False +adaptive_layer_height_enabled=False +support_connect_zigzags=True +ooze_shield_enabled=False +support_line_width=0.4 +roofing_line_width=0.4 +support_interface_material_flow=95.0 +infill_overlap=0 +wipe_retraction_speed=45 +retraction_amount=6.5 +jerk_travel_enabled=False +conical_overhang_hole_size=0 +jerk_support_bottom=20 +top_thickness=1 +acceleration_enabled=True +support_roof_extruder_nr=0 +machine_center_is_zero=False +machine_scale_fan_speed_zero_to_one=False +minimum_polygon_circumference=1.0 +raft_base_wall_count=1 +layer_start_x=330.0 +machine_min_cool_heat_time_window=15 +lightning_infill_overhang_angle=40 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +jerk_infill=20 +material_final_print_temperature=185 +layer_height_0=0.2 +support_initial_layer_line_distance=0 +machine_name=Ultimaker S5 +bridge_wall_min_length=2.1 +prime_tower_position_x=299.2 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +brim_width=3 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +ironing_only_highest_layer=False +raft_remove_inside_corners=False +machine_max_feedrate_e=45 +prime_tower_line_width=0.4 +wall_line_width_x=0.4 +jerk_support=20 +machine_nozzle_cool_down_speed=0.8 +skin_line_width=0.4 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +draft_shield_enabled=False +minimum_interface_area=1.0 +machine_max_jerk_xy=20.0 +cutting_mesh=False +conical_overhang_angle=50 +mesh_position_z=0 +infill_overlap_mm=0.0 +wall_line_width_0=0.4 +interlocking_enable=False +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +machine_max_jerk_e=5.0 +raft_margin=15 +acceleration_support_roof=1000 +support_roof_offset=0.0 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +support_infill_angles=[ ] +shell=0 +small_skin_width=0.8 +top_skin_expand_distance=0.8 +speed_print_layer_0=14.999999999999998 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +support_type=everywhere +skin_edge_support_layers=4 +ooze_shield_dist=2 +ironing_inset=0.38 +bridge_fan_speed_3=50 +speed_support=23 +fill_outline_gaps=True +material_type=empty +support_zag_skip_count=0 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +support_tree_limit_branch_reach=True +meshfix_maximum_travel_resolution=0.8 +support_extruder_nr_layer_0=0 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +default_material_bed_temperature=60 +raft_jerk=20 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +raft_base_fan_speed=0 +bridge_settings_enabled=True +material_no_load_move_factor=0.940860215 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +material_bed_temperature_layer_0=60 +support_infill_sparse_thickness=0.15 +wall_extruder_nr=-1 +raft_base_acceleration=3500 +wall_0_extruder_nr=-1 +machine_extruders_share_heater=False +cool_lift_head=False +speed_wall_0=20 +gradual_infill_step_height=1.5 +prime_tower_brim_enable=False +minimum_roof_area=1.0 +support_bottom_density=100 +skin_material_flow=95.0 +raft_surface_jerk=20 +adaptive_layer_height_variation_step=0.01 +support_conical_min_width=5.0 +support_roof_angles=[ ] +material_print_temp_wait=True +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +bridge_skin_speed=20 +skirt_brim_material_flow=100 +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_shrinkage_percentage_z=100.1 +support_roof_line_distance=0.4 +brim_line_count=8 +support_mesh=False +support_roof_pattern=zigzag +speed_roofing=20 +support_bottom_stair_step_height=0.3 +brim_outside_only=True +material_standby_temperature=100 +raft_speed=15 +mold_angle=40 +retraction_combing=no_outer_surfaces +material_flow_layer_0=100 +wall_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=50 +coasting_min_volume=0.8 +optimize_wall_printing_order=True +line_width=0.4 +machine_minimum_feedrate=0.0 +skin_edge_support_thickness=0.6 +support_wall_count=1 +machine_max_acceleration_z=100 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +bridge_skin_density_3=100 +support_interface_enable=False +prime_tower_position_y=209.2 +mesh_position_x=0 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +top_skin_preshrink=0.8 +raft_airgap=0.25 +wall_distribution_count=1 +jerk_wall_0=20 +retraction_hop=2 +support_bottom_extruder_nr=0 +retraction_speed=45 +extruder_prime_pos_y=0 +flow_rate_max_extrusion_offset=0 +material_diameter=2.85 +support_z_distance=0.3 +meshfix_union_all=True +infill_support_angle=40 +jerk_prime_tower=20 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +support_pattern=zigzag +prime_tower_min_volume=6 +support_tree_rest_preference=graceful +material_bed_temperature=60 +support_interface_wall_count=1 +material_shrinkage_percentage=100.2 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +small_feature_max_length=0.0 +skin_overlap_mm=0.04 +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +machine_head_with_fans_polygon=[[-41.4, -45.8], [-41.4, 36.0], [63.3, 36.0], [63.3, -45.8]] +z_seam_corner=z_seam_corner_none +nozzle_offsetting_for_disallowed_areas=False +meshfix=0 +acceleration_skirt_brim=1000 +machine_max_acceleration_y=9000 +meshfix_keep_open_polygons=False +skin_monotonic=False +support_interface_offset=0.0 +adhesion_type=brim +z_seam_type=sharpest_corner +retraction_prime_speed=15 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +clean_between_layers=False +skin_preshrink=0.8 +speed_support_interface=35 +machine_max_acceleration_x=9000 +bridge_wall_speed=20 +support_bottom_offset=0.0 +support_roof_enable=False +alternate_extra_perimeter=False +speed_prime_tower=20 +support_infill_extruder_nr=0 +infill=0 +jerk_wall_x=20 +material_flush_purge_speed=0.5 +skin_material_flow_layer_0=90.0 +top_bottom_pattern_0=lines +bridge_fan_speed=100 +support_material_flow=100 +support_tree_max_diameter=25 +support_conical_angle=30 +support_enable=True +cool_min_layer_time=6 +day=Fri +wipe_retraction_enable=True +support_skip_some_zags=False +machine_steps_per_mm_x=50 +top_bottom_extruder_nr=-1 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +roofing_extruder_nr=-1 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +bridge_skin_support_threshold=50 +prime_tower_flow=100 +acceleration_ironing=1000 +roofing_material_flow=100 +support_fan_enable=False +retraction_extrusion_window=1 +support_tower_roof_angle=65 +extruder_prime_pos_z=0 +retraction_hop_after_extruder_switch_height=2 +raft_interface_line_width=0.6000000000000001 +gantry_height=55 +material_surface_energy=100 +machine_extruder_count=2 +jerk_support_roof=20 +minimum_bottom_area=1.0 +infill_line_distance=6.0 +infill_enable_travel_optimization=False +machine_height=300 +travel_retract_before_outer_wall=False +raft_surface_speed=35 +cooling=0 +machine_extruders_share_nozzle=False +raft_acceleration=3500 +support_bottom_height=0.3 +acceleration_travel_enabled=False +travel=0 +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +min_feature_size=0.1 +quality_name=Normal +wall_0_material_flow_layer_0=110.00000000000001 +anti_overhang_mesh=False +support_interface_density=100 +ironing_monotonic=False +mold_enabled=False +jerk_travel_layer_0=20.0 +wipe_hop_enable=True +zig_zaggify_support=True +machine_depth=240 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +bridge_sparse_infill_max_density=0 +roofing_angles=[] +material_initial_print_temperature=190 +material_break_retracted_position=-50 +machine_heat_zone_length=16 +adaptive_layer_height_threshold=0.2 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +draft_shield_dist=10 +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +support_brim_enable=True +minimum_support_area=0.0 +prime_tower_wipe_enabled=True +acceleration_wall_x=1500 +machine_extruder_start_pos_abs=True +top_bottom_pattern=lines +xy_offset=-0.015 +machine_nozzle_offset_y=0 +raft_base_jerk=20 +resolution=0 +switch_extruder_retraction_speeds=20 +machine_endstop_positive_direction_y=False +raft_fan_speed=0 +machine_nozzle_head_distance=3 +speed_z_hop=10 +support_bottom_wall_count=1 +jerk_skirt_brim=20 +meshfix_union_all_remove_holes=False +support_tree_tip_diameter=0.8 +connect_infill_polygons=False +support_roof_line_width=0.4 +support_tree_min_height_to_model=3 +acceleration_layer_0=1000 +machine_nozzle_heat_up_speed=1.6 +material_flush_purge_length=60 +raft_interface_line_spacing=0.8 +support_xy_distance_overhang=0.2 +bridge_skin_material_flow_2=95.0 +coasting_enable=False +prime_blob_enable=False +roofing_layer_count=1 +jerk_topbottom=20 +brim_inside_margin=2.5 +skirt_gap=3 +mold_roof_height=0.5 +mold_width=5 +magic_mesh_surface_mode=normal +small_hole_max_size=0 +top_bottom_thickness=1 +acceleration_infill=3500 +travel_avoid_supports=False +gradual_infill_steps=0 +max_skin_angle_for_expansion=90 +small_feature_speed_factor=50 +infill_offset_y=0 +infill_offset_x=0 +expand_skins_expand_distance=0.8 +bottom_skin_preshrink=0.8 +center_object=False +support_use_towers=True +raft_interface_layers=1 +support_bottom_pattern=zigzag +xy_offset_layer_0=-0.095 +skin_angles=[] +wipe_hop_speed=10 +raft_interface_thickness=0.22499999999999998 +skirt_line_count=1 +mesh_position_y=0 +jerk_print=20 +infill_randomize_start_location=False +acceleration_prime_tower=2000 +speed_support_roof=35 +retraction_extra_prime_amount=0 +skin_outline_count=1 +jerk_prime_tower=20 +wall_transition_angle=10 +z_seam_position=back +retraction_count_max=25 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +support_roof_material_flow=95.0 +retraction_prime_speed=45 +z_seam_type=sharpest_corner +cool_min_layer_time_fan_speed_max=11 +machine_nozzle_size=0.4 +hole_xy_offset_max_diameter=0 +support_bottom_stair_step_min_slope=10.0 +machine_nozzle_temp_enabled=True +material_maximum_park_duration=7200 +skirt_brim_speed=17.249999999999996 +switch_extruder_retraction_amount=16 +conical_overhang_angle=50 +infill_overlap_mm=0.0 +mesh_position_z=0 +skin_monotonic=False +meshfix_keep_open_polygons=False +sub_div_rad_add=0.4 +machine_extruder_end_pos_x=330 +wipe_retraction_amount=6.5 +material_break_temperature=60 +acceleration_support_interface=1000 +z_seam_relative=False +wipe_retraction_extra_prime_amount=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=100 +blackmagic=0 +slicing_tolerance=middle +machine_extruder_end_pos_y=237 +material_break_preparation_retracted_position=-16 +infill_sparse_thickness=0.15 +support_xy_distance=0.7 +speed_wall=45 +speed_wall_x=45 +retraction_min_travel=0.8 +support_bottom_line_width=0.4 +brim_replaces_support=True +acceleration_travel_layer_0=1428.5714285714287 +machine_nozzle_id=AA 0.4 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=110.0 +raft_surface_layers=2 +skirt_brim_minimal_length=250 +acceleration_support_infill=2000 +brim_gap=0 +raft_interface_acceleration=3500 +raft_surface_fan_speed=100 +lightning_infill_prune_angle=40 +bridge_skin_material_flow_3=95.0 +initial_bottom_layers=7 +bridge_fan_speed_2=100 +support_interface_pattern=zigzag +bottom_skin_expand_distance=0.8 +wipe_hop_enable=True +zig_zaggify_support=True +material_alternate_walls=False +material_end_of_filament_purge_length=20 +acceleration_support_bottom=1000 +material_break_preparation_speed=50 +acceleration_wall=1500 +ironing_enabled=False +acceleration_travel=5000 +support_bottom_material_flow=95.0 +support_roof_angles=[ ] +acceleration_roofing=1000 +switch_extruder_retraction_speed=20 +retraction_hop_enabled=True +bridge_wall_material_flow=100 +bridge_skin_speed_2=35 +support_tree_branch_diameter_angle=7 +interlocking_beam_width=0.8 +min_odd_wall_line_width=0.34 +top_thickness=1 +default_material_print_temperature=200 +magic_fuzzy_skin_point_dist=0.8 +bridge_skin_speed_3=35 +connect_skin_polygons=False +infill_pattern=triangles +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +support_bottom_distance=0.15 +material_crystallinity=False +raft_surface_acceleration=3500 +jerk_wall=20 +dual=0 +support_bottom_enable=False +min_infill_area=0 +machine_nozzle_tip_outer_diameter=1.0 +support_xy_overrides_z=z_overrides_xy +support_brim_width=1.2000000000000002 +z_seam_x=165.0 +retraction_combing_max_distance=15 +machine_steps_per_mm_z=50 +support=0 +min_wall_line_width=0.34 +top_bottom=0 +support_roof_density=100 +top_layers=7 +support_tree_angle=60 +initial_layer_line_width_factor=100.0 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +jerk_wall_0=20 +retraction_hop=2 +raft_base_speed=15 +support_angle=60 +platform_adhesion=0 +support_bottom_stair_step_width=5.0 +infill_multiplier=1 +raft_interface_fan_speed=50.0 +wall_transition_filter_distance=100 +bridge_wall_coast=0 +jerk_support_interface=20 +support_roof_wall_count=1 +infill_sparse_density=20 +speed_ironing=23.333333333333332 +command_line_settings=0 +infill_wipe_dist=0 +skin_overlap=15 +speed_infill=70 +machine_nozzle_offset_x=0 +support_offset=0.0 +material_flow=100 +speed=0 +cool_fan_speed_min=100 +wipe_move_distance=20 +optimize_wall_printing_order=True +line_width=0.4 +switch_extruder_prime_speed=20 +min_bead_width=0.34 +wall_overhang_speed_factor=100 +jerk_support_infill=20 +material_adhesion_tendency=0 +extruder_prime_pos_abs=True +machine_extruders_shared_nozzle_initial_retraction=0 +magic_fuzzy_skin_point_density=1.25 +wall_line_count=2 +wall_line_width=0.4 +material_print_temperature=200 +min_even_wall_line_width=0.34 +raft_interface_speed=25.0 +travel_avoid_distance=3 +z_seam_y=240 +coasting_volume=0.064 +machine_endstop_positive_direction_z=True +small_feature_speed_factor_0=50 +conical_overhang_enabled=False +speed_travel_layer_0=150 +hole_xy_offset=0 +jerk_print_layer_0=20 +material_anti_ooze_retracted_position=-4 +roofing_pattern=lines +support_interface_material_flow=95.0 +infill_overlap=0 +extruder_nr=0 +support_interface_height=0.3 +support_skip_some_zags=False +skin_no_small_gaps_heuristic=False +speed_support=23 +ironing_inset=0.38 +bridge_fan_speed_3=100 +bridge_enable_more_layers=False +speed_topbottom=35 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +gradual_support_infill_step_height=0.6 +magic_fuzzy_skin_enabled=False +roofing_line_width=0.4 +jerk_infill=20 +speed_print=70 +support_bottom_offset=0.0 +bridge_wall_speed=35 +support_initial_layer_line_distance=0 +experimental=0 +zig_zaggify_infill=True +retraction_retract_speed=45 +layer_start_y=228.0 +extruder_prime_pos_x=-3 +wall_0_inset=0 +brim_width=7 +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_wipe_dist=0.2 +brim_line_count=18 +support_roof_line_distance=0.4 +prime_tower_line_width=0.4 +skin_overlap_mm=0.06 +small_feature_max_length=0.0 +mesh_rotation_matrix=[[1,0,0], [0,1,0], [0,0,1]] +support_wall_count=1 +skin_edge_support_thickness=0.6 +wall_line_width_x=0.4 +jerk_support=20 +machine_min_cool_heat_time_window=15 +layer_start_x=330.0 +machine_nozzle_cool_down_speed=0.75 +skin_line_width=0.4 +machine_extruder_start_pos_x=330 +support_tower_diameter=3.0 +bridge_skin_density_2=100 +gradual_support_infill_steps=0 +infill_angles=[ ] +minimum_interface_area=1.0 +raft_interface_line_width=0.6000000000000001 +material_surface_energy=100 +support_fan_enable=False +retraction_extrusion_window=1 +machine_extruder_start_pos_y=237 +support_infill_angles=[ ] +small_skin_width=0.8 +shell=0 +wall_line_width_0=0.4 +support_tree_top_rate=10 +cross_infill_pocket_size=6.0 +material_end_of_filament_purge_speed=0.5 +raft_margin=15 +material_break_preparation_temperature=210 +wall_transition_filter_deviation=0.1 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +acceleration_support_roof=1000 +support_roof_offset=0.0 +raft_surface_line_width=0.4 +wipe_retraction_prime_speed=45 +wipe_pause=0 +machine_settings=0 +acceleration_topbottom=1000 +jerk_travel=20 +acceleration_wall_0=1500 +cool_fan_speed_max=100 +cool_fan_enabled=True +wall_overhang_angle=90 +acceleration_ironing=1000 +prime_tower_flow=100 +top_skin_expand_distance=0.8 +speed_print_layer_0=17.249999999999996 +wall_x_material_flow_layer_0=95.0 +speed_travel=150 +layer_0_z_overlap=0.125 +ironing_pattern=zigzag +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +speed_roofing=35 +brim_outside_only=True +material_standby_temperature=100 +support_bottom_stair_step_height=0.3 +fill_outline_gaps=True +support_zag_skip_count=0 +machine_endstop_positive_direction_x=False +material_final_print_temperature=185 +support_interface_line_width=0.4 +support_tree_angle_slow=40.0 +support_skip_zag_per_mm=20 +support_bottom_angles=[ ] +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=23 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=2.85 +raft_jerk=20 +raft_base_acceleration=3500 +acceleration_print=3500 +multiple_mesh_overlap=0 +wipe_retraction_retract_speed=45 +bridge_fan_speed=100 +support_tree_max_diameter=25 +support_material_flow=100 +material_no_load_move_factor=0.91 +raft_surface_line_spacing=0.4 +support_roof_height=0.3 +support_infill_sparse_thickness=0.15 +machine_extruder_cooling_fan_number=0 +minimum_roof_area=1.0 +material_print_temperature_layer_0=200 +raft_base_fan_speed=0 +machine_steps_per_mm_x=50 +support_tree_branch_reach_limit=30 +support_bottom_density=100 +skin_material_flow=95.0 +support_conical_min_width=5.0 +support_line_width=0.4 +bridge_skin_density=80 +raft_base_line_width=0.8 +jerk_roofing=20 +raft_speed=15 +mold_angle=40 +material_break_speed=25 +speed_wall_0=23 +cool_lift_head=False +retraction_enable=True +support_line_distance=0 +bridge_skin_material_flow=95.0 +material_flow_temp_graph=[[3.5, 200],[7.0, 240]] +retract_at_layer_change=False +wall_transition_length=0.4 +wipe_hop_amount=2 +support_join_distance=2.0 +material_guid=506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 +inset_direction=outside_in +support_roof_pattern=zigzag +bridge_skin_speed=35 +skirt_brim_material_flow=100 +raft_surface_thickness=0.15 +cool_fan_speed=100 +coasting_min_volume=0.8 +conical_overhang_hole_size=0 +jerk_support_bottom=20 +cool_min_speed=5 +wall_x_material_flow=100 +min_skin_width_for_expansion=6.429395695523605e-17 +meshfix=0 +acceleration_skirt_brim=1000 +support_interface_offset=0.0 +mesh_position_x=0 +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=50 +z_seam_corner=z_seam_corner_none +bottom_thickness=1 +support_interface_wall_count=1 +raft_interface_jerk=20 +roofing_monotonic=True +support_interface_angles=[ ] +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.25 +wall_distribution_count=1 +retraction_speed=45 +extruder_prime_pos_y=6 +material=0 +infill_before_walls=True +support_z_distance=0.3 +meshfix_union_all=True +raft_surface_jerk=20 +infill_support_angle=40 +support_pattern=zigzag +clean_between_layers=False +skin_preshrink=0.8 +support_roof_enable=False +alternate_extra_perimeter=False +minimum_support_area=0.0 +lightning_infill_overhang_angle=40 +support_tree_rest_preference=graceful +coasting_speed=90 +speed_prime_tower=35 +infill=0 +jerk_wall_x=20 +mold_enabled=False +jerk_travel_layer_0=20.0 +infill_material_flow=100 +ironing_monotonic=False +extruder_prime_pos_z=2 +support_tower_roof_angle=65 +meshfix_maximum_deviation=0.04 +travel_avoid_other_parts=True +acceleration_print_layer_0=1000 +cool_fan_full_at_height=0.2 +support_brim_enable=True +minimum_bottom_area=1.0 +infill_line_distance=6.0 +jerk_support_roof=20 +meshfix_maximum_travel_resolution=0.8 +support_bottom_height=0.3 +raft_acceleration=3500 +ironing_flow=10.0 +support_bottom_line_distance=0.4 +raft_base_thickness=0.3 +retraction_hop_after_extruder_switch=True +support_top_distance=0.3 +top_bottom_pattern_0=lines +skin_material_flow_layer_0=90.0 +lightning_infill_support_angle=40 +machine_extruder_end_pos_abs=True +retraction_hop_after_extruder_switch_height=2 +acceleration_support=2000 +support_conical_angle=30 +speed_layer_0=17.249999999999996 +infill_enable_travel_optimization=False +raft_surface_speed=35 +cooling=0 +min_feature_size=0.1 +travel=0 +support_connect_zigzags=True +bottom_layers=7 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +material_flush_purge_speed=0.5 +wipe_retraction_speed=45 +retraction_amount=6.5 +material_break_retracted_position=-50 +material_initial_print_temperature=190 +support_tower_maximum_supported_diameter=3.0 +jerk_ironing=20 +roofing_angles=[] +bridge_skin_density_3=100 +support_interface_enable=False +retraction_hop_only_when_collides=True +machine_feeder_wheel_diameter=10.0 +bridge_skin_support_threshold=50 +prime_tower_min_volume=6 +roofing_material_flow=100 +support_interface_skip_height=0.15 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +bridge_sparse_infill_max_density=0 +skirt_brim_line_width=0.4 +cool_fan_full_layer=2 +gradual_infill_step_height=1.5 +machine_heat_zone_length=16 +support_interface_density=100 +support_infill_rate=0 +speed_support_interface=35 +cool_min_layer_time=6 +wipe_retraction_enable=True +support_tree_limit_branch_reach=True +wall_0_material_flow_layer_0=110.00000000000001 +cool_min_temperature=190 +jerk_layer_0=20 +switch_extruder_extra_prime_amount=0 +ironing_only_highest_layer=False +speed_support_bottom=35 +material_extrusion_cool_down_speed=0.7 +extruder_nr=0 +meshfix_fluid_motion_enabled=True +meshfix_fluid_motion_small_distance=0.01 +meshfix_fluid_motion_shift_distance=0.1 +meshfix_fluid_motion_angle=15 diff --git a/tests/voronoi_crash_resources/settings_011.txt b/tests/voronoi_crash_resources/settings_011.txt new file mode 100644 index 00000000000..7b90f1f8a8d --- /dev/null +++ b/tests/voronoi_crash_resources/settings_011.txt @@ -0,0 +1,1089 @@ +initial_extruder_nr=0 +date=31-05-2023 +print_temperature=210 +material_name=empty +cooling=0 +machine_extruders_share_nozzle=False +max_skin_angle_for_expansion=90 +acceleration_layer_0=3000 +support_interface_line_width=0.4 +jerk_infill=20 +mesh_position_y=0 +cool_fan_full_at_height=0.3 +roofing_extruder_nr=-1 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=3000 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +machine_shape=rectangular +speed_support_bottom=40.0 +support_roof_material_flow=100 +draft_shield_dist=10 +travel_avoid_other_parts=True +speed_ironing=20.0 +machine_show_variants=False +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=2 +support_extruder_nr=0 +support_bottom_height=1 +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.6666666666666665 +machine_depth=255 +adhesion_type=brim +bridge_skin_density_2=75 +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=1.0 +wall_0_wipe_dist=0.2 +machine_heated_build_volume=False +speed_travel_layer_0=60.0 +raft_surface_line_width=0.4 +bridge_skin_speed_2=15.0 +support_brim_width=1.2000000000000002 +top_bottom_thickness=0.8 +raft_jerk=20 +time=17:02:46 +machine_buildplate_type=glass +center_object=False +speed_print=60 +travel=0 +material_print_temperature_layer_0=210 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +raft_surface_fan_speed=0 +brim_replaces_support=True +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=255 +skin_line_width=0.4 +support_join_distance=2.0 +wipe_hop_amount=1 +support_interface_offset=0.0 +support_tree_limit_branch_reach=True +connect_skin_polygons=False +infill_pattern=grid +support_structure=normal +clean_between_layers=False +speed_prime_tower=60 +speed_wall_x=60.0 +support_bottom_stair_step_height=0.3 +draft_shield_enabled=False +support_roof_height=1 +raft_surface_line_spacing=0.4 +day=Wed +wipe_retraction_enable=True +ironing_line_spacing=0.1 +support_infill_sparse_thickness=0.2 +material_bed_temperature_layer_0=60 +machine_max_jerk_e=5.0 +raft_margin=15 +machine_scale_fan_speed_zero_to_one=False +wall_x_material_flow=100 +cool_fan_speed=100.0 +infill=0 +retraction_speed=25 +brim_width=8.0 +travel_avoid_supports=False +acceleration_infill=3000 +acceleration_support_roof=3000 +minimum_polygon_circumference=1.0 +raft_base_thickness=0.36 +jerk_enabled=False +magic_fuzzy_skin_enabled=False +acceleration_support_infill=3000 +brim_gap=0 +machine_max_acceleration_y=9000 +meshfix_maximum_deviation=0.025 +quality_changes_name=empty +machine_nozzle_size=0.4 +mesh_position_z=0 +infill_overlap_mm=0.04 +conical_overhang_angle=50 +brim_line_count=20 +support_roof_line_distance=0.4 +retraction_extra_prime_amount=0 +small_hole_max_size=0 +switch_extruder_extra_prime_amount=0 +ironing_pattern=zigzag +infill_enable_travel_optimization=False +default_material_bed_temperature=60 +retraction_hop_only_when_collides=False +support_xy_distance_overhang=0.2 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_overhang_angle=90 +cool_fan_enabled=True +cool_fan_speed_max=100.0 +min_skin_width_for_expansion=4.898587196589413e-17 +raft_interface_line_width=0.8 +machine_height=265 +travel_retract_before_outer_wall=False +jerk_support_interface=20 +support_tower_diameter=3.0 +support_tree_tip_diameter=0.8 +material_print_temp_prepend=True +support_bottom_line_distance=0.4 +jerk_support_bottom=20 +material_print_temp_wait=True +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +infill_mesh=False +layer_height=0.2 +material_break_preparation_retracted_position=-16 +nozzle_offsetting_for_disallowed_areas=True +acceleration_skirt_brim=3000 +meshfix=0 +flow_rate_extrusion_offset_factor=100 +acceleration_wall_x=3000 +carve_multiple_volumes=False +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +support_bottom_distance=0.1 +material_crystallinity=False +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +machine_endstop_positive_direction_x=False +ooze_shield_angle=60 +mold_width=5 +adhesion_extruder_nr=-1 +support_top_distance=0.1 +retraction_hop_after_extruder_switch=True +wall_0_inset=0 +relative_extrusion=False +wipe_hop_speed=10 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +magic_fuzzy_skin_outside_only=False +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +raft_base_jerk=20 +support_roof_pattern=concentric +support_mesh=False +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=15.0 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +coasting_min_volume=0.8 +raft_surface_acceleration=3000 +experimental=0 +bridge_wall_min_length=2.1 +prime_tower_position_x=239.79999999999998 +hole_xy_offset_max_diameter=0 +wall_line_width=0.4 +raft_acceleration=3000 +interlocking_orientation=22.5 +jerk_support=20 +wall_line_width_x=0.4 +min_infill_area=0 +support_xy_overrides_z=z_overrides_xy +machine_nozzle_tip_outer_diameter=1 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=3000 +retraction_extrusion_window=6.5 +support_fan_enable=False +wall_extruder_nr=-1 +raft_base_acceleration=3000 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +speed_wall=30.0 +support_xy_distance=0.7 +infill_wipe_dist=0.1 +extruders_enabled_count=1 +support_conical_min_width=5.0 +raft_surface_jerk=20 +adaptive_layer_height_variation_step=0.01 +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +prime_tower_position_y=222.79999999999998 +mesh_position_x=0 +z_seam_position=back +raft_interface_extruder_nr=0 +small_feature_speed_factor=50 +material_shrinkage_percentage_z=100.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=3000 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +machine_firmware_retract=False +switch_extruder_retraction_speeds=20 +support_mesh_drop_down=True +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=100 +machine_max_feedrate_z=299792458000 +prime_tower_enable=False +top_bottom=0 +material_break_temperature=50 +wipe_retraction_amount=6.5 +raft_surface_speed=30.0 +speed_layer_0=30.0 +jerk_print=20 +top_bottom_extruder_nr=-1 +retraction_hop=1 +jerk_wall_0=20 +raft_interface_speed=22.5 +travel_avoid_distance=0.625 +support_meshes_present=False +machine_max_jerk_xy=20.0 +cutting_mesh=False +min_odd_wall_line_width=0.34 +machine_nozzle_expansion_angle=45 +support_bottom_enable=False +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=200 +speed_roofing=30.0 +brim_outside_only=True +material_standby_temperature=150 +support_enable=False +acceleration_print_layer_0=3000 +z_seam_relative=False +fill_outline_gaps=True +material_type=empty +support_zag_skip_count=8 +interlocking_boundary_avoidance=2 +material_print_temperature=210 +min_even_wall_line_width=0.34 +skin_overlap=5 +print_sequence=all_at_once +ooze_shield_dist=2 +prime_tower_wipe_enabled=True +bridge_skin_density=100 +raft_base_line_width=0.8 +jerk_travel_enabled=True +conical_overhang_hole_size=0 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +wall_x_extruder_nr=-1 +brim_inside_margin=2.5 +meshfix_maximum_resolution=0.5 +wipe_repeat_count=5 +magic_spiralize=False +initial_layer_line_width_factor=100.0 +bottom_skin_expand_distance=0.8 +raft_interface_jerk=20 +material_shrinkage_percentage=100.0 +support_interface_wall_count=0 +skirt_brim_extruder_nr=-1 +machine_nozzle_id=unknown +speed_equalize_flow_width_factor=100.0 +acceleration_travel_layer_0=5000.0 +wipe_brush_pos_x=100 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +raft_surface_extruder_nr=0 +retraction_hop_enabled=False +switch_extruder_retraction_speed=20 +acceleration_roofing=3000 +travel_speed=120 +speed=0 +acceleration_travel_enabled=True +material_bed_temp_prepend=True +material=0 +infill_before_walls=True +support_z_distance=0.1 +meshfix_union_all=True +z_seam_corner=z_seam_corner_inner +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +brim_smart_ordering=True +support_roof_offset=0.0 +support_interface_density=100 +coasting_enable=False +acceleration_support=3000 +jerk_layer_0=20 +cool_min_temperature=210 +support_bottom_extruder_nr=0 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=210 +adaptive_layer_height_variation=0.1 +raft_interface_layers=1 +default_material_print_temperature=210 +speed_slowdown_layers=2 +cool_min_layer_time_fan_speed_max=10 +machine_endstop_positive_direction_y=False +minimum_bottom_area=1.0 +infill_line_distance=4.0 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_travel_resolution=0.8 +support_extruder_nr_layer_0=0 +material_bed_temperature=60 +support_tree_rest_preference=graceful +coasting_speed=90 +support_infill_extruder_nr=0 +bridge_skin_speed_3=15.0 +magic_fuzzy_skin_point_dist=0.8 +infill_extruder_nr=-1 +support_roof_wall_count=0 +infill_sparse_density=20 +machine_disallowed_areas=[] +skirt_brim_minimal_length=250 +raft_surface_layers=2 +material_break_speed=25 +machine_extruders_share_heater=False +speed_wall_0=30.0 +cool_lift_head=False +layer_start_y=0.0 +build_volume_temperature=28 +extruder_prime_pos_x=0 +retraction_retract_speed=25 +zig_zaggify_infill=False +xy_offset=0 +machine_acceleration=4000 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=20 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=30.0 +mold_angle=40 +raft_speed=30.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.02 +anti_overhang_mesh=False +quality_name=Draft +wall_0_material_flow_layer_0=100 +speed_support_interface=40.0 +machine_max_acceleration_x=9000 +bridge_skin_material_flow_2=100 +top_skin_preshrink=0.8 +skirt_height=3 +raft_airgap=0.3 +wall_distribution_count=1 +retraction_amount=6.5 +wipe_retraction_speed=25 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +speed_topbottom=30.0 +raft_smoothing=5 +lightning_infill_straightening_angle=40 +bridge_enable_more_layers=True +retraction_combing=all +wall_material_flow=100 +material_flow_layer_0=100 +flow_rate_max_extrusion_offset=0 +material_diameter=2.85 +meshfix_union_all_remove_holes=False +skin_edge_support_thickness=0 +machine_max_acceleration_z=100 +support_wall_count=0 +extruder_prime_pos_y=0 +meshfix_maximum_extrusion_area_deviation=50000 +wall_0_material_flow=100 +blackmagic=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=40.0 +support_tree_angle_slow=33.333333333333336 +jerk_wall=20 +interlocking_beam_layer_count=2 +support_interface_material_flow=100 +infill_overlap=10 +print_bed_temperature=60 +lightning_infill_support_angle=40 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +speed_support_infill=60 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +bridge_skin_material_flow=60 +nozzle_disallowed_areas=[] +support_tower_maximum_supported_diameter=3.0 +support_interface_extruder_nr=0 +material_shrinkage_percentage_xy=100.0 +cool_min_speed=10 +top_layers=4 +bridge_fan_speed_3=0 +ironing_inset=0.38 +cool_fan_speed_min=100.0 +wipe_move_distance=20 +interlocking_enable=False +wall_line_width_0=0.4 +cross_infill_pocket_size=4.0 +support_tree_top_rate=10 +raft_base_fan_speed=0 +bridge_settings_enabled=False +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=3 +retraction_hop_after_extruder_switch_height=1 +acceleration_prime_tower=3000 +machine_max_feedrate_y=299792458000 +alternate_carve_order=True +skin_material_flow=100 +support_bottom_density=100 +bridge_wall_speed=15.0 +support_bottom_offset=0.0 +bridge_fan_speed_2=0 +support_interface_pattern=concentric +initial_bottom_layers=4 +bridge_skin_material_flow_3=110 +prime_tower_brim_enable=False +gradual_infill_step_height=1.5 +mold_roof_height=0.5 +jerk_ironing=20 +support_bottom_stair_step_min_slope=10.0 +support_tree_branch_reach_limit=30 +wipe_retraction_retract_speed=25 +multiple_mesh_overlap=0.15 +machine_center_is_zero=False +top_thickness=0.8 +acceleration_enabled=False +support_roof_extruder_nr=0 +bridge_wall_material_flow=50 +draft_shield_height=10 +machine_always_write_active_tool=False +z_seam_x=125.0 +retraction_combing_max_distance=0 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=15 +raft_interface_thickness=0.30000000000000004 +support_conical_angle=30 +material_adhesion_tendency=10 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +roofing_line_width=0.4 +layer_height_0=0.3 +support_initial_layer_line_distance=2.6666666666666665 +support_bottom_line_width=0.4 +wipe_hop_enable=False +zig_zaggify_support=False +material_bed_temp_wait=True +skin_edge_support_layers=0 +support_type=everywhere +jerk_travel_layer_0=30.0 +mold_enabled=False +prime_tower_line_width=0.4 +machine_max_feedrate_e=299792458000 +skirt_line_count=1 +material_id=empty_material +retraction_count_max=90 +infill_support_angle=40 +material_no_load_move_factor=0.940860215 +roofing_pattern=lines +jerk_prime_tower=20 +skin_outline_count=1 +support_interface_priority=interface_area_overwrite_support_area +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +interlocking_depth=2 +min_feature_size=0.1 +command_line_settings=0 +speed_infill=60 +gradual_support_infill_step_height=1 +retraction_prime_speed=25 +z_seam_type=sharpest_corner +skirt_brim_speed=30.0 +material_maximum_park_duration=300 +switch_extruder_retraction_amount=16 +machine_nozzle_temp_enabled=True +raft_base_speed=22.5 +support_angle=50 +machine_max_feedrate_x=299792458000 +machine_width=250 +machine_use_extruder_offset_to_offset_coords=True +machine_heated_bed=True +support_bottom_pattern=concentric +acceleration_print=3000 +material_flush_purge_speed=0.5 +minimum_interface_area=1.0 +raft_interface_fan_speed=0 +remove_empty_first_layers=True +jerk_topbottom=20 +bridge_wall_coast=100 +acceleration_wall_0=3000 +shell=0 +small_skin_width=0.8 +machine_nozzle_head_distance=3 +support_interface_enable=False +bridge_skin_density_3=80 +raft_base_wall_count=1 +infill_sparse_thickness=0.2 +speed_travel=120 +support=0 +infill_mesh_order=0 +machine_minimum_feedrate=0.0 +optimize_wall_printing_order=False +machine_max_acceleration_e=10000 +roofing_layer_count=0 +skin_preshrink=0.8 +material_extrusion_cool_down_speed=0.7 +alternate_extra_perimeter=False +support_roof_enable=False +top_bottom_pattern_0=lines +skin_material_flow_layer_0=100 +infill_offset_x=0 +gantry_height=0 +material_surface_energy=100 +support_connect_zigzags=True +adaptive_layer_height_enabled=False +min_wall_line_width=0.34 +machine_steps_per_mm_x=50 +wall_0_extruder_nr=-1 +machine_settings=0 +acceleration_topbottom=3000 +wipe_retraction_prime_speed=25 +wipe_pause=0 +material_end_of_filament_purge_speed=0.5 +material_alternate_walls=False +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=3000 +speed_support=60 +retraction_min_travel=0.8 +ooze_shield_enabled=False +support_line_width=0.4 +jerk_roofing=20 +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +smooth_spiralized_contours=True +minimum_support_area=0.0 +jerk_skirt_brim=20 +machine_heat_zone_length=16 +slicing_tolerance=middle +infill_material_flow=100 +support_tree_angle=50 +machine_max_jerk_z=0.4 +cool_min_layer_time=5 +speed_z_hop=10 +xy_offset_layer_0=0 +jerk_support_roof=20 +machine_extruder_count=1 +material_final_print_temperature=195 +jerk_travel=30 +ironing_flow=10.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +adaptive_layer_height_threshold=0.2 +support_interface_height=1 +support_brim_enable=True +support_interface_skip_height=0.2 +jerk_support_infill=20 +wall_overhang_speed_factor=100 +acceleration_travel=5000 +support_bottom_material_flow=100 +raft_base_extruder_nr=0 +ironing_enabled=False +acceleration_wall=3000 +prime_tower_size=20 +inset_direction=inside_out +small_feature_speed_factor_0=50 +platform_adhesion=0 +support_bottom_wall_count=0 +jerk_wall_x=20 +draft_shield_height_limitation=full +bridge_sparse_infill_max_density=0 +raft_remove_inside_corners=False +ironing_only_highest_layer=False +cooling=0 +infill_support_angle=40 +max_skin_angle_for_expansion=90 +acceleration_layer_0=3000 +support_interface_line_width=0.4 +jerk_infill=20 +mesh_position_y=0 +cool_fan_full_at_height=0.3 +layer_0_z_overlap=0.15 +support_pattern=zigzag +top_skin_expand_distance=0.8 +raft_interface_acceleration=3000 +expand_skins_expand_distance=0.8 +support_skip_zag_per_mm=20 +speed_support_bottom=40.0 +support_roof_material_flow=100 +travel_avoid_other_parts=True +speed_ironing=20.0 +mold_width=5 +prime_tower_min_volume=6 +ironing_monotonic=False +conical_overhang_enabled=False +wall_transition_filter_distance=100 +cool_fan_full_layer=2 +support_bottom_height=1 +machine_extruder_start_pos_abs=False +support_bottom_stair_step_width=5.0 +raft_surface_thickness=0.2 +retraction_enable=True +support_line_distance=2.6666666666666665 +bridge_skin_density_2=75 +support_connect_zigzags=True +skin_no_small_gaps_heuristic=False +wall_line_count=2 +minimum_roof_area=1.0 +wall_0_wipe_dist=0.2 +support_infill_sparse_thickness=0.2 +skin_overlap=5 +speed_travel_layer_0=60.0 +raft_surface_line_width=0.4 +machine_endstop_positive_direction_x=False +bridge_skin_speed_2=15.0 +support_brim_width=1.2000000000000002 +top_bottom_thickness=0.8 +raft_jerk=20 +center_object=False +speed_print=60 +travel=0 +material_print_temperature_layer_0=200 +support_tree_min_height_to_model=3 +bottom_layers=4 +support_use_towers=True +machine_nozzle_offset_x=0 +raft_surface_fan_speed=0 +brim_replaces_support=True +line_width=0.4 +machine_nozzle_cool_down_speed=2.0 +z_seam_y=255 +support_xy_distance=0.7 +speed_wall=30.0 +skin_edge_support_layers=0 +speed_topbottom=30.0 +lightning_infill_straightening_angle=40 +raft_smoothing=5 +max_extrusion_before_wipe=10 +raft_base_line_spacing=1.6 +speed_support_infill=60 +min_odd_wall_line_width=0.34 +support_tree_limit_branch_reach=True +mesh_position_z=0 +conical_overhang_angle=50 +infill_overlap_mm=0.04 +connect_skin_polygons=False +infill_pattern=grid +wall_0_material_flow=100 +meshfix_maximum_extrusion_area_deviation=50000 +support_wall_count=0 +skin_edge_support_thickness=0 +support_roof_height=1 +ironing_line_spacing=0.1 +machine_extruder_end_pos_x=0 +retraction_speed=25 +travel_avoid_supports=False +acceleration_infill=3000 +skin_outline_count=1 +jerk_prime_tower=20 +machine_nozzle_id=unknown +acceleration_travel_layer_0=5000.0 +wipe_brush_pos_x=100 +speed_equalize_flow_width_factor=100.0 +magic_fuzzy_skin_enabled=False +experimental=0 +acceleration_support_infill=3000 +brim_gap=0 +support_xy_overrides_z=z_overrides_xy +machine_nozzle_tip_outer_diameter=1 +min_infill_area=0 +machine_nozzle_size=0.4 +retraction_extra_prime_amount=0 +wipe_move_distance=20 +cool_fan_speed_min=100 +switch_extruder_extra_prime_amount=0 +bridge_fan_speed_2=0 +bridge_skin_material_flow_3=110 +initial_bottom_layers=4 +support_interface_pattern=concentric +support_xy_distance_overhang=0.2 +retract_at_layer_change=False +wall_transition_length=0.4 +wall_x_material_flow=100 +min_skin_width_for_expansion=4.898587196589413e-17 +cross_infill_pocket_size=4.0 +support_tree_top_rate=10 +wall_line_width_0=0.4 +acceleration_travel=5000 +support_bottom_material_flow=100 +acceleration_wall=3000 +ironing_enabled=False +wipe_pause=0 +wipe_retraction_prime_speed=25 +machine_steps_per_mm_z=50 +gradual_infill_steps=0 +machine_steps_per_mm_x=50 +material_break_preparation_retracted_position=-16 +acceleration_skirt_brim=3000 +meshfix=0 +material_flow=100 +support_offset=0.8 +lightning_infill_prune_angle=40 +lightning_infill_overhang_angle=40 +material_crystallinity=False +support_bottom_distance=0.1 +machine_steps_per_mm_e=1600 +wall_thickness=0.8 +wipe_retraction_amount=6.5 +material_break_temperature=50 +support_top_distance=0.1 +retraction_hop_after_extruder_switch=True +wipe_hop_speed=10 +infill_line_width=0.4 +support_tree_bp_diameter=7.5 +magic_fuzzy_skin_outside_only=False +brim_line_count=20 +support_roof_line_distance=0.4 +prime_tower_line_width=0.4 +infill_wall_line_count=0 +support_supported_skin_fan_speed=100 +support_roof_line_width=0.4 +skin_line_width=0.4 +speed_wall_x=60.0 +raft_base_jerk=20 +gradual_support_infill_steps=0 +skirt_brim_material_flow=100 +bridge_skin_speed=15.0 +wipe_retraction_extra_prime_amount=0 +bridge_skin_support_threshold=50 +cool_fan_speed=100 +coasting_min_volume=0.8 +raft_surface_acceleration=3000 +hole_xy_offset_max_diameter=0 +support_conical_min_width=5.0 +wall_line_width=0.4 +raft_acceleration=3000 +raft_base_thickness=0.36 +jerk_support=20 +wall_line_width_x=0.4 +extruder_prime_pos_z=0 +support_tower_roof_angle=65 +jerk_wall_0=20 +retraction_hop=1 +support_tree_tip_diameter=0.8 +skin_monotonic=False +meshfix_keep_open_polygons=False +prime_blob_enable=False +acceleration_support_interface=3000 +machine_extruder_start_pos_y=0 +retraction_extrusion_window=6.5 +support_fan_enable=False +raft_base_acceleration=3000 +machine_steps_per_mm_y=50 +support_tree_branch_diameter=5 +infill_wipe_dist=0.1 +retraction_hop_only_when_collides=False +machine_feeder_wheel_diameter=10.0 +connect_infill_polygons=False +mesh_position_x=0 +z_seam_position=back +small_feature_speed_factor=50 +retraction_combing_max_distance=0 +z_seam_x=125.0 +infill_line_distance=4.0 +minimum_bottom_area=1.0 +resolution=0 +infill_randomize_start_location=False +acceleration_ironing=3000 +prime_tower_flow=100 +bottom_skin_preshrink=0.8 +sub_div_rad_add=0.4 +switch_extruder_retraction_speeds=20 +infill_multiplier=1 +wall_transition_angle=10 +support_roof_density=100 +top_bottom=0 +infill_enable_travel_optimization=False +raft_surface_speed=30.0 +speed_layer_0=30.0 +jerk_print=20 +retraction_prime_speed=25 +z_seam_type=sharpest_corner +support_bottom_enable=False +dual=0 +material_break_retracted_position=-50 +material_initial_print_temperature=190 +support_bottom_stair_step_height=0.3 +speed_roofing=30.0 +brim_outside_only=True +material_standby_temperature=175 +xy_offset_layer_0=0 +acceleration_print_layer_0=3000 +z_seam_relative=False +fill_outline_gaps=True +support_zag_skip_count=8 +raft_interface_speed=22.5 +travel_avoid_distance=0.625 +material_print_temperature=200 +min_even_wall_line_width=0.34 +prime_tower_wipe_enabled=True +support_bottom_wall_count=0 +raft_interface_fan_speed=0 +bridge_wall_coast=100 +jerk_topbottom=20 +top_skin_preshrink=0.8 +retraction_hop_enabled=False +acceleration_roofing=3000 +switch_extruder_retraction_speed=20 +material_flush_purge_speed=0.5 +wall_distribution_count=1 +raft_airgap=0.3 +bridge_enable_more_layers=True +initial_layer_line_width_factor=100.0 +bridge_skin_material_flow=60 +z_seam_corner=z_seam_corner_inner +brim_smart_ordering=True +support_conical_enabled=False +material_anti_ooze_retraction_speed=5 +ironing_pattern=zigzag +speed_travel=120 +support_angle=50 +raft_base_speed=22.5 +jerk_support_interface=20 +skirt_brim_minimal_length=250 +raft_surface_layers=2 +support_roof_wall_count=0 +infill_sparse_density=20 +skirt_brim_line_width=0.4 +top_bottom_pattern=lines +machine_extruder_end_pos_y=0 +slicing_tolerance=middle +jerk_skirt_brim=20 +machine_heat_zone_length=16 +speed=0 +acceleration_support_roof=3000 +support_roof_offset=0.0 +support_interface_density=100 +coasting_enable=False +retraction_retract_speed=25 +zig_zaggify_infill=False +layer_start_y=0.0 +extruder_prime_pos_x=0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +wall_transition_filter_deviation=0.1 +material_break_preparation_temperature=200 +raft_interface_layers=1 +cool_min_layer_time_fan_speed_max=10 +support_skip_some_zags=False +roofing_material_flow=100 +meshfix_maximum_deviation=0.025 +cool_fan_enabled=True +wall_overhang_angle=90 +cool_fan_speed_max=100 +speed_prime_tower=60 +infill=0 +support_tree_rest_preference=graceful +coasting_speed=90 +bridge_skin_speed_3=15.0 +magic_fuzzy_skin_point_dist=0.8 +material_break_speed=25 +speed_wall_0=30.0 +cool_lift_head=False +xy_offset=0 +material_anti_ooze_retracted_position=-4 +hole_xy_offset=0 +jerk_print_layer_0=20 +wall_x_material_flow_layer_0=100 +speed_print_layer_0=30.0 +acceleration_support=3000 +retraction_hop_after_extruder_switch_height=1 +machine_extruder_end_pos_abs=False +jerk_layer_0=20 +cool_min_temperature=200 +mold_angle=40 +raft_speed=30.0 +roofing_monotonic=True +bottom_thickness=0.8 +small_feature_max_length=0.0 +skin_overlap_mm=0.02 +support_material_flow=100 +support_tree_max_diameter=25 +bridge_fan_speed=100 +wall_0_material_flow_layer_0=100 +speed_support_interface=40.0 +bridge_skin_material_flow_2=100 +bottom_skin_expand_distance=0.8 +skirt_height=3 +machine_extruder_start_pos_x=0 +support_tower_diameter=3.0 +retraction_amount=6.5 +wipe_retraction_speed=25 +skirt_brim_speed=30.0 +material_maximum_park_duration=300 +machine_nozzle_temp_enabled=True +switch_extruder_retraction_amount=16 +interlocking_beam_width=0.8 +support_tree_branch_diameter_angle=7 +wall_material_flow=100 +material_flow_layer_0=100 +material_diameter=1.75 +meshfix_union_all_remove_holes=False +extruder_prime_pos_y=0 +blackmagic=0 +support_brim_line_count=3 +infill_support_enabled=False +cool_fan_speed_0=0 +speed_support_roof=40.0 +support_tree_angle_slow=33.333333333333336 +jerk_wall=20 +extruder_nr=0 +support_interface_material_flow=100 +infill_overlap=10 +lightning_infill_support_angle=40 +support_bottom_line_distance=0.4 +raft_interface_jerk=20 +support_interface_wall_count=0 +support_roof_enable=False +alternate_extra_perimeter=False +bridge_wall_speed=15.0 +support_bottom_offset=0.0 +gradual_support_infill_step_height=1 +wipe_repeat_count=5 +meshfix_maximum_resolution=0.5 +magic_mesh_surface_mode=normal +raft_fan_speed=0 +bridge_skin_density=100 +raft_base_line_width=0.8 +machine_nozzle_offset_y=0 +cool_min_speed=10 +top_layers=4 +brim_inside_margin=2.5 +bridge_fan_speed_3=0 +ironing_inset=0.38 +inset_direction=inside_out +support_roof_pattern=concentric +material_adhesion_tendency=0 +machine_extruders_shared_nozzle_initial_retraction=0 +extruder_prime_pos_abs=False +support_tower_maximum_supported_diameter=3.0 +support_tree_angle=50 +support_interface_skip_height=0.2 +jerk_support_infill=20 +wall_overhang_speed_factor=100 +infill_before_walls=True +material=0 +brim_width=8.0 +wall_0_inset=0 +infill_offset_y=0 +magic_fuzzy_skin_thickness=0.3 +meshfix_extensive_stitching=False +multiple_mesh_overlap=0.15 +wipe_retraction_retract_speed=25 +acceleration_print=3000 +support_bottom_pattern=concentric +machine_endstop_positive_direction_z=True +coasting_volume=0.064 +layer_start_x=0.0 +machine_min_cool_heat_time_window=50.0 +ironing_only_highest_layer=False +acceleration_topbottom=3000 +machine_settings=0 +skirt_line_count=1 +retraction_count_max=90 +jerk_travel_layer_0=30.0 +mold_enabled=False +support_brim_enable=True +support_interface_height=1 +meshfix_maximum_travel_resolution=0.8 +mold_roof_height=0.5 +jerk_ironing=20 +speed_z_hop=10 +wipe_hop_enable=False +zig_zaggify_support=False +raft_base_fan_speed=0 +machine_nozzle_heat_up_speed=2.0 +raft_interface_line_spacing=1.0 +material_flush_purge_length=60 +skirt_gap=3 +acceleration_prime_tower=3000 +jerk_support_roof=20 +machine_endstop_positive_direction_y=False +acceleration_wall_0=3000 +shell=0 +small_skin_width=0.8 +magic_fuzzy_skin_point_density=1.25 +support_infill_rate=15 +small_feature_speed_factor_0=50 +material_break_preparation_speed=2 +material_end_of_filament_purge_length=20 +acceleration_support_bottom=3000 +material_alternate_walls=False +platform_adhesion=0 +raft_interface_thickness=0.30000000000000004 +skin_material_flow_layer_0=100 +top_bottom_pattern_0=lines +support_conical_angle=30 +speed_infill=60 +retraction_min_travel=0.8 +support_line_width=0.4 +jerk_roofing=20 +roofing_line_width=0.4 +support_initial_layer_line_distance=2.6666666666666665 +meshfix_union_all=True +support_z_distance=0.1 +support_bottom_line_width=0.4 +acceleration_wall_x=3000 +skin_material_flow=100 +support_bottom_density=100 +small_hole_max_size=0 +raft_surface_line_spacing=0.4 +material_no_load_move_factor=0.940860215 +default_material_print_temperature=200 +roofing_layer_count=0 +clean_between_layers=False +skin_preshrink=0.8 +raft_interface_line_width=0.8 +infill_offset_x=0 +material_surface_energy=100 +support_tree_branch_reach_limit=30 +gradual_infill_step_height=1.5 +minimum_support_area=0.0 +minimum_interface_area=1.0 +machine_nozzle_head_distance=3 +support_interface_offset=0.0 +jerk_travel=30 +bridge_wall_material_flow=50 +support_interface_enable=False +bridge_skin_density_3=80 +min_feature_size=0.1 +infill_sparse_thickness=0.2 +command_line_settings=0 +raft_margin=15 +material_end_of_filament_purge_speed=0.5 +speed_support=60 +machine_extruder_cooling_fan_number=0 +roofing_pattern=lines +material_extrusion_cool_down_speed=0.7 +raft_surface_jerk=20 +bridge_sparse_infill_max_density=0 +min_wall_line_width=0.34 +support=0 +jerk_wall_x=20 +min_bead_width=0.34 +switch_extruder_prime_speed=20 +support_join_distance=2.0 +wipe_hop_amount=1 +wipe_retraction_enable=True +cool_min_layer_time=5 +top_thickness=0.8 +jerk_support_bottom=20 +conical_overhang_hole_size=0 +material_final_print_temperature=185 +infill_material_flow=100 +ironing_flow=10.0 +support_bottom_stair_step_min_slope=10.0 +optimize_wall_printing_order=False +extruder_nr=0 +meshfix_fluid_motion_enabled=False \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_001.wkt b/tests/voronoi_crash_resources/slice_polygon_001.wkt new file mode 100644 index 00000000000..bb3157ce633 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_001.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((1571 -49975, 2466 -52292, 3140 -49901, 4107 -52189, 4705 -49778, 5745 -52034, 6267 -49606, 7376 -51828, 7822 -49384, 9001 -51570, 9369 -49114, 10616 -51262, 10907 -48796, 12221 -50904, 12434 -48429, 13814 -50495, 13950 -48015, 15393 -50036, 15451 -47553, 16957 -49528, 16937 -47044, 18504 -48971, 18406 -46489, 20034 -48365, 19858 -45888, 21543 -47712, 21289 -45241, 23031 -47012, 22700 -44550, 24496 -46265, 24088 -43815, 25937 -45473, 25452 -43037, 27353 -44636, 26791 -42216, 28741 -43755, 28104 -41354, 30102 -42830, 29389 -40451, 31432 -41863, 30645 -39508, 32731 -40855, 31871 -38526, 33999 -39807, 33066 -37506, 35232 -38720, 34227 -36449, 36431 -37594, 35355 -35355, 37594 -36431, 36449 -34227, 38720 -35232, 37506 -33066, 39807 -33999, 38526 -31871, 40856 -32731, 39508 -30645, 41863 -31432, 40451 -29389, 42830 -30101, 41354 -28104, 43755 -28741, 42216 -26791, 44636 -27353, 43037 -25452, 45473 -25937, 43815 -24088, 46265 -24496, 44550 -22699, 47012 -23031, 45242 -21289, 47712 -21543, 45888 -19857, 48365 -20034, 46489 -18406, 48971 -18504, 47044 -16937, 49528 -16957, 47553 -15451, 50036 -15393, 48015 -13950, 50495 -13814, 48429 -12434, 50904 -12221, 48796 -10907, 51262 -10616, 49114 -9369, 51570 -9000, 49384 -7822, 51828 -7376, 49606 -6267, 52034 -5745, 49778 -4705, 52189 -4107, 49901 -3139, 52292 -2466, 49975 -1571, 52344 -822, 50000 0, 52344 822, 49975 1571, 52292 2466, 49901 3140, 52189 4107, 49778 4705, 52034 5745, 49606 6267, 51828 7376, 49384 7822, 51570 9001, 49114 9369, 51262 10616, 48796 10907, 50904 12221, 48429 12434, 50495 13814, 48015 13950, 50036 15393, 47553 15451, 49528 16957, 47044 16937, 48971 18504, 46489 18406, 48365 20034, 45888 19858, 47712 21543, 45241 21289, 47012 23031, 44550 22700, 46265 24496, 43815 24088, 45473 25937, 43037 25452, 44636 27353, 42216 26791, 43755 28741, 41354 28104, 42830 30102, 40451 29389, 41863 31432, 39508 30645, 40855 32731, 38526 31871, 39807 33999, 37506 33066, 38720 35232, 36449 34227, 37594 36431, 35355 35355, 36431 37594, 34227 36449, 35232 38720, 33066 37506, 33999 39807, 31871 38526, 32731 40856, 30645 39508, 31432 41863, 29389 40451, 30101 42830, 28104 41354, 28741 43755, 26791 42216, 27353 44636, 25452 43037, 25937 45473, 24088 43815, 24496 46265, 22699 44550, 23031 47012, 21289 45242, 21543 47712, 19857 45888, 20034 48365, 18406 46489, 18504 48971, 16937 47044, 16957 49528, 15451 47553, 15393 50036, 13950 48015, 13814 50495, 12434 48429, 12221 50904, 10907 48796, 10616 51262, 9369 49114, 9000 51570, 7822 49384, 7376 51828, 6267 49606, 5745 52034, 4705 49778, 4107 52189, 3139 49901, 2466 52292, 1571 49975, 822 52344, 0 50000, -822 52344, -1571 49975, -2466 52292, -3140 49901, -4107 52189, -4705 49778, -5745 52034, -6267 49606, -7376 51828, -7822 49384, -9001 51570, -9369 49114, -10616 51262, -10907 48796, -12221 50904, -12434 48429, -13814 50495, -13950 48015, -15393 50036, -15451 47553, -16957 49528, -16937 47044, -18504 48971, -18406 46489, -20034 48365, -19858 45888, -21543 47712, -21289 45241, -23031 47012, -22700 44550, -24496 46265, -24088 43815, -25937 45473, -25452 43037, -27353 44636, -26791 42216, -28741 43755, -28104 41354, -30102 42830, -29389 40451, -31432 41863, -30645 39508, -32731 40855, -31871 38526, -33999 39807, -33066 37506, -35232 38720, -34227 36449, -36431 37594, -35355 35355, -37594 36431, -36449 34227, -38720 35232, -37506 33066, -39807 33999, -38526 31871, -40856 32731, -39508 30645, -41863 31432, -40451 29389, -42830 30101, -41354 28104, -43755 28741, -42216 26791, -44636 27353, -43037 25452, -45473 25937, -43815 24088, -46265 24496, -44550 22699, -47012 23031, -45242 21289, -47712 21543, -45888 19857, -48365 20034, -46489 18406, -48971 18504, -47044 16937, -49528 16957, -47553 15451, -50036 15393, -48015 13950, -50495 13814, -48429 12434, -50904 12221, -48796 10907, -51262 10616, -49114 9369, -51570 9000, -49384 7822, -51828 7376, -49606 6267, -52034 5745, -49778 4705, -52189 4107, -49901 3139, -52292 2466, -49975 1571, -52344 822, -50000 0, -52344 -822, -49975 -1571, -52292 -2466, -49901 -3140, -52189 -4107, -49778 -4705, -52034 -5745, -49606 -6267, -51828 -7376, -49384 -7822, -51570 -9001, -49114 -9369, -51262 -10616, -48796 -10907, -50904 -12221, -48429 -12434, -50495 -13814, -48015 -13950, -50036 -15393, -47553 -15451, -49528 -16957, -47044 -16937, -48971 -18504, -46489 -18406, -48365 -20034, -45888 -19858, -47712 -21543, -45241 -21289, -47012 -23031, -44550 -22700, -46265 -24496, -43815 -24088, -45473 -25937, -43037 -25452, -44636 -27353, -42216 -26791, -43755 -28741, -41354 -28104, -42830 -30102, -40451 -29389, -41863 -31432, -39508 -30645, -40855 -32731, -38526 -31871, -39807 -33999, -37506 -33066, -38720 -35232, -36449 -34227, -37594 -36431, -35355 -35355, -36431 -37594, -34227 -36449, -35232 -38720, -33066 -37506, -33999 -39807, -31871 -38526, -32731 -40856, -30645 -39508, -31432 -41863, -29389 -40451, -30101 -42830, -28104 -41354, -28741 -43755, -26791 -42216, -27353 -44636, -25452 -43037, -25937 -45473, -24088 -43815, -24496 -46265, -22699 -44550, -23031 -47012, -21289 -45242, -21543 -47712, -19857 -45888, -20034 -48365, -18406 -46489, -18504 -48971, -16937 -47044, -16957 -49528, -15451 -47553, -15393 -50036, -13950 -48015, -13814 -50495, -12434 -48429, -12221 -50904, -10907 -48796, -10616 -51262, -9369 -49114, -9000 -51570, -7822 -49384, -7376 -51828, -6267 -49606, -5745 -52034, -4705 -49778, -4107 -52189, -3139 -49901, -2466 -52292, -1571 -49975, -822 -52344, 0 -50000, 822 -52344) (-449 -28579, -942 -29985, -1346 -28551, -1884 -29941, -2243 -28494, -2823 -29867, -3136 -28410, -3760 -29763, -4027 -28297, -4693 -29631, -4914 -28157, -5621 -29469, -5796 -27989, -6544 -29277, -6672 -27793, -7461 -29057, -7542 -27569, -8370 -28809, -8404 -27319, -9270 -28532, -9258 -27042, -10162 -28226, -10103 -26737, -11044 -27893, -10938 -26407, -11914 -27533, -11762 -26050, -12773 -27145, -12575 -25668, -13620 -26730, -13375 -25260, -14453 -26289, -14161 -24828, -15271 -25822, -14934 -24371, -16075 -25330, -15693 -23889, -16862 -24812, -16435 -23385, -17633 -24271, -17162 -22857, -18387 -23705, -17871 -22307, -19123 -23115, -18563 -21734, -19839 -22503, -19236 -21141, -20536 -21869, -19891 -20526, -21213 -21213, -20526 -19891, -21869 -20536, -21141 -19236, -22503 -19839, -21734 -18563, -23115 -19123, -22307 -17871, -23705 -18387, -22857 -17162, -24270 -17633, -23385 -16435, -24812 -16862, -23889 -15693, -25330 -16075, -24371 -14934, -25822 -15271, -24828 -14161, -26289 -14453, -25260 -13375, -26730 -13620, -25668 -12575, -27145 -12773, -26050 -11762, -27533 -11914, -26407 -10938, -27893 -11044, -26737 -10103, -28226 -10162, -27042 -9258, -28532 -9271, -27319 -8404, -28809 -8370, -27569 -7542, -29057 -7461, -27793 -6672, -29277 -6544, -27989 -5796, -29469 -5621, -28157 -4914, -29631 -4693, -28297 -4027, -29763 -3760, -28410 -3137, -29867 -2823, -28494 -2243, -29941 -1884, -28551 -1346, -29985 -942, -28579 -449, -30000 0, -28579 449, -29985 942, -28551 1346, -29941 1884, -28494 2243, -29867 2823, -28410 3136, -29763 3760, -28297 4027, -29631 4693, -28157 4914, -29469 5621, -27989 5796, -29277 6544, -27793 6672, -29057 7461, -27569 7542, -28809 8370, -27319 8404, -28532 9270, -27042 9258, -28226 10162, -26737 10103, -27893 11044, -26407 10938, -27533 11914, -26050 11762, -27145 12773, -25668 12575, -26730 13620, -25260 13375, -26289 14453, -24828 14161, -25822 15271, -24371 14934, -25330 16075, -23889 15693, -24812 16862, -23385 16435, -24271 17633, -22857 17162, -23705 18387, -22307 17871, -23115 19123, -21734 18563, -22503 19839, -21141 19236, -21869 20536, -20526 19891, -21213 21213, -19891 20526, -20536 21869, -19236 21141, -19839 22503, -18563 21734, -19123 23115, -17871 22307, -18387 23705, -17162 22857, -17633 24270, -16435 23385, -16862 24812, -15693 23889, -16075 25330, -14934 24371, -15271 25822, -14161 24828, -14453 26289, -13375 25260, -13620 26730, -12575 25668, -12773 27145, -11762 26050, -11914 27533, -10938 26407, -11044 27893, -10103 26737, -10162 28226, -9258 27042, -9271 28532, -8404 27319, -8370 28809, -7542 27569, -7461 29057, -6672 27793, -6544 29277, -5796 27989, -5621 29469, -4914 28157, -4693 29631, -4027 28297, -3760 29763, -3137 28410, -2823 29867, -2243 28494, -1884 29941, -1346 28551, -942 29985, -449 28579, 0 30000, 449 28579, 942 29985, 1346 28551, 1884 29941, 2243 28494, 2823 29867, 3136 28410, 3760 29763, 4027 28297, 4693 29631, 4914 28157, 5621 29469, 5796 27989, 6544 29277, 6672 27793, 7461 29057, 7542 27569, 8370 28809, 8404 27319, 9270 28532, 9258 27042, 10162 28226, 10103 26737, 11044 27893, 10938 26407, 11914 27533, 11762 26050, 12773 27145, 12575 25668, 13620 26730, 13375 25260, 14453 26289, 14161 24828, 15271 25822, 14934 24371, 16075 25330, 15693 23889, 16862 24812, 16435 23385, 17633 24271, 17162 22857, 18387 23705, 17871 22307, 19123 23115, 18563 21734, 19839 22503, 19236 21141, 20536 21869, 19891 20526, 21213 21213, 20526 19891, 21869 20536, 21141 19236, 22503 19839, 21734 18563, 23115 19123, 22307 17871, 23705 18387, 22857 17162, 24270 17633, 23385 16435, 24812 16862, 23889 15693, 25330 16075, 24371 14934, 25822 15271, 24828 14161, 26289 14453, 25260 13375, 26730 13620, 25668 12575, 27145 12773, 26050 11762, 27533 11914, 26407 10938, 27893 11044, 26737 10103, 28226 10162, 27042 9258, 28532 9271, 27319 8404, 28809 8370, 27569 7542, 29057 7461, 27793 6672, 29277 6544, 27989 5796, 29469 5621, 28157 4914, 29631 4693, 28297 4027, 29763 3760, 28410 3137, 29867 2823, 28494 2243, 29941 1884, 28551 1346, 29985 942, 28579 449, 30000 0, 28579 -449, 29985 -942, 28551 -1346, 29941 -1884, 28494 -2243, 29867 -2823, 28410 -3136, 29763 -3760, 28297 -4027, 29631 -4693, 28157 -4914, 29469 -5621, 27989 -5796, 29277 -6544, 27793 -6672, 29057 -7461, 27569 -7542, 28809 -8370, 27319 -8404, 28532 -9270, 27042 -9258, 28226 -10162, 26737 -10103, 27893 -11044, 26407 -10938, 27533 -11914, 26050 -11762, 27145 -12773, 25668 -12575, 26730 -13620, 25260 -13375, 26289 -14453, 24828 -14161, 25822 -15271, 24371 -14934, 25330 -16075, 23889 -15693, 24812 -16862, 23385 -16435, 24271 -17633, 22857 -17162, 23705 -18387, 22307 -17871, 23115 -19123, 21734 -18563, 22503 -19839, 21141 -19236, 21869 -20536, 20526 -19891, 21213 -21213, 19891 -20526, 20536 -21869, 19236 -21141, 19839 -22503, 18563 -21734, 19123 -23115, 17871 -22307, 18387 -23705, 17162 -22857, 17633 -24270, 16435 -23385, 16862 -24812, 15693 -23889, 16075 -25330, 14934 -24371, 15271 -25822, 14161 -24828, 14453 -26289, 13375 -25260, 13620 -26730, 12575 -25668, 12773 -27145, 11762 -26050, 11914 -27533, 10938 -26407, 11044 -27893, 10103 -26737, 10162 -28226, 9258 -27042, 9271 -28532, 8404 -27319, 8370 -28809, 7542 -27569, 7461 -29057, 6672 -27793, 6544 -29277, 5796 -27989, 5621 -29469, 4914 -28157, 4693 -29631, 4027 -28297, 3760 -29763, 3137 -28410, 2823 -29867, 2243 -28494, 1884 -29941, 1346 -28551, 942 -29985, 449 -28579, 0 -30000))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_002.wkt b/tests/voronoi_crash_resources/slice_polygon_002.wkt new file mode 100644 index 00000000000..da8cb780888 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_002.wkt @@ -0,0 +1 @@ +MultiPolygon (((147289 101492, 147242 101719, 147197 101776, 147218 102093, 147259 102076, 147389 102138, 147392 102471, 147648 102288, 147623 102181, 148137 102295, 148172 102346, 148465 102254, 148577 102197, 148901 102061, 149036 102086, 149302 102109, 149463 102125, 149272 102163, 148937 102366, 148938 102449, 149117 102596, 149219 102465, 149345 102594, 149476 102549, 149777 102548, 149863 102511, 150134 102496, 150233 102538, 150557 102570, 150547 102600, 150750 102934, 150801 102912, 151257 103199, 151451 103115, 151457 102826, 151757 102643, 152047 102912, 152261 103054, 152386 103243, 152530 103190, 152880 103207, 153247 103211, 154056 103406, 154393 103447, 154973 103599, 155060 103545, 155100 103604, 155982 103648, 156531 103905, 156918 103881, 157384 103888, 157677 103949, 157902 103873, 158295 103870, 158382 103777, 158054 103621, 158326 103620, 158609 103479, 158921 103328, 158926 103578, 159080 103506, 159208 103335, 159407 103114, 159605 103018, 160226 102526, 160459 102832, 160833 102936, 161042 102897, 161218 103011, 161202 103295, 161303 103361, 162081 103119, 162153 102960, 162231 103020, 162468 102787, 162676 102742, 162742 102646, 162776 102466, 162854 102390, 162962 102559, 163249 102661, 163345 102847, 163504 102878, 163575 102980, 163720 102792, 164156 102649, 164176 102627, 164599 102346, 165114 102152, 165205 102150, 165383 102040, 165411 101809, 165746 101644, 165778 101795, 165696 102013, 165720 102318, 165786 102277, 166045 102366, 166018 102482, 166117 102372, 166544 102347, 166785 102276, 167055 102137, 167095 102097, 167403 101908, 167813 101885, 167985 101878, 167815 101926, 167483 102191, 167483 102296, 167637 102372, 167713 102283, 167818 102353, 167973 102293, 168276 102247, 168355 102202, 168634 102137, 168729 102164, 169044 102134, 169038 102172, 169224 102475, 169279 102434, 169730 102645, 169936 102500, 169916 102187, 170186 101926, 170336 101993, 170532 102185, 170689 102264, 170892 102592, 170596 102599, 170492 102690, 170436 102843, 170712 103063, 170787 103124, 170795 103080, 171025 103006, 171096 103077, 171105 103274, 171006 103584, 171207 103683, 171275 103662, 171241 103706, 171403 103852, 171735 103762, 171903 103865, 171927 103976, 171705 104095, 171743 104184, 172213 104283, 172262 104237, 172156 103914, 172619 103682, 172830 103639, 172900 103529, 173094 103391, 173509 103035, 173525 103033, 173757 102815, 173949 102709, 174009 102739, 173927 103058, 173943 103287, 173660 103472, 173661 103525, 173920 103551, 174155 103396, 174209 103301, 174318 103340, 174376 103452, 174456 103374, 174621 103431, 174679 103247, 174853 103089, 175105 103011, 175263 102982, 175356 102906, 175714 102690, 175405 102553, 175611 102412, 176108 102435, 176166 102572, 176510 102732, 176632 102730, 176986 102606, 177088 102927, 177133 102959, 177479 102784, 177730 102912, 178167 103227, 178270 103212, 178415 103103, 178539 103533, 178699 103628, 178735 103533, 178909 103540, 179152 103666, 179293 103595, 179307 103474, 179240 103402, 179321 103154, 179015 102954, 179038 102804, 179405 102930, 179596 103044, 179720 103036, 179802 103097, 180130 102994, 180399 102953, 180492 102849, 180553 102866, 180918 103314, 181124 103658, 181476 103909, 181365 103996, 181444 104116, 181416 104349, 181196 104523, 181401 104621, 181087 104844, 181307 105052, 181639 105108, 181766 104929, 181781 104659, 181904 104457, 182004 104371, 181932 104386, 181860 104168, 181689 104083, 181716 104147, 181611 104066, 181633 104042, 181561 103645, 181772 103522, 182052 103455, 182231 103334, 182687 103358, 182805 103441, 182509 103884, 182265 104017, 182458 104020, 182604 104079, 182724 103953, 182909 103883, 183029 103627, 183041 103537, 182807 103418, 183104 103015, 183072 102882, 183095 102773, 183434 102398, 183774 102329, 184013 102268, 184150 102313, 183900 102554, 183714 102959, 184390 102785, 184555 102987, 184729 103061, 184795 103005, 184985 103022, 185172 102952, 185044 102843, 185017 102948, 184776 102837, 184878 102638, 184946 102590, 185175 102594, 185526 102578, 185595 102639, 185644 102816, 185402 102978, 185495 103165, 185364 103320, 185415 103356, 185993 103497, 186163 103449, 186612 103530, 186680 103465, 186766 103478, 186777 103584, 187095 103697, 187163 103665, 187066 103457, 186900 103293, 186898 102946, 187172 103041, 187449 103056, 187568 103029, 187841 103144, 187874 103185, 188271 103377, 188289 103270, 188431 103097, 188494 103281, 188577 103346, 188718 103324, 188798 103355, 188824 103659, 188957 104299, 188699 104528, 188627 104557, 188605 104774, 188682 104938, 188386 105092, 188546 105183, 188772 105026, 188991 104966, 188852 105161, 188506 105245, 188520 105468, 188639 105778, 188726 105719, 188976 105697, 188978 105558, 189162 105369, 189126 105211, 189352 105060, 189442 105105, 189423 105158, 189636 105486, 189980 105363, 190089 105603, 190257 105596, 190431 105473, 190635 105410, 190804 105487, 190925 105394, 191167 105346, 191407 105385, 191426 105475, 191362 105505, 191270 105644, 191419 105725, 191378 106026, 191441 106239, 191247 106397, 191280 106566, 191357 106635, 191712 106619, 191707 106824, 191589 107117, 191591 107166, 191438 107518, 191486 107489, 191842 107548, 191945 107386, 192289 107018, 192412 106980, 192617 107052, 192768 107194, 192617 107366, 192273 107654, 192528 107597, 192618 107650, 192457 108077, 192327 108078, 192227 108154, 192315 108527, 192460 108725, 192530 108695, 192654 108509, 192824 108653, 192991 108649, 193128 108723, 193342 109074, 193377 109066, 193385 108738, 193412 108477, 193256 108025, 193338 107868, 193523 107742, 193784 108149, 193791 108267, 193856 108785, 193928 109098, 193921 109623, 194041 109726, 194014 109968, 194192 109990, 194145 110534, 193970 110609, 193981 111037, 194090 111179, 194208 111406, 194186 111772, 194114 112237, 194141 112431, 193957 112520, 193762 112515, 193785 112803, 193721 112792, 193983 113062, 194376 113386, 194193 113681, 193803 114209, 193782 114331, 193977 114716, 194075 114877, 194258 115254, 194301 115516, 194336 115853, 194190 116248, 193808 116627, 193635 116898, 193616 117188, 193733 117256, 193797 117473, 193881 118035, 193889 118041, 194031 118525, 194060 118432, 194108 118157, 194185 118405, 194186 118880, 194156 119052, 194084 119101, 194031 119307, 194017 119558, 194088 120051, 193901 120195, 193881 120255, 193983 120694, 193859 121226, 193808 121271, 193746 121535, 193908 121772, 193921 121907, 194002 121948, 194003 122292, 193919 122553, 193960 122713, 193902 123111, 193803 123527, 193912 124308, 193955 124449, 193912 124495, 193696 124892, 193504 125134, 193367 125613, 193270 125520, 193126 125503, 193027 125235, 192970 125483, 192847 125120, 192753 125333, 192676 125797, 192772 125873, 193218 125870, 193261 125628, 193254 125811, 193502 125640, 193600 125861, 193876 125817, 193818 126110, 193718 126306, 193601 126318, 193680 126631, 193663 126855, 193715 126921, 193657 126955, 193649 127144, 193583 127153, 193513 127044, 193313 127280, 193067 127163, 193090 127406, 193269 127607, 193200 127699, 193042 127467, 192830 127658, 192849 127794, 192802 127831, 192756 127762, 192702 127763, 192870 128029, 192668 128408, 192444 128240, 192358 128149, 192245 128156, 192101 128238, 192095 128495, 192108 128781, 192122 128882, 192138 129206, 192122 129242, 192129 129802, 192277 130104, 191858 130546, 191556 130801, 191602 130860, 191494 131002, 191565 131169, 191466 131164, 191423 131224, 191143 131156, 191069 131173, 190979 131391, 191008 131524, 190728 131683, 190703 131723, 191109 131900, 190786 132216, 190699 132356, 190197 132439, 190033 132391, 189869 132499, 189476 132278, 189146 132444, 188863 132755, 188988 132913, 188790 133104, 188982 133184, 189187 133074, 189508 133076, 189871 133116, 190198 133123, 190478 133381, 190250 133530, 190102 133558, 189825 133438, 189535 133412, 189347 133587, 189184 133729, 189013 133705, 188688 133186, 188417 133400, 188466 133800, 188343 133827, 188191 134088, 188443 133966, 188634 134119, 188473 134253, 188554 134441, 188748 134657, 188561 134858, 188196 134878, 188048 134714, 187913 134768, 187564 134617, 187037 134670, 186970 134843, 186426 134944, 186325 135023, 185814 134980, 185359 135030, 184937 135137, 184614 135285, 184509 135270, 184229 135295, 184054 135332, 183574 135274, 183031 135044, 182917 135076, 182745 135040, 182557 135142, 182388 135164, 182322 135235, 182611 135504, 182447 135467, 182050 135620, 182111 135323, 182091 135263, 181968 135321, 181618 135392, 181390 135620, 181116 135809, 180936 135876, 180546 136059, 180255 135599, 180163 135526, 179859 135421, 179759 135446, 179567 135417, 179486 135360, 179526 134997, 179438 134867, 179239 134691, 179081 134606, 178876 134648, 178566 134828, 178248 135146, 178103 135168, 178055 135464, 177807 135658, 177624 135329, 177652 135295, 177531 135243, 177372 135070, 177298 134846, 177067 134512, 176768 134856, 176657 134825, 176729 134889, 176593 134881, 176206 135111, 175924 135211, 175953 135492, 175788 135834, 175713 135442, 175715 135305, 175387 135299, 175289 135344, 175387 135388, 175293 135727, 175146 135656, 175151 135572, 175059 135428, 174951 135453, 174890 135224, 174820 135317, 174654 135173, 174540 135176, 174547 135264, 174526 135533, 174328 135628, 174253 135554, 174341 135231, 174315 135183, 174377 135009, 174262 135070, 174318 135010, 174226 135030, 173986 134985, 173626 135116, 173525 135006, 173212 135289, 173185 135293, 173246 135038, 173338 134960, 173105 134747, 172823 134798, 172466 134944, 172110 135050, 172058 135122, 171899 135165, 171707 135114, 171739 134916, 171597 134656, 171452 134782, 171125 134705, 171063 134585, 170889 134653, 171053 134748, 170891 134901, 170633 134936, 170627 134984, 170357 135357, 170243 135310, 169999 135031, 170160 134980, 170330 134756, 170245 134710, 169763 134820, 169567 134677, 169650 134401, 169619 134343, 169695 134147, 169843 133896, 169706 133812, 169600 133874, 169504 133838, 169485 133732, 169348 133673, 169205 133740, 169071 133988, 169041 133807, 169099 133767, 169055 133580, 168495 133612, 168605 134014, 168099 134245, 167911 134560, 167522 134827, 167355 134991, 167175 135008, 166950 135205, 167010 134953, 166956 134754, 167304 134541, 167310 134511, 166920 134471, 166584 134722, 166503 134544, 166459 134577, 166188 134555, 166033 134684, 165978 134858, 165644 134971, 165513 134969, 165457 135112, 165298 135211, 165549 135401, 165275 135495, 164789 135472, 164656 135327, 164463 135262, 164191 135369, 163909 135388, 163842 135067, 163510 135313, 163449 135268, 163371 135354, 162878 135311, 162672 135246, 162452 135360, 162432 135304, 162561 135111, 162011 135115, 161929 135004, 161647 135029, 161618 135049, 161277 135037, 161390 135170, 161367 135272, 161047 135108, 160951 135204, 160784 135006, 160680 134934, 160618 135007, 160677 135147, 160984 135287, 161300 135544, 161701 135725, 161713 135737, 161318 135587, 161067 135607, 160888 135453, 160693 135449, 160366 135346, 160138 135548, 160013 135259, 159835 134959, 159454 135107, 159302 135156, 158877 135405, 158833 135403, 158563 135456, 158353 135531, 157772 135541, 157337 135409, 157176 135474, 156947 135451, 156722 135585, 156609 135642, 156715 135774, 156893 135886, 156671 135870, 156198 136100, 156259 135837, 156229 135744, 156127 135803, 155829 135893, 155574 136163, 155349 136334, 154918 136528, 154714 136680, 154542 136500, 154353 136231, 153984 136113, 153892 136140, 153652 136120, 153552 136060, 153593 135690, 153306 135419, 153053 135341, 152580 135581, 152424 135744, 152139 135968, 152010 136078, 151973 136256, 151750 136416, 151665 136297, 151615 136133, 151319 135935, 151244 135715, 150941 135293, 150655 135636, 150553 135647, 150201 135755, 150161 135787, 149841 135908, 149141 135992, 148954 136073, 148757 136104, 148867 136170, 148843 136326, 148639 136420, 148607 136196, 148634 136111, 148587 135746, 148415 135444, 148211 135379, 148050 135457, 148114 135730, 147652 135706, 147599 135643, 147195 135813, 146749 136022, 146448 136017, 146441 135964, 146753 135735, 146754 135594, 146534 135468, 146203 135523, 146003 135606, 145568 135722, 145105 135802, 144993 135772, 145004 135675, 144940 135517, 144856 135457, 144819 135353, 144738 135411, 144258 135273, 144244 135247, 144182 135276, 144239 135309, 144026 135482, 143898 135483, 143882 135641, 143572 135967, 143240 135766, 143044 135494, 143258 135460, 143461 135255, 143530 134972, 142808 135181, 142614 135003, 142703 134579, 142911 134207, 142805 134129, 142630 134203, 142475 134117, 142442 133928, 142364 133881, 142278 133907, 142160 134105, 142168 134201, 142008 134222, 141982 133986, 142086 133926, 142017 133734, 141547 133613, 141440 133711, 141550 134115, 140958 134288, 140799 134562, 140406 134762, 140183 134934, 140023 134920, 139718 135114, 139790 134861, 139755 134588, 140088 134453, 140094 134400, 139750 134286, 139351 134492, 139248 134284, 138934 134214, 138818 134290, 138777 134473, 138691 134549, 138319 134615, 138165 134492, 138144 134732, 137948 134822, 138223 135040, 137946 135112, 137552 135086, 137343 135004, 137322 134941, 137022 134843, 136645 134999, 136493 135002, 136351 134706, 135940 134954, 135577 135006, 135229 134925, 135039 134916, 134877 135044, 134792 134959, 135057 134672, 134591 134852, 134455 134932, 134172 134918, 133779 135004, 133556 135085, 133748 135061, 133804 135177, 133694 135392, 133421 135386, 133726 135424, 134098 135563, 134086 135641, 133686 135616, 133556 135571, 133360 135662, 133229 135581, 132893 135712, 132594 135774, 132456 135925, 132364 135912, 132064 135512, 131960 135530, 131449 135373, 131078 135348, 130574 135691, 130880 135933, 130800 135919, 130474 136087, 130566 135694, 130433 135488, 130058 135503, 130241 135641, 130311 135805, 129950 135960, 129770 136171, 129365 136500, 128949 136741, 128626 136251, 128497 136199, 128446 136104, 128148 136173, 127886 136127, 127908 135993, 127839 135960, 127716 135989, 127651 136138, 127575 136144, 127158 135990, 126750 136006, 126603 136045, 126590 136114, 126404 136287, 126174 136390, 126088 136272, 126079 136077, 125898 135949, 125420 136013, 125204 136108, 125018 135838, 124939 135792, 124563 135511, 124353 135466, 124189 135599, 124265 135634, 124639 135626, 124729 135776, 124430 135901, 123754 135988, 123703 136011, 123347 136074, 123273 136052, 123213 135680, 123096 135477, 122819 135391, 122756 135337, 122691 135437, 122643 135651, 122510 135631, 121999 135800, 121844 135668, 121573 135898, 121568 135811, 121622 135769, 121623 135583, 121842 135658, 121902 135401, 121762 135410, 121620 135574, 121417 135449, 121133 135476, 121049 135569, 120658 135651, 120447 135748, 120258 135904, 120154 135874, 120086 136053, 119789 136279, 119473 136548, 119452 136500, 119534 136164, 119652 135882, 119635 135791, 119395 135980, 119227 135779, 118829 135851, 118509 136127, 118507 136190, 118428 136136, 118318 136180, 118197 136376, 118305 136615, 118228 136767, 117973 137052, 117776 137191, 117740 136950, 117886 136638, 118130 136633, 118132 136389, 117856 136399, 117602 136628, 117223 136550, 117160 136572, 117126 136516, 117339 136288, 117514 136185, 117251 136082, 117149 136004, 116952 136134, 116884 136454, 116808 136303, 116687 136216, 116557 136220, 116387 136459, 116383 136518, 116338 136531, 116224 136732, 116048 136740, 115806 136673, 115623 136472, 115752 136469, 115765 136210, 115875 136046, 115726 135924, 115616 135998, 115573 136442, 115313 136656, 115197 136803, 114946 136606, 114421 136372, 114395 136106, 114671 135974, 114756 135965, 114950 135593, 114637 135496, 114495 135317, 114420 135283, 114264 135411, 114337 135508, 114237 135738, 114010 135683, 114047 135454, 113922 135387, 114084 135177, 113709 135347, 113585 135286, 113801 134932, 113474 135105, 113328 135292, 113311 135076, 113061 135023, 112988 134932, 112800 135031, 112663 135274, 112815 135369, 112848 135467, 112723 135575, 112282 135653, 112477 135987, 112468 136249, 112200 136411, 112030 136397, 111744 136605, 111606 136329, 111528 136219, 111495 135947, 111474 135955, 111198 135736, 111206 135609, 111344 135288, 111483 135126, 111378 135091, 111296 135276, 110948 135073, 110853 135147, 110801 135336, 110742 135386, 110129 135361, 109900 135563, 109826 135582, 109902 135675, 109930 135813, 109898 135977, 109361 136059, 109070 135973, 108982 135753, 109018 135678, 108572 135701, 108359 135989, 108183 135787, 108007 135903, 108134 135651, 107993 135488, 107824 135440, 107510 135317, 107500 135251, 107380 135207, 107222 135217, 107036 135399, 106858 135430, 106661 135198, 106441 135242, 106302 135206, 106211 135075, 106038 135009, 106034 135111, 105955 135137, 105923 135311, 105951 135404, 106093 135454, 106136 135385, 106276 135341, 106506 135358, 106737 135520, 106855 135713, 106745 135933, 106291 135738, 106290 135663, 106137 135531, 106056 135633, 106235 135744, 106183 136032, 105943 136048, 105739 135953, 105482 136067, 105360 136075, 105289 136216, 105312 136288, 105166 136376, 104952 136050, 104665 136071, 104604 135981, 104366 135871, 104515 135755, 104145 135234, 104041 135248, 104085 135307, 103970 135500, 103984 135672, 103676 135965, 103449 135625, 103475 135258, 103084 135277, 102423 135413, 102316 135482, 101926 135658, 101223 136046, 101049 136013, 100672 136006, 100404 135965, 100242 135976, 100191 136146, 99730 135992, 99269 136011, 99195 136002, 98823 136033, 98693 135957, 98012 135998, 97790 136098, 97612 135850, 97310 135619, 96993 135447, 96928 135395, 96728 135226, 96725 134880, 96456 134773, 96152 134807, 95843 134931, 95367 135283, 95072 135605, 94874 135414, 94584 135321, 94485 135118, 94285 134980, 93947 135151, 93644 135203, 93621 135244, 93579 135231, 93264 135493, 93001 135580, 92834 135678, 92670 136057, 92054 136536, 92030 136488, 92073 136227, 92244 135948, 92190 135752, 91918 136007, 91900 135879, 91802 135771, 91661 135828, 91347 135880, 91131 136093, 91116 136159, 91047 136117, 90919 136159, 90759 136374, 90872 136615, 90797 136764, 90339 137184, 90307 136950, 90453 136639, 90695 136634, 90694 136388, 90423 136398, 90176 136632, 89794 136550, 89727 136573, 89681 136498, 89972 136246, 90064 136244, 90142 136168, 90077 136100, 89848 135965, 89492 136145, 89455 136416, 89371 136306, 89125 136172, 89029 136302, 88890 136646, 88616 136740, 88374 136672, 88233 136483, 88321 136465, 88333 136214, 88410 136077, 88462 136053, 88219 135897, 88161 136116, 88126 136435, 87745 136787, 87523 136611, 86989 136371, 86963 136104, 87240 135974, 87326 135965, 87517 135593, 87207 135496, 86971 135254, 86904 135507, 86806 135738, 86609 135713, 86527 135539, 86543 135406, 86505 135345, 86587 135239, 86398 135331, 86209 135346, 86166 135299, 86313 135035, 86129 134966, 86072 134981, 86005 134907, 85524 134979, 85431 135193, 85222 135242, 85375 135344, 85363 135419, 85430 135509, 85349 135505, 85235 135590, 84944 135622, 84874 135666, 85110 136117, 84884 136377, 84590 136411, 84297 136563, 84140 136272, 84165 136654, 84073 136578, 84008 136352, 83879 136374, 83968 136325, 83982 136146, 83777 136341, 83944 136147, 84002 136108, 84028 135950, 83831 135806, 83748 135624, 83148 135941, 82702 136044, 82544 136113, 82485 136088, 82156 136110, 81742 136005, 81443 136222, 81304 136319, 81199 136183, 81247 136069, 81111 136096, 81017 136168, 81122 136274, 81174 136215, 81412 136642, 81164 136602, 80878 136583, 80988 136446, 80919 136464, 80688 136602, 80607 136305, 80274 136387, 79838 136780, 79352 136963, 79204 137074, 78889 136647, 78725 136575, 78575 136452, 78214 136412, 78091 136286, 78104 136094, 77898 136077, 77858 136221, 77880 136293, 77736 136379, 77573 136136, 77356 136219, 77462 136277, 77570 136404, 77218 136500, 77255 136280, 77348 136219, 76993 136083, 76834 136041, 76765 135943, 76670 135934, 76675 136033, 76453 136336, 76225 136116, 76069 135927, 75919 135837, 75731 135667, 75605 135619, 75565 135543, 75543 135288, 75369 135409, 75321 135349, 75126 135313, 75060 135146, 74935 135097, 74810 135110, 74619 135231, 74763 135254, 75062 135388, 74744 135552, 74607 135568, 73980 135632, 73531 135754, 73480 135413, 73331 135175, 73090 135141, 72995 135227, 72949 135405, 72736 135400, 72236 135639, 72169 135593, 71848 135917, 71689 135933, 71673 135823, 71862 135663, 71864 135511, 71654 135425, 71367 135493, 71288 135568, 71040 135604, 70993 135634, 70604 135716, 70360 135763, 70193 135696, 70220 135539, 70079 135246, 69950 135326, 69544 135136, 69495 135038, 69386 135073, 69489 135154, 69314 135263, 69145 135215, 69111 135345, 69305 135639, 69276 135684, 68888 135662, 68444 135761, 68640 135448, 68572 135408, 68355 135051, 68640 134987, 68769 134819, 68580 134663, 68374 134979, 68064 135234, 67989 135225, 67971 135087, 68120 134737, 67881 134421, 67639 134362, 67512 134397, 67456 134334, 67372 134362, 67111 134592, 67228 134742, 67182 134910, 66807 135079, 66690 135304, 66570 135323, 66126 135241, 66073 135302, 66004 135591, 65754 135734, 65537 135657, 65272 135853, 65027 135919, 65005 135988, 65058 136145, 64870 136361, 64656 136047, 64453 136137, 64643 136213, 64809 136374, 64490 136586, 64183 136707, 64278 136212, 63953 136111, 63861 136118, 63817 136044, 63870 135938, 64210 135619, 63866 135287, 63785 135135, 63681 135233, 63617 135505, 63637 135787, 63183 136382, 62995 135952, 62927 135832, 62946 135473, 62925 135342, 62808 135451, 62588 135515, 62483 135489, 62333 135146, 62578 134986, 62457 134920, 62208 134847, 61894 134944, 61753 134798, 61578 134975, 61937 135253, 62069 135289, 61958 135290, 61697 135292, 61571 135314, 61428 135229, 61397 135335, 61004 135622, 60241 135442, 60653 135209, 60659 135133, 60604 135054, 60260 134980, 60168 134994, 59960 135125, 59926 135360, 60026 135769, 60016 135836, 59667 135644, 59627 135507, 59680 135450, 59386 135416, 59179 135363, 59074 135411, 58765 135445, 58517 135731, 58152 135190, 58085 135149, 57923 134851, 57712 134842, 57447 135170, 57427 135213, 57215 135379, 57082 135597, 57001 135535, 56963 135331, 56899 135248, 56720 135236, 56064 134715, 55605 134667, 55515 134762, 55853 134970, 55757 135450, 55717 135488, 55293 135441, 55267 135392, 54937 135422, 54608 135618, 54543 135725, 54338 136007, 54046 135793, 53530 135623, 53191 135328, 53035 135288, 52979 135480, 53018 135612, 52670 135470, 52383 135414, 52152 135464, 52479 135209, 52428 135144, 52295 135118, 51984 135181, 51773 135125, 51500 135243, 50834 135326, 50687 135287, 50434 135276, 50007 135088, 49585 134979, 49066 134911, 48468 134977, 48441 134957, 47881 134850, 47829 134737, 47239 134728, 47050 134814, 46849 134739, 46622 134986, 46413 134986, 46104 134687, 46275 134378, 46224 134151, 46139 134047, 46249 133899, 46238 133784, 45899 133657, 45626 133769, 45444 133622, 45475 133565, 45347 133384, 44976 133405, 44788 133508, 44529 133467, 44099 133686, 44000 133560, 44091 133436, 44206 133376, 44307 133392, 44335 133296, 44590 133071, 45463 133039, 46008 133156, 45961 133109, 45997 132799, 46025 132770, 45976 132712, 45725 132659, 45581 132482, 45236 132696, 45414 133008, 44857 132757, 44977 132539, 44958 132473, 44826 132404, 44601 132411, 44171 132353, 43769 131871, 43981 131810, 44119 131716, 43838 131518, 43861 131195, 43582 131142, 43466 131189, 43302 131170, 43324 131094, 43161 130950, 43196 130752, 43155 130663, 43383 130419, 43398 130353, 43323 130074, 43239 130062, 43301 129994, 43359 129445, 43225 129258, 43140 128928, 43217 128724, 43144 128657, 42940 128748, 42735 128567, 42877 128329, 42854 128277, 42669 128220, 42706 128570, 42589 128595, 42378 128809, 42407 128597, 42614 128199, 42483 128185, 42245 128300, 42148 128040, 42073 127995, 42155 127678, 42024 127417, 41939 127445, 41801 127704, 41694 127430, 41860 127106, 41683 126831, 41577 126917, 41452 127192, 41401 127192, 41327 126885, 41263 126609, 41298 126498, 41361 125899, 41421 125628, 41539 125708, 41655 125570, 41501 125574, 41381 125345, 41326 125721, 41338 125846, 41251 125989, 41168 125910, 41230 125788, 41146 125605, 41042 125635, 40885 125517, 41079 125226, 41275 125115, 41340 125126, 41344 125038, 40969 124437, 40961 124074, 40972 123976, 40753 123596, 40812 123528, 40853 123552, 40876 123274, 40961 123455, 41052 123377, 40945 122880, 40909 122549, 41037 122550, 41096 122750, 41233 122723, 41310 122893, 41447 122850, 41470 122764, 41329 122150, 41112 121736, 41210 121353, 41117 121282, 40935 120693, 41055 120283, 40984 120078, 40891 120080, 40927 119761, 40902 119326, 40808 118962, 40775 118936, 40690 119317, 40642 119292, 40617 119136, 40666 118864, 40733 118575, 40747 118274, 40765 118204, 40822 118479, 40855 118554, 40940 118159, 41015 117994, 41038 117660, 41078 117340, 41284 116909, 41231 116854, 41170 116552, 41279 116484, 41140 116433, 40929 116541, 40868 116284, 40897 116124, 40745 116071, 40634 115906, 40632 115767, 40705 115521, 40730 115062, 40927 115022, 40990 115139, 40968 115320, 41035 115494, 41054 115226, 41119 115118, 41169 114738, 41259 114825, 41472 114524, 41525 114208, 41451 114180, 40917 113420, 40937 113343, 41219 113156, 41362 112973, 41270 112849, 41254 112554, 41194 112394, 41062 112384, 40975 112475, 40838 112528, 40816 112401, 40718 112361, 40745 112192, 40690 111957, 40598 111447, 40890 110922, 40889 110737, 40836 110775, 40757 110641, 40757 110459, 40731 110070, 40799 109881, 40874 109845, 40904 109699, 40875 109313, 40974 109296, 40990 109049, 41118 108830, 41130 108710, 41238 108243, 41150 107885, 41279 107595, 41556 107763, 41693 107879, 41557 108359, 41595 108818, 41673 108695, 41919 108567, 42073 108574, 42132 108654, 42286 108579, 42330 108646, 42440 108693, 42350 108523, 42438 108401, 42579 108519, 42637 108229, 42424 108110, 42221 107667, 42411 107536, 42181 107261, 42537 106908, 42767 107048, 42936 107335, 43055 107368, 43097 107513, 43366 107437, 43306 107073, 43182 106849, 43123 106812, 43063 106560, 43083 106441, 43331 106232, 43509 105528, 43637 105160, 43807 105021, 44351 104509, 44803 104559, 45345 104667, 45660 104709, 45785 104635, 46197 104955, 46251 104962, 46215 104945, 46234 104628, 46199 104598, 46193 104483, 46273 104392, 46445 104532, 46628 104818, 46807 104657, 46802 104408, 46536 104297, 46374 104104, 46424 104051, 46462 103793, 46414 103721, 46151 103924, 46246 104365, 46082 104371, 46014 104302, 46079 103798, 46092 103325, 46245 103267, 46320 103282, 46370 103240, 46466 102961, 46654 103216, 46984 103089, 47079 103117, 47153 102995, 47334 102916, 47398 102930, 47791 102908, 47842 102889, 48162 102825, 48214 102889, 48058 102998, 48060 103327, 47898 103671, 48048 103640, 48074 103360, 48304 103328, 48459 103485, 48675 103443, 48921 103487, 48971 103424, 49012 103489, 49517 103390, 49313 103137, 49322 103118, 49073 102855, 49329 102621, 49495 102572, 49800 102575, 50067 102637, 50227 102894, 50528 102716, 50971 102866, 51195 102861, 51121 102672, 50655 102231, 51226 102367, 51573 102497, 51601 102525, 51897 102661, 51821 103018, 51929 103206, 52348 103245, 52419 103082, 52872 103051, 53058 103002, 53396 103083, 53372 102914, 53495 102723, 53679 102970, 53652 103076, 54044 103042, 54297 103001, 54488 102914, 54460 102886, 54772 102835, 54989 102481, 55098 102519, 55176 102722, 55297 102770, 55169 102855, 55529 102907, 55885 102741, 55913 102928, 55881 103089, 56057 103132, 56097 103022, 56248 102854, 56401 102766, 56440 102841, 56715 102836, 57049 102691, 57122 102419, 57278 102597, 57290 102727, 57353 102766, 57302 102812, 57354 102803, 57439 102630, 57593 102515, 57585 102421, 57664 102434, 57617 102266, 57786 101936, 57868 102121, 57971 102427, 58260 102239, 58317 101953, 58389 101991, 58462 102115, 58439 102199, 58521 102252, 58907 102200, 58954 102445, 59046 102440, 59109 102376, 59151 102163, 59105 102169, 59146 102062, 59200 102049, 59356 102113, 59338 102205, 59260 102274, 59335 102416, 59345 102374, 59505 102441, 59446 102506, 59439 102771, 59465 102798, 59508 102742, 59616 102722, 59677 102788, 59543 102874, 59665 102972, 59934 102989, 60289 102769, 60840 102283, 61082 102235, 61133 101982, 61256 101889, 61397 102096, 61731 102268, 61738 102342, 61969 102451, 62118 102641, 62319 102502, 62685 102505, 63194 102340, 63358 102348, 63760 102288, 63878 102311, 64214 102268, 64083 102141, 64090 102040, 64390 101954, 64426 102126, 64367 102265, 64389 102596, 64543 102642, 64489 102807, 64596 102940, 64810 102777, 64823 102707, 65211 102741, 65426 102708, 65707 102604, 66086 102383, 66205 102382, 66490 102340, 66088 102710, 66230 102849, 66332 102750, 66499 102802, 66889 102649, 66991 102574, 67293 102447, 67360 102447, 67701 102324, 67773 102544, 67887 102633, 67922 102597, 68384 102610, 68597 102382, 68614 102129, 68909 101754, 69031 101768, 69191 101854, 69327 101871, 69537 102127, 69235 102238, 69004 102702, 69384 102672, 69683 102467, 69779 102550, 69782 102799, 69655 103141, 69818 103191, 69618 103248, 69591 103373, 69858 103211, 70062 103377, 70373 103214, 70474 103282, 70555 103452, 70344 103586, 70391 103728, 70782 103798, 70905 103793, 70806 103354, 71297 103174, 71380 103089, 71462 103114, 71547 102957, 71793 102809, 72140 102520, 72186 102525, 72389 102362, 72580 102289, 72611 102315, 72535 102670, 72544 102884, 72236 103047, 72237 103073, 72525 103168, 72779 103052, 72823 102984, 72898 103039, 72930 103161, 73222 103288, 73295 103018, 73450 103029, 73644 102977, 73847 103010, 73875 102978, 74186 102898, 73915 102651, 74090 102604, 74571 102715, 74661 102889, 75004 103075, 75258 102974, 75439 102956, 75574 103240, 75956 103031, 76299 103060, 76515 103140, 76538 103184, 76809 103118, 76849 103084, 77240 102993, 77134 102726, 77148 102730, 77356 102978, 77510 102976, 77507 102741, 77545 102710, 77663 102759, 77668 102946, 77858 102996, 77952 102741, 77609 102635, 77617 102522, 78023 102499, 78169 102538, 78325 102498, 78414 102540, 78762 102372, 79051 102271, 79150 102138, 79262 102170, 79478 102422, 79801 102043, 79885 102001, 80155 101803, 80254 101746, 80463 101586, 80611 101436, 80900 101801, 81238 101890, 81507 101843, 81662 101912, 81631 102200, 81719 102293, 81773 102114, 82047 101849, 82564 101937, 82706 102044, 82503 102174, 82391 102373, 82538 102309, 82913 101946, 83139 101911, 83193 101633, 83349 101514, 83440 101736, 83685 101935, 83760 101964, 83767 102077, 84077 102548, 84232 102322, 84631 102230, 84758 102536, 84960 102557, 85068 102451, 84941 102429, 84633 102228, 85126 102036, 85398 102015, 85573 101974, 85741 102024, 85931 101954, 86115 101955, 86016 101867, 86041 101723, 86244 101661, 86275 101877, 86245 101972, 86283 102339, 86450 102662, 86643 102768, 86769 102683, 86710 102436, 87155 102575, 87202 102648, 87595 102571, 87633 102615, 87740 102547, 87998 102474, 88271 102533, 88261 102606, 87960 102785, 88128 103007, 88202 102956, 88359 103045, 88680 102998, 89222 102938, 89243 102945, 89515 102924, 89615 102963, 89597 103055, 89690 103240, 89800 103320, 90333 103420, 90539 103256, 90597 103254, 90617 103077, 90900 102750, 91275 102945, 91463 103176, 91227 103240, 91092 103378, 91052 103481, 91291 103610, 91450 103581, 91650 103467, 91780 103562, 91783 103738, 91573 104311, 91611 104328, 91828 104210, 92036 104290, 92381 104155, 92471 104306, 92325 104416, 92377 104554, 92824 104574, 92899 104492, 92802 104159, 93307 103878, 93406 103844, 93510 103666, 93781 103441, 94089 103147, 94193 103134, 94364 102956, 94571 102807, 94470 103223, 94514 103381, 94248 103537, 94233 103632, 94499 103667, 94804 103460, 94827 103413, 94875 103437, 94915 103557, 95238 103695, 95351 103341, 95871 103225, 95882 103192, 96179 103030, 95913 102815, 96138 102733, 96544 102770, 96659 102821, 96700 102937, 97014 103062, 97223 102945, 97520 102892, 97608 103156, 97855 103060, 97968 102956, 98135 102930, 98727 102806, 99483 102970, 99748 103059, 100038 102960, 99956 102800, 100051 102566, 100266 102601, 100058 102551, 100064 102492, 100030 102541, 99694 102416, 99708 102322, 100109 102392, 100361 102334, 100532 102386, 100784 102279, 101072 102229, 101240 102046, 101467 102338, 101637 102556, 101816 102918, 102184 103285, 102019 103454, 102085 103588, 102066 103736, 101839 103973, 102074 104144, 101846 104344, 101760 104385, 101864 104564, 101945 104543, 102014 104450, 102275 104489, 102405 104459, 102376 104629, 102411 104678, 102451 104256, 102680 103942, 102346 103467, 102341 103247, 102250 102982, 102397 102895, 102731 102853, 102740 102888, 102996 102768, 103387 102987, 103486 103101, 103596 102948, 103455 102870, 103467 102836, 103736 102747, 103805 102415, 104035 102223, 104464 102286, 104663 102434, 104518 102525, 104297 102945, 104345 102967, 104680 102838, 105340 102801, 106125 102719, 106282 102724, 106681 102516, 106957 102500, 107141 102447, 107720 102513, 108053 102656, 108224 102608, 108469 102660, 108685 102551, 108635 102442, 108419 102265, 108640 102325, 108840 102275, 109154 102140, 109114 102339, 109152 102472, 109410 102392, 109797 102037, 110142 101906, 110458 101691, 110661 101924, 110765 102084, 111112 102198, 111396 102219, 111501 102275, 111484 102645, 111727 102914, 112139 102810, 112410 102597, 112739 102249, 112982 102181, 113035 101905, 113178 101773, 113348 102030, 113399 102044, 113648 102337, 113692 102355, 113916 102639, 114059 102420, 114480 102269, 114973 102008, 115149 101988, 115499 101861, 115628 101866, 116006 101756, 115861 101625, 115867 101540, 116101 101437, 116138 101639, 116099 101740, 116127 102098, 116295 102422, 116429 102475, 116596 102410, 116547 102246, 116621 102164, 117011 102215, 117057 102284, 117824 102077, 118150 102196, 118156 102230, 117818 102363, 117817 102486, 118028 102702, 118051 102670, 118271 102766, 118416 102736, 118647 102767, 119023 102833, 119058 102857, 119321 102918, 119410 102985, 119393 103074, 119563 103446, 119649 103408, 120081 103746, 120339 103633, 120339 103450, 120649 103177, 121048 103536, 121230 103840, 120986 103834, 120856 103931, 120813 104036, 121072 104265, 121171 104277, 121402 104204, 121525 104322, 121533 104505, 121326 105001, 121363 105024, 121595 104957, 121781 105075, 122112 104983, 122173 105016, 122181 105173, 122280 105173, 122155 105241, 122165 105339, 122595 105444, 122672 105409, 122547 105080, 122838 105009, 123056 104896, 123159 104884, 123260 104743, 123520 104572, 123827 104332, 123913 104329, 124291 104057, 124200 104427, 124245 104553, 124007 104664, 123989 104751, 124252 104784, 124514 104627, 124538 104582, 124626 104611, 124694 104710, 124941 104777, 124983 104567, 125106 104449, 125415 104380, 125553 104351, 125575 104284, 125845 104127, 125573 103988, 125783 103882, 126295 103875, 126431 103973, 126632 104017, 126860 103899, 127125 103831, 127269 104068, 127597 103827, 127626 103849, 127675 103799, 128244 103837, 128406 103915, 128605 103677, 128647 103712, 128759 104020, 128874 103995, 128916 104046, 128974 104043, 129029 103893, 129275 103787, 129447 103791, 129671 103577, 129602 103440, 129713 103206, 129320 103146, 129335 103050, 129719 103003, 129862 103020, 130041 102895, 130164 102932, 130487 102739, 130799 102594, 130951 102403, 131045 102444, 131276 102732, 131415 102812, 131561 103097, 131815 103267, 131982 103425, 131825 103585, 131872 103711, 131816 103924, 131616 104110, 131841 104234, 131829 104315, 131938 104364, 132261 104347, 132445 104089, 132609 104040, 132419 104033, 132330 103782, 132117 103600, 132132 103546, 132005 103154, 132245 103050, 132452 103073, 132708 102981, 133070 103149, 133247 103344, 133509 103064, 133475 102915, 133554 102723, 133791 102553, 134312 102774, 134788 103006, 134819 103028, 134408 102897, 134285 102945, 134096 103200, 134206 103391, 134413 103369, 134601 103463, 135139 103493, 135192 103373, 135744 103302, 135773 103279, 136353 103379, 136882 103330, 137201 103288, 137623 103123, 137969 103106, 138563 103213, 138786 103317, 138974 103260, 139246 103310, 139402 103231, 139102 102993, 139340 103043, 139565 102966, 139877 102792, 139845 102935, 139898 103096, 140036 103041, 140375 102674, 140862 102398, 141105 102152, 141382 102472, 141741 102568, 142001 102545, 142150 102604, 142135 102943, 142396 103154, 142942 102885, 143193 102610, 143529 102283, 143763 102185, 143838 102080, 143878 101879, 143969 101790, 144119 101959, 144311 102032, 144524 102223, 144678 102262, 144829 102401, 144974 102233, 145163 102159, 145511 102099, 145541 102073, 145998 101872, 146354 101835, 146500 101798, 146645 101832, 146867 101744, 146901 101517, 147271 101389), (143581 135001, 143976 135192, 143940 135078, 144043 134952, 144013 134901, 143594 134807), (68879 134758, 69248 134988, 69214 134862, 69298 134787, 69215 134663, 68774 134519), (65782 134382, 65714 134660, 65735 134790, 65796 134809, 66043 134707, 66253 134741, 66493 134669, 66828 134926, 66910 134742, 67017 134614, 66814 134713, 66601 134499, 66540 134559, 66487 134521, 66270 134667, 66066 134661, 65904 134347, 65827 134312), (164793 134568, 164770 134690, 164905 134902, 164993 134817, 165283 134808, 165433 134869, 165622 134594, 165601 134517, 165229 134592, 165103 134583, 164916 134441), (143356 134540, 143449 134773, 143588 134782, 143708 134502, 143559 134451), (170249 134097, 170241 134167, 170413 134497, 170597 134585, 170823 134629, 170854 134376, 170475 134334, 170593 134042, 170406 134003), (137415 134174, 137436 134295, 137526 134449, 137609 134353, 138162 134483, 138362 134150, 137891 134139, 137765 134170, 137577 134038), (45978 133615, 46251 133757, 46366 133686, 46383 133467, 46213 133333), (189640 132105, 190033 132258, 190139 132148, 189973 132090), (193701 118681, 193713 118969, 193757 118982, 193790 118915, 193775 118642, 193726 118073, 193676 118023), (191372 108040, 191400 108103, 191304 108436, 191327 108481, 191556 108335, 191594 108247, 191510 107981, 191407 107912), (188119 105974, 188080 106056, 188126 106140, 188400 105920, 188318 105909), (188652 105805, 188679 106125, 189087 106087, 188973 105793), (189497 105786, 189534 105812, 189535 105925, 189583 105823, 189784 105774, 189926 105683, 189733 105606), (131571 104488, 131787 104761, 131925 104881, 132137 104879, 132179 104738, 132085 104738, 131680 104507, 131686 104442), (188398 103912, 188405 103992, 188567 104111, 188360 104298, 188335 104303, 188064 104441, 188048 104640, 188235 104846, 188465 104447, 188408 104330, 188567 104256, 188638 104158, 188640 104046, 188713 103903, 188484 103780), (126133 104488, 125891 104479, 125575 104527, 125512 104660, 125931 104638, 126033 104613, 126166 104672, 126253 104598, 126251 104514, 126186 104425), (187466 104348, 187379 104462, 187442 104536, 187763 104398, 187558 104297, 187570 104259, 187375 104173), (120287 104169, 120666 104304, 120664 104164, 120395 103967), (133346 103832, 133312 103838, 133367 104088, 133469 104201, 133668 104192, 133560 104017, 133663 103708, 133512 103644), (182922 103927, 182951 104078, 183087 104160, 183256 104093, 183573 103898, 183598 103833, 183459 103611, 183514 103412), (133024 103609, 132839 103701, 132613 103652, 132648 103884, 132899 103876, 133002 103960, 133310 103833, 133476 103591, 133254 103347), (90511 103764, 90906 103803, 90904 103660, 90610 103549), (95768 103681, 96057 103732, 96358 103662, 96506 103784, 96595 103702, 96614 103587, 96533 103461, 96475 103535, 96214 103469, 95938 103429), (183989 103559, 184007 103692, 183892 103752, 184037 103736, 184199 103460, 184055 103448), (73775 103408, 73759 103427, 74218 103505, 74486 103509, 74513 103446, 74456 103334, 74390 103386, 74146 103310), (103243 103402, 103363 103347, 103697 103417, 103838 103273, 103639 103293, 103500 103088), (175394 103184, 175246 103409, 175829 103298, 175863 103262, 176009 103310, 176077 103263, 176079 103189, 176037 103148), (59468 102800, 59496 102829, 59618 102772), (114617 102545, 114800 102539, 114898 102432, 114783 102428, 114493 102288)), ((108850 136644, 108647 136612, 108348 136570, 108610 136156)), ((104897 136284, 104997 136403, 104652 136500, 104722 136201)), ((174305 135194, 174168 135529, 174037 135603, 174086 135371, 174158 135328, 174135 135113)), ((136146 135168, 135649 135133, 135649 135090, 135940 134969)), ((41043 121936, 41186 122120, 41202 122554, 40944 122100, 40904 121929, 40928 121890)), ((123856 103788, 123975 104015, 123854 104135, 123736 103997, 123463 103841, 123678 103718)), ((181388 103391, 181538 103439, 181342 103486, 181240 103467, 181357 103063)), ((119724 102830, 119639 103036, 119662 103128, 119569 103134, 119480 102926, 119554 102702)), ((173519 102386, 173602 102512, 173609 102599, 173728 102771, 173514 102996, 173313 102755, 172941 102588, 173164 102419, 173266 102414, 173364 102332)), ((94131 102562, 94237 102760, 94123 102883, 94024 102765, 93841 102777, 93907 102672, 93790 102609, 93947 102512)), ((150965 102382, 150913 102507, 150983 102711, 150743 102752, 150574 102561, 150694 102218)), ((68054 101957, 67990 102150, 68030 102280, 67838 102396, 67733 102292, 67830 101952)), ((72160 101873, 72322 102233, 72151 102379, 71998 102153, 71724 102100, 71823 101958, 71736 101883, 71850 101827, 71927 101833, 71999 101784)), ((169448 101850, 169401 101987, 169460 102194, 169226 102286, 169062 102121, 169154 101882, 169174 101745))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_003.wkt b/tests/voronoi_crash_resources/slice_polygon_003.wkt new file mode 100644 index 00000000000..041dcd5b9c6 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_003.wkt @@ -0,0 +1 @@ +MultiPolygon (((122284 113666, 123049 114043, 123520 114470, 123644 114573, 123817 114751, 123896 114794, 124013 114851, 124694 115297, 125303 115758, 125477 115916, 126470 116593, 126877 117068, 127118 117496, 127198 117898, 127150 118480, 127051 118790, 126908 119189, 126592 119585, 126417 119840, 126185 120009, 125875 120468, 125791 120830, 125570 121185, 125128 121546, 124505 121795, 123592 122108, 122792 122222, 122110 122359, 121721 122424, 120491 122690, 119083 122846, 117862 122758, 117763 122775, 117366 122773, 116401 122835, 115909 122763, 115524 122727, 114931 122571, 114688 122469, 114021 122082, 113525 121558, 113382 121190, 113331 120902, 113336 120423, 113435 120180, 113374 120162, 113261 119886, 113154 119124, 113056 119101, 112971 119049, 112951 119060, 112876 119015, 112876 117561, 112971 117560, 112971 117580, 113031 117580, 113199 117645, 113050 118095, 113047 118359, 113154 119124, 113313 119161, 113550 119140, 113730 118986, 113813 118820, 113829 118625, 113794 118331, 113720 118108, 113577 117902, 113387 117718, 113199 117645, 113418 116985, 114033 116287, 114630 115714, 115362 115246, 115786 115120, 116516 114855, 116827 114768, 117946 114378, 118613 114172, 118991 114040, 119480 113927, 119738 113857, 120380 113725, 120965 113662, 121646 113640), (121614 114261, 121064 114303, 120736 114368, 120370 114429, 119460 114711, 118653 115046, 118123 115255, 117656 115587, 117471 115816, 117219 116158, 117211 116172, 117318 116184, 117780 116466, 118028 116856, 118121 117139, 118359 117797, 118565 118631, 118396 119434, 118187 119501, 117265 119777, 116604 119962, 116111 120021, 115697 120189, 115503 120202, 115046 120688, 114756 120572, 114589 120522, 114404 120312, 114075 119732, 113986 119566, 114172 119488, 114407 119307, 114880 119168, 115414 118856, 115515 118521, 115805 118174, 115983 117895, 116510 117229, 116729 116931, 116889 116730, 117211 116172, 116544 116099, 114823 116276, 114301 116789, 114029 117705, 113932 118116, 113853 118575, 113966 119530, 113986 119566, 113882 119610, 113707 119727, 113444 120158, 113435 120180, 114589 120522, 114708 120658, 115015 120868, 115439 121034, 115919 121203, 116646 121197, 117222 120978, 117287 120917, 117671 120679, 117893 120404, 118315 119816, 118396 119434, 119119 119201, 120958 118521, 121156 118424, 121146 118347, 121156 118119, 121735 116490, 122179 116091, 122487 115947, 123304 115941, 123897 116077, 123827 116268, 123534 116772, 123219 117125, 122881 117439, 122461 117739, 122053 117985, 121156 118424, 121271 119318, 121374 119471, 121819 120261, 122060 120458, 122199 120633, 122737 120931, 123273 121039, 123624 120983, 124108 120884, 124503 120664, 124823 120383, 125303 119692, 125384 119374, 125532 118648, 125478 117748, 125332 116868, 124898 116307, 123897 116077, 123943 115953, 124021 115571, 124018 115263, 123972 115012, 123840 114774, 123817 114751, 123458 114553, 122968 114387, 122292 114251))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_004.wkt b/tests/voronoi_crash_resources/slice_polygon_004.wkt new file mode 100644 index 00000000000..fb8934797c5 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_004.wkt @@ -0,0 +1 @@ +MultiPolygon (((114694 35858, 115616 35911, 115854 35970, 116115 36112, 116666 36083, 116755 36064, 116959 36121, 117454 36520, 117954 36308, 118396 36479, 118905 36902, 119142 36740, 119388 36585, 120610 36511, 121349 36576, 121551 36646, 121806 37024, 122134 37435, 122337 37525, 122613 37579, 122905 36993, 123035 36987, 123754 37351, 124156 37152, 124237 37179, 125265 37289, 125714 37320, 125916 37368, 126783 37522, 126884 37542, 127428 37413, 127760 37525, 127985 37667, 128176 37729, 128492 37704, 128708 37756, 129040 38016, 129370 38302, 129553 38343, 130039 38558, 130303 38693, 130645 38683, 130815 38609, 131496 38809, 132570 38671, 132826 39123, 132913 39408, 133122 39596, 133467 39426, 133601 39156, 133743 39187, 133936 39347, 134344 39593, 134523 39533, 134568 39901, 134735 40194, 135001 40147, 135245 40052, 135422 40043, 135593 39721, 135588 39652, 135879 39734, 136913 40255, 137258 40294, 137509 40084, 138034 39610, 138241 40199, 137912 40462, 137782 40885, 138055 40883, 138682 40679, 139860 41330, 139903 41339, 140270 41749, 140358 41819, 140722 42162, 141208 42185, 141335 42501, 141874 42554, 142001 42431, 142678 42985, 142940 43182, 143008 43387, 143371 43383, 143476 43425, 143758 43506, 144322 43650, 144552 43865, 144394 44479, 144474 44471, 144587 44640, 144756 44841, 145358 44845, 145929 44554, 145561 44280, 145198 44136, 144773 44241, 144863 43853, 145300 43698, 145357 43754, 145902 43910, 146069 44500, 146691 44779, 146457 45180, 146532 45278, 147114 45360, 147691 45786, 147974 45934, 148413 45992, 148871 46129, 149174 46207, 149780 45967, 150518 46419, 151023 46445, 151179 46674, 151277 47011, 151931 47268, 152122 47411, 152378 47429, 152371 47652, 152815 47753, 152841 48077, 152822 48148, 153354 48499, 153861 49036, 154395 48895, 155005 49286, 155392 49439, 155975 49852, 156047 49942, 156504 50102, 156854 50647, 156940 50630, 156991 50715, 157507 51150, 157752 51333, 158095 51811, 158342 51899, 158362 52322, 158812 52298, 158820 52290, 159484 52384, 159767 52723, 159879 52764, 160077 52740, 160753 52713, 160926 52761, 160937 52815, 161005 52851, 161092 53432, 161095 53748, 161271 53906, 161501 54270, 161519 54351, 161908 54578, 161971 55091, 162413 54965, 162644 55166, 162846 55764, 162640 56006, 162864 55917, 163153 55978, 163514 55936, 163989 56371, 164195 56644, 164473 56755, 164834 56841, 164651 57037, 165070 57715, 165074 57756, 165228 58005, 165829 58708, 165836 58767, 165894 58779, 166268 59147, 166511 59419, 167227 60014, 167291 60543, 167051 60914, 166973 61121, 166972 61495, 167129 61589, 167383 61556, 167773 61244, 167817 61534, 168386 61687, 168676 61640, 168801 61781, 168814 61968, 168951 62407, 169356 62936, 169883 62918, 169929 63270, 170434 63665, 170639 63616, 171144 64025, 171110 64792, 171185 65115, 170990 65219, 170902 65582, 171142 65638, 171534 65506, 171719 65756, 171922 65992, 172246 65873, 172483 66188, 172822 66325, 172827 66608, 173030 66684, 173096 67142, 173537 67385, 174024 68310, 174243 68335, 174470 68302, 174812 68481, 174841 68804, 174837 69024, 174995 69298, 175146 69480, 175360 70207, 175420 70230, 175450 70355, 176077 70396, 175781 70047, 175687 69727, 176091 69906, 176084 69960, 176391 70487, 176384 70499, 176529 71050, 176278 71598, 176297 71755, 176725 71989, 176885 72414, 176940 72474, 177253 72521, 177404 72763, 177332 73631, 177492 73895, 177746 74166, 177626 74408, 177574 74600, 177192 74917, 177542 75124, 177912 74785, 177904 74683, 178015 74740, 177791 75271, 177810 75487, 177983 75635, 178291 75614, 178544 75530, 178745 75618, 179000 75912, 179061 76348, 179231 76491, 179073 76825, 179165 77257, 179928 76916, 180362 77366, 180379 78058, 180343 78222, 180433 78276, 180446 78550, 180590 78944, 180902 79466, 181180 79474, 181279 80103, 181187 80219, 181319 80454, 181229 81168, 181257 81262, 181362 81360, 181527 81264, 181841 81204, 181947 81287, 182025 81777, 181811 81644, 181555 81814, 181598 82262, 181684 82335, 181822 82856, 181845 83077, 182062 83052, 182437 82695, 182511 83010, 182807 83477, 183019 83880, 182902 84040, 182902 84314, 182827 84766, 183176 84997, 183340 85758, 183402 85874, 183352 85912, 183555 86823, 183864 86929, 184084 86952, 184233 87115, 184037 87326, 183992 87496, 184029 87660, 184326 87781, 184460 88097, 184599 88319, 184668 88590, 184740 88963, 184742 89037, 184800 89531, 184938 89722, 185203 89974, 185123 90389, 185190 90634, 185509 91000, 185551 91217, 185666 91393, 185709 91869, 185842 92055, 185956 92928, 186185 93223, 186185 93364, 186277 93446, 186287 93717, 186364 94336, 186626 94629, 186612 94897, 186649 95199, 186694 95248, 186666 95393, 186392 95793, 186840 95922, 186859 95793, 186878 96097, 186765 96536, 186338 96648, 186316 96756, 186417 96868, 186840 96719, 186593 97222, 186881 97354, 186967 97683, 186960 97778, 187026 98086, 187070 98474, 187092 98755, 187022 99189, 187286 99851, 187286 99926, 187417 99911, 187612 100113, 187402 100497, 187346 100815, 187444 101207, 187786 101608, 187610 101944, 187375 102259, 187512 102696, 187657 102812, 187812 103078, 188284 103190, 188027 104083, 188087 104651, 188079 105003, 188199 105266, 187773 105507, 188239 105450, 188273 105804, 188281 106170, 188299 106301, 188232 106892, 188079 106451, 187732 106782, 187760 106953, 188191 107319, 188381 107897, 188416 108652, 188167 109266, 188428 110087, 188426 110192, 188223 110743, 188428 111106, 188328 111287, 188149 111991, 188187 112010, 188209 112116, 188444 112473, 188503 113335, 188276 113796, 188148 113881, 187922 114174, 187613 114296, 187810 114867, 187710 114928, 187751 115370, 187604 116249, 187634 116536, 188077 117380, 188036 117395, 188087 117412, 188449 117864, 188123 118283, 188025 118526, 188087 118786, 187955 119068, 187865 119194, 187763 119172, 187493 119430, 187599 119914, 187772 119984, 187797 120154, 187644 120253, 187527 120993, 187581 121128, 187575 121246, 187514 121273, 187327 121813, 187294 121855, 187089 122650, 187102 123090, 186836 123375, 186919 123616, 187013 124114, 187092 124135, 187042 124225, 187317 124737, 187277 124814, 187025 125039, 187135 125805, 187188 126304, 187226 126962, 186803 127042, 186780 127077, 186977 127727, 186949 127984, 186658 128438, 186586 128719, 186538 129100, 186747 129550, 186759 129798, 186446 130039, 186662 130144, 186353 130682, 186264 130981, 186249 131185, 185816 130929, 185539 130996, 185495 131199, 186010 131499, 186221 131269, 186091 131610, 185851 132197, 185752 132303, 185563 132814, 185610 132991, 185505 133208, 185268 133312, 185138 133677, 185198 133796, 185122 133968, 184882 134812, 184850 134807, 184866 134859, 184386 135087, 184410 135303, 184550 135520, 184512 135634, 184505 135918, 184539 136289, 184301 136347, 184424 136660, 184541 136812, 184579 137084, 184306 137616, 184117 137621, 184007 137963, 184153 137983, 184108 138301, 183778 138769, 183445 139581, 183227 140076, 183224 140171, 183126 140154, 183094 140479, 183326 140913, 183120 141913, 182904 142226, 182791 142745, 182457 143145, 182221 144290, 182154 144410, 181689 144846, 181574 144997, 181587 145639, 181197 146134, 180867 146720, 180628 146773, 180446 146880, 180293 147627, 180139 148068, 180062 148357, 179469 148950, 179310 148994, 179100 149437, 179074 149463, 178856 149912, 178341 150157, 178315 150295, 178073 150549, 178034 150685, 177767 150997, 177659 151183, 177553 151600, 177400 151654, 177206 152023, 176948 152073, 176646 152327, 176586 152475, 176696 152732, 176551 152980, 176529 153108, 175874 153227, 175665 153609, 175754 153948, 175683 154247, 175551 154300, 175150 154206, 175135 154697, 174606 154845, 174762 155348, 174370 155491, 174373 155773, 174467 156044, 174437 156129, 174480 156575, 174398 156824, 174159 156955, 173942 156610, 173553 156664, 173630 157021, 174052 157130, 173704 157584, 173503 157804, 173467 157971, 173063 158555, 172589 158525, 172470 159146, 172145 159335, 172354 159727, 172027 160454, 171426 160368, 171327 160574, 171440 160938, 171237 161138, 171031 161447, 170586 161305, 170641 161650, 170696 161929, 170017 162319, 169701 162157, 169612 162410, 169947 162590, 169418 163306, 169133 163477, 168777 163453, 168598 163408, 168588 163544, 168445 163680, 168158 164077, 168229 164700, 167813 164621, 167697 164998, 167730 165145, 167611 165235, 167185 165391, 167031 165635, 166947 165864, 166791 165888, 166273 165960, 166242 166237, 165909 166232, 165474 166199, 165332 166560, 165189 166827, 165098 166845, 164772 167082, 164684 167334, 164253 167248, 164216 167347, 164217 167713, 163915 167781, 163780 167943, 163760 168255, 163559 168306, 163464 168612, 163262 168930, 163174 169265, 162737 169552, 162406 170143, 162211 170145, 162236 170212, 161711 170536, 161683 170618, 161145 171030, 161099 171034, 161099 171093, 160786 171574, 160500 171792, 160073 172175, 159416 172440, 159195 172575, 158746 172744, 158853 172426, 158529 172279, 158379 172343, 158502 172843, 158448 172889, 157822 172962, 157647 173154, 157806 173799, 157391 174179, 157392 174188, 156954 174534, 156832 174852, 156436 175204, 156476 175455, 155785 175939, 155247 175730, 154959 175781, 154804 176155, 154319 175864, 154108 175841, 153804 175954, 153400 176060, 153315 176524, 153391 176660, 153361 176907, 153012 177015, 152891 177270, 152706 177287, 152498 177438, 152068 177656, 151875 177808, 151223 177681, 151072 178069, 150622 178275, 150512 178152, 150375 178404, 150381 178835, 150249 179113, 150012 179223, 149599 179683, 149102 180048, 148588 180318, 148349 180547, 147973 180850, 147859 181268, 147680 181423, 147360 181407, 147227 181570, 146809 181637, 146537 182133, 146279 182188, 145981 181974, 145803 182032, 145352 181794, 145098 181735, 145002 181752, 144952 182147, 144962 182375, 144810 182450, 144133 182516, 143760 182356, 143465 182507, 143726 182855, 143498 183139, 142605 182887, 142219 183453, 141992 183525, 141634 183491, 140971 183661, 140947 183967, 140250 184209, 140128 184215, 139807 184324, 139299 184542, 139176 184503, 139040 184599, 138704 184738, 138187 185014, 138032 185012, 137713 185074, 137574 185164, 137321 185479, 137068 185479, 136557 185545, 136256 185235, 135868 185797, 135471 186136, 135228 186096, 134987 186250, 134874 186250, 134759 186061, 134550 186306, 134211 186259, 134112 186294, 133578 186372, 133490 186209, 133122 186247, 133068 186364, 132903 186448, 132530 186771, 132382 186809, 131217 187222, 130252 187346, 129939 187296, 129250 187205, 128909 187413, 128572 187457, 128291 187541, 127932 187634, 127475 187554, 127024 187506, 126434 187950, 125580 187983, 125232 187989, 125046 187954, 124319 188217, 124172 188249, 123799 188403, 123191 188545, 122659 188433, 122515 188019, 122036 188128, 122010 188061, 121893 188090, 121273 188658, 120681 188647, 120591 188686, 120202 188673, 119386 189106, 119197 189105, 118694 188941, 118217 188999, 117947 188984, 117787 188880, 117415 188894, 117326 188640, 116978 188535, 116720 188881, 116146 188816, 115659 188790, 115316 188849, 115115 188814, 114841 188859, 114549 188716, 114318 188681, 113926 188980, 113663 189037, 113174 188806, 112848 188951, 112625 188869, 112408 188732, 112264 188540, 111811 188889, 111320 189022, 111273 188986, 110288 189061, 110284 188991, 110260 189070, 109551 188846, 109049 188980, 108640 188974, 108430 188691, 107946 188679, 107893 188720, 107583 188843, 107452 188771, 107165 188936, 107014 189113, 106883 188957, 106466 188722, 106368 188805, 105651 188889, 105467 188874, 105212 188496, 104989 188829, 104648 189280, 104468 189317, 104302 189076, 103783 189258, 103576 189061, 103219 188955, 103130 188874, 103022 188846, 102608 188878, 102452 188511, 102188 188320, 101536 188115, 101292 188072, 100895 187871, 100634 187581, 100378 187567, 100184 187625, 100054 187619, 99810 187211, 99622 186978, 99352 186435, 99474 186970, 98976 186866, 99246 186448, 98877 186841, 98779 186929, 98463 187246, 98340 187520, 98100 187531, 97578 187368, 97479 187190, 97111 187228, 96622 187076, 96303 187022, 96543 186674, 96574 186252, 96539 186118, 96472 186073, 96240 186145, 96118 186355, 96019 187054, 95406 187175, 95332 186929, 95091 186592, 94431 186396, 94381 186220, 94321 186290, 94052 186257, 93875 186092, 93617 186186, 93177 186327, 92867 186206, 92265 185941, 92063 185774, 91739 185648, 91668 185510, 91466 185466, 90835 185433, 90668 185418, 90214 185200, 89836 184850, 89305 184917, 88906 184822, 88620 184755, 88218 184931, 88017 184559, 87814 184521, 87528 184624, 87291 184414, 87281 184231, 87044 184147, 86634 183794, 86042 183787, 85370 183373, 84994 183501, 84870 183254, 84615 182998, 84453 183100, 83938 182960, 83767 182768, 83707 182853, 83595 182742, 83268 182690, 82900 182557, 82889 182316, 82552 182250, 82422 182112, 82229 181990, 82058 181770, 81544 181718, 81475 181756, 80811 181534, 80436 181226, 80192 181144, 79988 180804, 79669 180721, 79099 180678, 78662 180562, 78308 180327, 78037 180115, 77694 179903, 77057 179859, 76353 179194, 76145 179125, 75725 178963, 75296 178823, 75096 178834, 74550 178516, 74405 178428, 73830 178172, 73573 178089, 73215 177772, 73089 177834, 72911 177578, 72696 177431, 72487 177635, 72248 177417, 72071 177177, 71724 177042, 71931 176679, 71421 176457, 71175 176330, 70737 176489, 70358 176260, 70052 176000, 69957 175975, 69673 175751, 69328 175604, 69027 175264, 68913 175183, 68882 174858, 68630 174645, 68501 174662, 68004 174368, 67967 174215, 67848 174183, 67708 173677, 67419 173452, 66827 173479, 66362 173435, 66217 172902, 65976 172879, 65875 172779, 65545 172764, 65458 172420, 65277 172332, 64915 172052, 64514 171562, 64379 171512, 64221 171307, 64295 171235, 64007 170960, 63776 171020, 63492 170892, 63360 170714, 63202 170413, 62846 170087, 62792 169982, 62569 169903, 62262 169682, 62007 169455, 61892 169164, 61415 168711, 61391 168704, 61052 168045, 60535 168019, 60458 167575, 60029 167470, 60387 167884, 59910 167465, 59717 167207, 59897 167213, 59888 166355, 59737 166309, 59416 166807, 58936 166324, 58829 166134, 58537 165945, 58260 165690, 58166 165542, 57814 165157, 57651 165125, 57323 164827, 57063 164383, 56815 164177, 56033 163328, 56033 163308, 55805 162954, 55550 162650, 55478 162617, 55098 161883, 55025 161705, 54691 161069, 54667 161070, 54295 160827, 54314 160663, 54140 160458, 54105 160318, 53816 160145, 53673 160120, 53549 160002, 53250 159987, 53058 159820, 52796 159217, 52578 159016, 52051 158366, 51945 157941, 51491 157893, 51481 157264, 51547 157067, 50993 156640, 50897 156523, 50822 156514, 50678 156381, 50120 156083, 50132 155857, 49620 154604, 49553 154466, 49447 154132, 49495 154063, 48877 153388, 48464 153234, 48390 153214, 48013 152959, 47914 152954, 47873 152839, 47930 152636, 47651 151872, 47593 151788, 47334 151063, 47400 150617, 47313 150498, 47269 150247, 47205 150000, 47079 149740, 46915 149467, 46728 149347, 46560 149105, 46286 149016, 46242 148833, 46111 148657, 45656 147810, 45293 147362, 45064 147054, 45081 146960, 45078 146541, 45023 146135, 44682 145641, 44688 145623, 44196 145047, 44168 144858, 44047 144430, 44086 144074, 43656 143884, 43558 143636, 43347 143176, 43173 142989, 43202 142738, 43055 142161, 42945 141942, 42487 141628, 42523 141709, 42427 141586, 42537 140936, 42595 140893, 42654 140495, 42195 140398, 42495 139960, 42435 139677, 42412 139482, 42164 138738, 42178 138106, 42083 137957, 41310 137657, 41212 137195, 40908 136836, 40967 136612, 41277 136342, 41395 135834, 41209 135653, 41021 135227, 41094 135010, 40748 134868, 40485 134684, 40366 134160, 40315 133744, 40242 133597, 40194 133159, 40206 133104, 40129 133033, 40182 132935, 40126 132448, 39988 131820, 39968 131658, 39831 131278, 39662 131096, 39730 130361, 39797 130087, 39577 129956, 39250 129922, 39151 129623, 38921 129407, 39010 129096, 39151 128825, 39123 128765, 39525 128567, 39722 128458, 39522 128489, 39279 128068, 39776 127617, 39596 127256, 39369 126710, 39445 126423, 39197 126589, 38969 126239, 38321 125691, 38252 125560, 38057 124561, 38136 124300, 38320 123983, 38134 123313, 38081 123272, 38137 123117, 38255 122832, 38003 122514, 38108 121990, 37857 121397, 37526 120959, 37564 120545, 37692 119896, 37687 119880, 37981 119064, 37979 118852, 38052 118649, 38043 118079, 37971 117878, 37991 117562, 37933 117024, 37909 116725, 37703 116493, 37546 116229, 37681 115530, 37553 115252, 37416 114824, 37741 114424, 37731 114236, 37620 114011, 37314 113827, 37232 113558, 37156 113467, 37197 112524, 36714 112275, 36765 112260, 37199 112522, 37434 111924, 36982 111672, 36811 111408, 37047 111519, 37652 111009, 37698 110754, 37633 110510, 37810 110166, 37691 110040, 37635 109647, 37827 109402, 37613 108785, 37494 108375, 37545 107977, 37669 107602, 37871 107177, 37894 106603, 37823 105857, 38017 105404, 37894 105340, 38162 104604, 38113 104095, 38271 103874, 38117 103621, 37858 103450, 37735 103424, 37866 103205, 38524 103016, 38662 102874, 38741 102203, 38784 102091, 38727 101504, 38704 101369, 38803 100877, 38737 100521, 38915 100277, 38849 99926, 38734 99814, 38525 99757, 38195 99820, 38108 99545, 38142 99423, 37957 99275, 37891 99006, 38014 98504, 38014 98425, 38115 97758, 38218 97604, 38573 97310, 38860 97366, 39051 97061, 38876 96999, 39059 96833, 39100 96737, 39309 96684, 39729 96430, 39835 96234, 39855 95980, 39732 95860, 39978 95385, 40129 94890, 40315 93894, 40220 93607, 40131 93376, 40169 93108, 40366 93070, 40592 92702, 40403 92576, 40428 92384, 40768 91947, 41072 91952, 41055 91927, 40691 91858, 40560 91533, 40478 91298, 40351 91155, 40272 90924, 40489 90939, 40568 90784, 40175 90539, 40305 90041, 40405 89697, 40622 89766, 40473 89621, 40780 88998, 40843 88521, 41126 87815, 41368 87125, 41497 86796, 41925 86280, 41868 86089, 41735 85825, 42063 85620, 42132 85488, 42001 85117, 42157 84853, 42035 84651, 42204 84525, 42205 84394, 42394 84376, 42727 83803, 42657 83830, 43116 82939, 43625 82298, 43735 82041, 43951 81850, 43957 81790, 43814 81520, 43851 81321, 43993 81119, 43945 80553, 43900 80413, 44074 80266, 44419 80144, 44701 80133, 44865 79952, 44740 79681, 44623 79481, 44533 78853, 44903 78650, 45046 78443, 44974 77952, 45184 77517, 45370 77328, 45458 77033, 45553 76760, 45903 76617, 46100 76211, 46046 76094, 46135 75959, 46249 75396, 46288 75370, 46621 74796, 47337 74438, 47549 73641, 47592 73555, 47873 72566, 48398 72257, 48741 71821, 48799 71681, 49048 71491, 49380 71071, 49529 70585, 49771 70188, 50109 69547, 50754 69133, 50798 69120, 51024 68836, 51040 68763, 51306 68494, 50857 68257, 51157 68033, 51273 67296, 51449 67289, 51754 67093, 52127 66821, 52371 66627, 52547 66287, 52955 65976, 53197 65775, 53782 65213, 53950 64896, 54457 65074, 54569 64399, 54759 64217, 54866 64265, 55177 63880, 55664 63137, 56433 62571, 56534 62376, 56667 62389, 56615 62177, 56850 61938, 56778 61643, 57351 61872, 57514 61895, 57725 61745, 57586 61543, 57458 61653, 56835 61034, 56818 60848, 57227 60577, 57256 60550, 57959 60058, 58367 59344, 59107 59224, 59881 58508, 60268 58113, 60501 58132, 60719 57851, 60464 57385, 61205 56999, 61431 56958, 61756 56550, 62127 56520, 62346 56324, 62512 56280, 62620 56136, 62957 56111, 62943 55400, 63507 55262, 63545 55045, 63841 54926, 64174 54912, 64335 54736, 64538 54671, 64947 54426, 65238 54145, 65389 53681, 65552 53589, 65579 53391, 65619 52861, 65716 52791, 65886 52814, 66111 52906, 66390 52450, 66599 52453, 66717 52292, 66686 52000, 67380 51777, 67581 51765, 67698 51580, 67728 51111, 68378 50868, 68507 50615, 68622 50472, 68778 50431, 69002 50296, 69368 50131, 69717 50310, 70557 49559, 70557 49501, 70703 49432, 71371 49265, 71550 49446, 71830 49416, 71856 49248, 71522 48579, 71982 48683, 72097 48645, 72470 48265, 72538 48115, 73022 47911, 73245 47912, 73743 47477, 73837 47531, 74060 47567, 74809 46974, 74861 46819, 75390 46330, 75560 46302, 76216 45971, 76283 45840, 76444 45764, 76747 45701, 76981 46042, 77229 45509, 77531 45281, 77687 45264, 77933 45324, 78000 45216, 78447 45195, 78721 45006, 79118 44864, 79393 44583, 79692 44422, 79924 44054, 79903 43889, 80044 43792, 80128 43817, 80790 43615, 80994 43378, 81598 43354, 81682 43371, 81796 43238, 81829 42961, 82425 42727, 82876 42817, 83007 42888, 83140 42878, 83594 43121, 83763 42776, 84179 42469, 84233 41956, 84386 41952, 85356 41740, 86073 41291, 86415 41110, 86603 41081, 86995 40896, 87195 40760, 88002 40318, 88192 40247, 88504 40510, 88634 40373, 89100 40204, 89722 40123, 90321 39868, 90368 39894, 90957 39587, 91213 39716, 91545 39924, 91766 39880, 92014 39912, 92160 39607, 92284 39521, 92681 39603, 92962 39412, 93222 39258, 93614 39582, 93829 39426, 93913 38860, 94544 38839, 94873 38815, 95006 38580, 95443 38320, 95586 38204, 96271 38276, 96494 38209, 96897 37935, 97525 37702, 97730 37813, 98155 37995, 98383 37914, 98791 38027, 99458 37487, 99856 37658, 99945 37634, 100053 37514, 100503 37386, 100669 37401, 100758 37171, 100936 37042, 101504 36970, 101602 36879, 102117 36754, 102472 36634, 102663 36637, 103129 36495, 103271 36500, 104005 36221, 104537 36294, 104735 36234, 105411 36217, 105919 36015, 106293 36171, 106357 36183, 106451 36275, 106647 36188, 107021 36181, 107376 36356, 107570 36237, 107928 36135, 108681 36328, 108716 36304, 109060 36536, 109325 36315, 109315 36045, 109621 36074, 110324 36059, 110738 36124, 111039 36133, 111489 36048, 111699 36254, 112037 36004, 112610 36230, 112657 36180, 112724 36204, 113493 36040, 113816 35901, 113881 36301, 114059 36269, 114010 35834), (113315 187423, 113330 187976, 113220 188559, 113485 188242, 113648 188366, 114254 188161, 114196 187775, 114015 187492, 113989 187563, 113715 187691, 113520 187838, 113336 187415), (111090 188167, 111327 188385, 111560 188048, 111351 187770), (110220 38303, 109262 38515, 108939 38424, 108324 38367, 108180 38404, 107605 38809, 107326 38827, 107028 38934, 106420 39462, 105838 39689, 105563 39738, 105022 39794, 104529 39627, 104039 39176, 103183 39027, 102929 39428, 102287 39511, 101171 39591, 100292 39851, 99810 39944, 98870 40145, 97878 40233, 97325 40449, 97049 40407, 96658 40382, 96324 40626, 95844 40823, 95393 40803, 95278 40844, 94978 40854, 94321 40962, 93601 41414, 93505 41421, 93297 41537, 92745 41723, 92016 41756, 91371 41986, 91197 42070, 90398 42283, 89737 42394, 89377 42665, 88770 42883, 88366 42898, 87850 43099, 86845 43616, 85989 43809, 85258 44225, 84555 44393, 83531 44659, 83045 44950, 82710 45068, 82377 45139, 81806 45276, 81222 45506, 81338 46066, 81274 46132, 80974 45821, 80698 46388, 80489 46354, 79854 46878, 78940 47245, 78484 47252, 78037 47244, 77903 47193, 77092 47714, 76202 48377, 75019 49231, 74401 49523, 74298 49590, 74207 49589, 73366 50215, 72368 50640, 72127 50867, 71124 51699, 70466 52009, 70328 52019, 70156 52167, 69291 52794, 68108 53517, 67749 53561, 67179 53745, 66945 54057, 66736 54528, 66608 54968, 66042 55318, 65783 55555, 65412 55684, 64875 56211, 64548 56620, 63981 56960, 63905 57640, 63489 57749, 63224 57898, 62400 58206, 62077 58558, 61733 58973, 61463 59338, 61085 59815, 60815 60187, 60516 60332, 60025 60800, 59401 61180, 59278 61290, 58861 61557, 58858 61825, 58886 62647, 58819 62812, 58640 63051, 58139 63706, 58052 63736, 57937 63918, 57745 64075, 57063 64850, 56407 64908, 55683 65792, 55407 66472, 55213 66762, 55062 66964, 53955 68080, 53929 68120, 53490 68461, 52870 69041, 52644 69229, 52374 69467, 52270 69516, 51802 70355, 51776 70442, 51407 71119, 51270 71350, 50722 72343, 50650 72469, 49965 73436, 49659 73815, 49468 74263, 49120 74845, 48929 75360, 48775 75645, 48627 76011, 48123 76496, 48237 76766, 47962 76835, 47548 77953, 47275 78160, 46888 78851, 46671 79281, 46679 79551, 46632 80052, 46430 80502, 45678 81373, 45558 81443, 45501 81682, 45397 81990, 45196 82670, 45416 82990, 44913 83582, 44869 83583, 44240 84686, 44008 85265, 43900 85455, 44032 85532, 44085 86246, 43773 86631, 43669 86706, 43644 86813, 43279 87236, 43264 87330, 43414 87773, 43333 88084, 42999 88374, 42877 88750, 42620 89331, 42284 90404, 42222 90474, 41734 91181, 41591 91486, 41980 92492, 41977 92524, 42097 93108, 42039 93370, 41898 94264, 41853 94733, 41769 94823, 41610 95231, 41560 95560, 41441 95975, 41351 96392, 41057 96924, 40901 97129, 40135 97700, 39990 98237, 40042 98680, 39802 99203, 39947 99743, 40073 99930, 40252 100270, 40349 100745, 40175 102128, 40160 102350, 39732 103273, 39815 103780, 39863 104149, 39836 104224, 39814 104482, 39641 105522, 39557 105896, 39862 105985, 39904 106320, 39772 106478, 39470 106685, 39298 106848, 39216 107000, 39173 107250, 39039 108188, 39231 108930, 39243 109972, 39090 110595, 38989 110824, 38861 111046, 39176 111334, 38813 111612, 38840 111864, 38942 113436, 38841 114185, 38673 114737, 38674 114864, 39002 115713, 39033 116469, 39573 117303, 39652 117527, 39266 118213, 39266 119205, 39302 120034, 39278 120171, 39221 120244, 39010 120729, 39150 121474, 39169 121538, 39199 121870, 39305 122513, 39542 123057, 39630 123571, 39645 123990, 39753 124427, 39596 124939, 40111 125327, 40283 125359, 40569 125528, 40766 125808, 40981 126176, 41019 126750, 41157 127641, 41153 128112, 40614 128785, 40457 128933, 40467 129128, 40649 129315, 40741 129455, 40870 129554, 41345 130327, 41321 130387, 41379 130590, 41404 131026, 41490 131412, 41970 132227, 42105 132759, 42133 133155, 41896 133643, 42016 134336, 42081 134501, 42282 135189, 42335 135269, 42379 135506, 42777 136515, 43176 136683, 43616 137662, 43751 138002, 43809 138087, 44005 138697, 44119 139023, 44368 139795, 44445 140160, 44691 140661, 44475 141292, 44413 141421, 44522 141675, 44931 142243, 45045 142788, 45375 143300, 45788 143905, 45941 144113, 45961 144276, 46360 144960, 46579 145604, 46633 145683, 47287 146999, 47515 147502, 47647 147831, 48043 148334, 48454 148689, 48773 149386, 48903 149627, 49483 150442, 49812 151624, 49815 151961, 49889 152125, 49841 152473, 50140 152837, 50415 153086, 50584 153299, 51613 154227, 51629 154299, 52490 154759, 52655 154965, 53233 155791, 53626 156536, 53798 156815, 54248 157436, 54391 158124, 54977 158304, 54919 158899, 55383 159303, 56087 159866, 56601 160621, 56633 160718, 57136 161320, 57331 161673, 58228 162575, 58457 162833, 58731 163160, 59005 163580, 59672 164178, 59873 164371, 60054 164404, 60439 164750, 60573 165084, 61028 165594, 61737 166223, 61774 166287, 61813 166287, 63154 167515, 63748 168100, 64479 168735, 64519 168796, 65322 169571, 65979 170371, 66323 170670, 66523 170828, 67112 170643, 68088 171300, 68391 171561, 68884 172061, 71094 173718, 71274 173814, 71528 174007, 72164 174415, 72500 174614, 72694 174673, 73521 175084, 73670 175317, 74073 175859, 74476 176081, 75707 176645, 76222 176920, 76541 177065, 76794 177202, 77398 177664, 77618 177817, 78983 178382, 79225 178500, 79764 178639, 80732 179282, 80990 179407, 81130 179459, 81860 179929, 82048 179981, 83382 180542, 83679 180685, 84445 180994, 84725 181106, 85568 181425, 86013 181633, 86557 181806, 86774 181976, 87199 182273, 88396 182521, 89059 182911, 89995 183169, 90265 183178, 90303 183218, 90775 183375, 90965 183481, 91259 183499, 92114 183875, 92705 183957, 93035 184116, 93774 184411, 93811 184500, 94382 184511, 95025 184545, 95116 184520, 95372 184245, 95599 184298, 95724 184570, 95918 184736, 96642 185408, 97335 185423, 97528 185581, 97924 185590, 98435 185782, 98869 185626, 99285 185625, 99738 185722, 100322 185751, 100660 185759, 100679 185889, 101517 186369, 101678 186357, 102556 186722, 102962 186818, 104083 187308, 104965 186797, 105317 186765, 106017 186808, 106735 186719, 107297 186745, 107469 186642, 108288 186664, 108990 186880, 109910 186775, 109929 186727, 110622 186296, 111052 186269, 111354 186319, 111615 186475, 112159 186937, 112742 186822, 112805 186844, 112836 186781, 113778 186813, 114049 186694, 114201 186943, 115713 186809, 115975 186814, 117052 186878, 117502 186687, 117974 186619, 118389 186781, 118858 186670, 119298 186545, 119517 186580, 119778 186716, 120313 186663, 120807 186666, 121071 186343, 121339 186161, 121986 186004, 122519 186323, 123378 186211, 123895 185988, 124640 185916, 124830 185789, 125276 185687, 125877 185652, 125977 185680, 126672 185617, 126893 185624, 127612 185399, 127782 185327, 128384 185199, 128779 185167, 129347 184977, 129607 184971, 129740 184977, 130912 184795, 131594 184793, 131706 184763, 131812 184785, 132313 184666, 132776 184390, 133371 184218, 134347 184044, 134699 183911, 135171 183802, 135887 183735, 136467 183534, 136711 183388, 137521 182983, 137696 182968, 138189 182809, 138911 182599, 139218 182547, 140114 181730, 140145 181674, 140193 181670, 140208 181623, 141014 181046, 141479 180664, 142537 180360, 143625 179814, 143633 179792, 144431 179464, 144534 179498, 145511 179297, 145657 179170, 146290 179250, 146382 179304, 146557 179178, 147836 178821, 148038 178689, 148927 177474, 148980 177378, 149241 177156, 149673 176696, 149991 176476, 150756 175852, 151159 175708, 151875 175549, 152034 175409, 152210 174820, 152766 174447, 152959 174401, 153340 174138, 153832 173824, 154252 173567, 154813 173302, 155277 172938, 155601 172746, 156026 172346, 156779 171839, 157015 171682, 157715 171130, 157778 171089, 158362 170590, 158376 170504, 159170 169927, 159377 169900, 160116 169205, 160112 168999, 160425 168546, 161053 168101, 161395 168104, 161612 167818, 161871 167621, 162754 167241, 162812 167112, 163112 166834, 163305 166532, 163397 166550, 163531 166511, 163611 166336, 164053 165573, 164719 165183, 165058 164500, 165145 164451, 165365 164126, 166253 163296, 166265 163234, 166350 163185, 167121 162521, 167163 162284, 167682 161784, 167620 161097, 167649 160923, 167922 160470, 168205 160140, 168617 159694, 169220 159177, 169422 159089, 170140 158922, 170544 158208, 170711 158051, 170908 157762, 171095 157273, 171081 156937, 171280 156716, 171798 156240, 172120 155956, 172469 155573, 172536 155147, 172808 154598, 172841 154298, 172880 153697, 173039 153423, 173660 152440, 173819 152287, 174219 151703, 174389 151357, 174531 151194, 174966 150576, 175405 150204, 175599 150106, 175591 149660, 175645 149486, 176113 148724, 176567 148149, 176692 147681, 177111 147030, 177309 146754, 177329 146696, 177708 146049, 177894 145650, 178638 144396, 178731 144210, 179121 143276, 179257 143128, 179516 142688, 179547 142487, 179617 142146, 179889 141464, 180036 141240, 180098 141026, 180664 140174, 180720 139672, 180868 139507, 181116 139182, 181296 138669, 181350 138614, 181422 138372, 181731 137560, 181828 137257, 182023 136664, 182106 136384, 182289 135858, 182335 135800, 182439 134791, 182623 134299, 182710 134046, 182834 133720, 182991 133175, 183203 132289, 183365 132030, 183423 131406, 183590 130935, 183691 130790, 183849 129837, 183933 129482, 184141 128757, 184218 128092, 184538 127076, 184622 126260, 184648 125979, 184698 125815, 184853 124593, 184904 124116, 184919 123695, 185006 122986, 185303 121478, 185392 120917, 185470 120573, 185517 120153, 185711 119513, 185788 119220, 186008 118225, 186077 117997, 186124 117662, 186037 117447, 185792 117157, 185424 116495, 185359 116285, 185431 115211, 185477 115087, 185487 114528, 185649 114179, 185975 113639, 186056 113353, 186384 113259, 186516 113125, 186533 112726, 186448 111685, 186318 111123, 185988 111211, 185926 110444, 185712 110174, 185705 109880, 185653 109496, 185565 108383, 185553 108056, 185549 107916, 185395 107486, 185545 107358, 185403 106993, 185404 106559, 185303 106425, 185376 105896, 185583 105374, 185468 105193, 185253 105203, 185418 104260, 185540 103837, 185700 103337, 185710 102966, 185622 102684, 185493 101932, 185004 100942, 184661 99311, 184604 98922, 184482 98210, 184439 97858, 184351 97461, 184295 97025, 184386 96888, 184463 96395, 184241 95902, 184096 95687, 183869 94891, 183903 94711, 183795 94565, 183606 93806, 183439 93345, 183437 92770, 183403 92504, 183269 92083, 182927 91685, 182912 91244, 182603 90390, 182527 90091, 182363 89993, 182148 89499, 181881 89153, 181988 88821, 181938 88305, 181818 88007, 181625 87702, 181483 87225, 181404 86875, 180894 85370, 180776 84192, 180309 83929, 180160 83631, 180080 82935, 180020 82782, 179981 82767, 179946 82648, 179524 81966, 179248 81239, 179240 81201, 178654 80229, 178602 79764, 178347 79644, 178277 79425, 178421 78683, 178556 78387, 178447 78139, 178316 78073, 177837 77719, 177223 77227, 177064 76925, 176761 76503, 176503 76104, 176107 75583, 175954 75337, 175818 74910, 175516 74429, 175600 74041, 175595 73838, 175375 73124, 175227 72790, 175210 71941, 174903 71882, 174939 71448, 174312 71026, 173972 70720, 173535 70368, 173384 70299, 172805 69711, 172318 69002, 172270 68997, 172237 68823, 171997 68260, 171845 67995, 171364 67545, 171317 67459, 171007 66982, 170785 66661, 170164 65897, 169975 65719, 169713 65512, 169620 64939, 169075 64816, 168314 64347, 168104 64188, 167587 63690, 167040 63180, 166525 62591, 166066 62039, 165221 61251, 164956 60968, 164482 60502, 164182 60231, 164095 60134, 163704 59771, 163587 59375, 163443 58938, 163208 58711, 163108 58561, 162486 58315, 162092 58104, 161597 57767, 161290 57495, 161039 57154, 161015 57021, 160742 56357, 160478 56012, 159962 55790, 159667 55609, 159142 54839, 159063 54798, 159002 54649, 158673 54248, 158352 53701, 157495 53405, 156376 52966, 156262 52881, 156102 52220, 155837 51809, 155503 51536, 155043 51283, 154567 51136, 154057 50812, 153778 50741, 153123 50620, 152911 50395, 152824 50401, 152493 50074, 152175 49806, 151787 49744, 151256 49878, 150793 49682, 150625 49450, 150420 49453, 149949 49263, 149383 48954, 149232 48882, 148621 48392, 148294 48190, 147894 47796, 147738 47477, 147250 47165, 147020 47048, 145982 46591, 145509 45862, 144958 46188, 144599 46131, 144150 45982, 143714 45501, 143696 45378, 143612 45235, 143029 45204, 142924 45210, 142478 45007, 142080 45026, 141597 44631, 140373 44065, 140145 44164, 139342 44150, 139018 44041, 138822 43996, 138557 43794, 138165 43097, 137132 42805, 136979 42726, 135463 42239, 134834 42055, 134666 41855, 134426 41800, 134088 41838, 133365 41608, 132977 41506, 132117 41303, 131857 41204, 131327 41096, 130858 41015, 130072 40764, 129798 40616, 129547 40612, 129287 40560, 129130 40561, 128062 40237, 127120 40086, 126798 39994, 125179 39795, 123937 39506, 123924 39510, 122978 38988, 122586 39068, 122250 39195, 121980 39331, 121783 39449, 121140 39495, 120694 39364, 119340 39375, 119085 39189, 118614 38925, 118389 38790, 117942 38743, 117467 38795, 117174 38809, 115958 38779, 115053 38727, 114402 38704, 113949 38707, 113268 38649, 112334 38715, 111993 38731, 111598 38747, 111276 38693, 111009 38476, 110429 38293), (92370 185073, 92328 185313, 92308 185653, 92982 185807, 93171 185876, 93417 185422, 93455 185103, 92888 185108, 92518 184971), (145157 181180, 145303 181367, 145566 181168, 145392 180995, 145137 180940), (68249 174029, 68620 174447, 68841 174042, 68760 173837, 68559 173681, 68248 173622), (159439 171440, 159776 171830, 160160 171503, 159586 171359), (44622 83091, 44684 83134, 44788 83136, 44876 83061, 44931 82823, 44800 82744), (139758 42256, 139920 42316, 140180 41894))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_005.wkt b/tests/voronoi_crash_resources/slice_polygon_005.wkt new file mode 100644 index 00000000000..3e2b4064883 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_005.wkt @@ -0,0 +1 @@ +MultiPolygon (((138539 75509, 137892 76451, 136650 78222, 136294 78718, 136295 78719, 136293 78719, 135795 79414, 136032 79459, 136450 79517, 137320 79621, 139845 79899, 139676 79805, 139395 79485, 139319 79300, 139321 78970, 139001 78937, 137350 78781, 136743 78735, 136295 78719, 136371 78675, 138860 77322, 139307 77102, 139672 76981, 140035 76939, 140691 76994, 141290 77068, 142237 77200, 143218 77353, 143883 77467, 144387 77565, 144797 77659, 145017 77759, 145146 77921, 145156 78093, 144997 78606, 144796 79150, 144677 79439, 144675 79439, 144303 79460, 143772 79428, 142973 79351, 141618 79210, 141620 78833, 141547 78649, 141268 78329, 140874 78109, 140430 78026, 139999 78112, 139808 78220, 139497 78525, 139321 78905, 139321 78970, 141618 79210, 141618 79228, 141446 79608, 141138 79914, 140954 80019, 142911 80210, 143379 80242, 143695 80251, 144077 80230, 144277 80132, 144414 80000, 144664 79471, 144677 79439, 144998 79373, 145297 79231, 145554 79071, 146451 78425, 147174 77920, 147657 77601, 148231 77248, 148531 77075, 149153 76747, 149473 76595, 149797 76454, 150124 76326, 150454 76211, 150784 76110, 151113 76022, 151442 75946, 151765 75882, 152399 75782, 152704 75745, 153289 75694, 153827 75666, 154525 75653, 155217 75664, 155614 75698, 155973 75800, 156236 75903, 156646 76098, 157277 76430, 160408 78141, 161785 78882, 162196 79094, 162530 79254, 162943 79426, 163343 79477, 163667 79452, 163921 79409, 166052 78969, 166862 78817, 167125 78841, 167319 78944, 167520 79165, 167746 79536, 168019 80092, 168360 80863, 171168 87641, 173031 92047, 173823 93875, 175444 97534, 175852 98437, 177471 101932, 178648 104385, 179763 106641, 180791 108653, 181695 110368, 182434 111719, 182830 112410, 183154 112943, 183414 113329, 183677 113651, 183875 113772, 184026 113801, 184278 113776, 185530 113543, 186065 113454, 186323 113558, 186559 113817, 186800 114172, 187217 114861, 187483 115328, 189399 118831, 191579 122766, 192864 125043, 194134 127269, 195406 129471, 198000 133917, 201493 139874, 202835 142192, 204205 144593, 205594 147078, 207009 149682, 208387 152299, 209775 155034, 211150 157844, 212510 160725, 213848 163667, 215161 166660, 216446 169694, 217698 172755, 218913 175825, 220090 178896, 221224 181947, 222343 185052, 223352 187927, 224342 190826, 225279 193640, 226163 196358, 226991 198964, 227766 201462, 228490 203853, 229217 206325, 229794 208341, 230382 210449, 230928 212474, 231438 214424, 231914 216307, 232359 218130, 232776 219898, 233169 221622, 233539 223305, 234231 226609, 234859 229790, 235238 231800, 231173 231800, 230740 229536, 230103 226364, 229762 224746, 229402 223095, 229021 221405, 228615 219670, 228180 217879, 227716 216028, 227216 214106, 226680 212108, 226103 210025, 225484 207850, 224818 205577, 224102 203199, 223335 200712, 222514 198112, 221637 195398, 220706 192582, 219722 189679, 218690 186709, 217610 183689, 216485 180633, 215319 177559, 214118 174487, 212882 171429, 211619 168407, 210285 165321, 209027 162509, 207706 159658, 206376 156885, 205042 154200, 203709 151605, 202382 149103, 201071 146693, 199786 144374, 198534 142142, 195042 135959, 192819 131983, 191734 130010, 190652 128018, 189568 125987, 188320 123613, 186172 119438, 185659 118474, 185283 117823, 185064 117492, 184832 117239, 184571 117136, 184077 117178, 182551 117364, 182250 117379, 182078 117338, 181846 117190, 181523 116813, 181366 116600, 180977 116030, 180469 115238, 179529 113709, 178347 111726, 177466 110208, 176054 107708, 175084 105935, 174115 104110, 173162 102255, 172241 100401, 171371 98566, 170560 96771, 170177 95897, 169456 94183, 169117 93349, 168452 91658, 167901 90200, 167376 88759, 166459 86126, 165765 84101, 165519 83427, 165322 82946, 165159 82629, 165019 82449, 164885 82375, 164722 82378, 164293 82561, 163510 82925, 162729 83269, 162410 83362, 162051 83317, 161645 83157, 161301 82999, 160869 82787, 159270 81960, 156750 80632, 155651 80065, 155154 79820, 154756 79648, 154297 79513, 153789 79491, 153520 79492, 153070 79520, 152726 79566, 152346 79642, 151925 79758, 151480 79915, 150994 80127, 150477 80395, 150211 80546, 149670 80875, 149129 81225, 148603 81581, 146757 82886, 146492 83048, 146247 83163, 145996 83236, 145711 83270, 145370 83273, 144946 83247, 144212 83178, 140935 82837, 139330 82683, 138057 82578, 137473 82548, 137027 82555, 136629 82665, 136325 82939, 135865 83494, 134570 85114, 134201 85524, 133916 85770, 133608 85766, 133368 85661, 132940 85380, 132235 84882, 131900 84632, 131648 84960, 130392 86556, 129931 87127, 127676 85889, 129151 84113, 130329 82653, 131507 81156, 132683 79626, 133858 78061, 135029 76466, 136321 74661))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_006.wkt b/tests/voronoi_crash_resources/slice_polygon_006.wkt new file mode 100644 index 00000000000..18b9bef1710 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_006.wkt @@ -0,0 +1 @@ +MultiPolygon (((147845 114697, 79916 114698, 79356 114263, 78887 113180, 78804 112804, 78579 111059, 78578 108942, 78804 107197, 78886 106821, 79356 105737, 79916 105303, 147845 105302))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_007.wkt b/tests/voronoi_crash_resources/slice_polygon_007.wkt new file mode 100644 index 00000000000..f7169c20c11 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_007.wkt @@ -0,0 +1 @@ +MultiPolygon (((120264 173957, 120384 174108, 110615 174109, 110736 173957, 111261 172596, 119739 172595)), ((109264 173957, 109384 174108, 99615 174109, 99736 173957, 100261 172596, 108739 172595)), ((98264 173957, 98384 174108, 88616 174108, 88736 173957, 89261 172596, 97739 172595)), ((131264 173957, 131384 174108, 121616 174108, 121736 173957, 122261 172596, 130739 172595)), ((174108 131384, 173957 131264, 172596 130739, 172596 122260, 173957 121736, 174108 121616)), ((46043 121736, 47404 122261, 47405 130739, 46043 131264, 45892 131384, 45892 121616)), ((174109 120385, 173957 120264, 172596 119739, 172596 111260, 173957 110736, 174108 110616)), ((46043 110736, 47404 111261, 47405 119739, 46043 120264, 45892 120384, 45891 110615)), ((174109 109385, 173957 109264, 172596 108739, 172596 100260, 173957 99736, 174108 99616)), ((46043 99736, 47404 100261, 47405 108739, 46043 109264, 45892 109384, 45891 99615)), ((46043 88736, 47404 89261, 47405 97739, 46043 98264, 45892 98384, 45892 88616)), ((174108 98384, 173957 98264, 172596 97739, 172596 89260, 173957 88736, 174108 88616)), ((98264 46043, 97739 47404, 89260 47404, 88736 46043, 88616 45892, 98384 45892)), ((131264 46043, 130739 47404, 122260 47404, 121736 46043, 121616 45892, 131384 45892)), ((120264 46043, 119739 47404, 111260 47404, 110736 46043, 110616 45892, 120385 45891)), ((109264 46043, 108739 47404, 100260 47404, 99736 46043, 99616 45892, 109385 45891)), ((165002 41351, 165002 42361, 177640 42360, 177639 55002, 178648 55002, 178655 55358, 178649 55431, 178649 77573, 178655 77646, 178649 78002, 177639 78002, 177639 80000, 176630 80000, 176630 81000, 177639 81000, 177640 139000, 176630 139000, 176630 140000, 177639 140000, 177640 142002, 178648 142002, 178655 142358, 178649 142431, 178649 164573, 178655 164646, 178649 165002, 177639 165002, 177640 177640, 164998 177639, 164998 178648, 164642 178655, 164569 178649, 142427 178649, 142354 178655, 141998 178649, 141998 177639, 140000 177639, 140000 176630, 139000 176630, 139000 177639, 81000 177640, 81000 176630, 80000 176630, 80000 177639, 77998 177640, 77998 178648, 77642 178655, 77569 178649, 55427 178649, 55354 178655, 54998 178649, 54998 177639, 42360 177640, 42361 164998, 41352 164998, 41345 164642, 41351 164569, 41351 142427, 41345 142354, 41351 141998, 42361 141998, 42361 140000, 43369 140000, 43370 139000, 42361 139000, 42360 81000, 43370 81000, 43370 80000, 42361 80000, 42360 77998, 41352 77998, 41345 77642, 41351 77569, 41351 55427, 41345 55354, 41351 54998, 42361 54998, 42360 42360, 55002 42361, 55002 41352, 55358 41345, 55431 41351, 77573 41351, 77646 41345, 78002 41351, 78002 42361, 80000 42361, 80000 43370, 81000 43370, 81000 42361, 139000 42360, 139000 43370, 140000 43370, 140000 42361, 142002 42360, 142002 41352, 142358 41345, 142431 41351, 164573 41351, 164646 41345), (80000 45891, 87384 45892, 87264 46043, 86739 47404, 47405 47405, 47405 86739, 46043 87264, 45892 87384, 45891 80000, 44379 80000, 44378 140000, 45891 140000, 45892 132616, 46043 132736, 47404 133261, 47404 172596, 86739 172595, 87264 173957, 87384 174108, 80000 174109, 80000 175621, 140000 175622, 140000 174109, 132616 174108, 132736 173957, 133261 172596, 172596 172596, 172595 133261, 173957 132736, 174108 132616, 174109 140000, 175621 140000, 175622 80000, 174109 80000, 174108 87384, 173957 87264, 172596 86739, 172596 47404, 133261 47405, 132736 46043, 132616 45892, 140000 45891, 140000 44379, 80000 44378))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_008.wkt b/tests/voronoi_crash_resources/slice_polygon_008.wkt new file mode 100644 index 00000000000..4d388fded54 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_008.wkt @@ -0,0 +1 @@ +MultiPolygon (((237021 162714, 237023 162724, 237364 163247, 237431 163603, 237382 164159, 237382 164160, 237383 164635, 237314 164698, 236962 164552, 236735 163971, 236680 163321, 236790 162822, 237039 162566)), ((196948 149246, 197417 149496, 198057 150166, 198076 150169, 198558 149890, 198968 150153, 199172 150383, 199194 150384, 199662 149907, 199895 149944, 200470 150376, 200985 150928, 200987 150930, 201462 151312, 201466 151314, 202288 151627, 202289 151627, 203572 151984, 203805 152076, 203809 152077, 204846 152214, 205659 152291, 205661 152291, 206822 152310, 207841 152366, 208624 152336, 208628 152336, 208726 152312, 209896 152097, 210277 152709, 210278 152710, 210633 153195, 210636 153198, 210899 153407, 210916 153408, 211357 153135, 211364 153123, 211403 152572, 211403 152571, 211389 152056, 211382 151183, 211433 151052, 212562 151617, 213178 152054, 213827 152630, 214293 153079, 214736 153557, 215297 154263, 215510 154979, 215757 155893, 215789 156278, 215895 157177, 215896 157723, 215779 158199, 215560 158688, 215238 159253, 214794 159910, 214463 160346, 214277 160566, 213930 161008, 213836 161041, 213422 160222, 213072 159565, 213070 159562, 212609 159059, 212603 159055, 212246 158917, 212228 158924, 211954 159402, 211953 159405, 211877 159669, 211876 159675, 211967 160494, 211968 160497, 212007 160620, 212296 161784, 212112 161840, 211731 161766, 211727 161766, 211117 161811, 209745 161806, 208632 161841, 208630 161841, 207787 161950, 207014 161992, 207012 161992, 206326 162131, 205756 162256, 204724 162462, 204722 162463, 203983 162705, 203479 162812, 203043 162877, 202656 162052, 202352 161202, 202535 160466, 202524 160447, 201956 160309, 201646 160031, 201621 160039, 201352 161266, 200692 162042, 199940 162503, 199938 162505, 199857 162573, 199168 162915, 198804 162934, 198389 162563, 197570 160876, 196601 158763, 195650 156631, 194563 154098, 194252 153214, 194203 152893, 194633 152656, 194640 152637, 193702 150642, 193817 150110, 194604 149574, 194604 149575, 195371 149132, 196288 149104), (201024 151497, 201020 151508, 201024 152241, 201028 152252, 201258 152481, 201502 152941, 201661 153421, 201663 153425, 202291 154295, 202742 155032, 202750 155038, 202920 155093, 204057 155657, 204864 155999, 204866 156000, 205599 156282, 206025 156423, 207071 157070, 208172 158008, 207997 158538, 207996 158543, 208010 159375, 207491 159650, 207489 159651, 207258 159811, 204318 160425, 203138 160445, 203124 160456, 202933 161076, 202932 161076, 202756 161512, 202756 161523, 202970 162164, 202971 162166, 203123 162472, 203141 162479, 203458 162361, 204386 162016, 205140 161816, 205293 161765, 206864 161349, 208269 161152, 209044 161095, 209612 160996, 210708 160987, 210928 161007, 210929 161007, 211795 160999, 211810 160981, 211730 160589, 211691 160083, 211703 159543, 211776 159246, 212014 158768, 212217 158457, 212219 158450, 212262 157867, 212262 157866, 212259 157369, 212322 156706, 212322 156704, 212294 155987, 212294 155985, 212082 154837, 211969 154157, 211970 153786, 211970 153784, 211897 153265, 211892 153256, 211734 153103, 211722 153099, 211600 153118, 211588 153127, 211525 153261, 211232 153471, 210933 153510, 210640 153381, 210329 153092, 210115 152728, 210098 152721, 209103 152964, 209102 152965, 208961 153011, 208061 153092, 207430 153063, 206582 153036, 205387 152943, 204532 152843, 203722 152728, 203190 152483, 203189 152483, 202882 152381, 202374 152174, 201862 151983, 201282 151684, 201044 151496), (199660 150856, 199663 150872, 200418 151616, 200244 151805, 200248 151828, 200761 152078, 200783 152065, 200767 151288, 200764 151280, 200611 151055, 200602 151048, 199677 150846)), ((257842 77402, 257958 77503, 257967 77507, 258382 77521, 258387 77520, 258932 77373, 259287 77397, 259290 77397, 259820 77325, 260186 77380, 260188 77380, 261013 77379, 261568 77508, 261572 77508, 262215 77455, 262427 77735, 262432 77740, 262904 77968, 262908 77969, 263328 78050, 263331 78050, 264234 78057, 265790 78454, 266522 78661, 266526 78661, 267151 78648, 267315 79096, 267341 79100, 267496 78895, 268274 79013, 268342 79176, 268354 79185, 269843 79339, 270380 79431, 270578 79451, 271164 79760, 271544 80561, 271533 80742, 271406 80815, 271065 80822, 271050 80836, 271025 81139, 270919 81233, 269420 81075, 269187 80838, 269171 80835, 268729 80996, 268138 80990, 268125 80998, 267947 81312, 267800 81297, 267711 81174, 267687 81173, 267610 81265, 267425 81264, 267366 80922, 267351 80910, 266705 80927, 266699 80928, 266503 81009, 266495 81018, 266417 81224, 266352 81260, 265829 81196, 265733 81160, 265728 81159, 265208 81158, 265201 81160, 265033 81249, 265026 81267, 265033 81276, 265271 81391, 265274 81391, 265845 81543, 265848 81544, 266380 81574, 266383 81574, 267284 81469, 267286 81468, 267546 81390, 268286 81361, 268920 81413, 269967 81660, 270833 81895, 271992 82328, 272685 82657, 273357 83031, 273914 83384, 273991 83440, 274841 83961, 274843 83962, 275409 84219, 276776 84944, 277587 85461, 278565 86053, 279381 86732, 279503 86865, 279971 87341, 280263 87794, 280538 88759, 280583 89381, 280544 90450, 280448 91102, 280230 91999, 280231 91999, 279949 92852, 279505 94107, 279095 95144, 278683 96033, 278418 96531, 278130 97004, 277565 97887, 277056 98583, 276523 99253, 275661 100221, 275132 100795, 274606 101330, 274606 101350, 274622 101354, 276156 100750, 276660 100636, 276898 100808, 277283 101420, 277619 102202, 277590 102617, 277328 102892, 276938 103144, 276475 103475, 274584 104615, 271906 106100, 270857 106562, 269832 106996, 269832 106997, 268247 107477, 266102 108030, 265254 108145, 264964 108150, 264640 107940, 264350 107278, 264227 106761, 264227 105206, 264040 104063, 264039 104060, 263859 103590, 263834 103585, 262617 104879, 262622 104903, 263522 105294, 263509 105567, 263323 106198, 262984 107541, 262983 107545, 262977 107738, 262993 107753, 263852 107724, 263904 107801, 263595 108964, 263594 108971, 263653 109236, 263271 109310, 263262 109334, 263472 109613, 263941 110528, 263743 110652, 263737 110659, 263629 110892, 263628 110897, 263575 111643, 263127 112510, 263133 112530, 263994 113017, 265358 113816, 266382 114440, 266392 114442, 266602 114397, 267264 114810, 267077 114844, 267069 114849, 266914 115029, 265819 114390, 264961 113905, 263784 113255, 263764 113259, 263767 113280, 264281 113646, 264282 113647, 265669 114477, 267569 115661, 269348 116820, 270033 117288, 269733 117438, 268429 116616, 267675 116153, 267655 116156, 267658 116178, 268170 116583, 269569 117746, 270183 118283, 270793 118833, 271246 119260, 270712 119282, 270507 119105, 270487 119105, 270484 119124, 270676 119418, 270685 119425, 271123 119540, 271336 119840, 271216 120083, 271107 120150, 271101 120169, 271431 120889, 271441 120897, 272735 121256, 272754 121241, 272745 121085, 272742 121077, 272214 120365, 272042 119918, 271841 118913, 271884 117731, 272035 117337, 272539 116435, 273590 115566, 274932 115108, 276112 115147, 276653 115226, 277760 115739, 278265 116038, 279296 117242, 279532 117825, 279788 118758, 279787 118758, 279890 119359, 279782 120388, 279633 121087, 279056 122368, 278695 122789, 277877 123559, 277359 123844, 276226 124347, 276226 124348, 275463 124570, 275454 124591, 275589 124828, 275381 125158, 274941 125501, 274324 125735, 273633 125830, 273393 125620, 273464 125492, 273460 125473, 273441 125474, 272828 126069, 272826 126089, 272838 126095, 273233 126087, 273353 126213, 273382 126689, 273397 126703, 273715 126707, 273794 126758, 273840 127389, 273506 127420, 273492 127436, 273801 134782, 273788 135336, 273656 135448, 272172 135516, 272019 135362, 272005 135358, 271905 135381, 271893 135397, 271897 135478, 271647 135600, 271639 135610, 271544 136035, 271556 136053, 273992 136583, 274518 136687, 274522 136687, 274677 136672, 275429 136819, 275431 136819, 275654 136838, 275961 136972, 276217 137263, 276317 137577, 276298 137922, 275976 138560, 275767 138783, 275556 138853, 275382 138838, 275114 138662, 274747 138181, 274738 138175, 274204 138047, 274222 137808, 274210 137792, 273740 137690, 273723 137700, 273647 137895, 273611 137886, 273592 137898, 273587 137918, 273581 137888, 273569 137876, 273505 137863, 273488 137874, 273465 137949, 273407 137935, 273388 137842, 273372 137830, 273358 137842, 273341 137920, 273266 137903, 273332 137618, 273320 137600, 271376 137175, 271358 137186, 271295 137440, 271255 137430, 271234 137338, 271218 137326, 271205 137336, 271175 137413, 271148 137406, 271171 137333, 271163 137314, 271145 137319, 271105 137374, 271091 137306, 271075 137294, 271063 137301, 271017 137375, 270984 137368, 270990 137286, 270978 137270, 270926 137259, 270908 137271, 270891 137346, 270843 137334, 270874 137263, 270863 137242, 270816 137232, 270798 137244, 270785 137320, 270621 137283, 270616 137196, 270602 137182, 270587 137193, 270563 137269, 270468 137247, 270524 137003, 270512 136985, 268402 136528, 268385 136549, 268478 136780, 266292 136268, 266356 136099, 266345 136079, 264686 135718, 264725 135529, 264718 135513, 264479 135360, 264639 134364, 264639 134359, 264588 134110, 264477 133277, 264476 133274, 264286 132782, 264283 132777, 263888 132372, 263886 132370, 263406 132006, 262921 131664, 262919 131663, 262424 131398, 262420 131396, 261884 131298, 261882 131298, 261324 131275, 260766 131271, 260763 131271, 260250 131357, 260243 131360, 259824 131655, 259822 131656, 259065 132420, 259064 132422, 258702 132884, 258701 132886, 258336 133561, 257968 134336, 257595 135054, 257190 135549, 255458 134879, 255393 134775, 255613 133856, 255612 133856, 256047 132707, 256638 131248, 256629 131229, 255944 131006, 254925 130422, 254340 129926, 254320 129926, 254315 129940, 254439 130596, 254458 131503, 254468 131517, 255641 131908, 254606 135130, 254617 135150, 255114 135260, 255752 135389, 256317 135491, 257106 135613, 257107 135613, 258363 135763, 259014 135816, 259856 135860, 259858 135860, 260580 135873, 260483 136292, 260483 136297, 260515 136544, 260006 136577, 259977 136329, 259961 136316, 259259 136341, 258267 136338, 257395 136294, 256571 136222, 255643 136110, 254367 135906, 254351 135916, 254223 136317, 254235 136337, 254851 136429, 255508 136514, 256163 136585, 256164 136585, 256814 136636, 257451 136671, 258386 136701, 258292 137112, 258292 137117, 258324 137363, 257813 137396, 257784 137149, 257768 137136, 257059 137162, 256536 137167, 255826 137149, 255198 137119, 254008 137021, 253993 137031, 253751 137778, 253320 137635, 253301 137644, 252596 139852, 251905 139629, 251885 139643, 251867 140222, 251687 140644, 251696 140664, 252190 140840, 251715 142262, 250872 141969, 250852 141984, 250877 142317, 250827 142534, 250663 142797, 250438 142970, 250441 142996, 251044 143264, 250641 143949, 250320 144407, 249544 144075, 249523 144085, 249221 145241, 248970 146060, 248971 146060, 248788 146532, 248493 147127, 247903 147823, 247521 148089, 246927 148341, 246924 148343, 246547 148615, 246101 148946, 245394 149502, 245393 149503, 244967 149905, 244962 149912, 244886 150217, 244481 151229, 243827 152080, 243019 152639, 242821 152732, 242815 152737, 242373 153278, 242002 153753, 241784 154008, 241243 154684, 241240 154689, 241121 155162, 239651 156938, 239142 157600, 239142 157601, 238650 158316, 238369 158752, 238368 158753, 238087 159229, 238087 159230, 237594 160244, 237342 160569, 237007 160823, 236528 161022, 236117 161093, 235506 161004, 235235 160859, 234926 160462, 234897 160393, 234896 160391, 234582 159885, 234581 159884, 234226 159402, 233652 158634, 232668 157218, 232484 156828, 232494 156592, 232588 156433, 232590 156422, 232547 156214, 232543 156207, 232041 155656, 232040 155655, 231514 155156, 231513 155155, 230865 154677, 230864 154676, 230211 154262, 229717 153969, 228921 153483, 228437 153204, 228191 153048, 227663 152741, 227662 152741, 227414 152610, 226886 152299, 226396 151999, 225874 151652, 225657 151521, 225153 151183, 224561 150731, 223993 150335, 223992 150334, 223554 150085, 222520 149424, 221766 148770, 221063 148012, 220656 147468, 220485 147131, 220467 147124, 220457 147140, 220505 147525, 220197 147971, 220196 147973, 220038 148277, 219762 148407, 219354 148177, 219009 147560, 218833 146916, 219146 145879, 219144 145866, 218946 145606, 219049 145454, 219394 145250, 219473 145385, 219479 145390, 220025 145698, 220047 145685, 220062 144978, 220117 144435, 220217 143893, 220356 143342, 220573 142844, 221277 141863, 221808 141236, 222236 140760, 222599 140393, 223019 140006, 223834 139301, 224395 138801, 224829 138454, 225442 137996, 226115 137536, 226784 137144, 227526 136750, 228373 136347, 228377 136344, 228827 135949, 228828 135948, 229225 135496, 229648 134993, 230142 134435, 230781 133620, 230783 133618, 231266 132855, 231266 132854, 231608 132159, 232182 130834, 232183 130832, 232493 129959, 232494 129958, 232663 129289, 232663 129286, 232683 128854, 232683 128850, 232472 127815, 232609 126871, 232609 126870, 232658 126161, 232658 125317, 232562 124411, 232562 124410, 232404 123550, 232403 123549, 232203 122889, 232045 122410, 231833 121848, 231833 121846, 231455 121020, 230800 119678, 230349 118613, 230348 118611, 230112 118213, 230107 118209, 229607 117876, 229447 117599, 229304 117089, 229305 117089, 229075 115858, 229075 115857, 228932 115312, 228930 115309, 228710 114892, 228635 114606, 228602 113648, 228599 113153, 228580 112409, 228580 112408, 228510 111864, 228456 111170, 228456 110861, 228412 110102, 228389 108993, 228434 108114, 228509 107202, 228589 106509, 228764 105403, 229026 104184, 229361 102826, 229795 101280, 230323 99345, 230323 99343, 230369 98915, 230369 98913, 230343 97895, 230598 96765, 230871 95815, 230861 95798, 230654 95717, 229953 95094, 229389 94488, 228540 93647, 229631 92008, 230469 90882, 230470 90866, 230347 90671, 231863 89112, 233238 87892, 234139 87328, 234823 87021, 234832 87006, 234710 85788, 234627 84687, 235292 84236, 235772 83925, 235777 83906, 235457 83312, 235821 83212, 235827 83209, 235983 83060, 236221 83057, 236231 83053, 236477 82834, 236739 82765, 236998 82795, 237309 82946, 237324 82946, 237406 82898, 237413 82882, 237267 82263, 238357 81986, 238366 81979, 238431 81869, 238746 81668, 239506 81475, 239964 81404, 240104 81533, 240118 81537, 240347 81479, 242220 81003, 242231 80987, 242217 80823, 242390 80732, 242516 80748, 242639 80888, 242654 80893, 242976 80811, 242987 80794, 242951 80568, 243018 80425, 243287 80446, 243473 80547, 243515 80633, 243154 80734, 243143 80750, 243162 80763, 243588 80656, 244252 80483, 244263 80466, 244244 80453, 243653 80595, 243711 80502, 243922 80363, 244306 80466, 244314 80466, 245377 80178, 245381 80177, 245851 79888, 246208 79845, 246217 79968, 246236 79982, 246771 79846, 246923 80402, 246935 80413, 248151 80593, 248164 80588, 248784 79905, 249716 80346, 249735 80340, 249736 80328, 249586 79765, 249571 79372, 250057 78916, 250062 78909, 250322 77829, 250457 77712, 251621 77791, 252145 77831, 252158 77824, 252359 77527, 252687 77555, 252838 77890, 252850 77899, 253631 77987, 253642 77984, 253787 77874, 253793 77862, 253804 77445, 253852 77408, 254650 77620, 254658 77620, 255128 77475, 255128 77476, 255890 77327, 256350 77505, 256356 77506, 256883 77486, 256982 77547, 257001 77544, 257238 77292), (266087 134538, 266057 134841, 266069 134857, 268356 135357, 268374 135345, 268411 135178, 268400 135161, 266106 134525), (271611 128933, 271597 128951, 271709 129444, 271725 129456, 271739 129440, 271715 128943, 271699 128929), (263000 113432, 262998 113449, 263272 113964, 263644 114800, 263656 114809, 264395 114934, 265105 115120, 265105 115119, 265585 115282, 265603 115275, 265599 115256, 264103 114182, 263020 113430), (260831 106740, 260069 106917, 260059 106925, 259672 107618, 259412 108108, 259205 108523, 258948 109011, 258947 109012, 258807 109308, 258541 109815, 258552 109836, 258982 109927, 259937 110259, 259956 110250, 260711 108095, 261223 106603, 261216 106585, 261203 106584)), ((286459 73808, 286764 74016, 286735 74267, 286404 74410, 285970 74306, 285964 74306, 285140 74453, 285134 74456, 284412 74963, 284415 74989, 285580 75497, 285585 75498, 285993 75514, 286069 75641, 286083 75648, 286973 75591, 286985 75584, 287131 75363, 287790 74735, 288597 74968, 289915 75906, 289917 75907, 290364 76153, 290844 76457, 291153 76750, 291635 77389, 291658 77390, 291746 77285, 292909 77078, 293762 77003, 294227 77144, 294626 77532, 294968 78010, 294977 78016, 295049 78029, 295506 78298, 296031 78579, 296051 78575, 296054 78562, 296018 78414, 296009 78404, 295912 78363, 295935 78186, 296030 78132, 296589 78381, 297044 78739, 297047 78784, 296930 78845, 296324 78696, 296306 78706, 296312 78723, 296776 79036, 296968 79270, 296981 79430, 296988 79442, 297221 79577, 297574 80064, 297894 80707, 297912 80714, 298162 80619, 298257 80670, 298261 80778, 298085 81058, 297966 81119, 297958 81134, 298038 81929, 298047 81941, 298384 82093, 298547 82235, 299164 83129, 299205 83286, 299211 83294, 299390 83428, 299881 84171, 300031 84701, 299858 85309, 299857 85309, 299601 85882, 299332 86140, 299327 86150, 299320 86338, 299148 86892, 298934 86866, 298928 86867, 298469 87008, 298458 87021, 298406 87753, 298376 88416, 298346 88693, 298330 89465, 298330 89466, 298338 90346, 298351 90361, 298977 90434, 299471 90526, 299462 91164, 298991 91159, 298987 91159, 298460 91296, 298449 91313, 298461 91326, 298917 91415, 298869 91854, 298356 91835, 298340 91848, 298114 93363, 298028 93822, 297845 94961, 297360 96432, 296885 97482, 296265 98720, 295636 99846, 294647 101280, 294647 101292, 293839 102311, 293839 102329, 294122 102738, 293849 103011, 293220 102462, 293199 102463, 292566 103198, 291527 104236, 291161 104559, 290468 105215, 289903 105729, 289361 106177, 289356 106192, 289435 106542, 289437 106546, 289848 107276, 289659 107484, 289337 107685, 289013 107249, 289011 107247, 288859 107110, 288840 107109, 287374 108190, 286800 108549, 286798 108550, 286319 108945, 286316 108965, 286698 109587, 286144 109966, 285561 109220, 284908 108356, 284330 107568, 284312 107563, 281892 108641, 280803 109139, 280802 109140, 280075 109550, 278296 109960, 277595 110079, 276885 110188, 276605 110149, 276179 109336, 276162 109328, 274368 109766, 273734 109902, 272341 110222, 271745 110375, 271764 110356, 271765 110336, 271751 110330, 271188 110400, 270188 110587, 269349 110722, 268229 110826, 267865 110768, 267604 110210, 267397 109341, 267261 108626, 267278 108390, 267791 108258, 268446 108196, 268510 108313, 268587 109538, 268588 109543, 268643 109671, 268655 109680, 269034 109721, 269040 109721, 270270 109422, 270885 109260, 270890 109257, 271015 109171, 272399 108812, 273241 108616, 275594 108031, 275605 108013, 275541 107740, 276406 107448, 276667 107447, 276755 107723, 276773 107733, 277832 107464, 279379 107085, 280127 106935, 280303 107001, 280554 107786, 280574 107795, 282165 107050, 283077 106643, 283702 106339, 283708 106334, 283762 106266, 284414 105934, 284416 105933, 285209 105353, 285815 104860, 285817 104858, 285954 104709, 286367 104341, 286699 104891, 286718 104897, 287313 104648, 287850 105472, 287957 105734, 287569 106014, 286344 106635, 285104 107202, 285100 107225, 285739 107952, 285758 107954, 286974 107145, 286975 107145, 288157 106208, 288162 106191, 288050 105887, 288325 105648, 289181 104848, 290537 103534, 290538 103534, 290966 103099, 292104 101970, 292621 101439, 292978 101085, 293263 101202, 293281 101197, 293757 100551, 294580 99361, 294581 99360, 295152 98459, 295152 98458, 295876 97042, 296331 95998, 296332 95996, 296650 95115, 296651 95113, 297027 93529, 297362 91622, 297362 91621, 297461 90884, 297612 90312, 297898 90222, 297908 90208, 297930 89468, 297884 88200, 297884 88199, 297787 87188, 297766 87175, 297194 87446, 297192 87448, 297010 87573, 296442 87738, 295700 87995, 295196 88110, 294532 88064, 294004 88040, 293520 87988, 293514 87989, 292861 88212, 292851 88223, 292794 88549, 292795 88549, 292478 89634, 292252 90333, 291904 91006, 291448 91381, 289925 92279, 287276 93463, 286342 93864, 284448 94654, 283584 95002, 282468 95406, 282010 95582, 281522 95677, 281393 95585, 281259 95333, 281231 95146, 281402 94948, 282587 94393, 285754 93043, 287888 92104, 289175 91498, 289176 91497, 289772 91162, 290806 90556, 290810 90553, 291232 90064, 291235 90059, 291580 88969, 291581 88967, 291656 88536, 291638 88518, 290862 88674, 290861 88675, 290105 88885, 289831 88943, 289176 89154, 289175 89154, 288682 89343, 288087 89173, 288070 89179, 287919 89419, 287663 89646, 286663 89980, 286534 90029, 285717 90222, 285715 90223, 284884 90508, 284709 90529, 284704 90531, 284366 90704, 284685 88421, 284672 88404, 284475 88372, 284467 88373, 284082 88543, 283890 88535, 283922 88486, 283919 88467, 283866 88422, 283843 88425, 283790 88508, 283794 88528, 283820 88547, 283769 88588, 283446 88576, 283398 88482, 283378 88476, 283129 88613, 282928 88611, 282643 88465, 282249 87875, 282238 87868, 281824 87831, 281777 87729, 281756 87722, 281474 87859, 277731 82418, 277916 82125, 277918 82115, 277900 82002, 278116 81568, 278286 81533, 278296 81526, 278589 81074, 278587 81056, 277934 80287, 277912 80286, 277321 80879, 277320 80882, 277249 80988, 276812 81009, 276548 80700, 276529 80698, 275136 81642, 274722 81835, 274276 81459, 274262 81456, 273799 81583, 273646 81446, 273632 81443, 273352 81527, 273580 81414, 273586 81394, 273295 80879, 273357 80667, 274434 80210, 274443 80198, 274478 79984, 274474 79972, 274354 79847, 274336 79844, 273421 80361, 273191 79945, 273176 79937, 272786 79990, 272583 79651, 272570 79352, 272907 78998, 273532 78715, 274134 78547, 274395 78624, 274406 78623, 275576 78005, 276097 77819, 276630 78173, 277188 78580, 277193 78583, 277910 78745, 277922 78742, 278413 78369, 278419 78357, 278419 78281, 278587 78082, 278981 78127, 278994 78122, 279174 77937, 279630 77906, 279639 77902, 279884 77682, 279888 77667, 279833 77485, 279830 77479, 279539 77170, 279279 76434, 279275 76310, 279273 76303, 279089 75951, 279046 75532, 279171 75129, 279342 75049, 279446 75090, 279464 75085, 279609 74905, 279718 74868, 279972 74917, 279990 74902, 279988 74850, 280355 74868, 280362 74867, 280920 74633, 280925 74630, 281005 74550, 281130 74549, 281137 74547, 281624 74290, 282084 74029, 282453 73962, 282594 74035, 282604 74140, 282300 74719, 282298 74724, 282248 75137, 282249 75145, 282326 75340, 282332 75347, 282441 75416, 282451 75418, 282982 75357, 282990 75353, 283428 74984, 283913 74668, 284653 74219, 284951 74232, 284967 74221, 285004 74072, 285322 73808, 285644 73770, 286149 73722), (275250 79336, 275246 79359, 275672 79804, 275690 79807, 276154 79546, 276156 79545, 276442 79339, 276443 79315, 276009 78952, 275992 78951), (288854 77618, 288842 77631, 288823 77797, 288828 77810, 289352 78307, 290025 78989, 290032 78993, 290274 79035, 290285 79032, 290450 78921, 290613 78909, 290619 78907, 290975 78719, 290979 78696, 290613 78267, 290608 78263, 290404 78177, 289834 77818, 289831 77817, 289339 77626, 289169 77562, 289161 77561), (281705 76631, 281708 76643, 281762 76714, 281774 76720, 281898 76718, 281973 76782, 282076 77063, 282085 77072, 282175 77106, 282187 77105, 282425 76989, 282428 76965, 282060 76648, 282051 76644, 281721 76619), (283850 75271, 283612 75445, 283609 75448, 283424 75711, 283422 75715, 283305 76031, 283209 76128, 283209 76134, 283202 76134, 283018 76319, 283014 76329, 283009 76415, 283030 76430, 283274 76330, 283278 76305, 283188 76219, 283225 76153, 283491 76061, 283685 76074, 283694 76072, 283783 76014, 283790 75999, 283771 75838, 283870 75603, 283871 75597, 283874 75283, 283861 75268)), ((300300 81817, 300272 81877, 300278 81896, 300288 81898, 300381 81883, 300427 82079, 300307 82164, 300124 82129, 300117 82130, 299817 82221, 299011 82315, 298646 82253, 298640 82165, 298946 81906, 299181 81832, 299696 81807, 300217 81771)), ((271992 82164, 272231 81825, 272604 81637, 273119 81611)), ((298948 81163, 298950 81309, 298701 81584, 298410 81664, 298286 81586, 298306 81452, 298579 81186, 298847 81119)), ((298362 79448, 298127 79529, 298146 79404, 298294 79269, 298519 79182)), ((298711 78753, 298777 78925, 298669 78956, 298375 78716, 298351 78635, 298538 78630)), ((285930 68926, 286629 69186, 286962 69325, 286677 69880, 286177 70153, 286172 70157, 285851 70606, 285553 70821, 284837 71032, 284313 70956, 284309 70956, 283741 71037, 283739 71037, 283169 71178, 283005 71091, 283065 70956, 283563 70513, 283719 70445, 283724 70441, 284000 70122, 284589 69523, 285081 69273, 285087 69267, 285207 69052, 285405 68894, 285541 68860))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_009.wkt b/tests/voronoi_crash_resources/slice_polygon_009.wkt new file mode 100644 index 00000000000..540cf1afe67 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_009.wkt @@ -0,0 +1 @@ +MultiPolygon (((273309 86663, 273171 86933, 272905 87016, 272763 86930, 273101 86650))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_010.wkt b/tests/voronoi_crash_resources/slice_polygon_010.wkt new file mode 100644 index 00000000000..11bc7aa3a57 --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_010.wkt @@ -0,0 +1 @@ +MultiPolygon (((197366 140151, 198008 140453, 198569 140709, 198560 140980, 198069 141540, 197297 141998, 197293 142020, 197356 142101, 197077 142358, 196515 142882, 195989 143113, 195987 143115, 195824 143225, 195042 143362, 194506 143386, 194189 143347, 194128 142562, 194106 141067, 194164 140387, 194980 140604, 195506 140818, 195523 140814, 195793 140516, 195795 140514, 196148 139981, 196469 139830, 196646 139829)), ((219033 103218, 219096 103903, 219026 104447, 218908 105001, 218559 105813, 217997 106959, 217785 106926, 217499 106378, 217246 105649, 217113 104880, 217140 104295, 217248 103963, 217448 103630, 218094 103082, 218629 102730, 218898 102601)), ((267611 89140, 268331 89308, 268331 89307, 269200 89544, 270028 89755, 271121 90152, 272486 90752, 273592 91344, 273963 91608, 274630 92058, 275213 92492, 276368 93491, 276369 93492, 276619 93679, 277158 94275, 277594 94791, 277904 95279, 278265 95847, 278582 96515, 278851 97268, 278659 97374, 277149 96612, 275882 95922, 275863 95927, 275862 95942, 276710 97587, 277053 98280, 277427 99183, 278079 101107, 278102 101521, 277826 102000, 277824 102004, 277633 103124, 277531 104019, 277373 105171, 277168 105584, 276757 105878, 276466 105944, 275560 105747, 274539 105388, 274508 105033, 274427 104192, 274480 103041, 274503 102721, 274545 101657, 274544 101651, 274272 100917, 274272 100916, 273686 99678, 273685 99676, 273219 98884, 272754 98130, 272753 98129, 272288 97494, 272287 97493, 271942 97089, 271939 97086, 271419 96743, 271418 96743, 270010 95973, 269432 95641, 269430 95640, 269088 95527, 268327 95230, 267958 95129, 267258 94907, 266575 94599, 266167 93864, 265899 92905, 265885 92159, 266434 92162, 267233 92202, 267236 92202, 267584 92137, 267592 92132, 267997 91716, 268887 91910, 268887 91909, 269860 92196, 270886 92484, 270904 92476, 270899 92458, 268614 90725, 267717 89995, 267394 89763, 266981 89264, 267242 89068), (267996 93061, 267392 93305, 267383 93316, 267341 93494, 267342 93503, 267456 93743, 267463 93750, 267870 93968, 267872 93969, 268682 94250, 269341 94447, 270058 94733, 270806 95209, 270807 95209, 270863 95238, 272208 96101, 272674 96419, 273154 96928, 273512 97385, 273781 97818, 273782 97819, 273908 97975, 274581 99106, 275156 100507, 275327 101010, 275359 101766, 275330 103070, 275334 103829, 275334 103830, 275401 104289, 275403 104295, 275574 104555, 275585 104562, 276277 104652, 276290 104647, 276413 104512, 276417 104505, 276558 103768, 276558 103766, 276714 102058, 276781 101521, 276943 101178, 276944 101168, 276806 100625, 276795 100552, 276794 100549, 276447 99516, 276218 98951, 276218 98950, 275998 98456, 275997 98455, 275238 97024, 274776 96200, 274775 96198, 274518 95867, 274505 95861, 274351 95871, 273947 95631, 273188 95034, 272065 94171, 272062 94169, 271684 93991, 271680 93990, 270728 93845, 270223 93687, 269434 93411, 268443 93110, 268441 93109, 268004 93060)), ((222005 103731, 221827 103863, 221821 103878, 222023 104869, 222024 104872, 222090 105020, 221948 105800, 221462 105291, 221309 104905, 221068 103603, 221891 103002)), ((214242 101132, 214836 101282, 215604 101756, 215880 102142, 215976 102674, 215931 103054, 215659 103678, 215310 104046, 214972 104224, 214616 104243, 214348 104086, 213829 103406, 213553 102978, 213315 102419, 213246 101605, 213395 101174, 213704 101021)), ((207278 77855, 207575 77977, 208152 78658, 208320 78893, 208321 78894, 208847 79459, 209194 79867, 209195 79868, 209862 80482, 210438 81071, 210867 81618, 211147 82107, 211399 82643, 211400 82643, 211599 83300, 211598 83300, 211718 83986, 211719 83987, 211854 84482, 211854 84484, 212169 85149, 212823 86416, 213029 87018, 213243 87799, 213513 88637, 213573 89037, 213574 89040, 213748 89542, 213749 89544, 213819 89687, 213837 89694, 213847 89682, 213947 89075, 214072 88475, 214232 87779, 214393 86929, 214540 86295, 214648 85775, 214648 85774, 214696 85191, 214696 85188, 214638 84631, 214636 84553, 214636 84550, 214547 84045, 214590 83624, 214588 83614, 214257 83089, 214119 82154, 214117 82149, 213881 81687, 213878 81683, 213178 81083, 212603 80476, 212154 79967, 212153 79916, 213186 80201, 213846 80428, 213846 80429, 214836 80843, 215249 81281, 215610 81707, 216098 82237, 216465 82891, 216466 82893, 216868 83473, 217123 84101, 217074 84674, 216345 86101, 216343 86106, 216266 86565, 216267 86572, 216406 86949, 216410 86955, 216506 87042, 216514 87046, 216670 87069, 216677 87068, 217005 86942, 217010 86939, 217990 86017, 218128 86945, 217847 87997, 217530 88673, 217307 89047, 217305 89052, 217253 89315, 217253 89321, 217318 89635, 217322 89642, 217464 89788, 217475 89793, 218201 89811, 218538 90110, 218647 90428, 218458 91271, 217823 91770, 217819 91775, 217742 91916, 217740 91921, 217687 92375, 217706 92391, 218002 92301, 218294 92370, 218494 92520, 218660 93027, 218474 93724, 217885 94315, 217881 94324, 217841 94574, 217841 94579, 217934 94980, 217949 94992, 218388 94999, 218673 95138, 218783 95404, 218800 95988, 218615 96450, 218013 97221, 218010 97232, 218123 97993, 218082 98223, 218099 98241, 218557 98164, 218768 98294, 219009 98829, 219007 99003, 218835 99466, 218252 100114, 218249 100118, 217987 100667, 217986 100673, 217971 101245, 217973 101252, 218066 101438, 218073 101445, 218591 101693, 218642 101788, 218598 102059, 218399 102472, 217872 102913, 217383 103263, 217083 102442, 217082 102440, 216736 101745, 216352 100847, 215893 99673, 215617 98903, 215493 98483, 215134 97409, 213814 93619, 213808 93610, 212980 93126, 212411 92829, 212344 92721, 212336 92715, 212097 92629, 212091 92628, 211828 92644, 211352 92513, 211144 92391, 210965 92089, 210962 92085, 210377 91598, 209828 91148, 209454 90805, 208907 90182, 208524 89602, 208233 88954, 208232 88954, 208059 88399, 208060 88399, 207941 87742, 207839 86799, 207787 85892, 207791 85119, 207749 84148, 207748 84143, 207504 83423, 207108 82450, 206924 81967, 206923 81965, 206849 81816, 206667 81318, 206611 81185, 206433 80562, 206286 79494, 206286 79493, 206242 79287, 206169 78608, 206267 78257, 206422 78061, 206647 77910, 206980 77841)), ((243324 100236, 243405 100140, 243830 99829, 243917 99794)), ((210150 92740, 210649 93747, 210650 93748, 210922 94235, 211689 95496, 211690 95497, 212092 96094, 212092 96095, 212587 96713, 212588 96715, 213114 97240, 213121 97243, 213553 97367, 214072 97675, 214576 98021, 215079 98502, 215580 99252, 215710 99653, 215710 99654, 215964 100219, 214797 99763, 213453 99261, 212294 98871, 211924 98684, 211522 98374, 210894 97650, 210696 97319, 210216 96529, 209805 95636, 209456 94626, 209457 94626, 209092 93161, 209009 92306, 209077 91919, 209256 91700, 209625 91475)), ((280038 94708, 279604 94474, 280021 94402))) \ No newline at end of file diff --git a/tests/voronoi_crash_resources/slice_polygon_011.wkt b/tests/voronoi_crash_resources/slice_polygon_011.wkt new file mode 100644 index 00000000000..922ed70a5db --- /dev/null +++ b/tests/voronoi_crash_resources/slice_polygon_011.wkt @@ -0,0 +1 @@ +MultiPolygon (((99345 45800, 99640 46892, 99895 48430, 99533 48811, 99754 50319, 99482 50643, 99467 50724, 99719 50808, 99843 50755, 99865 50639, 99705 49954, 99827 49570, 100002 49260, 99911 48847, 99897 48429, 100280 48073, 100663 47826, 101099 47951, 101445 48274, 101834 48333, 102216 47947, 102603 47911, 102995 48278, 103387 48397, 103796 48170, 104154 47911, 104588 47964, 104933 48205, 105322 48264, 105706 48005, 106093 47968, 106484 48242, 106878 48388, 107643 47912, 108031 47909, 108422 48169, 108811 48307, 109581 47879, 109973 48193, 110364 48430, 110770 48202, 111132 47899, 111520 47915, 112300 48366, 112685 48089, 113071 47880, 113855 48400, 114256 48236, 114621 47912, 115009 47904, 115790 48310, 116202 48153, 116560 47912, 116983 48089, 117341 48362, 117739 48302, 118111 47966, 118542 47991, 118880 47387, 119256 46484, 119637 46480, 119663 46673, 120031 46476, 120222 47192, 126622 47203, 127010 47210, 129336 47204, 130302 47216, 130502 47358, 130647 47521, 130909 48432, 130323 49080, 130401 49194, 104681 49194, 104681 66303, 104485 66253, 104426 67081, 104497 67968, 104434 68318, 104504 68792, 104426 68928, 104406 69065, 104448 69444, 104445 69999, 104681 70128, 104681 72342, 104459 72248, 104438 72651, 104526 73040, 104323 73868, 104359 73974, 104618 74190, 104681 74196, 104681 87981, 104494 88321, 104285 89144, 103946 89111, 103678 89708, 103449 90150, 103398 90172, 103313 90560, 103010 90493, 102825 91098, 102781 91116, 102720 91849, 102350 91412, 102210 91621, 101960 92117, 101741 92951, 101396 92965, 101336 93064, 100914 93907, 100806 94311, 101018 94313, 100884 94504, 100741 94527, 100768 94381, 100388 94450, 100156 95315, 100225 95351, 100144 95357, 100147 95327, 99763 95409, 99643 95846, 99421 96297, 99195 96743, 98881 96739, 98816 96833, 98559 97699, 98166 97777, 97947 98256, 97708 98709, 97606 99122, 97204 99188, 97085 99634, 96893 100072, 96952 100132, 96789 100511, 96838 100788, 96609 100706, 96614 100559, 96302 100615, 96042 101411, 96254 101435, 96114 101720, 95839 102043, 95736 102071, 95784 101950, 95452 101927, 95167 102507, 95081 102881, 95444 103057, 94988 103170, 94921 103335, 94572 103370, 94198 104191, 94316 104291, 94256 104523, 94052 104859, 93943 104904, 93975 104772, 93633 104807, 93590 104840, 93469 105293, 93027 106147, 92786 106056, 92652 106298, 92543 106685, 92681 106678, 92624 106847, 92458 106942, 92389 107142, 92204 107196, 92125 107475, 91996 107289, 91596 108138, 91452 108563, 91123 108541, 91052 108627, 90813 109456, 90910 109489, 90746 109656, 90775 109525, 90399 109599, 90056 110462, 90314 110606, 89936 110770, 89853 110933, 89548 110901, 89469 111015, 89186 111896, 89172 111903, 89150 112679, 88728 112186, 88562 112458, 88357 113023, 88624 113454, 88095 113737, 87817 113561, 87526 114287, 87313 114739, 87236 115250, 86938 114880, 86750 115280, 86644 115685, 86237 115789, 85860 116688, 85772 116981, 86087 117014, 85876 117336, 85621 117407, 85563 117529, 85260 117468, 85171 117606, 84920 118267, 85317 118388, 85105 118977, 84717 118772, 84627 118925, 84352 118849, 84236 119070, 84133 119451, 84337 119432, 84111 119945, 84060 120251, 83449 120266, 83327 120483, 83037 121329, 82708 121331, 82639 121395, 82325 122266, 82434 122279, 82307 122622, 82241 122330, 81905 122408, 81704 122866, 81600 123264, 81953 123186, 81745 123519, 81460 123639, 81430 123715, 81100 123704, 81036 123786, 80887 124239, 80486 125072, 80212 125075, 80068 125253, 79996 125626, 80230 125365, 80485 125216, 80879 125062, 81135 125121, 81609 124906, 81593 125429, 81437 125368, 81233 125554, 81115 125740, 81191 125983, 81567 126136, 81545 126011, 81891 125207, 82592 124977, 82816 125275, 82611 125719, 82799 126055, 82483 126916, 82664 127255, 82480 127692, 82685 128025, 82519 128457, 82711 128793, 82518 129233, 82736 129562, 82580 129991, 82763 130329, 82583 130766, 82787 131098, 82628 131528, 82813 131866, 82453 132739, 82675 133067, 82479 133507, 82663 133845, 82517 134272, 82723 134604, 82554 135037, 82764 135369, 82758 135415, 83117 136047, 82803 136862, 82776 136915, 82461 137772, 82805 138458, 82472 139236, 82451 139480, 82728 140030, 82517 140763, 82185 140567, 82130 140968, 82152 141058, 82206 140971, 82566 140854, 82968 141507, 82253 141654, 82135 141566, 82085 141756, 82148 141913, 82260 141772, 82967 141522, 82616 142376, 82279 142410, 82156 142331, 82103 142526, 82159 142713, 82283 142546, 82616 142396, 83019 143044, 82309 143180, 82178 143087, 82145 143290, 82193 143468, 82612 143895, 82622 144054, 83001 144607, 82515 145824, 82340 145951, 82553 145900, 82751 146226, 82581 146652, 82425 146702, 82582 146665, 82783 146993, 82609 147422, 82273 147441, 82141 147370, 82095 147568, 82145 147763, 82276 147594, 82610 147431, 82807 147762, 82632 148186, 82297 148216, 82161 148124, 82128 148334, 82178 148514, 82433 148639, 82494 149400, 82862 150072, 82521 150880, 82448 150960, 82528 150991, 82864 151566, 82733 151657, 82476 152253, 82202 151921, 82100 152606, 82155 152767, 82274 152635, 82605 152477, 82983 153130, 82283 153254, 82160 153190, 82120 153376, 82165 153554, 82279 153393, 82986 153145, 82661 153997, 82315 154041, 82194 153951, 82159 154140, 82202 154317, 82441 154451, 82200 154708, 82155 154916, 82214 155096, 82498 155228, 82702 155543, 82696 155587, 83041 156225, 82713 156988, 82038 157237, 82010 157260, 81299 157423, 81227 157409, 80553 157625, 80509 157656, 79948 157437, 79934 157458, 78827 157759, 78600 157441, 78691 157223, 78718 156971, 78622 156661, 78841 156505, 78811 156297, 78597 155892, 78769 155515, 78778 155384, 78344 155517, 78344 155625, 78491 155922, 78283 156171, 78191 156391, 78187 156780, 77836 157609, 77309 157380, 76917 157506, 76183 157699, 76018 157374, 76028 157309, 76000 157372, 75286 157565, 74872 156913, 75041 156505, 74820 156190, 74756 156170, 74667 155807, 74793 155450, 74795 155307, 74477 154696, 74674 154325, 74777 154226, 74834 154033, 74793 153834, 74812 153633, 74664 153481, 74476 153383, 74507 153524, 74469 153671, 74511 153911, 74436 154101, 74472 154309, 74373 154724, 74405 155012, 74589 155441, 74515 155688, 74563 155835, 74326 156288, 74238 156699, 74555 156755, 74766 156943, 75236 157573, 74520 157770, 74284 157454, 73165 157755, 72939 157443, 72971 157348, 72919 157439, 72554 157539, 72507 157460, 72513 157534, 71808 157737, 71687 157389, 70900 157607, 70751 157241, 70693 157205, 70018 157408, 69984 157456, 69369 157235, 69251 157677, 68886 157760, 68644 157457, 67888 157662, 67638 157345, 67275 157426, 67241 157393, 67256 157445, 66147 157742, 66036 157396, 65608 157514, 65751 157863, 65619 158286, 65886 158601, 65651 159053, 65796 159402, 65556 160266, 65831 160943, 65529 161792, 65597 161798, 65843 162102, 65737 162505, 65858 162873, 65692 163221, 65876 163256, 65720 163421, 65885 163640, 65774 164075, 65910 164410, 65658 164866, 65544 165258, 65473 165304, 65561 165285, 65819 165598, 65578 166046, 65531 166063, 65577 166056, 65703 166405, 65593 166815, 65559 166832, 65847 167140, 65606 167593, 65738 167946, 65614 168367, 65876 168683, 65637 169136, 65772 169487, 65557 170316, 65533 170292, 65781 171067, 65583 171871, 65818 172575, 65625 173403, 65880 173721, 65780 174121, 65898 174492, 65656 174945, 65903 175266, 65820 175675, 65558 176151, 65668 176493, 65546 176914, 65843 177220, 65592 177680, 65716 178031, 65617 178436, 65570 178457, 65620 178454, 65882 178761, 65632 179194, 65533 179243, 65626 179237, 65745 179574, 65649 179978, 65615 179996, 65653 179994, 65925 180299, 65659 180761, 65776 181115, 65577 181932, 65808 182657, 65603 183467, 65545 183504, 65605 183508, 65838 184200, 65643 185019, 65614 185035, 65915 185341, 65827 185752, 65563 186201, 65486 186353, 65632 186582, 65501 186891, 65545 186992, 66202 187201, 65560 187763, 65701 188114, 65576 188534, 66234 188743, 65566 189323, 65614 189322, 65730 189656, 65620 190069, 66264 190285, 65640 190846, 65758 191199, 65666 191602, 65608 191627, 65530 191968, 65565 192027, 65534 192103, 65621 192400, 65685 192385, 65787 192742, 65597 193579, 65819 194284, 66195 194191, 66470 194493, 67598 194194, 67871 194496, 68990 194193, 69102 194547, 70601 194139, 70717 194491, 71479 194286, 71490 194293, 72225 194092, 72736 193165, 72767 193153, 72621 192486, 73196 192721, 73327 192226, 73576 191776, 73682 191740, 73842 191370, 74184 191229, 74218 191123, 74147 190836, 74194 190661, 74369 190553, 74419 190378, 74790 190279, 75282 189363, 75397 188951, 75761 188857, 75873 188403, 76160 187895, 76325 187333, 76389 187509, 76729 187442, 76911 186779, 76572 186683, 76823 186204, 77093 186336, 77080 186545, 77348 186477, 77812 185569, 77935 185151, 78187 185078, 78087 184767, 78356 184872, 78431 184624, 78661 184180, 78730 184154, 78821 183852, 78590 183804, 78689 183468, 78936 183555, 79069 183375, 79373 183238, 79520 182788, 79650 182739, 79645 182111, 80076 182291, 80335 181780, 80465 181356, 80622 181310, 80708 181083, 80909 181009, 81231 179999, 81607 179878, 81695 179369, 81893 178777, 82087 178846, 82185 178562, 82544 178484, 82695 178028, 82910 177587, 83278 177484, 83494 177034, 83785 176194, 84063 176102, 83996 175759, 84215 175940, 84568 175193, 84711 174763, 84994 174530, 85148 174474, 85437 173794, 85802 173699, 86008 173243, 86315 172396, 86681 172288, 87080 171399, 87230 170971, 87600 170873, 87762 170437, 88141 169559, 88510 169460, 88809 168650, 88644 168644, 88738 168425, 88866 168506, 89018 168160, 89386 168058, 89504 167778, 89434 167652, 89734 167183, 90107 167094, 90305 166561, 90238 166135, 90861 165988, 91458 164535, 91312 164423, 91392 164176, 91601 164140, 91696 164319, 91882 164273, 91989 164003, 91899 163875, 91888 163551, 92118 163678, 92232 163401, 92607 163297, 93132 161992, 93502 161888, 94024 160582, 94396 160480, 94749 159613, 95101 159513, 95655 158201, 95921 158121, 95957 157983, 96052 158024, 96359 157230, 96729 157128, 97204 156024, 96890 155669, 97362 155556, 97431 155387, 97801 155285, 98183 154406, 98552 154303, 99041 153014, 99407 152906, 99569 152474, 99955 151598, 100324 151489, 100642 150633, 101006 150534, 101391 149663, 101355 149653, 101531 149174, 101630 149192, 101928 149112, 102082 148679, 102482 147800, 102850 147701, 103158 146838, 103528 146736, 103645 146479, 103526 146201, 103886 145859, 104011 145391, 104094 145381, 104235 144994, 104605 144886, 105015 144003, 105131 143658, 105068 143597, 105135 143534, 105066 143210, 105331 142639, 105595 143065, 105437 143330, 105195 143562, 105533 143476, 105682 143043, 106054 142941, 106418 142161, 106377 142075, 106509 141472, 106681 141424, 106788 141575, 106990 141522, 107138 141092, 107556 140207, 107703 139785, 108067 139684, 108363 138833, 108624 138746, 108604 138547, 108801 138492, 108870 138291, 109320 137398, 109669 137308, 109947 136450, 110315 136349, 110754 135449, 110890 135030, 111240 134928, 111397 134497, 111616 134054, 111811 133996, 111889 133726, 112140 133638, 112331 133108, 112303 133062, 112349 133049, 112476 132653, 112848 132550, 113294 131655, 113426 131231, 113800 131128, 113932 130701, 114382 129802, 114512 129385, 114877 129295, 115015 128858, 115241 128410, 115371 128374, 117026 129315, 120530 130977, 124387 132501, 128548 133870, 132944 135062, 137562 136077, 142293 136898, 147340 137558, 147017 138014, 146860 138296, 146399 138935, 146209 139365, 145835 139873, 145634 140056, 145550 140254, 145315 140588, 145226 140647, 144845 141272, 144597 141521, 144407 141978, 144121 142347, 143672 143068, 143386 143392, 142990 144083, 142651 144537, 142428 144986, 142059 145352, 141994 145492, 141721 145955, 141311 146521, 141075 146907, 140678 147411, 140490 147843, 140135 148328, 139911 148545, 139761 148914, 139515 149171, 139144 149762, 139048 150044, 138790 150353, 138623 150624, 138349 150927, 138250 151170, 137886 151689, 137650 152136, 137393 152379, 137061 153047, 136777 153304, 136609 153660, 136240 153932, 135775 154562, 135501 154829, 135137 155319, 134997 155429, 134778 155726, 134378 156427, 133836 157068, 133657 157533, 133391 157773, 133165 158121, 132928 158563, 132646 158891, 132330 159383, 132022 159869, 131754 160196, 131521 160639, 131028 161226, 130851 161583, 130351 162280, 130135 162698, 129687 163327, 129175 164078, 128902 164587, 128519 165061, 128177 165672, 127820 166088, 127596 166517, 127367 166811, 127179 167163, 126719 167757, 126403 168372, 126040 168766, 125987 168874, 125644 169463, 125337 169779, 125055 170292, 124682 170931, 124187 171560, 123859 172171, 123488 172539, 123205 173126, 122847 173669, 122552 174080, 122246 174551, 121896 175064, 121654 175352, 121245 176061, 120966 176353, 120722 176718, 120526 177123, 120106 177823, 119830 178086, 119298 178849, 119016 179313, 118723 179871, 118439 180145, 118189 180487, 118083 180732, 117733 181289, 117481 181536, 116854 182505, 116636 182878, 116374 183188, 116151 183588, 115853 184057, 115711 184252, 115588 184517, 115290 184957, 115012 185295, 114915 185477, 114580 186012, 114182 186802, 113908 187085, 113509 187800, 113229 188112, 112787 188840, 112515 189119, 112184 189714, 111859 190184, 111625 190643, 111163 191217, 111025 191583, 110743 191957, 110373 192537, 110032 192950, 109726 193489, 109365 194016, 109084 194440, 108694 194935, 108850 195238, 109218 195146, 109428 195465, 110149 195306, 110529 195194, 110745 195487, 111481 195312, 111862 195193, 112074 195501, 112807 195337, 113201 195189, 113405 195509, 114112 195371, 114466 195233, 114667 194866, 115018 194821, 115639 195010, 116361 194787, 116547 195136, 116970 195062, 117650 194877, 117704 194835, 118410 194642, 118461 194642, 119127 194520, 119481 194861, 119751 194647, 119954 194228, 120650 194038, 121050 194650, 121085 194674, 121408 195328, 121356 195424, 121124 196188, 121233 196325, 121164 196169, 121505 195364, 121527 195295, 121884 194489, 122577 194279, 122642 194299, 123322 194086, 123666 194814, 123722 194710, 124078 194613, 124114 194635, 124461 194491, 125020 194725, 124593 195229, 124697 195603, 125075 195480, 125074 194722, 126165 194440, 126390 194752, 126496 195248, 126693 195429, 126677 195618, 126805 195495, 126762 195021, 126465 194763, 127116 194599, 127324 194481, 127405 194254, 127602 194199, 127675 193999, 127793 193964, 127896 193673, 128166 193552, 128403 193026, 128769 192930, 128981 192479, 129276 191623, 129643 191528, 130063 190633, 130212 190210, 130575 190114, 130869 189248, 131238 189147, 131351 188809, 131289 188741, 131301 188545, 131434 188605, 131809 187835, 132160 187793, 132459 186874, 132549 186846, 132580 186231, 132970 186475, 133266 185874, 133396 185452, 133768 185352, 133867 185042, 133812 184949, 133850 184801, 133952 184827, 134345 184038, 134387 184017, 134280 183270, 134309 183134, 134013 182568, 134468 182109, 134446 182062, 134579 181638, 134425 181292, 134650 180843, 134175 180218, 134633 179297, 134144 178656, 134570 177791, 134571 177729, 134357 177434, 134478 177065, 134457 177019, 134594 176541, 134362 176270, 134577 175877, 134414 175480, 134678 174633, 134543 174282, 134551 174219, 134074 174023, 134527 173562, 134631 173107, 134505 172693, 134035 172483, 134493 172027, 134596 171555, 134449 171206, 134679 170760, 134187 170128, 134672 169197, 134172 168569, 134640 167665, 134141 167027, 134569 166177, 134564 166102, 134351 165806, 134468 165449, 134444 165394, 134563 164934, 134351 164644, 134538 164196, 134867 163332, 135646 163086, 135707 163109, 135778 163310, 135718 163493, 135858 163702, 136156 163548, 136383 163651, 136396 163308, 137035 163054, 137190 163091, 137266 163266, 137467 163402, 137643 163798, 137828 164079, 137672 164909, 138121 164879, 138130 164514, 137984 164423, 138085 164266, 138162 163987, 138262 163918, 138350 163548, 138117 163475, 137942 163271, 138390 162955, 138609 162989, 138712 162949, 138722 163058, 138859 163281, 139115 163228, 139527 163223, 139950 163026, 140269 163023, 140264 163053, 140277 163022, 140733 163024, 141114 162848, 141589 162660, 141565 162512, 141693 162413, 142172 161725, 142240 161686, 142238 161626, 142276 161616, 142650 161074, 142786 160969, 143119 160373, 143659 159725, 143688 159715, 143999 158920, 144034 158888, 144644 157689, 144747 157285, 145292 156911, 145368 156880, 145451 156620, 145683 156111, 145758 155884, 145973 155762, 146056 155650, 146134 155212, 146344 154766, 146736 154271, 147174 153872, 147391 153316, 147528 152892, 147758 152580, 148061 152317, 148156 151944, 148203 151882, 148503 151759, 148952 151037, 149189 150370, 149415 150048, 149616 149930, 149685 149587, 149864 149120, 150203 149018, 150570 148569, 150653 148508, 150751 148258, 151041 147664, 151147 147523, 151239 147222, 151382 146938, 151520 146900, 151598 146737, 152092 146340, 152213 145792, 152277 145711, 152425 145305, 152677 145122, 152803 144856, 153029 144581, 153303 144453, 153504 143888, 153888 143618, 154069 143597, 154054 143275, 154158 142934, 154405 142478, 154714 142006, 154837 141897, 154994 141479, 155364 141452, 155548 141002, 155749 140685, 155985 140036, 156219 139845, 156321 139627, 156471 139499, 156725 139380, 156869 139089, 156956 138794, 157276 138354, 157269 138228, 158822 138256, 158803 138559, 158509 138773, 158437 139047, 158278 139309, 158133 139373, 158081 139532, 157956 139640, 157922 139800, 157784 139854, 157812 139993, 157672 140101, 157645 140263, 157504 140316, 157522 140461, 157373 140582, 157247 140835, 157171 140869, 157155 140949, 156957 141143, 156869 141414, 156786 141517, 156502 141945, 156178 142559, 156007 142646, 155956 142828, 155832 142965, 155698 143287, 155364 143645, 155286 143787, 154975 144260, 154836 144414, 154642 144822, 154469 145036, 154411 145190, 154227 145357, 153949 145786, 153632 146289, 153443 146448, 153380 146635, 153269 146771, 153126 147093, 152870 147551, 152540 148028, 152295 148235, 152229 148502, 152150 148593, 152019 148893, 151724 149156, 151545 149427, 151238 149657, 151139 149963, 151216 150269, 151188 150725, 151286 151087, 151798 151949, 151977 152406, 152177 152684, 151938 152577, 151804 152789, 151386 152843, 151134 153113, 150919 153512, 150751 153719, 150559 153866, 150334 154215, 150073 154721, 149949 154834, 149909 154952, 149504 155451, 149250 155908, 149015 156359, 148745 156557, 148636 156891, 148230 157457, 148004 157667, 147776 157703, 147659 157507, 147610 157133, 147496 156922, 147217 156646, 146882 156598, 146558 156703, 146394 157151, 146174 157335, 146098 157547, 145961 157677, 145503 158443, 145191 158768, 145094 158985, 144976 159057, 144861 159437, 144746 159618, 144550 159779, 144466 159933, 144261 160123, 144004 160497, 143866 160852, 143789 160851, 143846 160878, 143580 161088, 143494 161362, 143202 161830, 143146 161894, 142880 162327, 142645 162568, 142502 162797, 142739 162854, 142774 163111, 142876 163400, 142749 163505, 142888 163588, 143012 163821, 143247 164091, 143247 164253, 143372 164280, 143349 164116, 143604 163786, 143672 163640, 143547 163286, 144051 163134, 144338 163366, 144653 163371, 144674 163450, 144958 163448, 144923 163849, 145284 163879, 145409 163551, 145462 163220, 145589 163461, 145909 163323, 145973 163342, 146541 163241, 146366 163676, 146705 163960, 147074 163864, 147176 163455, 147527 163256, 147600 163276, 147971 163180, 148189 163177, 148142 163577, 148177 163661, 148667 163821, 148655 163942, 148315 164708, 148425 164786, 148359 164681, 148889 163898, 148954 163354, 149282 163201, 149602 163177, 149640 163396, 149971 163469, 150107 163789, 150241 163916, 150565 164014, 150688 163655, 150611 163457, 150601 163290, 151114 163083, 151224 163121, 151312 163338, 151600 163388, 151825 163343, 151825 163551, 151744 163753, 151915 164093, 151905 164382, 152242 164377, 152234 164006, 152326 163941, 152501 163545, 152761 163246, 152947 163246, 153209 163339, 153973 163107, 154022 163129, 154087 163303, 153625 163307, 153670 163762, 154075 163890, 154055 164003, 154145 163930, 154331 163431, 154495 163238, 154620 163271, 155363 163094, 155512 163108, 155453 163267, 155206 163579, 155380 163919, 155474 164280, 155476 164669, 155431 164754, 155497 165049, 155388 165476, 155862 165664, 155779 164972, 155822 164669, 155801 164385, 155483 164277, 155819 164081, 156041 163483, 156057 163346, 156270 163138, 156810 162905, 157036 162950, 157345 162774, 157308 162616, 156948 161938, 156933 161798, 156734 161570, 156689 161234, 156542 160893, 156609 160765, 156534 160873, 156403 160578, 156205 160042, 156378 159924, 156484 160128, 156525 160366, 156799 160404, 157141 161038, 157137 161111, 157440 161467, 157756 162105, 158218 162805, 158271 162806, 158743 162985, 158919 163222, 159178 163134, 159330 162836, 159400 162509, 159484 162406, 159393 162364, 159315 162064, 159452 161640, 159317 161288, 159376 160977, 159489 160854, 159372 160796, 159306 160516, 159391 160106, 159280 159748, 159358 159461, 159488 159305, 159352 159223, 159275 158941, 159602 157723, 159342 157017, 159577 156179, 159298 155498, 159503 154623, 159426 154422, 159284 153932, 159493 153101, 159403 152872, 159272 152385, 159491 151551, 159368 151196, 159421 150983, 159624 150739, 159415 150599, 159360 150422, 159443 150013, 159344 149652, 159395 149440, 159598 149195, 159387 149066, 159329 148881, 159405 148473, 159316 148109, 159368 147889, 159631 147890, 159542 147661, 159357 147547, 159285 147342, 159390 146926, 159495 146399, 159583 146099, 159421 145638, 159510 145515, 159782 145529, 159710 145288, 159507 145155, 159459 144969, 159562 144553, 159398 144096, 159489 143988, 159782 143999, 159700 143741, 159482 143611, 159413 143431, 159499 143020, 159370 142551, 159464 142448, 159762 142458, 159678 142196, 159457 142064, 159387 141887, 159467 141479, 159344 141007, 159439 140901, 159718 140905, 159639 140656, 159431 140525, 159360 140344, 159439 139936, 159406 139820, 159506 139707, 159797 139727, 159713 139472, 159761 139399, 159631 138962, 159700 138701, 159487 138579, 159357 138406, 159183 138262, 161310 138300, 165974 138218, 170748 137963, 175585 137525, 180428 136898, 181209 136764, 181213 137008, 181154 137385, 181138 137864, 181203 138621, 181160 138921, 181173 139792, 181227 140165, 181128 140875, 181127 141502, 181372 141424, 181550 141273, 181579 140839, 181439 140495, 181455 140273, 181386 139854, 181458 139715, 181195 139399, 181407 138953, 181439 138728, 181314 138274, 181332 138198, 181264 137913, 181214 137843, 181386 137408, 181415 137012, 181279 136751, 185219 136077, 186357 135831, 186193 136213, 186214 136472, 186370 137063, 186263 137234, 186097 137658, 186215 138023, 186369 138599, 186248 138789, 186139 139229, 186210 139575, 185932 139933, 185942 140917, 186255 141114, 185947 141479, 185977 142434, 186325 142645, 185876 142945, 185797 143177, 185968 143518, 186406 143598, 186679 143711, 186878 143719, 187223 143562, 187209 143252, 187255 143165, 187167 142862, 186746 142528, 186854 142168, 187134 141800, 187160 141685, 187129 141502, 186830 140955, 186793 140767, 186845 140625, 187119 140249, 187144 140136, 187111 139985, 186797 139413, 186799 138944, 186750 138651, 186761 138172, 186863 137846, 186800 137412, 186710 137112, 186717 136607, 186848 136299, 186660 135765, 189894 135066, 194392 133870, 198657 132499, 201412 131440, 201451 131614, 201484 131541, 201469 131417, 202618 130977, 205127 129826, 205173 130479, 205126 131289, 205178 131708, 205158 131280, 205206 130492, 205157 129812, 206243 129315, 209488 127541, 212324 125679, 214742 123750, 216717 121794, 217547 120809, 218272 119823, 218893 118840, 219414 117863, 219414 83293, 219920 83818, 220188 83799, 220136 83469, 220008 83405, 220138 83209, 220266 83335, 220548 83294, 220522 82885, 220601 82855, 220568 82536, 220674 82339, 220674 81843, 220766 81259, 220885 80785, 220977 80621, 220969 80532, 221533 80172, 221578 79395, 221753 78663, 222157 78320, 222262 78074, 222494 77800, 222527 77676, 222756 77313, 222839 77618, 222890 78396, 223018 79157, 223040 79544, 223166 79577, 222757 79792, 222589 79812, 222631 79973, 222756 79963, 224908 80278, 224891 81241, 224891 82016, 224702 82266, 224697 91951, 224889 92293, 224374 92482, 224375 92680, 224313 92870, 224313 93068, 224373 93258, 224374 93456, 224300 93645, 224274 94231, 224355 94421, 224374 95006, 224286 95196, 224259 95782, 224321 95971, 224322 96169, 224380 96359, 224381 96557, 224318 96746, 224318 96944, 224248 97134, 224281 97720, 224362 97909, 224331 98495, 224245 98685, 224269 99270, 224359 99460, 224341 100046, 224235 100235, 224246 100821, 224276 101011, 224305 101596, 224354 101786, 224350 102371, 224279 102561, 224264 103147, 224343 103337, 224387 103922, 224308 104112, 224290 104697, 224311 104887, 224330 105473, 224348 105662, 224346 106248, 224270 106438, 224259 107023, 224328 107213, 224329 107411, 224387 107600, 224388 107798, 224319 107988, 224278 108574, 224323 108764, 224336 109349, 224353 109539, 224362 110125, 224284 110314, 224294 110900, 224337 111089, 224302 111477, 224317 112063, 224384 112252, 224385 112450, 224328 112640, 224329 112838, 224263 113028, 224279 113613, 224363 113803, 224362 114389, 224267 114578, 224268 114776, 224360 114966, 224361 115164, 224305 115353, 224268 115939, 224347 116129, 224381 116714, 224317 116904, 224318 117102, 224257 117292, 224291 117877, 224374 118067, 224350 118653, 224255 118842, 224269 119428, 224356 119618, 224344 120203, 224254 120393, 224263 120978, 224349 121168, 224348 121754, 224263 121944, 224226 122529, 224277 122719, 224286 123304, 224343 123494, 224352 124080, 224283 124269, 224264 124855, 224330 125045, 224331 125243, 224387 125432, 224388 125630, 224314 125820, 224283 126207, 224317 126595, 224337 127181, 224355 127370, 224352 127956, 224290 128146, 224259 128731, 224315 128921, 224316 129119, 224389 129309, 224389 129507, 224325 129696, 224326 129894, 224277 130084, 224325 130529, 224365 131832, 224307 132022, 224279 132608, 224330 132798, 224310 133771, 224386 133961, 224344 134546, 224263 134736, 224273 135321, 224357 135511, 224351 136097, 224162 136285, 224170 136484, 223690 136646, 223677 137033, 222752 137306, 222753 137695, 222378 137797, 222381 138123, 222459 138167, 222501 138666, 222383 138698, 222007 138337, 222005 138676, 221632 138779, 221619 139543, 221259 139656, 221260 139861, 221416 140004, 221418 140330, 221042 140105, 220883 140149, 220882 140532, 220510 140636, 220517 141024, 220144 141125, 220128 141898, 219763 141991, 219750 142390, 219379 142496, 219375 142886, 218996 142986, 219000 143371, 218632 143478, 218638 143862, 218265 143966, 218253 144350, 218162 144384, 218206 144710, 217879 144846, 217882 145231, 217506 145334, 217517 145720, 217146 145823, 217133 146210, 216766 146315, 216764 147092, 216390 147188, 216399 147578, 216029 147682, 216022 147975, 216060 148062, 215820 148315, 215638 148403, 215631 148565, 215251 148663, 215280 149433, 214910 149523, 214902 149844, 215267 150022, 214894 150125, 214829 149949, 214525 150014, 214508 150420, 214353 150468, 214581 150847, 214143 150671, 214146 150905, 213775 151011, 213789 151393, 213412 151492, 213388 152277, 213012 152385, 213027 152604, 213214 152718, 213161 153366, 212934 153182, 212999 153112, 212944 152792, 212652 152863, 212675 153249, 212297 153349, 212287 153744, 211913 153846, 211896 154238, 211522 154341, 211536 154720, 211182 154826, 211189 155210, 210817 155310, 210813 155433, 210943 155667, 210953 155830, 210793 155880, 210773 156091, 210402 156196, 210382 156588, 210011 156692, 210013 157468, 209642 157565, 209664 157939, 209709 157991, 209649 157959, 209286 158054, 209268 158448, 208888 158547, 208866 158939, 208501 159044, 208521 159429, 208146 159529, 208171 159910, 207794 160011, 207767 160621, 207930 160757, 207954 161109, 207614 160843, 207378 160904, 207404 161226, 207571 161323, 207411 161327, 207383 161294, 207023 161382, 207057 161766, 206682 161867, 206657 162260, 206290 162369, 206260 162760, 205886 162863, 205915 163243, 205541 163347, 205574 163728, 205537 164111, 205169 164220, 205154 164539, 205414 164426, 205703 164468, 205732 164833, 205158 164751, 205033 164651, 204770 164720, 204795 165095, 204512 165182, 204584 165308, 204436 165272, 204453 165576, 204081 165678, 204059 166078, 203685 166180, 203655 166580, 203679 166810, 203940 167012, 203703 167077, 203574 166989, 203313 167061, 203344 167431, 203043 167523, 203152 167686, 202956 167869, 202950 167936, 202576 168039, 202520 168442, 202565 168803, 202187 168719, 202204 168913, 201830 169016, 201868 169392, 201495 169494, 201429 170288, 201058 170393, 201021 170788, 200712 170876, 200875 171089, 200644 170958, 200612 171289, 200239 171393, 200319 172145, 199946 172245, 199905 172642, 199531 172744, 199512 173004, 199646 173106, 199728 173470, 199291 173203, 199122 173247, 199164 173623, 198825 173749, 198984 174062, 198985 174449, 198847 174544, 198443 174414, 198421 174601, 198047 174704, 198002 175107, 198049 175476, 197680 175571, 197722 175954, 197352 176052, 197311 176456, 196940 176558, 196894 176957, 196518 177059, 196567 177435, 196190 177535, 196243 177915, 196199 178309, 195823 178409, 195783 178812, 195408 178914, 195457 179288, 195082 179389, 195137 179765, 194761 179866, 194720 180268, 194347 180370, 194297 180774, 194349 181142, 194257 181173, 194297 181447, 194021 181522, 194031 181618, 193663 181718, 193611 182120, 193234 182219, 193190 182624, 192819 182730, 192867 183096, 192497 183200, 192557 183573, 192185 183676, 192083 184478, 191710 184582, 191658 184983, 191286 185088, 191230 185491, 191288 185858, 190918 185953, 190974 186296, 191059 186314, 191116 186460, 190971 186419, 190903 186356, 190606 186433, 190549 186836, 190258 186921, 190299 187297, 190530 187593, 189800 187434, 189749 187448, 189809 187815, 189613 187873, 189642 188044, 189874 188640, 189471 188525, 189259 188357, 189128 188393, 189072 188794, 188692 188893, 188648 189257, 188785 189263, 188860 189435, 188657 189394, 188704 189670, 188332 189772, 188393 190139, 188020 190242, 187964 190646, 187596 190749, 187527 191158, 187597 191521, 187229 191623, 187293 191992, 186924 192092, 186862 192499, 186486 192601, 186424 193005, 186055 193112, 186121 193477, 185748 193580, 185821 193947, 185450 194051, 185386 194454, 185009 194553, 184943 194968, 185021 195330, 184650 195435, 184721 195797, 184537 195854, 184682 196226, 184321 196119, 184287 196308, 183909 196405, 183869 196697, 184047 196765, 184088 196958, 183889 197012, 183921 197182, 183546 197289, 183623 197647, 183256 197743, 183185 198155, 182813 198251, 182671 199072, 182305 199172, 182228 199583, 181845 199678, 181934 200052, 181562 200157, 181644 200520, 181260 200617, 181122 201435, 180750 201544, 180789 201697, 181025 201857, 181067 202038, 180880 202089, 180652 201958, 180460 202008, 180544 202370, 180176 202475, 180095 202878, 179729 202981, 179633 203401, 179730 203753, 178989 203963, 179076 204324, 178998 204731, 178755 204804, 178703 204915, 178611 204941, 178547 205244, 178380 205295, 178682 205634, 178217 205517, 178263 205710, 177883 205810, 177982 206175, 177598 206272, 177445 207094, 177074 207203, 177165 207560, 176996 207612, 177046 207804, 176849 207858, 176889 208025, 176520 208123, 176430 208532, 176068 208625, 175976 209051, 175428 209973, 175072 210060, 174998 210370, 175169 210440, 175123 210657, 174925 210711, 174880 210901, 174505 211003, 174235 211454, 173964 211932, 173784 212750, 173418 212850, 173344 213184, 173402 213250, 173419 213632, 173152 214093, 173044 213735, 173270 213286, 172945 213370, 172852 213788, 172323 214698, 155836 214698, 155808 214583, 155857 214296, 155679 214476, 155661 214698, 154486 214698, 154447 214569, 154466 214349, 154309 214698, 150462 214698, 150557 214639, 150571 214234, 150345 214296, 150390 214518, 150365 214698, 148599 214698, 148466 214404, 147917 214662, 147923 214698, 146434 214698, 146753 213964, 146735 213889, 146374 213526, 146641 213980, 146244 214698, 145085 214698, 145088 214639, 144986 214698, 127633 214698, 127633 200302, 53651 200302, 53784 199534, 54142 199451, 54217 199016, 54592 198913, 54515 198547, 54895 198447, 54810 198079, 55181 197977, 55254 197572, 55406 197525, 55447 197288, 55676 197166, 55704 197056, 55627 196700, 55989 196598, 55928 196239, 56281 196134, 56360 195726, 56721 195634, 56806 195213, 57169 195121, 57093 194741, 57132 194726, 57075 194683, 57057 194720, 56709 194825, 55928 194677, 55640 193971, 55196 193707, 55164 194005, 55069 194128, 55229 194351, 55739 194638, 55157 194768, 55124 194873, 54408 195069, 54470 194680, 54416 194640, 54096 194727, 53981 194426, 54036 194311, 53971 194042, 53732 193720, 53734 193331, 53823 193001, 53809 192535, 53737 192285, 53790 191446, 53685 190724, 53733 190342, 53849 189981, 53706 189523, 53742 189453, 53658 189177, 53592 189107, 53643 189014, 53700 188689, 53806 188417, 53783 187794, 53594 188203, 53584 188721, 53521 189084, 53589 189455, 53600 189779, 53567 189888, 53565 190276, 53500 190585, 53565 191051, 53675 191409, 53499 192105, 53547 192494, 53528 192612, 53654 192966, 53637 193327, 53485 193787, 53346 194046, 53566 194357, 53564 194440, 53021 194647, 52283 194890, 52309 193865, 52247 193430, 52104 193390, 52219 193142, 52181 192594, 52204 192030, 52106 191839, 52107 191723, 52182 191518, 52155 190656, 52007 190338, 52077 189574, 52041 188755, 51827 188040, 51893 187815, 51945 187232, 51866 186478, 51914 186278, 51851 186085, 51960 185677, 51711 185181, 51635 184991, 51545 184955, 51124 185544, 51028 185921, 51033 186424, 51342 186623, 51029 186976, 51011 187428, 51026 188012, 51409 188155, 51041 188494, 51040 189264, 51064 189412, 50980 189981, 50982 190209, 51076 190571, 51032 190968, 51097 191449, 51044 191735, 51054 192520, 51116 192887, 51183 193033, 51130 193269, 51293 193613, 50941 193930, 50907 194106, 51296 194388, 51436 194716, 51073 194825, 50336 195029, 49906 194767, 49915 194635, 49759 194640, 49209 194959, 49252 195038, 49164 195062, 49062 194999, 49044 194946, 48408 194737, 48444 194781, 48385 195162, 48035 195258, 47715 194981, 47679 194991, 47701 195373, 47760 195446, 47667 195443, 47317 195245, 47191 195124, 46967 195180, 46855 195082, 46612 195148, 46418 194948, 45896 195087, 45823 195046, 45509 195117, 45110 194919, 44344 195124, 43916 194859, 43177 195009, 42985 194896, 42879 194983, 42444 195101, 42292 194916, 42100 194928, 42081 194958, 41351 195168, 41250 195087, 40961 195437, 40494 195022, 40259 195000, 39805 194781, 39909 195007, 39500 195117, 39322 194955, 38729 195106, 38515 194975, 38341 195063, 38351 195215, 38222 195257, 38246 195495, 37995 195433, 37994 195679, 37649 195800, 37613 196196, 37240 196298, 37205 196691, 36989 196758, 37213 197050, 36859 197019, 36873 197175, 36501 197279, 36718 197608, 36867 197940, 36526 197815, 36489 198038, 36134 198134, 36096 198546, 35791 198637, 35989 198829, 35734 198708, 35755 199026, 35390 199132, 35442 199555, 35409 199516, 35044 199613, 35028 199922, 35249 200071, 35013 200138, 34981 200302, 20742 200302, 20744 197971, 20553 197628, 20546 197240, 20759 197051, 20949 196801, 20930 196420, 20932 195645, 20744 195302, 20737 195112, 20857 194911, 21062 194748, 22089 194491, 22169 194439, 22687 194173, 23062 194242, 23232 194116, 23298 193921, 23060 193221, 22685 193510, 22590 193316, 22602 192927, 22595 192144, 22536 190992, 22569 190593, 22558 189427, 22518 189054, 22529 188263, 22574 187778, 22532 186712, 22494 186341, 22492 185548, 22510 184772, 22473 184018, 22482 183221, 22549 182850, 22596 182074, 22575 181298, 22568 180514, 22569 179350, 22544 178976, 22551 177819, 22593 177801, 22537 177425, 22684 177294, 23019 177290, 22990 176949, 23224 176670, 23224 176497, 23359 176384, 23363 176072, 23187 175868, 23431 175976, 23712 175883, 23685 175596, 23595 175407, 24103 175411, 24113 175028, 24175 174928, 24543 174969, 24568 174191, 24498 173435, 24575 173026, 24557 172597, 24619 172173, 24627 171073, 24581 170311, 24667 169208, 24612 168364, 24656 167681, 24689 167180, 24689 166553, 24695 166164, 24707 165624, 24711 165023, 24679 164470, 24650 164090, 24913 163729, 24954 163619, 24698 163300, 25193 163063, 25633 163045, 25657 163241, 25767 163121, 26023 163291, 26250 163264, 26539 163464, 26455 163207, 26690 163062, 27138 162950, 27520 163186, 27771 163107, 27896 163124, 28216 163058, 28637 162871, 29392 162872, 29764 162750, 29954 163024, 30027 163271, 29648 163368, 29388 163566, 29719 163864, 29748 163953, 29847 163930, 30131 163999, 30306 163504, 30271 163324, 30372 163145, 30637 162954, 30886 163056, 31159 163081, 31198 163424, 31167 163465, 31250 163740, 31454 163604, 31888 163783, 32056 163304, 31975 163178, 31916 163200, 31613 163151, 31409 163012, 31631 162856, 31918 162783, 32022 162505, 32083 162137, 32399 161966, 32450 161676, 32717 161625, 32832 161459, 32736 161100, 33092 161157, 33190 161070, 33206 160969, 33096 160572, 33555 160537, 33485 160236, 33424 160134, 33469 160073, 33905 160057, 33753 159656, 33812 159557, 33918 159612, 34237 159580, 34262 159188, 34336 159109, 34298 158792, 34600 158834, 34703 158718, 34623 158254, 34656 158212, 35091 158198, 35058 157837, 35014 157759, 35298 157549, 35431 157288, 35542 157228, 35743 156938, 35873 156488, 36210 156355, 36178 155889, 36630 155855, 36633 155765, 36513 155418, 36978 155373, 36798 154945, 36831 154900, 37301 154898, 37220 154441, 37409 154144, 37703 153922, 37776 153663, 38009 153472, 38029 153147, 38382 153034, 38406 152635, 38799 152550, 38815 152117, 39196 152020, 39165 151652, 39548 151556, 39487 151186, 39856 151082, 39842 151010, 39941 150739, 40108 150549, 39917 150261, 40208 150437, 40377 150241, 40393 150083, 40199 149760, 40585 149785, 40728 149752, 40695 149613, 40505 149288, 40890 149314, 41032 149281, 41006 148856, 41390 148767, 41455 148366, 41522 148223, 41288 147910, 41252 147909, 41279 147862, 41295 147898, 41688 147964, 41811 147891, 41812 147756, 41589 147451, 41507 147451, 41612 147245, 41604 147425, 41987 147486, 42320 147229, 42254 147156, 42326 147222, 42506 146937, 42535 146497, 42838 146326, 42849 146006, 43283 145940, 43054 145486, 43539 145451, 43457 145118, 43264 145227, 43048 145457, 42962 145398, 42680 145550, 42693 145188, 42769 144734, 42677 144417, 42524 144312, 42273 144244, 42204 144648, 41881 144798, 41865 145028, 41781 145170, 41734 145588, 41604 145624, 41264 145594, 41383 146102, 41220 146127, 40890 146070, 40957 145758, 41232 145563, 41396 145157, 41265 144417, 41259 144031, 41189 143894, 41270 143611, 41707 143270, 41753 143147, 41503 142801, 41481 142535, 41423 142436, 41372 142148, 41293 141961, 41130 141740, 41052 141406, 40816 141051, 40755 140524, 40923 140221, 41306 140198, 41678 140428, 41920 140749, 41974 140970, 42118 141267, 42297 141421, 42410 141650, 42540 141742, 42588 141899, 42733 142077, 42901 142524, 43088 142581, 43276 142419, 43318 142692, 43565 142805, 43645 143089, 43548 143115, 43286 143088, 43200 142862, 43047 143017, 43091 143141, 43376 143451, 43414 143592, 43194 143784, 43277 144085, 43378 144226, 43539 144633, 43582 144598, 43887 144674, 44002 144544, 44035 144434, 44026 144089, 44438 144027, 44420 143535, 44644 143346, 44711 143070, 44971 142901, 44968 142627, 45029 142540, 45428 142297, 46089 142293, 45516 141839, 45500 141670, 45751 141497, 45670 141272, 45665 141137, 45773 141013, 46200 141131, 46088 140768, 45780 140628, 45731 140479, 45515 140168, 45091 140033, 44753 140032, 45077 140607, 45058 140711, 44746 140816, 44439 140988, 44447 141219, 44337 141325, 44296 141479, 43892 141371, 44138 140679, 44330 140420, 44588 139939, 44694 139684, 44801 139571, 45065 139143, 45481 138553, 46199 138370, 46174 138033, 46015 137687, 45721 137570, 45651 137400, 45687 137293, 45607 136830, 45758 136630, 46151 136821, 46043 136518, 46111 136493, 45929 136161, 46098 135727, 45786 135563, 45678 135454, 45620 135309, 46175 135318, 46146 135527, 46249 135379, 46260 135193, 46144 134939, 46088 134941, 45909 134615, 46072 134203, 46116 134194, 46256 133609, 46109 133397, 46206 133163, 46060 133409, 45872 133204, 45851 133081, 45993 132655, 45970 132557, 46118 132296, 46329 132443, 46280 131801, 46313 131408, 46279 131025, 46185 130664, 46352 130231, 46361 129727, 46325 129462, 46163 129120, 46366 128676, 46354 128292, 46426 128021, 46394 127892, 46128 127891, 46238 128324, 46139 128703, 45825 128677, 45691 128726, 45639 128875, 45368 129174, 45201 129207, 45197 129383, 45015 129656, 44744 130123, 44516 130124, 44637 130313, 44552 130526, 44338 130731, 44266 130722, 44272 130801, 44081 131022, 43977 131269, 44010 131373, 43660 131488, 43780 131865, 43389 131959, 43346 132264, 43057 132455, 43001 132886, 42811 132998, 42630 132990, 42652 133183, 42553 133395, 42350 133593, 42201 133516, 42273 133674, 42097 133892, 42070 134117, 42112 134290, 41934 134331, 41594 134306, 41795 134581, 41844 134768, 41648 134814, 41363 134806, 41455 135061, 41430 135212, 41286 135284, 41044 135301, 41094 135548, 40922 135983, 40951 136094, 40596 136206, 40643 136554, 40284 136665, 40192 136817, 39909 136765, 40025 137004, 39907 137111, 39954 137411, 40303 138091, 40431 138443, 40502 139104, 40548 139239, 40521 139370, 40374 139458, 40131 139385, 39856 139474, 39678 139425, 39674 139039, 39459 138930, 39338 139012, 39194 139557, 39496 139909, 39046 139841, 38913 139883, 38918 140021, 39153 140362, 38737 140298, 38610 140357, 38430 140542, 38740 140626, 38845 140817, 38835 140976, 38684 141034, 38549 140897, 38386 140579, 38170 140801, 38164 141003, 38440 141316, 38455 141466, 38305 141504, 37913 141464, 38131 141787, 38161 141948, 37996 141984, 37574 141777, 37251 141717, 37439 141977, 37812 142263, 37623 142577, 37478 142353, 37260 142252, 36934 142187, 37128 142450, 37189 142820, 37229 142849, 37399 143344, 37209 143381, 36991 143262, 36837 143099, 36582 143099, 36657 143354, 37036 143639, 37079 143814, 36893 143843, 36471 143622, 36110 143543, 36302 143839, 36712 144115, 36709 144305, 36528 144350, 36359 144210, 35906 143947, 35709 143708, 35453 143802, 35420 144120, 35041 144221, 35079 144595, 34707 144699, 34704 145134, 34616 145264, 34361 145262, 34397 145524, 34243 145745, 33932 145728, 34084 145997, 33916 146228, 33600 146204, 33721 146485, 33626 146582, 33546 146943, 33213 147082, 33225 147396, 33103 147585, 32812 147587, 32875 147880, 32791 147995, 32683 148324, 32391 148479, 32344 148776, 32263 148744, 32306 148811, 32023 148935, 32001 149191, 31873 149187, 31925 149303, 31684 149423, 31667 149831, 31599 149887, 31272 149912, 31338 150239, 31302 150340, 31218 150409, 30875 150404, 31000 150719, 30962 150819, 30879 150881, 30531 150882, 30649 151203, 30513 151452, 30221 151396, 30293 151688, 30180 151778, 30125 152142, 29770 152255, 29855 152676, 29431 152741, 29485 153152, 29063 153215, 29095 153652, 29014 153689, 28668 153710, 28718 154148, 28635 154233, 28302 154218, 28397 154534, 28283 154694, 27951 154702, 28007 155029, 27914 155256, 27651 155237, 27720 155494, 27570 155576, 27582 155984, 27165 156054, 27252 156486, 26809 156539, 26902 156882, 26886 156974, 26801 157037, 26438 157017, 26530 157372, 26413 157583, 26079 157533, 26157 157862, 26083 157931, 26092 158312, 25724 158418, 25701 158778, 25336 158889, 25372 159315, 24939 159372, 25022 159723, 25010 159817, 24923 159913, 24604 159896, 24689 160202, 24625 160290, 24561 160566, 24392 160497, 24501 160642, 24249 160776, 24184 160994, 23963 160947, 23923 161187, 23823 161230, 23864 161656, 23453 161727, 23512 162166, 23426 162246, 23083 162193, 23104 161848, 23396 161683, 23395 161293, 23769 161189, 23760 160791, 23981 160574, 24148 160316, 24213 159984, 24501 159818, 24609 159507, 24906 159347, 24911 158979, 24868 158922, 24935 158950, 25263 158834, 25271 158492, 25241 158441, 25300 158448, 25582 158314, 25624 157967, 25941 157822, 26022 157487, 26254 157272, 26417 157015, 26533 156711, 26762 156505, 26908 156238, 27118 156017, 27153 155813, 27235 155628, 27445 155475, 27498 155117, 27821 154979, 27860 154637, 28074 154423, 28170 154208, 28436 153927, 28754 153371, 28990 153161, 28971 152783, 29014 152793, 29302 152651, 29356 152327, 29665 152173, 29720 151806, 29922 151562, 30246 151043, 30458 150832, 30606 150574, 30799 150346, 30883 150000, 31181 149834, 31203 149443, 31522 149304, 31523 148950, 31866 148829, 31899 148492, 32132 148270, 32304 147997, 32428 147678, 32688 147479, 32744 147141, 32716 147076, 32782 147087, 33060 146949, 33104 146655, 33049 146539, 33180 146542, 33402 146421, 33445 146102, 33515 146092, 33715 145931, 33803 145633, 34062 145229, 34195 145115, 34298 144806, 34610 144629, 34523 144459, 34768 144387, 34974 144464, 34925 144146, 34959 143859, 35017 143862, 34971 143816, 35190 143598, 35309 143268, 35384 143163, 35590 143080, 35676 142848, 35922 142563, 35952 142385, 36088 142201, 36247 142093, 36270 141910, 36364 141813, 36464 141527, 36760 141288, 36797 140990, 36741 140867, 36881 140870, 37144 140783, 37124 140513, 37068 140402, 37196 140409, 37462 140312, 37442 139943, 37791 139822, 37916 139485, 37949 139124, 37808 138992, 37991 139062, 38306 138967, 38125 138692, 38288 138625, 38662 138798, 38602 138489, 38631 138267, 38707 138224, 38687 138147, 38898 137983, 38953 137685, 38938 137562, 39067 137477, 39368 137515, 39389 137178, 39636 136926, 39665 136715, 39639 136603, 39759 136596, 40037 136182, 40115 135817, 40083 135759, 40139 135790, 40485 135689, 40495 135325, 40313 135151, 40556 135225, 40758 135091, 40804 134852, 40653 134709, 40854 134774, 41039 134616, 41134 134375, 41116 134326, 41160 134344, 41448 134187, 41751 133540, 41896 133390, 42097 132930, 42435 132467, 42397 132340, 42539 132343, 42669 132180, 42742 131995, 42616 131835, 42823 131864, 42973 131724, 43019 131387, 43281 131168, 43304 131066, 43568 130606, 43388 130428, 43636 130481, 43801 130347, 43795 130156, 43605 129929, 43904 129974, 44094 129892, 44147 129672, 44107 129536, 44231 129574, 44446 129400, 44464 128917, 44736 128646, 45001 128164, 45079 128181, 45337 127936, 45449 127764, 45583 127340, 45514 127020, 45601 126559, 45710 126404, 45990 125678, 45845 125361, 46150 125435, 46524 125322, 46735 125318, 46891 125248, 46994 125088, 47200 124959, 47051 124833, 47012 124622, 47332 123974, 47551 123712, 47636 124064, 47612 124395, 47862 124128, 47948 123978, 47899 123704, 47588 123688, 47848 123507, 47809 123241, 48226 122573, 48401 122692, 48180 123139, 48348 123290, 48552 123258, 48582 123030, 48823 122575, 49070 122120, 48949 121956, 48769 121814, 48842 121560, 49093 121400, 49357 121705, 49400 121685, 49526 121284, 49597 121201, 49511 121126, 49365 120875, 49462 120651, 49683 120493, 49754 120770, 49897 120977, 50075 120840, 50111 120672, 50092 120298, 50293 119758, 50309 119455, 50552 118804, 50523 118620, 50712 118324, 50902 117773, 51108 117446, 51379 117246, 51510 117575, 51517 117961, 51449 118367, 51490 118548, 51632 118705, 51703 119073, 51913 119241, 52174 119720, 52266 119918, 52518 120220, 52747 120204, 52902 120084, 53122 120235, 52899 120400, 52921 120677, 52607 121083, 52419 120554, 52090 120510, 52030 120145, 51884 120043, 51747 120083, 51541 120042, 51332 120133, 51295 120347, 51204 120546, 51014 120678, 50859 120682, 50848 120857, 50589 121474, 50352 121769, 50063 122035, 49944 122268, 49676 122729, 49629 122904, 49445 123056, 49316 123078, 49294 123221, 49148 123421, 48978 123837, 48379 124456, 48045 125115, 48247 125384, 48522 125372, 48465 125595, 48696 125636, 48722 125699, 49504 125424, 49740 125426, 49729 125598, 49922 125637, 49973 125734, 50683 125475, 51119 125379, 51328 125378, 51370 125669, 51685 125623, 51716 125654, 52431 125418, 52730 125382, 52774 125564, 52916 125456, 53103 125610, 53852 125381, 54198 125365, 54361 125677, 55145 125393, 55431 125345, 55889 125188, 56038 125250, 56065 125485, 56292 125407, 56410 125441, 56650 125267, 56842 124761, 57158 124609, 57469 123748, 57586 123662, 57714 123400, 57990 123218, 58250 122759, 58316 122687, 58422 122362, 58563 122232, 58646 122048, 58806 121989, 59114 121369, 59204 121281, 59334 120967, 59561 120795, 59610 120702, 59690 120667, 60008 119990, 60333 119818, 60553 119361, 60834 118896, 60938 118614, 61094 118437, 61163 118287, 61281 118270, 61465 118078, 61716 117491, 61734 117122, 61801 117080, 61683 116724, 61502 116386, 61243 115807, 61128 115713, 61060 115437, 61066 115267, 61160 115194, 61444 115178, 61523 114830, 61592 114694, 61497 114342, 61378 113623, 61571 113222, 61856 113438, 62189 113437, 62461 113595, 62773 114101, 63065 114408, 63100 114495, 63338 114735, 63280 114348, 63292 113958, 63198 113596, 63208 113205, 63248 113111, 63610 113484, 63790 113605, 63881 113797, 63865 114139, 63828 114198, 63879 114212, 64146 113724, 64300 113404, 64437 113257, 64451 112935, 64662 112807, 64460 112758, 64399 112491, 64248 112144, 64176 111813, 64013 111417, 64362 110612, 64355 110177, 64265 109919, 64286 109761, 64205 109229, 63927 108435, 64121 108622, 64333 108918, 64580 109126, 64683 109313, 64955 109626, 65204 110078, 65439 110315, 65767 110778, 65887 110856, 66091 110595, 66354 110516, 66426 110428, 66629 109942, 66971 109142, 67304 108987, 67666 108123, 67868 107716, 68206 107630, 68557 106719, 68909 106627, 69127 106156, 69469 105309, 69830 105183, 70092 104527, 70164 104281, 70381 103893, 70736 103755, 71007 102927, 71354 102671, 71573 102332, 71631 102297, 71957 101514, 72324 101447, 72552 100953, 72626 100668, 72538 100569, 72817 100144, 73198 100022, 73597 99116, 73792 98745, 74099 98656, 74284 98158, 74484 97723, 74863 97584, 75067 97162, 75204 96738, 75442 96435, 75710 96262, 75940 95784, 76329 94963, 76621 94885, 77005 93991, 77388 93827, 77781 93010, 77992 92872, 78050 92754, 78153 92712, 78334 92391, 78589 91933, 78720 91630, 78839 91477, 78859 91160, 79028 91037, 78871 90928, 78732 90731, 78677 90577, 78338 90063, 78274 89693, 78140 89295, 78212 89205, 78439 89084, 78466 88866, 78608 88688, 78536 88071, 78526 87750, 78617 87662, 78655 87448, 79177 87641, 79385 87768, 79521 87602, 79581 87785, 79745 87824, 79979 87811, 80102 87329, 80218 87223, 80250 87099, 80362 87095, 80620 87347, 80928 87386, 81115 87683, 81346 87440, 81668 87230, 81710 87111, 81678 86822, 81393 86505, 81274 86145, 81099 85911, 80908 85434, 80970 85125, 81171 84913, 81591 84843, 81481 84518, 81505 84440, 81349 84159, 81323 83774, 81224 83555, 81373 83369, 81378 83311, 81434 83307, 81814 83650, 82465 84233, 82768 84665, 82979 84878, 83214 84851, 83185 84481, 83518 84355, 83507 83999, 83839 83873, 83798 83497, 84160 83392, 84115 83014, 84272 82955, 84410 82842, 84433 82505, 84806 82375, 84729 81997, 84752 81962, 85137 81900, 85085 81512, 85355 81348, 85364 81048, 85448 80712, 85726 80466, 85886 80135, 86019 79713, 86265 79534, 86409 79231, 86689 78877, 86768 78830, 86771 78741, 86890 78545, 86992 78247, 87334 77847, 87457 77806, 87441 77677, 87514 77495, 87660 77360, 87829 77021, 87985 76863, 88001 76795, 88069 76754, 88587 75805, 88818 75637, 88927 75371, 89228 75239, 89363 74974, 89285 74879, 89251 74910, 88898 74902, 88554 74696, 88473 74597, 88369 74625, 88086 74603, 87944 74666, 87694 74578, 87315 74644, 87168 74800, 86954 74854, 86860 74954, 86226 75230, 85738 75348, 85795 75735, 85515 75736, 85002 75861, 84746 76025, 84658 76311, 84429 76344, 83935 76519, 83754 76737, 83754 76822, 83658 76781, 83200 76830, 83112 76977, 83115 77116, 82793 77233, 82233 77373, 81764 77567, 81492 77647, 81129 77849, 81018 77870, 80828 78024, 80817 78072, 80482 78183, 80526 78479, 80461 78693, 80221 78693, 80333 78912, 80198 79023, 80132 79155, 79888 79153, 79959 79385, 79856 79479, 79868 79835, 79501 79926, 79601 80252, 79713 80425, 79614 80642, 79630 80715, 79849 80983, 79881 81240, 79640 81402, 79591 81388, 79777 81867, 79700 81868, 79284 81638, 79048 81744, 79016 82012, 79380 82280, 79298 82308, 78969 82216, 78734 82518, 78978 82764, 78639 82679, 78453 82990, 78596 83232, 78304 83093, 78065 83218, 78022 83487, 78174 83640, 77974 83553, 77737 83690, 77790 83937, 78029 84238, 77659 84124, 77416 84170, 77488 84407, 77662 84688, 77336 84639, 77098 84654, 77290 85135, 77005 85085, 76756 85122, 76815 85368, 77156 85679, 77180 85762, 77092 85776, 76679 85565, 76428 85621, 76485 85864, 76822 86162, 76841 86236, 76764 86247, 76361 86118, 76114 86127, 76175 86360, 76422 86601, 76479 86707, 76436 86716, 75849 86452, 75607 86288, 75351 86318, 75420 86564, 75420 86713, 75271 86695, 74943 86742, 75027 87150, 74616 87225, 74722 87647, 74267 87692, 74382 88122, 73941 88179, 74052 88606, 73966 88648, 73629 88681, 73733 89000, 73422 89482, 73091 89649, 73000 89976, 72898 90081, 72741 90505, 72573 90809, 72488 90785, 72483 90893, 72217 91040, 72113 91382, 71898 91897, 71810 91966, 71541 92034, 71236 92785, 71002 93089, 70815 93064, 70735 93310, 70609 93419, 70534 93753, 70455 93871, 70048 94745, 69688 94832, 69606 95170, 69377 95717, 69238 95848, 69014 95841, 68757 96566, 68628 96701, 68391 97113, 68112 97263, 68024 97542, 67922 97661, 67789 97994, 67543 98530, 67442 98615, 67182 98652, 67103 98958, 67012 99070, 66845 99506, 66645 99795, 66561 99772, 66526 99891, 66290 100061, 66188 100372, 65929 100903, 65793 101098, 65624 101113, 65568 101316, 65395 101455, 65280 101783, 65037 102340, 64885 102508, 64681 102470, 64627 102738, 64482 102852, 64369 103196, 64108 103683, 63749 103812, 63422 104716, 63297 104824, 63023 104777, 62908 105147, 62852 105207, 62722 105705, 62630 105998, 62894 106702, 63153 106862, 63219 107001, 63235 107280, 62987 107287, 62854 107100, 62865 106744, 62561 107180, 62508 107523, 62253 107455, 62020 107442, 61972 107730, 61728 108413, 61608 108604, 61740 108724, 61768 108949, 61516 109505, 61379 109632, 61269 109050, 60951 109294, 60873 109581, 60942 109889, 61018 109930, 60938 109999, 60790 110379, 60585 110863, 60535 110905, 60473 110854, 60536 110780, 60665 110413, 60487 110190, 60232 110275, 60113 110803, 59939 111236, 59695 111343, 59551 111309, 59516 111504, 59345 111690, 59201 112158, 58978 112343, 58766 112023, 58674 112009, 58653 112127, 58406 112277, 58212 112613, 58152 112560, 58157 112651, 57871 112813, 57759 113148, 57671 113232, 57494 113681, 57315 114009, 57114 113773, 56985 114136, 56928 114153, 56840 114563, 56597 115057, 56490 115219, 56382 115076, 56599 114316, 56925 114149, 57218 113297, 57425 112785, 57539 112629, 57704 112544, 57842 112350, 57972 112277, 58099 111784, 58330 111436, 58675 111287, 58757 110937, 58969 110491, 58976 110351, 59328 110217, 59541 109851, 59711 109411, 59900 109155, 59969 109115, 60184 108608, 60437 108439, 60779 107669, 60765 107536, 60870 107565, 61137 107430, 61237 107156, 61469 106704, 61488 106555, 61669 106414, 61809 106362, 61884 106204, 62048 106030, 62168 105738, 62416 105282, 62420 105217, 62726 105004, 62866 104771, 62757 104641, 62751 104132, 63120 104224, 63333 103841, 63647 103635, 63753 103365, 63847 103235, 64018 102810, 64222 102487, 64545 102243, 64658 101954, 64951 101486, 64936 101414, 65027 101347, 65264 101013, 65460 100856, 65721 100266, 66203 99592, 66377 99453, 66513 99120, 66178 98940, 66334 98782, 66363 98505, 66688 98552, 66779 98600, 67066 98457, 67196 98157, 67442 97702, 67448 97599, 67754 97391, 67967 97041, 68092 96749, 68380 96282, 68607 95832, 68903 95654, 69201 94894, 69212 94759, 69582 94650, 69800 94251, 69976 93799, 70484 93230, 70587 92964, 70873 92498, 71078 92053, 71066 91968, 71134 91991, 71410 91818, 71605 91448, 71722 91102, 71727 90972, 71839 90970, 72095 90860, 72434 90132, 72661 89682, 72648 89619, 72703 89621, 72977 89426, 73095 89175, 73363 88855, 73498 88595, 73700 88374, 73823 88102, 73848 87772, 73776 87718, 73855 87757, 74112 87588, 74158 87269, 74366 87056, 74490 86790, 74751 86614, 74842 86321, 75052 86118, 75172 85910, 75414 85663, 75586 85342, 75753 85195, 75831 84986, 75890 84935, 75892 84867, 76051 84683, 76151 84452, 76400 84186, 76416 83886, 76040 83619, 76455 83800, 76693 83674, 76742 83404, 76493 83186, 76788 83356, 77054 83222, 77088 82926, 76818 82710, 77116 82887, 77368 82740, 77440 82448, 77383 82402, 77447 82439, 77697 82269, 77769 81978, 77711 81932, 77775 81971, 78020 81796, 78084 81513, 77892 81361, 78102 81489, 78338 81321, 78351 81060, 78077 80795, 78424 80965, 78699 80838, 78675 80543, 78386 80310, 78744 80431, 79000 80292, 79000 80005, 78699 79770, 79064 79897, 79354 79822, 79306 79528, 78978 79218, 78848 79262, 78973 79173, 79389 79407, 79628 79318, 79632 79063, 79392 78802, 79719 78942, 79941 78842, 79980 78596, 79874 78447, 80051 78504, 80310 78408, 80284 78140, 79913 78126, 79601 78254, 79207 78320, 78862 78307, 78495 78475, 78090 78328, 77955 78416, 77909 78599, 77741 78644, 77503 78511, 77333 78476, 76820 78521, 76577 78635, 76490 78634, 76402 78919, 76238 79022, 76065 79028, 76124 79193, 76079 79388, 75729 79527, 75782 79695, 75741 79889, 75589 80020, 75403 80067, 75460 80241, 75425 80432, 75263 80507, 75018 80523, 75115 80938, 74695 80991, 74795 81409, 74623 81581, 74533 81575, 74570 81658, 74462 81873, 74295 82050, 74210 82046, 74238 82126, 73966 82515, 73882 82516, 73911 82597, 73638 82987, 73553 82987, 73587 83066, 73309 83445, 73196 83456, 73245 83555, 73134 83775, 72983 83943, 72837 83958, 72892 84090, 72809 84293, 72663 84467, 72532 84469, 72576 84591, 72411 85023, 72437 85100, 72355 85103, 72163 85263, 72097 85495, 72123 85584, 72029 85591, 71839 85740, 71752 85974, 71774 86045, 71699 86048, 71486 86200, 71424 86509, 71370 86514, 71162 86681, 71059 86962, 70845 87169, 70712 87431, 70505 87654, 70422 87957, 70178 88152, 70088 88445, 69853 88639, 69913 89027, 69752 89045, 69542 89131, 69541 89357, 69584 89509, 69425 89528, 69216 89616, 69204 89844, 69239 89981, 68860 90081, 68869 90333, 68811 90469, 68467 90626, 68208 91289, 67924 91755, 67889 91859, 67614 92110, 67586 92235, 67399 92455, 67230 92871, 67048 93012, 66897 93037, 66861 93210, 66695 93431, 66593 93670, 66371 94119, 66317 94292, 66134 94416, 65977 94447, 65926 94628, 65786 94834, 65618 95279, 65360 95558, 65142 96006, 64885 96268, 64693 96653, 64456 96973, 64179 97250, 64108 97453, 63799 98093, 63580 98287, 63484 98289, 63457 98407, 63274 98651, 63205 98864, 62891 99337, 62744 99538, 62560 99662, 62509 99829, 62285 100278, 61994 100746, 61964 100827, 61669 101067, 61619 101236, 61463 101463, 61284 101891, 61057 102231, 60771 102476, 60726 102644, 60564 102859, 60370 103268, 60131 103601, 59835 103829, 59471 104666, 59279 104871, 59183 104915, 59165 105010, 58967 105284, 58896 105471, 58612 105937, 58574 106077, 58277 106306, 58237 106427, 58040 106637, 57870 107078, 57662 107450, 57339 107630, 57289 107850, 57002 108493, 56792 108641, 56660 108643, 56618 108809, 56446 109020, 56283 109471, 55796 110063, 55763 110206, 55149 111046, 55057 111046, 55093 111165, 54918 111601, 54739 111901, 54466 112068, 54283 111621, 53961 111087, 53952 110845, 53872 110725, 53693 110678, 53332 110313, 53381 110472, 53115 110638, 53065 110946, 52785 111411, 52561 111950, 52215 112089, 52082 112517, 51884 112870, 51572 113104, 51511 113310, 51346 113528, 51151 113945, 50940 114261, 50649 114467, 50578 114729, 50290 115196, 50066 115645, 50042 115752, 49679 115868, 49567 116299, 49390 116681, 49047 116850, 48923 117121, 48671 117578, 48439 118029, 48434 118074, 48128 118259, 48069 118518, 47780 118984, 47433 119476, 47132 119666, 47044 120102, 46766 120543, 46553 120871, 46272 121137, 45929 121818, 45924 121913, 45580 122047, 45551 122309, 45488 122467, 45325 122635, 45169 122626, 45168 122802, 45016 122973, 44947 123250, 44577 123772, 44408 124172, 44399 124309, 44020 124404, 43929 124811, 43764 125153, 43440 125428, 43152 125835, 42871 125863, 42992 126112, 42948 126271, 42757 126560, 42488 126775, 42464 127032, 42514 127191, 42050 127241, 42166 127617, 41770 127708, 41824 128091, 41467 128209, 41470 128467, 41302 128901, 41348 128996, 41239 129002, 40994 129108, 40901 129250, 40695 129252, 40792 129428, 40610 129707, 40394 129713, 40495 129897, 40365 130056, 40330 130495, 39925 130565, 39967 130994, 39797 131046, 39517 131051, 39642 131294, 39669 131462, 39206 131510, 39327 131768, 39284 131926, 39129 132056, 38922 132043, 38941 132262, 38837 132424, 38777 132694, 38829 132820, 38416 132897, 38471 133255, 38132 133381, 38142 133744, 37792 133869, 37741 134279, 37605 134345, 37360 134374, 37358 134634, 37301 134773, 37169 134912, 36983 134925, 37001 135119, 36884 135285, 36838 135551, 36879 135680, 36473 135759, 36491 136105, 36156 136227, 36149 136575, 35821 136719, 35844 136987, 35800 137143, 35652 137268, 35446 137262, 35471 137477, 35410 137628, 35292 137742, 35065 137746, 35152 137952, 35090 138101, 34972 138208, 34739 138216, 34824 138429, 34734 138584, 34658 138955, 34318 139085, 34333 139491, 33904 139557, 34003 139964, 33585 140038, 33654 140300, 33636 140444, 33491 140611, 33338 140613, 33362 140768, 33220 140941, 33107 141226, 33122 141272, 32815 141416, 32815 141764, 32486 141894, 32439 142220, 32147 142395, 32109 142786, 31985 142882, 31768 142917, 31804 143134, 31751 143295, 31617 143402, 31401 143411, 31469 143613, 31406 143768, 31278 143877, 31056 143886, 31124 144095, 30896 144489, 30815 144482, 30829 144564, 30624 144738, 30573 145021, 30600 145117, 30221 145216, 30305 145630, 29882 145700, 29932 146114, 29517 146182, 29530 146608, 29397 146674, 29140 146695, 29136 147087, 29026 147227, 28847 147248, 28868 147427, 28676 147675, 28486 147724, 28501 147916, 28403 148041, 28319 148382, 28012 148539, 28002 148939, 27892 149048, 27675 149078, 27736 149288, 27643 149457, 27503 149570, 27271 149560, 27325 149789, 27141 150187, 27073 150175, 27098 150238, 26888 150412, 26785 150663, 26720 150662, 26746 150722, 26538 150912, 26492 151278, 26131 151389, 26171 151808, 26024 151878, 25775 151892, 25836 152135, 25803 152287, 25665 152359, 25419 152381, 25474 152622, 25430 152774, 25294 152920, 25105 152914, 25146 153099, 25038 153258, 24951 153583, 24649 153736, 24677 154136, 24304 154238, 24300 154620, 23915 154714, 23960 154975, 23940 155126, 23800 155238, 23583 155241, 23631 155453, 23438 155900, 23166 156080, 23172 156471, 22797 156572, 22780 156964, 22089 156891, 22096 156834, 21811 156510, 22079 156115, 21751 156033, 22130 155726, 22312 155687, 21437 155357, 21606 155241, 21213 154979, 21671 154823, 22703 154562, 22683 153811, 23054 153981, 23059 153675, 23426 153602, 23674 153763, 23456 153563, 23432 153199, 23284 153222, 23281 152914, 23442 153180, 23805 153124, 24028 153254, 23850 153067, 23800 152701, 23563 152635, 23799 152586, 23879 152284, 23876 151586, 24112 151606, 24545 151548, 24558 151331, 24995 151279, 24947 151216, 24917 150840, 25287 150782, 25398 150818, 25333 150722, 25279 150355, 25647 150303, 25844 150397, 25685 150239, 25652 149897, 25393 149930, 25400 149656, 25662 149540, 25692 149849, 26025 149796, 26267 149952, 26071 149745, 26036 149417, 25722 149452, 25494 148935, 26045 149108, 26063 148985, 26442 148888, 26442 148485, 26901 148450, 26854 148367, 26796 147997, 27173 147930, 27344 148016, 27206 147884, 27151 147529, 26950 147565, 26986 147182, 27164 147508, 27525 147452, 27840 147633, 27570 147396, 27538 147056, 27012 146882, 27555 146653, 27930 146541, 27916 146142, 28287 146083, 28407 146123, 28333 146024, 28270 145663, 28636 145603, 28756 145641, 28661 145546, 28655 145163, 29024 145104, 29153 145164, 29070 145046, 29051 144666, 29420 144609, 29605 144714, 29484 144546, 29399 144206, 29168 144244, 29151 144011, 29369 143803, 29265 143303, 29756 143432, 29770 143309, 29868 143277, 29887 142993, 30150 142990, 30175 142817, 30586 142747, 30557 142701, 30881 142238, 31068 142353, 30890 142222, 30848 141850, 31220 141800, 31588 141996, 31257 141733, 31247 141351, 31614 141269, 31818 141422, 31636 141242, 31647 140871, 31525 140884, 31547 140782, 31636 140709, 31622 140479, 31716 140445, 31688 140173, 31962 140162, 31972 140013, 32323 139962, 32378 139876, 32360 139507, 32708 139537, 32775 139441, 32760 138998, 33124 138960, 33252 139002, 33174 138882, 33091 138520, 33466 138474, 33793 138634, 33511 138403, 33417 138082, 33126 138120, 32896 137582, 33438 137777, 33451 138032, 33789 137993, 34081 138135, 33834 137926, 33823 137543, 33887 137163, 34207 137313, 34277 137077, 34190 136668, 34563 136590, 34651 136623, 34584 136557, 34508 136193, 34880 136119, 34967 136149, 34904 136082, 34923 135692, 35283 135648, 35400 135689, 35338 135575, 35337 135198, 35182 135229, 35191 135051, 35353 135066, 35394 134794, 35759 134695, 35813 134285, 36178 134236, 36376 134356, 36238 134166, 36135 133813, 36509 133762, 36808 133896, 36544 133694, 36441 133337, 36816 133267, 37067 133392, 36842 133226, 36862 132834, 36820 132842, 36874 132751, 36864 132831, 37231 132779, 37502 132981, 37327 132705, 37306 132337, 37342 132313, 37249 131969, 37609 131881, 37547 131493, 37760 131423, 37706 131192, 37939 131148, 37966 130980, 38327 130933, 38457 130994, 38369 130868, 38401 130474, 38764 130423, 39004 130597, 38821 130357, 38702 130004, 39083 129945, 39387 130085, 39117 129888, 38999 129543, 38849 129573, 38875 129413, 39011 129440, 39004 129532, 39378 129483, 39623 129581, 39442 129411, 39431 129040, 39313 129059, 39276 128870, 39495 128645, 39681 128959, 39815 128934, 39900 128543, 39803 128155, 40170 128066, 40330 128144, 40183 128045, 40088 127686, 40509 127614, 40523 127184, 40452 127196, 40533 127129, 40527 127176, 40881 127171, 41059 127240, 40935 127064, 40963 126708, 40711 126737, 40333 126299, 40933 126503, 40911 126317, 41090 126246, 40977 126040, 41196 125947, 41178 125843, 41341 125789, 41225 125410, 41623 125279, 41555 125730, 41920 125681, 42177 125785, 41957 125621, 42070 124820, 42488 124766, 42344 124353, 42726 124285, 42986 124400, 42748 124241, 42622 123892, 42997 123825, 43043 123772, 43057 123444, 42546 123213, 43137 123050, 43128 123362, 43427 123341, 43561 123407, 43481 123265, 43610 122474, 43585 122460, 43621 122422, 43618 122452, 43980 122396, 44076 122444, 44017 122342, 44084 121941, 44189 121908, 44171 121782, 43937 121257, 44505 121202, 44726 121367, 45035 120900, 45071 120537, 44717 120612, 44687 120698, 44447 120520, 44503 120271, 44715 119904, 44906 120006, 44904 120162, 45131 120285, 45185 120094, 45647 120091, 45595 119951, 46071 119082, 46196 119135, 46288 119006, 46681 118717, 46569 118542, 46655 118144, 46803 117844, 46678 117736, 46786 117368, 46872 117295, 47051 116795, 47168 117215, 47434 117265, 47536 117186, 47737 116287, 47977 115840, 48224 115960, 48363 115769, 48591 115299, 48935 115180, 48699 114858, 48989 115044, 49282 114846, 49249 114409, 49697 114510, 49883 114317, 49947 114127, 49883 113997, 49654 113909, 49752 113684, 49871 113624, 50020 113331, 50274 112493, 50638 112399, 50867 112712, 50862 112779, 50929 112695, 50886 112700, 50648 112383, 51075 111498, 51098 111541, 51154 111471, 51583 110951, 51720 110540, 51962 110086, 52146 109687, 52456 109639, 52502 109561, 52638 109614, 52567 109532, 52503 109544, 52787 108702, 53157 108600, 53458 107738, 53660 107306, 54016 107213, 54218 106754, 54542 105900, 54906 105798, 55275 104920, 55645 104819, 56148 103523, 56524 103420, 56639 103132, 56554 103011, 56782 102774, 57061 102110, 57386 102009, 57383 101920, 57439 101973, 57773 101129, 58149 101028, 58685 99735, 59046 99619, 59376 98796, 59332 98717, 59419 98693, 59584 98316, 59946 98241, 60279 97362, 60246 97348, 60267 97298, 60303 97303, 60479 96912, 60848 96794, 61203 95936, 61368 95501, 61728 95408, 61908 94984, 61879 94962, 61943 94900, 62284 94098, 62637 94003, 62811 93545, 63183 93446, 63510 92581, 63519 92575, 63891 91709, 64251 91616, 64220 91221, 64595 91117, 64541 90734, 64914 90634, 64871 90254, 65112 90180, 64828 89959, 64518 89948, 64479 89645, 64779 89567, 64966 89826, 65213 89938, 65193 89759, 65564 89645, 65551 89544, 65132 89188, 65379 88903, 65369 88814, 65456 88785, 65680 89216, 65894 89163, 65845 88779, 66222 88683, 66173 88300, 66551 88205, 66499 87820, 66873 87724, 66625 87293, 66817 87278, 66940 87312, 67201 87247, 67154 86869, 67327 86823, 67077 86468, 67510 86636, 67483 86396, 67780 86289, 67704 86178, 67835 86144, 67804 85882, 68179 85752, 68128 85366, 68503 85274, 68455 84891, 68831 84801, 68789 84423, 69160 84330, 69072 83571, 69236 83523, 69211 83321, 69268 83124, 69118 82908, 69358 82854, 69688 83379, 69807 83333, 69761 82950, 70131 82801, 70079 82413, 70384 82277, 70435 82173, 70368 81565, 70737 81491, 70692 81095, 71064 81009, 71023 80630, 71393 80549, 71353 80169, 71722 80085, 71677 79703, 72072 79612, 72007 79244, 72372 79093, 72346 78703, 72690 78542, 72652 78139, 73397 77980, 73301 77214, 73681 77141, 73630 76756, 74010 76685, 73960 76302, 74290 76236, 74326 76151, 74289 75847, 74667 75784, 74620 75398, 75345 75012, 75329 74888, 74936 74629, 75270 74416, 75250 74241, 75507 74193, 75520 74093, 75619 74109, 75581 73790, 75904 73731, 75636 73136, 75893 73218, 76287 73273, 76246 72895, 76620 72831, 76576 72451, 76954 72386, 76903 72002, 77287 71942, 77237 71563, 77610 71335, 77549 70989, 77504 70990, 77498 70581, 77575 70947, 77907 70756, 77863 70363, 78241 70302, 78192 69917, 78570 69860, 78523 69479, 78903 69421, 78808 68675, 78761 68663, 78750 68574, 78849 68651, 79187 68612, 79150 68231, 79521 68175, 79494 67807, 79853 67743, 80071 67589, 80108 67462, 80198 67402, 80163 67118, 80404 66950, 80330 66807, 80505 66764, 80472 66489, 80852 66439, 80805 66056, 81041 66024, 81148 65720, 81136 65624, 81335 65368, 81419 65158, 81502 65155, 81806 64771, 82158 64512, 82113 64131, 82464 63868, 83473 62574, 83432 62202, 83753 61793, 83753 61782, 84441 60932, 84391 60574, 85076 59992, 85376 59613, 85405 59527, 85372 59187, 85917 58519, 85793 58165, 86115 58231, 86710 57583, 87085 57139, 86994 56761, 87344 56466, 87701 56111, 87653 55739, 88314 54933, 89017 54108, 88945 53799, 88710 53884, 88924 53632, 89046 53628, 89457 53147, 89436 52970, 89592 52789, 89773 52806, 89961 52622, 89914 52239, 90259 51889, 90909 51129, 90882 51104, 90928 51081, 90892 50722, 91559 49947, 91904 49580, 92249 49196, 92201 48820, 92534 48456, 92896 46537, 93135 45885, 93274 45832, 93915 45830, 94437 45851, 94824 45830, 95063 46013, 95473 45629, 99079 45623), (143176 214170, 143101 214582, 143307 214236, 143295 214045, 143080 213805), (148068 213383, 148076 213601, 147968 214050, 148426 214061, 148793 213405, 148359 213075), (144676 213608, 144677 213926, 144905 213970, 144846 213711, 144909 213384), (148802 210301, 148740 210555, 148923 210390, 148917 210148, 148762 210131), (145180 209356, 145037 209868, 145189 210129, 145253 210139, 145114 209760, 145239 209287), (155600 209489, 155731 209728, 155803 209579, 155857 209278), (155588 208940, 155851 209008, 155784 208741, 155703 208627), (148541 207104, 148535 207485, 148713 207395, 148676 207235, 148724 207017), (155679 204372, 155689 204701, 155825 204500, 155860 204252), (155601 201072, 155748 201322, 155870 200999, 155646 200780), (155572 200305, 155641 200567, 155853 200228, 155699 199919), (128324 199634, 128234 200049, 128475 199744, 128437 199603, 128511 199343, 128245 199340), (155529 199377, 155697 199845, 155833 199458, 155866 199216), (121190 199160, 121198 199362, 121436 199587, 121345 199219, 121411 198810), (155517 198935, 155860 198910, 155805 198653, 155699 198472), (130227 198243, 130242 198409, 130405 198566, 130318 198312, 130362 198087), (128414 197670, 128231 197868, 128283 198240, 128524 198349, 128418 198057, 128557 197596), (131709 195216, 131716 195481, 131855 195564, 131764 195780, 131802 195966, 131728 196386, 132070 197055, 131745 197863, 131753 197969, 131941 198237, 131828 197898, 132074 197051, 131747 196364, 132039 195901, 132112 195640, 132089 195500, 132255 195067), (155499 197838, 155693 198192, 155789 197957, 155825 197697), (121129 197605, 121123 197886, 121334 197957, 121288 197685, 121411 197139), (124642 196588, 124760 196734, 124666 196965, 124706 197227, 124824 197155, 125005 196794, 125033 196438, 124959 196291, 124666 196263), (128170 196186, 128158 196281, 128234 196557, 128189 196833, 128480 196816, 128462 196495, 128599 196309, 128576 195912), (130113 195267, 130122 195398, 130394 195651, 130395 195189), (104353 195349, 104482 195523, 104782 195376, 104876 195268, 104845 195211), (128199 195015, 128201 195125, 128329 195368, 128545 195442, 128546 195309, 128471 195322, 128246 194998), (177330 188306, 177371 188515, 177312 188772, 177326 189690, 177391 189949, 177317 190298, 177351 190459, 177305 190772, 177375 191156, 177307 191246, 177357 191460, 177250 191750, 177283 192028, 177263 192250, 177324 192791, 177423 193028, 177380 193164, 177386 193409, 177437 193537, 177149 194091, 177090 194406, 177495 194684, 177589 194691, 177813 194597, 177858 194196, 177818 194155, 177785 193828, 177558 193504, 177654 193197, 177634 192707, 177559 192478, 177658 192167, 177610 191939, 177634 191657, 177557 191259, 177578 191172, 177500 190914, 177596 190583, 177557 190402, 177608 190110, 177532 189634, 177394 189284, 177568 188549, 177564 188124), (174621 193971, 174571 194413, 174731 194665, 175207 194535, 175178 194504, 175146 193934), (170728 193079, 170795 193419, 170733 193823, 170528 194267, 170606 194305, 170682 194614, 170729 194628, 171295 194445, 171256 194067, 171121 193717, 171127 193635, 170946 193377, 171137 193097, 171151 192856, 170913 192849), (172355 194245, 172312 194553, 172708 194480, 172790 194522, 172996 194366, 172519 194228), (166988 186294, 166942 186721, 167149 187441, 167015 187837, 166934 188274, 166994 188695, 167130 188997, 166916 189715, 166913 189957, 166978 190201, 167140 190544, 167057 190918, 166948 190985, 166868 191174, 166947 191372, 166866 191687, 166790 192190, 166867 192558, 166840 192724, 166909 192934, 166910 193398, 166645 194169, 166698 194542, 167076 194474, 167159 194518, 167370 194358, 167371 193944, 167193 193705, 167030 193674, 167051 193282, 167166 193014, 167201 192644, 167161 192476, 166907 192159, 167038 191796, 167119 191713, 167157 191491, 167125 191324, 167248 190566, 167199 190005, 167126 189772, 167213 189017, 167152 188602, 167208 188398, 167082 188233, 167165 187965, 167124 187835, 167155 187443, 166950 186719, 167110 186391, 167115 185868), (57360 192252, 57298 192742, 57323 192770, 57448 193411, 57316 193900, 57196 194090, 57149 194333, 57420 194466, 57847 194530, 57979 194301, 57805 193855, 57691 193797, 57682 193617, 57558 193160, 57819 192977, 57420 192708, 57829 192249, 57846 191965, 57805 191827, 57420 191575), (165290 184073, 164827 184880, 164791 184986, 164453 185556, 164463 185850, 164402 186257, 164651 186575, 164403 187010, 164420 187413, 164390 187662, 164391 188197, 164361 188592, 164432 188961, 164392 189118, 164385 189473, 164730 189655, 164410 190039, 164378 190523, 164434 190983, 164810 191183, 164441 191582, 164447 192109, 164457 192900, 164564 193377, 164521 193588, 164284 193957, 164263 194046, 164563 194352, 164963 194288, 165032 194350, 165261 194321, 165402 194510, 165581 194460, 165670 193944, 165556 193325, 165534 193212, 165418 192540, 165588 191822, 165614 191397, 165185 191080, 165466 190228, 165299 189498, 165299 188978, 165345 188635, 165326 188512, 165298 187948, 165362 187278, 165334 187009, 165315 186393, 165409 186049, 165425 185587, 165517 185141, 165136 184891, 165506 184436, 165447 184030, 165488 183604), (39449 193702, 39335 194021, 39332 194178, 39436 194509, 39867 194249, 39744 193950, 39694 193691, 39453 193262), (35693 185464, 35733 186248, 35666 187042, 35756 187792, 35653 188210, 35631 188488, 35687 188898, 35661 188982, 35742 189347, 35639 189763, 35619 190018, 35652 190416, 35606 190547, 35663 190919, 35641 191313, 35587 191530, 35649 191955, 35577 192106, 35616 192482, 35585 192878, 35606 193648, 35284 194124, 35480 194459, 35906 194503, 36146 194276, 36080 193913, 35815 193591, 35848 193194, 35951 192536, 35903 192126, 35934 192008, 35882 191360, 35917 190967, 35908 190465, 35865 190205, 35901 189691, 35851 189009, 35882 188922, 35843 188545, 35866 188268, 35782 187132, 35849 186714, 35851 186216, 35736 185496, 35745 185055), (59075 193980, 58921 194085, 58863 194252, 58964 194256, 59421 194497, 59576 194444, 59631 194291, 59505 193836), (37069 194022, 37140 194391, 37419 194490, 37620 194472, 37792 194386, 37872 194190, 37206 193720), (31530 193835, 31455 194011, 31480 194203, 31555 194371, 31802 194469, 32013 194460, 32166 194359, 32179 194200, 32055 193706, 31906 193659), (168521 193823, 168458 194059, 168478 194442, 168857 194366, 168983 194466, 168968 194221, 168737 193757), (161631 193182, 161248 193226, 161085 193754, 161097 194139, 161346 194459, 161479 194465, 161701 194361, 161801 194259, 161885 193923, 161752 193571, 161717 193089), (156902 193996, 156853 194139, 157080 194465, 157260 194415, 157354 194076, 157660 193918, 157338 193881), (64030 185814, 63951 186243, 64014 186638, 64160 186984, 63967 187769, 64008 188189, 64129 188544, 64032 188905, 63932 188985, 63905 189209, 63961 189365, 63901 189565, 64059 189967, 64188 190078, 64069 190450, 63997 190518, 63915 190732, 63923 191121, 64197 191626, 64057 191981, 63978 192074, 63917 192246, 63995 192845, 63914 193286, 64070 193600, 63797 193826, 63666 194098, 63812 194446, 64198 194369, 64551 194243, 64244 193552, 64273 193256, 64037 193221, 64287 193117, 64296 192612, 64226 192393, 64266 192116, 64299 191553, 64238 191227, 64270 191064, 64231 190841, 64288 190116, 64202 189589, 64123 189320, 64271 188586, 64184 188140, 64212 187977, 64079 187781, 64168 187476, 64139 187378, 64213 186928, 64175 186447, 64027 186245, 64118 185912, 64094 185840, 64156 185428), (47874 193775, 47671 193857, 47796 194184, 48137 194440, 48343 194267, 48413 193787, 48708 193830, 48407 193482, 48184 193444), (62442 194433, 62734 194353, 62667 194173, 62344 194085), (29773 193309, 29541 193874, 29214 193807, 29232 194232, 29582 194288, 29814 194159, 30093 194385, 30249 194423, 30335 194160, 30128 193987, 29785 193313, 29789 193047), (42266 193592, 42239 193769, 41916 194086, 41853 194262, 42114 194375, 42438 194420, 42539 193803, 42450 193365), (175714 194126, 175722 194394, 176015 194394, 175964 194107), (61163 194009, 61203 194385, 61626 194321, 61848 194208, 61777 193840, 61553 193739, 61230 193722), (33350 193879, 33328 194273, 33488 194346, 33761 194297, 33782 193761, 33543 193469), (158081 192731, 158197 192995, 158095 193411, 157684 193911, 157875 194247, 158021 194319, 158262 194344, 158405 194226, 158489 194078, 158465 193697, 158185 193386, 158294 192918, 158209 192604, 158227 192466, 158045 192345), (46073 193881, 46125 194254, 46556 194344, 46730 194273, 46924 194034, 46246 193516), (159606 193665, 159488 194192, 159785 194343, 160152 194217, 160277 193976, 160165 193721, 159756 193643), (44271 193392, 44004 193379, 44254 193874, 44231 193998, 44374 194038, 44517 194307, 44804 194341, 45072 194232, 45162 194130, 45040 193776, 44842 193569, 44649 193138), (163144 192776, 163068 192823, 162975 193075, 163009 193227, 162828 193660, 162720 194082, 162877 194300, 163205 194316, 163455 194073, 163470 193876, 163243 193550, 163162 193185, 163253 192518), (26004 193508, 25922 193589, 25951 193694, 26057 193801, 26238 194279, 26420 194296, 26551 194193, 26223 193678, 26053 193185), (27439 193844, 27542 194044, 27814 194235, 27961 194228, 28203 194030, 28218 193736, 27697 193402), (24493 185403, 24507 185795, 24479 185887, 24541 186990, 24509 187727, 24430 188269, 24481 189333, 24422 189740, 24452 190503, 24451 191171, 24428 191673, 24415 192303, 24503 193203, 24449 193496, 24284 193754, 24185 194065, 24558 194220, 24865 194198, 25045 193943, 25055 193827, 24932 193545, 24839 193498, 24653 193162, 24771 192577, 24764 191969, 24714 191595, 24707 190978, 24727 190816, 24719 190218, 24710 189658, 24642 189289, 24682 188199, 24624 187815, 24547 186989, 24636 186277, 24621 185500, 24544 185238), (49842 193859, 49657 194061, 49978 194217, 50100 194045, 50131 193931, 49879 193245), (23018 191672, 22943 192080, 22932 192471, 23060 193128, 23090 192459, 23069 191659, 23060 191118), (26043 190067, 26015 191212, 26035 192008, 26017 192761, 26051 193120, 26093 192818, 26110 191988, 26089 191219, 26102 190439, 26058 190069, 26041 189459), (44476 192139, 44668 192327, 44655 193023, 44756 192765, 44727 192699, 44817 192375, 44694 191992), (159598 192107, 159671 192592, 159647 192999, 160017 192873, 159961 192512, 160066 192284, 160052 192033, 159805 192007), (31991 191129, 32052 191898, 32005 192683, 32022 192755, 32068 191910, 32011 191004), (37262 192419, 37268 192670, 37351 192428, 37316 192090), (42281 192071, 42296 192202, 42458 192623, 42447 191718), (29579 185477, 29703 186302, 29524 186923, 29515 187178, 29676 187884, 29510 188456, 29500 188733, 29632 189398, 29528 190016, 29530 190275, 29803 190975, 29583 191605, 29576 191813, 29812 192500, 30042 191949, 30027 191690, 29812 190973, 30065 190421, 29989 189374, 30059 188755, 29916 187933, 30011 187200, 29879 186373, 29918 185683, 29772 185070), (161196 192009, 161202 192336, 161456 192401, 161350 192131, 161450 191795), (170763 191756, 170736 192146, 170891 191972, 170854 191852, 170887 191712), (159881 190521, 159635 190771, 159644 191339, 159781 191399, 160016 191369, 160066 190841, 160005 190520), (163143 190705, 163179 190854, 163092 191124, 163299 190965, 163299 190653), (161589 189739, 161154 190610, 161192 190706, 161380 190809, 161290 190597, 161773 189833, 161836 189672, 161765 189552, 161495 189434), (44755 189912, 44788 189969, 44725 190777, 44855 189982, 44735 189364), (49935 189333, 49487 189800, 49438 190214, 49462 190717, 49815 190775, 49941 190680, 49938 190108, 49962 189299, 49926 189296), (22994 187415, 23006 188131, 23047 188563, 23038 189319, 22984 190130, 23058 190731, 23080 190104, 23065 189333, 23061 188559, 23075 188184, 23073 187005, 23058 186673), (57410 190727, 57778 190678, 57745 190293, 57421 190132), (170864 189523, 170735 190290, 170744 190441, 170865 190429, 170833 190307, 171216 189818, 171101 189459, 170853 189190), (46273 189561, 46219 190366, 46652 189848, 46339 189220, 46418 189135, 46253 189085), (158089 190319, 158129 190356, 158093 190311, 158228 189934, 158225 189841, 158160 189790), (31985 189581, 32045 190194, 32004 189439), (142628 185723, 142888 186338, 142558 186796, 142628 187184, 142576 187611, 142845 187901, 142621 188368, 142669 188724, 142641 189099, 142921 189430, 142968 189968, 143357 189637, 143359 188953, 143292 188552, 143367 188157, 143405 187249, 143350 186986, 143385 186202, 143309 185469), (159607 189243, 159635 189500, 159611 189802, 159699 189871, 159995 189839, 159993 189661, 159842 189443, 159946 189026), (163150 188821, 163029 189067, 163085 189330, 163041 189619, 163187 189782, 163372 189755, 163383 189636, 163312 189267, 163371 188864, 163354 188747), (44706 188030, 44801 188414, 44776 188712, 44823 188420, 44709 187756), (46278 187978, 46223 188368, 46238 188565, 46328 188422, 46374 187984, 46267 187725), (163224 187312, 162843 187350, 162868 187451, 162822 187849, 162846 188366, 163129 188309, 163330 188171, 163275 187726, 163318 187231), (170841 188301, 171059 188117, 171000 187936, 170864 187788), (44701 187254, 44704 187604, 44799 187315, 44794 186900), (177618 186130, 177419 186565, 177371 186827, 177566 187314, 177526 186963, 177626 186122, 177455 185383), (57537 186474, 57428 187289, 57676 186550, 57495 186090), (53693 186336, 53653 186763, 53757 187140, 53688 186768, 53783 186392, 53780 186140), (161523 186449, 161546 186650, 161453 187000, 161722 186778, 161714 186432), (155590 186345, 155567 186630, 155615 186726, 155593 186809, 155684 186836, 155665 186712, 155779 186336, 155774 186202), (163174 185763, 162816 185810, 162768 186315, 162835 186685, 162819 186817, 163186 186813, 163329 186722, 163305 186168, 163319 185558), (170825 186705, 170949 186486, 170819 186173), (49677 186003, 49801 186269, 49965 186474, 50089 186338, 50017 186210, 49967 185923), (141011 185896, 140982 186084, 141020 186255, 141238 186264, 141191 186028, 141363 185497), (35720 183697, 35761 183560, 35763 183112), (165480 180095, 165380 180532, 165318 180577, 165198 180808, 165227 181148, 165304 181357, 165532 181681, 165380 182066, 165300 182433, 165303 182607, 165411 182912, 165499 182967, 165499 182809, 165419 182487, 165551 181684, 165408 180939, 165535 180053), (44586 182124, 44668 182248, 44714 182500, 44812 182284, 44698 181912), (136162 182001, 136254 182342, 136394 182479, 136376 182308, 136409 182156, 136226 181961, 136340 181596, 136348 181416), (23017 180389, 23035 181174, 23019 181941, 23015 182369, 23070 182439, 23062 179954), (158220 181360, 158095 181758, 158081 181996, 158182 181825, 158244 181340, 158206 181265), (48339 180080, 48302 180423, 48367 180847, 48454 181017, 48369 180480, 48442 180094, 48437 179871), (44645 180626, 44710 180854, 44769 180714, 44678 180351), (143611 179937, 143294 180644, 143707 180012, 143708 179790, 143545 179764), (136215 179946, 136222 180155, 136352 180125, 136330 179995, 136389 179572), (52087 176988, 52120 177105, 51989 177457, 51913 177837, 52195 178625, 52114 179032, 51970 179350, 51985 179468, 52125 179712, 52147 179036, 52215 178630, 52125 177951, 52177 177477, 52212 176932), (165350 178440, 165421 178611, 165360 178814, 165555 178822, 165564 178245), (143527 178410, 143446 178743, 143709 178566, 143708 178123, 143426 178119), (143314 176484, 143312 176919, 143273 177065, 143271 177467, 143779 177295, 143732 176802, 143779 176492, 143759 176275), (165449 176605, 165350 176927, 165362 177137, 165295 177335, 165552 177366, 165540 177028, 165598 176688, 165582 176489), (39530 176961, 39587 176664, 39471 176107), (165360 175423, 165367 175621, 165475 175920, 165561 175952, 165480 175493, 165484 175278), (143396 175088, 143461 175327, 143437 175544, 143607 175733, 143733 175731, 143643 175022), (44687 174858, 44791 175237, 44731 175686, 44795 175239, 44679 174577), (44657 173310, 44753 173697, 44665 174078, 44676 174456, 44760 174133, 44795 173709, 44677 173137), (137774 171960, 137979 172178, 137837 172568, 137847 172646, 137987 172170, 137969 171792, 137756 171616), (152083 171801, 152018 172261, 152160 171813, 152171 171648), (141575 171563, 141422 171621, 141312 171780, 141426 172007, 141398 172155, 141553 172174, 141529 171980, 141624 171488), (155577 171618, 155554 172044, 155607 172103, 155601 171999, 155724 171646, 155737 171334), (38656 163287, 38350 163400, 38268 163378, 38214 163473, 38392 163932, 38651 164128, 38559 164541, 38566 164927, 38634 165150, 38481 165411, 38551 165706, 38548 166094, 38680 166718, 38544 167003, 38484 167388, 38614 167872, 38472 168053, 38819 168346, 38509 168819, 38496 168933, 38586 169185, 38555 169582, 38581 169885, 38744 170692, 38624 171113, 38591 171428, 38632 171886, 38737 172072, 38766 171850, 38716 171476, 38768 170981, 38695 169976, 38805 169650, 38777 169521, 38836 168729, 38818 168003, 38798 167650, 38885 167178, 38793 166109, 38883 165774, 38851 165624, 38867 164959, 38783 164565, 38791 164089, 39089 163621, 39201 163292, 39142 163218), (148457 170801, 148364 171277, 148515 170778), (152025 170266, 151961 170613, 152022 171043, 152183 171199, 152165 170935, 152035 170650, 152141 170287, 152143 170086), (137890 170651, 137818 171074, 138018 170727, 138007 170518, 137831 170353), (44670 170557, 44701 170611, 44697 170908, 44764 170622, 44682 170280), (141487 170053, 141433 170435, 141540 170814, 141610 170872, 141604 170762, 141460 170448, 141599 170075, 141666 169670), (33504 166659, 33488 167093, 33489 167836, 33542 168227, 33477 169012, 33526 169757, 33500 170191, 33495 170754, 33586 170222, 33601 169777, 33520 169045, 33573 168234, 33496 167488, 33579 166681, 33488 166037), (158069 170132, 158053 170419, 158163 170200, 158202 169766), (146912 169728, 146797 170091, 146799 170278, 146914 170230, 146897 170121, 146972 169674, 146846 169438), (34994 168973, 35034 169350, 35021 169930, 35200 169338, 35160 168962, 34994 168630), (151900 164557, 151889 164875, 151832 165136, 151878 165267, 151840 165422, 151898 165649, 151844 166148, 151902 166423, 151893 166626, 151959 166795, 151903 167001, 151923 167192, 151860 167486, 151857 167722, 151925 167968, 152116 168302, 151883 169017, 151897 169249, 151986 169502, 152159 169681, 152198 169278, 152137 169072, 152189 168836, 152144 168682, 152225 168196, 152184 167895, 152219 167640, 152165 167513, 152215 167360, 152180 167122, 152241 166857, 152226 166595, 152157 166352, 151986 166013, 152185 165570, 152240 165350, 152232 164988, 152174 164797, 152246 164401), (148361 169084, 148388 169514, 148645 169642, 148717 169636, 148573 169273, 148715 168922, 148718 168805, 148587 168802), (159584 168987, 159637 169617, 159909 169552, 159834 169288, 159859 169054, 159575 168894), (137804 169125, 137745 169466, 137756 169617, 137891 169488, 138019 169237, 138014 169067, 138114 168698, 137718 168623), (141864 163286, 141587 163273, 141434 163320, 141183 163482, 141105 163479, 141070 163577, 141299 163903, 141303 164299, 141335 164839, 141380 165044, 141319 165238, 141260 165727, 141271 165965, 141362 166212, 141303 166506, 141355 166601, 141294 166706, 141364 166985, 141325 167469, 141382 167757, 141643 168071, 141443 168461, 141354 168539, 141326 168805, 141359 168925, 141328 169071, 141403 169301, 141671 169583, 141600 169161, 141488 168890, 141609 168589, 141647 168073, 141601 167696, 141664 167433, 141559 167319, 141672 167169, 141607 166919, 141692 166375, 141623 166139, 141639 165873, 141597 165758, 141654 165647, 141649 165357, 141702 165146, 141665 164965, 141685 164782, 141587 164599, 141675 164200, 141560 164218, 141680 164179, 141986 163434, 141962 163164), (41997 168589, 42010 168852, 42379 169053, 42396 168635, 42281 168339), (158040 167732, 158030 167869, 158156 168198, 158071 168666, 158192 168204, 158104 167823, 158172 167658), (155746 167656, 155427 167766, 155425 167837, 155563 168133, 155407 168406, 155414 168621, 155551 168601, 155830 168452, 155754 168080, 155849 167520), (34980 167460, 35015 167798, 34994 168232, 34994 168611, 35142 168191, 35199 167788, 35199 167400, 34983 167077), (136341 167976, 136235 168440, 136272 168415, 136395 167926, 136266 167607, 136301 167483, 136176 167478), (159559 167397, 159593 167804, 159563 168277, 159600 168201, 159869 167997, 159856 167732, 159988 167479, 159988 167239, 159787 167238), (148451 167369, 148331 167555, 148338 168036, 148680 168091, 148758 167600, 148699 167237), (150453 167595, 150416 168031, 150465 168061, 150452 167984, 150562 167498), (137720 167181, 137781 167581, 137737 168015, 138125 167876, 138017 167515, 138132 167168, 138130 167057, 137970 167038), (44641 167525, 44666 167766, 44751 167554, 44809 166797), (28173 167388, 28287 167762, 28321 167400, 28282 167017), (158109 166659, 158019 167050, 158033 167165, 158151 167168, 158097 167051, 158179 166598, 158107 166505), (35302 164207, 34992 164324, 34994 164743, 34941 165145, 34961 165914, 35013 166288, 34986 166683, 34983 167070, 35406 166592, 35402 166398, 35253 166222, 35265 166072, 35404 165996, 35409 165759, 34978 165522, 35423 165069, 35405 164691, 35124 164440, 35391 164441, 35401 164207), (155697 166108, 155402 166229, 155496 166601, 155441 166978, 155844 167054, 155765 166527, 155854 165827), (144789 165936, 144779 166343, 144934 166395, 144789 166546, 144820 166813, 144787 166972, 145021 166867, 145160 166432, 145226 165927), (136333 166426, 136208 166864, 136338 166428, 136316 166375), (159548 166669, 159763 166369, 159765 166032, 159568 165981), (148343 166141, 148319 166439, 148470 166341, 148442 166208, 148595 165826), (137689 165654, 137733 166043, 137717 166418, 138113 166365, 138130 166183, 138084 165946, 138126 165705, 138104 165498), (28148 163377, 27772 163478, 27736 163631, 27901 163928, 27982 163952, 28206 164278, 28179 164623, 28275 165014, 28153 165815, 28286 166291, 28326 165859, 28307 165026, 28340 164693, 28289 164255, 28359 163943, 28637 163384, 28281 163301), (43965 163427, 43888 163397, 43474 163474, 43530 163651, 43845 163698, 44003 163622, 44369 163910, 44580 164441, 44569 164752, 44663 165069, 44734 165175, 44678 165539, 44694 165901, 44795 165607, 44844 165192, 44700 164408, 44808 164093, 45024 163839, 45089 163526, 45067 163450, 44834 163209, 44710 163208), (33087 163294, 32745 163421, 33417 164013, 33459 164776, 33449 165486, 33483 165873, 33623 165213, 33504 164376, 33571 164052, 33754 163787, 33831 163511, 33515 163431, 33269 163277), (158037 165129, 158015 165573, 158077 165575, 158054 165512, 158188 165180, 158176 165011, 158006 164722), (136197 164757, 136230 164904, 136135 165253, 136135 165451, 136290 165449, 136287 165276, 136383 164990, 136343 164873, 136358 164680), (150327 164843, 150418 165280, 150545 165402, 150531 165197, 150416 164891, 150467 164544), (146780 165346, 146957 165229, 146918 165076, 146936 164930, 146755 164841), (144826 164480, 144816 164877, 144768 165037, 144806 165332, 145245 165214, 145176 164777, 145201 164398), (42363 164969, 42468 165261, 42485 164622), (139739 164614, 139691 164920, 139786 165092, 139974 165134, 139974 164989, 139873 164681, 139916 164309), (159605 164663, 159603 164750, 159631 164692, 160160 163772, 160159 163756), (156939 163901, 156948 163967, 157246 164184, 157084 164515, 157077 164732, 157596 164475, 157252 164174, 157138 163824, 157327 163709, 157466 163347, 157352 163210, 157172 163198), (178576 164017, 178620 164138, 178577 164538, 178633 164718, 178756 164101, 178677 163848), (157727 163649, 157700 163603, 157569 163707, 157943 164225, 158183 164179, 158234 163912, 158345 163842, 158458 163463, 158168 163433), (177401 163625, 177538 164063, 177528 163723, 177557 163655, 177477 163564), (42039 163918, 42055 164030, 42506 164026, 42621 163613, 42777 163385, 42417 163441, 42277 163359, 42060 163432, 41705 163291), (37140 163326, 36819 163429, 36717 163382, 36506 163553, 36811 163918, 37250 163858, 37493 163283), (163316 163542, 163302 163913, 163474 163639, 163504 163416), (35027 163889, 35602 163689, 35673 163394, 35366 163435, 35212 163348), (40231 163266, 39875 163405, 40214 163806, 40379 163857, 40774 163756, 40911 163509, 40621 163420, 40445 163248), (134976 163447, 135128 163749, 135237 163626, 135248 163274), (165497 159946, 165290 160753, 165485 161496, 165299 162341, 165570 162971, 165549 162368, 165688 161587, 165493 160841, 165599 159978, 165429 159537), (46189 156962, 46282 156684, 46058 156363), (72014 149212, 72042 149548, 71951 149946, 72015 150332, 71963 150596, 72017 151106, 72010 151507, 72055 151871, 72011 152423, 72025 152655, 72007 153158, 72061 153420, 72028 153629, 72081 154190, 72062 154662, 72106 154959, 72076 155555, 72143 155847, 71960 156492, 72029 156586, 72339 156530, 72632 156752, 72952 156710, 73070 156856, 73230 156588, 73084 155852, 73085 155443, 73012 155097, 73221 154265, 72879 153577, 73079 152753, 72830 152050, 72976 151231, 72700 150590, 72578 150564, 72713 150401, 72916 149697, 72679 149054), (76012 156600, 76214 156766, 76451 156744, 76631 156432, 76435 156222, 76129 156180), (68803 155863, 68667 156289, 68825 156633, 69051 156741, 69393 156562, 69487 156451, 69353 155672, 68812 155616), (65655 154692, 65621 155020, 65858 155120, 65665 155322, 65766 155532, 65413 156017, 65296 156279, 65306 156434, 65628 156668, 65991 156651, 66143 156205, 65918 155949, 65805 155909, 65861 155621, 65843 155512, 65945 155084, 65741 154764, 65921 154326), (67526 154954, 67624 155030, 67182 155806, 67014 156354, 67071 156431, 67696 156584, 67789 156521, 67358 155888, 67706 155072, 67701 154936, 67288 154501), (51234 147818, 51198 148021, 51427 148610, 51053 149132, 51090 149476, 51062 149845, 51514 150136, 50897 150476, 50854 151092, 50903 151466, 50837 151815, 51378 151724, 50837 151926, 50862 152455, 50889 152633, 50891 153313, 51468 153250, 51067 153688, 51213 154095, 50916 154527, 51032 155061, 50908 155143, 50873 155279, 50889 155444, 51349 155609, 51137 156416, 51305 156573, 52008 156222, 52010 156167, 51603 155538, 52019 154821, 52012 154481, 51731 153953, 51611 153201, 51841 152372, 51578 151653, 51734 150851, 51524 150133, 51750 149296, 51541 148569, 51717 148205, 51724 147752, 51324 147690), (70457 155407, 70600 155759, 70395 155991, 70310 156225, 70362 156418, 71001 156471, 71069 156406, 70945 155889, 70787 155707, 70863 155211), (63732 155747, 63840 156256, 64085 156353, 64012 156014, 64054 155690), (53588 153375, 53471 153818, 53398 153884, 53329 154115, 53343 154451, 53592 154993, 53452 155344, 53375 155440, 53345 155641, 53380 155982, 53496 156183, 53629 156286, 53612 155762, 53683 155501, 53651 155365, 53705 154908, 53575 154222, 53623 153822, 53685 153219), (57235 153680, 57329 153970, 57248 154306, 57197 154780, 57257 155153, 57237 155276, 57278 155534, 57257 156222, 57476 156070, 57492 155863, 57576 155657, 57606 155178, 57202 154779, 57396 154397, 57487 154314, 57538 154109, 57502 153922, 57657 153484, 57225 153423), (46263 151562, 46125 152377, 46288 153109, 46147 153921, 46303 154650, 46233 155073, 46095 155971, 46482 155780, 46388 155417, 46447 155267, 46401 155026, 46427 154768, 46338 154268, 46234 153909, 46333 153728, 46410 153228, 46357 152713, 46288 152475, 46206 152366, 46272 152227, 46384 151679, 46277 151255, 46307 151176, 46141 150982), (63743 152778, 63749 153373, 63718 154237, 63777 154527, 63678 154929, 63717 155662, 64025 155544, 63882 155274, 64000 154947, 63737 154926, 64026 154757, 63961 154477, 64124 154045, 63807 153743, 64102 153275, 63910 152940, 63997 152536), (69209 154145, 68831 154157, 68853 154511, 68935 154665, 68861 154859, 68823 155294, 69159 155148, 69341 154998, 69319 154108), (47717 154277, 47674 155056, 48183 154621, 48172 154277, 48081 154081, 48170 154031, 48167 153688, 47653 153550), (78490 153983, 78372 154126, 78395 154397, 78360 154795, 78784 154793, 78803 154464, 78711 154310, 78765 154059, 78730 153918, 78751 153796), (70710 153740, 70602 153819, 70493 153977, 70538 154225, 70496 154517, 70606 154594, 70854 154635, 70854 154447, 70789 154155, 70896 153432), (69037 152560, 68793 152624, 68804 152991, 68882 153129, 68813 153309, 68817 153682, 69123 153612, 69302 153465, 69308 153011, 69360 152780, 69360 152303), (47856 152110, 47679 152215, 47697 152733, 47653 153508, 48209 153128, 48231 152586, 48180 152082), (70408 148868, 70473 149204, 70433 149748, 70471 149979, 70403 150238, 70412 150532, 70473 150754, 70432 150939, 70447 151357, 70512 151519, 70815 151823, 70537 152287, 70444 152994, 70475 153080, 70909 153309, 70908 152701, 70850 152588, 70914 152464, 70888 152191, 70919 151856, 70862 151422, 70886 151112, 70848 151038, 70888 150955, 70941 150187, 70841 149877, 70613 149552, 70820 149217, 70902 148698, 70884 148315, 70408 148189), (78545 152349, 78390 152715, 78335 153158, 78454 153219, 78723 153239, 78716 153033, 78637 152780, 78737 152562, 78736 152177), (57272 149341, 57541 150035, 57325 150858, 57466 151606, 57321 152420, 57232 152783, 57228 152979, 57338 152847, 57646 152732, 57454 152384, 57644 151656, 57633 151471, 57341 150865, 57547 150037, 57329 149297, 57376 149023), (74479 151949, 74536 152354, 74462 152912, 74790 152499, 74761 152292, 74869 151866), (67528 151948, 67377 152363, 67632 152025, 67622 151831, 67466 151766), (68878 149395, 68985 149612, 68912 149828, 68855 150348, 68892 150412, 69342 150676, 69067 151048, 68869 151245, 68918 151567, 68853 151982, 69357 152144, 69325 151675, 69263 151473, 69298 151219, 69347 150677, 69278 150305, 69288 150120, 69216 149935, 69282 149722, 69302 149134, 68856 148700), (53629 151451, 53544 151818, 53547 151994, 53674 152109, 53650 151877, 53734 151510, 53724 151378), (63741 151287, 63764 151429, 63720 151637, 63961 151716, 63874 151426, 63940 151381, 63929 151093), (47904 150608, 47847 150753, 48053 151003, 47733 150994, 47731 151398, 47881 151684, 48153 151552, 48163 151071, 48120 150596), (74517 150581, 74548 150799, 74523 151057, 74841 151108, 74731 150749, 74739 150511), (46255 150027, 46169 150509, 46259 150031, 46203 149654, 46151 149581), (63739 149111, 63881 149848, 63832 150253, 63972 149852, 63811 149478, 64105 149010, 63819 148746), (136812 149201, 136658 149819, 136793 149767, 136888 149605, 137001 149187), (65792 149323, 65714 149689, 65857 149351, 65852 149265, 65771 149181), (74568 149239, 74581 149258, 74767 148799), (72802 146626, 72577 147464, 72045 147978, 72063 148380, 72019 148575, 72012 149123, 72648 148921, 73014 148120, 72586 147462, 73053 146715, 73045 146560, 73118 146142), (46124 149076, 46217 148908, 46230 148472), (67273 148777, 67294 149013, 67454 149069, 67414 148879, 67549 148451), (69177 147490, 69198 147615, 69009 148116, 69292 147675, 69294 147483), (70644 147044, 70626 147223, 70455 147463, 70407 147915, 70809 147754, 70848 147162, 70807 147009), (63912 147513, 63860 147762, 64010 147516, 64033 147374, 63872 147325), (179641 143901, 179269 144018, 178732 144497, 178796 144708, 178685 145126, 178868 145464, 178579 145612, 178731 146391, 178677 146679, 178925 146788, 179068 146714, 179193 146150, 179120 145937, 179508 145842, 179438 145472, 179811 145368, 180208 144892, 180234 144458, 180520 144273, 180440 143870, 180023 143838), (72854 144925, 72847 145230, 73096 145356, 73002 145022, 73091 144594), (29369 143801, 29414 144177, 29775 144161, 30074 144289, 29846 144059, 29741 143724), (72836 143128, 72748 143306, 72761 143536, 72673 143972, 73103 143923, 73102 143746, 73004 143469, 73096 143165, 73109 142870), (214087 143097, 213856 143626, 214142 143746, 214285 143897, 214509 143890, 214833 143746, 214531 143156, 214400 143089, 214172 142774), (215788 143249, 215606 143533, 215825 143862, 216001 143875, 216421 143745, 216392 142954), (196122 143060, 196145 143128, 196033 143726, 196105 143863, 196783 143655, 196187 142712), (210363 137606, 210295 138013, 210362 138859, 210273 139830, 210325 140248, 210287 140340, 210324 140717, 210219 141522, 210282 142130, 210334 142654, 210280 142925, 210070 143158, 209988 143524, 210048 143550, 210253 143839, 210439 143846, 210806 143687, 210743 143317, 210486 142999, 210470 142674, 210568 141965, 210541 141434, 210531 140661, 210501 139895, 210556 139360, 210468 138353, 210511 138072, 210500 137657, 210380 136798), (208834 133733, 208849 134125, 208130 134105, 207982 134235, 207983 134382, 207914 134623, 207881 135185, 207785 135986, 207808 136755, 207765 137542, 207813 138305, 207766 139099, 207830 139509, 207762 139869, 207857 140231, 207873 141083, 207789 141388, 207860 141782, 207900 142282, 207957 142686, 207938 142922, 207678 143247, 207641 143391, 207955 143694, 208155 143668, 208252 143708, 208532 143593, 208830 143841, 208926 143843, 209133 143756, 208946 142640, 208963 141932, 208922 141491, 208943 141097, 208939 140097, 208805 139584, 208817 139525, 208806 138809, 208814 138770, 208741 137874, 208725 137280, 208732 137201, 208712 136508, 208673 136281, 208810 135706, 208807 135635, 208841 134922, 208786 134815, 208878 134320, 208902 133760, 208906 133321), (211852 143319, 211732 143619, 211818 143797, 211917 143805, 212291 143684, 212355 143717, 212455 143459, 212051 143027, 211912 142911), (197247 143463, 197159 143551, 197275 143538, 197655 143804, 197723 143784, 197651 143379), (199039 143036, 198644 143375, 198594 143545, 199089 143798, 199253 143787, 199404 143711, 199403 143324, 199201 142992, 199195 142416), (192401 135137, 192451 135538, 192409 136552, 192478 137081, 192380 137496, 192368 137887, 192344 138668, 192357 139440, 192301 140158, 192347 140994, 192303 141696, 192314 142165, 192368 142443, 192337 142935, 192016 143412, 192061 143785, 192445 143739, 192606 143792, 192880 143561, 192771 143139, 192529 142881, 192590 142478, 192582 142237, 192680 142065, 192627 141923, 192722 141196, 192568 140689, 192620 140531, 192578 140352, 192453 140190, 192619 139907, 192677 139620, 192505 139110, 192620 138981, 192362 138664, 192648 138058, 192569 137832, 192596 137577, 192519 136683, 192424 136321, 192571 135525, 192522 135131, 192415 134726), (204464 143160, 204482 143482, 204792 143784, 205070 143709, 205147 143630, 205151 142910), (190046 143400, 189933 143593, 190176 143603, 190456 143770, 190518 143433, 190470 143059, 190180 142766), (193816 143304, 193791 143699, 193977 143679, 194089 143743, 194339 143692, 194615 143473, 193921 143077), (188625 138913, 188485 139340, 188433 139740, 188487 140114, 188696 140444, 188479 140891, 188419 141295, 188461 141671, 188655 142005, 188595 142797, 188421 143108, 188396 143322, 188194 143417, 188161 143692, 188356 143669, 188466 143734, 188716 143686, 188952 143733, 188920 143484, 188806 143127, 188646 142802, 188751 142017, 188688 141291, 188746 140921, 188725 140824, 188717 140110, 188662 139736, 188732 139373, 188717 139275, 188747 138408), (202785 143172, 202878 143534, 203301 143711, 203536 143601, 203671 143310, 202949 142873), (201195 142717, 200890 142760, 201032 143162, 200957 143285, 201088 143286, 201240 143596, 201428 143619, 201616 143697, 201801 143542, 201869 143424, 201795 143055, 201410 142548), (206282 142731, 206250 142949, 206137 143232, 206122 143420, 206313 143632, 206542 143694, 206752 143636, 206870 143402, 206891 143210, 206662 142685), (182863 143594, 183201 143612, 183286 143478, 182775 143100), (181212 142495, 181065 142923, 180983 143333, 181147 143519, 181380 143612, 181584 143589, 181727 143345, 181749 143124, 181475 142985, 181236 142489, 181151 142092), (200234 143484, 200516 143602, 200647 143370, 200257 143328), (184893 142960, 184222 143169, 184102 143139, 184470 143541, 184630 143589, 184988 143082, 185158 143063, 184932 142716), (179573 143332, 179653 143398, 179928 143235, 179932 143101, 179675 142630), (51816 142917, 51852 143065, 51828 143222, 52000 143273, 51971 143033, 52026 142632), (214134 138896, 214126 140401, 214118 140477, 214138 141223, 214090 142012, 214172 142736, 214298 142482, 214369 142160, 214246 141969, 214230 141198, 214185 140435, 214229 139648, 214140 138897, 214165 138119, 214157 138007), (69390 142136, 69233 142635, 69412 142115, 69226 141773), (72913 139495, 72959 139583, 72733 140370, 72739 140512, 73116 141101, 72723 141810, 72733 142185, 73017 142321, 72922 141942, 72970 141825, 73161 141097, 72849 140402, 73175 139699, 73208 139294, 72753 138960), (201355 141206, 201321 141508, 201399 141613, 201362 141977, 201412 142168, 201498 142056, 201536 141667, 201467 141207, 201416 141161), (198788 141158, 198757 141556, 198796 141945, 199199 142075, 199227 141871, 199169 141480, 199205 141092, 199184 140881), (202921 141605, 202964 141185, 202941 141081), (199074 138325, 199190 139117, 199082 139872, 199125 140279, 199179 140431, 199152 139928, 199194 139119, 199156 138740, 199142 138062), (206426 134601, 206427 134809, 206586 135462, 206571 135892, 206431 136168, 206605 137019, 206563 137800, 206576 137868, 206576 138544, 206559 138649, 206552 139334, 206683 140304, 206697 140150, 206673 139430, 206723 138652, 206771 138591, 206722 138558, 206655 137873, 206700 137089, 206730 137051, 206698 137032, 206700 136285, 206668 135906, 206697 135544, 206736 135499, 206705 135464, 206729 134764, 206636 134371), (182757 140117, 182978 139890, 182970 139688, 182756 139415), (46050 139560, 46244 139854, 46241 139565, 46121 139382), (72777 137718, 72692 138174, 72813 138483, 72738 138845, 72970 138501, 73088 138408, 73181 138255, 73130 137816, 72994 137658, 72760 137538), (182758 138438, 182931 138316, 182897 138157, 182758 137977), (188636 137310, 188685 137711, 188752 137882, 188755 137737, 188698 137158), (46121 137256, 46077 137283, 46084 137516, 46224 137243, 46194 136964), (210344 135647, 210405 136230, 210462 135641, 210385 135274, 210391 134870), (72906 134969, 72736 135436, 72941 134937, 72764 134691), (74361 134456, 74384 134644, 74477 134648, 74470 134540, 74596 134115), (81455 133200, 81485 133392, 81339 133738, 81316 133962, 81478 133782, 81614 133460, 81630 133195), (70938 133183, 70805 133615, 71002 133220, 71022 133051, 70779 132835), (77847 131676, 77788 131955, 77850 132063, 77837 132269, 77906 132435, 77887 132550, 78169 132097, 78162 131851, 78033 131625, 77812 131490), (81292 131487, 81392 131868, 81389 132130, 81624 132031, 81603 131810, 81657 131454), (70718 131287, 70767 131679, 70750 132085, 71085 131900, 71044 131602, 71079 131244), (74386 131074, 74260 131394, 74268 131595, 74367 131855, 74604 131960, 74588 131629, 74422 131452, 74550 131149, 74551 130893), (77804 130253, 77939 130489, 77817 130784, 77812 131076, 78037 130849, 78132 130586, 78105 130443, 78157 130204, 78076 130062, 77802 130024), (81410 129924, 81311 130059, 81347 130329, 81269 130759, 81676 130674, 81678 130575, 81578 130265, 81695 129686), (67444 130264, 67351 130615, 67542 130306, 67569 130084, 67344 129992), (70929 129619, 70760 129920, 70776 130126, 70693 130553, 71090 130462, 71066 130046, 71137 129825, 71099 129649, 71138 129420), (72724 130290, 72720 130466, 72864 130522, 72802 130346, 72915 129980), (74571 129085, 74220 129878, 74223 130039, 74422 130211, 74330 129927, 74637 129110, 74642 129003, 74406 128733), (79869 129183, 79730 129613, 79936 129208, 79941 129100, 79831 129039), (77774 128527, 77877 128955, 77793 129458, 78176 129201, 78123 128887, 78203 128434), (67151 128626, 67245 128768, 67173 128978, 67212 129164, 67177 129363, 67386 129198, 67560 128903, 67538 128483, 67444 128325, 67161 128256), (69288 128983, 69201 129289, 69346 129014, 69360 128877, 69243 128841), (81431 126754, 81150 126887, 81276 127434, 81376 127608, 81664 127916, 81464 128283, 81297 128404, 81253 128508, 81311 128788, 81309 129010, 81413 129149, 81700 129270, 81685 128903, 81604 128707, 81682 128490, 81662 128305, 81768 127937, 81656 127530, 81721 127167, 81598 126772, 81607 126582), (208804 128730, 208921 129178, 208937 128306, 208923 127968), (63990 128884, 63952 129150, 64113 128851, 63954 128684), (71047 127649, 71106 127709, 70819 128176, 70735 128764, 70831 128948, 71126 129085, 71096 128690, 70982 128518, 71111 128334, 71107 128097, 71183 127640, 70808 127105), (74255 125580, 73924 125774, 74301 126447, 74409 126804, 74283 127081, 74184 127651, 74255 128010, 74242 128326, 74529 128031, 74643 127670, 74630 127369, 74527 127158, 74609 126900, 74590 126715, 74858 125845, 74824 125528), (76402 127808, 76269 128267, 76330 128302, 76303 128223, 76481 127840, 76480 127726, 76330 127582), (65665 127994, 65663 128172, 65795 128146, 65782 128006, 65853 127725), (79797 127653, 79770 127860, 79953 127790, 79910 127516, 79752 127456), (77925 127003, 77798 127121, 77819 127420, 77781 127821, 78208 127795, 78237 127505, 78174 127322, 78198 127060, 78158 126885), (67259 125562, 66855 125773, 67081 126243, 67294 126429, 67180 126839, 67244 127218, 67170 127539, 67169 127718, 67609 127555, 67622 127420, 67558 127130, 67552 126756, 67434 126777, 67547 126728, 67479 126378, 67675 126237, 67811 125899, 67704 125541), (69195 127624, 69365 127599, 69335 127262, 69160 127259), (63943 127346, 63911 127582, 64034 127383, 64190 127279, 64022 127265, 63912 127201), (72779 126862, 72701 127179, 72871 126906, 72865 126775, 72686 126594), (75992 125549, 75668 125683, 75799 126035, 76147 126328, 76186 126813, 76344 127049, 76463 127062, 76465 126956, 76298 126673, 76510 126432, 76690 125791, 76598 125786, 76470 125622, 76345 125596, 76310 125507), (46081 126428, 46176 126790, 46166 127047, 46379 126947, 46496 126702, 46439 126403, 46153 126355), (70541 125538, 70628 125685, 70598 125911, 70678 126401, 70863 126613, 70776 126992, 70805 127017, 71162 126966, 71169 126845, 71030 126566, 71233 126363, 71390 125691, 70936 125751, 70707 125486), (49675 126499, 49703 126669, 49842 126852, 49872 126552, 49820 126308), (68981 125524, 68651 125668, 68769 126024, 69026 126341, 69205 126680, 69170 126850, 69299 126767, 69277 126660, 69475 126343, 69661 125780, 69593 125776, 69369 125472), (65589 125667, 65253 125812, 65212 125765, 65142 125855, 65215 125900, 65405 126242, 65608 126503, 65578 126680, 65836 126784, 65735 126468, 65953 126284, 66138 125876, 66124 125586), (72563 125677, 72242 125847, 72643 126501, 72945 126299, 73144 125912, 73113 125609, 72943 125584), (77678 125907, 77647 126146, 77696 126374, 77872 126335, 78283 125907, 78337 125728, 77918 125800, 77792 125661), (64671 125560, 64367 125680, 64504 126021, 64818 125824, 64900 125534), (61578 125669, 61661 125862, 61853 126013, 62126 125713, 62132 125518), (57307 125677, 57331 125713, 57818 125704, 57827 125535), (50780 119092, 50641 119591, 50387 119820, 50572 119976, 50753 119874, 51023 119515, 51061 119248, 51035 118923), (52440 110342, 52318 110762, 52658 110283, 52481 110291, 52381 110176), (90492 73880, 90508 74097, 90745 74443, 90898 74412, 91006 74251, 91250 74080, 91317 73938, 90648 73370), (95409 74279, 95803 74309, 96000 74157, 95493 73769), (89095 73380, 89036 73436, 89041 73726, 88737 73881, 88840 74250, 89211 74302, 89346 74254, 89588 74015, 89348 73541, 89359 73292), (101213 71532, 101237 72214, 101296 72603, 101323 73291, 101161 73606, 101101 73936, 101134 74004, 101499 74244, 101612 74263, 101733 74170, 101926 73735, 101714 73229, 101616 72809, 101711 72599, 101678 72155, 101732 72141, 101752 71805, 101745 71291, 101226 71130), (92948 73383, 92727 73994, 92893 74248, 93180 74242, 93302 74116, 93081 73553, 93314 73641, 93055 73379, 92931 73057), (96900 73796, 96690 73802, 96952 74201, 97020 74037, 97505 74035, 97612 73826, 97137 73654), (98362 73445, 97755 73851, 97925 74101, 98106 74134, 98210 74086, 98432 73470, 98397 73368), (99658 71587, 99664 72041, 99726 72328, 99707 72423, 99859 73116, 99716 73360, 99566 73417, 99467 73644, 99544 74021, 99650 74082, 100045 74129, 100243 73875, 100126 73509, 99968 73194, 99934 72477, 100006 72364, 100018 72192, 99907 71767, 99985 71590, 99917 71429, 100081 71347, 100079 71161, 99631 70867), (93951 73986, 94226 74112, 94284 73920, 94076 73750), (102889 72361, 102983 73121, 102920 73391, 102831 73543, 102790 73943, 103141 74099, 103377 74057, 103543 73829, 103350 73432, 103069 73103, 102980 72343, 102892 72123), (98110 71878, 98302 72616, 98266 71965, 98116 71143), (90761 71701, 90857 72063, 90827 72078, 90900 72333, 90888 72068, 90955 71667, 90812 71636), (95501 69458, 95481 69538, 95570 70204, 95530 70315, 95579 70560, 95545 70704, 95624 70940, 95723 71065, 95824 71437, 95810 71834, 95894 71964, 95828 71439, 95789 70716, 95801 70659, 95728 69976, 95753 69884, 95722 69623, 95746 69494, 95652 69119, 95502 68753, 95470 68554), (102854 66173, 102889 66828, 102874 66939, 102964 67569, 102958 67907, 102886 68094, 102956 68591, 102847 68705, 102839 68908, 103170 69206, 103375 69813, 103364 69213, 103331 68484, 103270 67742, 103310 67551, 103243 67012, 103320 66728, 103311 66326, 103019 66098, 102850 65661), (101279 66021, 101325 66687, 101353 67054, 101328 67182, 101446 67817, 101369 67957, 101441 68505, 101282 68592, 101267 69247, 101725 69460, 101797 69595, 101872 69518, 101820 69431, 101714 68364, 101664 67981, 101624 67258, 101656 67131, 101556 66517, 101681 66350, 101653 66245, 101750 66153, 101748 65922, 101289 65615), (99721 65991, 99940 67172, 99889 66588, 99841 65848, 99720 65436), (98163 65632, 98248 66055, 98212 65657, 98113 64989), (98218 59856, 98262 60034, 98199 59533), (97930 57562, 97989 57883, 98264 57538, 98224 57226), (98274 57069, 98352 56767, 98340 56650, 98212 56572)), ((225644 179887, 225631 180659, 225630 181166, 225501 181198, 225501 201627, 225489 202135, 225491 202402, 225469 202910, 225469 214698, 189190 214698, 189122 214369, 189502 214263, 189441 213910, 189797 213801, 189863 213394, 190230 213295, 190305 212881, 190232 212521, 190597 212416, 190527 212045, 190904 211955, 190968 211543, 191333 211450, 191398 211033, 191769 210929, 191702 210561, 192075 210458, 192010 210090, 192387 209987, 192509 209189, 192779 209101, 192659 208948, 192840 208898, 192807 208707, 193184 208605, 193131 208320, 192997 208265, 192914 208042, 193133 208105, 193491 208130, 193607 207330, 193975 207223, 194033 206825, 194399 206727, 194460 206322, 194830 206217, 194769 205845, 195094 205753, 195088 205710, 195137 205727, 195088 205374, 195460 205270, 195555 204465, 195925 204377, 195870 203991, 196248 203890, 196189 203517, 196562 203414, 196571 202978, 196982 202909, 197032 202509, 196980 202140, 197349 202039, 197301 201665, 197550 201591, 197462 201369, 197687 201403, 197718 201161, 198088 201065, 198164 200648, 198098 200293, 198459 200201, 198419 199815, 198786 199740, 198819 199692, 198820 199339, 198731 199328, 198742 199230, 199210 199075, 199243 198805, 199612 198706, 199570 198329, 199940 198226, 199894 197850, 200267 197748, 200313 197351, 200344 197336, 200361 196961, 200721 196845, 200705 196490, 201051 196387, 201007 195994, 201379 195890, 201419 195494, 201681 195420, 201733 195337, 201797 195323, 201850 195374, 202914 195085, 203286 195013, 203608 195279, 204380 195071, 204758 194997, 205145 195245, 205915 195038, 205949 195057, 206292 194965, 206675 195213, 207472 195028, 207513 194984, 207433 194326, 208139 194763, 208187 194751, 208198 194796, 208936 194597, 209310 194493, 209652 194785, 210783 194487, 211127 194769, 211887 194564, 211904 194572, 212636 194366, 212663 193969, 213028 193869, 213040 193607, 212897 193507, 212880 193203, 213194 193427, 213421 193365, 213402 192984, 213778 192883, 213784 192115, 214174 191995, 214180 191626, 214532 191562, 214522 191129, 214893 191026, 214877 190640, 215252 190538, 215271 190150, 215642 190045, 215655 189653, 215771 189619, 215781 189353, 216031 189376, 216044 189162, 216112 189138, 216050 188786, 216008 188778, 216004 188689, 216072 188762, 216421 188730, 216428 188669, 216798 188563, 216789 188184, 217163 188081, 217146 187723, 217067 187713, 217038 187607, 217146 187610, 217311 187424, 217524 187367, 217531 187200, 217904 187096, 217905 186326, 218274 186231, 218267 185837, 218640 185733, 218649 185345, 219023 185239, 219029 184851, 219399 184751, 219396 183984, 219761 183882, 219768 183486, 220141 183382, 220142 183149, 220015 183028, 219880 182796, 220142 182801, 220210 182976, 220523 182895, 220515 182507, 220895 182408, 220888 182020, 221261 181916, 221267 181139, 221642 181032, 221644 180654, 222008 180546, 222009 180160, 222387 180058, 222385 179669, 222756 179566)), ((188743 194702, 188639 195415, 187979 195596, 187463 195051, 187300 194412, 187962 194231)), ((191618 194689, 191729 195343, 191069 195524, 190334 195040, 190395 194339, 191054 194158)), ((185622 194782, 185772 195404, 185067 194934, 185117 194659, 185378 194526)), ((202513 194804, 202501 195148, 202174 195210, 201897 194972, 201465 194406, 202129 194224)), ((205441 194777, 205470 195090, 205161 195195, 204822 194945, 204525 194343, 205184 194161)), ((115949 193379, 115652 193181, 115715 193005, 116038 192923)), ((116700 192741, 116596 193015, 116359 193081, 116203 192877, 116394 192683, 116521 192667)), ((77515 185401, 77725 185593, 77537 185918, 77288 185961, 76960 185801, 77113 185262)), ((222757 179018, 222796 179176, 222834 179180, 222757 179400, 222524 179239, 222523 178999)), ((126075 177767, 125917 178099, 125649 178316, 125278 178528, 125164 178494, 125215 178384, 125585 178287, 125820 177765)), ((22835 173891, 22683 174001, 22336 173940, 22684 173657)), ((23062 172597, 23098 172656, 23435 172783, 23506 173007, 23433 173045, 23083 173072, 23138 173420, 23058 173608, 22788 173515, 22816 173257, 22943 173086, 22915 172943, 22945 172697, 22921 172558)), ((24493 172273, 23903 172529, 23686 172494, 23808 172066)), ((24475 170728, 24357 171043, 24352 171329, 23809 171154, 23712 170835, 23808 170583)), ((131176 170166, 130997 170524, 130804 170766, 130591 170824, 130405 170764, 130636 170654, 130806 170268, 130873 170243, 130909 170143)), ((87703 170065, 87660 170256, 87487 170304, 87320 169991, 87664 169896)), ((131726 168823, 131426 168980, 131353 168974, 131586 168499, 131745 168460)), ((91043 165273, 90853 165457, 90718 165509, 90523 165236, 90869 165141)), ((22740 165058, 22708 165423, 22614 165405, 22458 165000, 22685 164907)), ((152546 163146, 152437 163506, 152211 163429, 152010 163292, 152388 163115)), ((23180 162555, 23054 162803, 22692 162698, 22885 163023, 22753 163130, 22685 163270, 22142 163084, 22674 162691, 22697 162314, 23054 162234)), ((206641 162618, 206796 162618, 206808 162777, 206650 162820, 206360 162428)), ((30210 162566, 30322 162719, 29848 162664, 29897 162422, 30111 162273)), ((30545 162087, 30625 162207, 30481 162174, 30181 162185, 30267 161930, 30497 161755)), ((31148 161146, 30929 161241, 30951 161675, 30542 161699, 30589 161371, 30882 160992)), ((31307 160327, 31592 160378, 31742 160596, 31624 160760, 31258 160726, 31138 160372, 31214 160276)), ((32017 159366, 31997 159750, 32042 159807, 31822 159797, 31884 159673, 31940 159378, 32014 159263, 32380 159258)), ((32534 158827, 32462 158906, 32382 159256, 32162 158929, 32434 158544)), ((152430 153099, 152546 153564, 152446 153974, 152343 154012, 152176 154193, 151922 154317, 151807 154302, 151802 154433, 151495 154905, 151309 155116, 150914 155802, 150871 155804, 150870 155851, 150646 156077, 150562 156324, 150073 157020, 149641 157496, 149567 157759, 149356 158130, 149274 158138, 149254 158232, 149011 158461, 148837 158735, 148458 159215, 148556 158811, 148724 158379, 148883 158222, 148958 157926, 149103 157735, 149316 157655, 149359 157429, 149737 156738, 150003 156403, 150135 156024, 150417 155818, 150505 155564, 150599 155434, 150859 154975, 151128 154586, 151413 154383, 151556 154020, 151815 153788, 151902 153242, 151911 152990, 152256 152794)), ((209437 158793, 209460 159173, 209128 158877, 209263 158588)), ((83131 157752, 82774 158528, 82105 158742, 81770 158123, 82047 157317, 82720 157208)), ((33547 157387, 33627 157494, 33315 157450, 33355 157287, 33511 157131)), ((39116 145521, 39364 145607, 39465 145590, 39635 145639, 39593 145824, 39925 146523, 40177 146819, 40235 146713, 40363 146603, 40306 146231, 40480 145992, 40628 146143, 40835 146156, 41032 146419, 41083 146572, 40564 146585, 40726 146890, 40702 147036, 40562 147117, 40287 147099, 40358 147379, 40157 147822, 40193 147892, 40111 147893, 39957 148076, 39861 148291, 39896 148368, 39807 148367, 39593 148514, 39544 148835, 39480 148838, 39246 149007, 39189 149406, 39031 149520, 38731 149427, 38695 149473, 38370 148754, 38200 147828, 38271 147564, 38208 147453, 38235 147390, 38584 147478, 38709 147555, 38773 147426, 38757 147127, 38603 146698, 38544 146326, 38576 145772, 38732 145464)), ((43859 142156, 43963 142503, 43646 142341, 43370 142289, 43457 141959)), ((44171 141682, 44007 141948, 43683 141581, 43880 141391)), ((24416 45497, 24693 45678, 25200 45679, 25466 45668, 25974 45669, 26239 45658, 26747 45659, 27020 45680, 27527 45681, 27792 45669, 28300 45670, 28566 45658, 29073 45659, 29338 45646, 29845 45647, 30119 45671, 30626 45672, 30892 45658, 31399 45659, 31664 45644, 32172 45645, 32446 45673, 32953 45674, 33218 45658, 33725 45659, 33989 45642, 34497 45643, 34773 45678, 35280 45679, 35544 45658, 36051 45659, 36315 45638, 36822 45639, 37086 45618, 37593 45619, 37870 45658, 38377 45659, 38639 45631, 39147 45632, 39409 45604, 39917 45605, 40196 45658, 40703 45658, 40963 45619, 41730 45617, 42226 45683, 42524 45767, 42787 45684, 43283 45687, 43545 45602, 44533 45603, 44832 45795, 59563 45794, 59688 45676, 60180 45673, 60322 45630, 60554 45847, 60716 46268, 60907 46296, 61682 46292, 61904 46485, 62076 46292, 63233 46292, 63455 46488, 67332 46486, 67504 46292, 68660 46292, 68883 46489, 69658 46488, 70039 46678, 71209 46673, 72365 46679, 74310 46672, 75467 46678, 78962 46675, 79133 46472, 79903 46483, 80127 48386, 80383 48432, 80159 48711, 80166 48815, 79154 49957, 79190 50343, 78862 50732, 78290 51383, 78522 51502, 78206 51657, 78225 51863, 77930 52172, 78046 52480, 78186 52613, 77967 52832, 77830 52716, 77559 52668, 77515 52628, 76871 53397, 76911 53776, 76580 54130, 76297 54514, 76422 54717, 76353 54952, 75925 55085, 75942 55355, 75261 56022, 75284 56139, 75631 56439, 75354 56695, 75182 56552, 74638 57171, 74637 57198, 74304 57591, 73293 58838, 73343 59217, 73068 59463, 73003 59568, 73039 59902, 72696 60203, 72359 60608, 71013 62293, 71062 62667, 70726 63087, 70378 63374, 70424 63748, 70078 64026, 69343 64944, 69460 65598, 69208 65831, 68818 66330, 68532 66440, 68117 66973, 68167 67352, 67460 67856, 67504 68234, 67291 68267, 67356 68464, 67153 68491, 67216 69045, 66837 69105, 66881 69479, 66510 69535, 66538 69906, 66176 69964, 65816 70214, 65862 70591, 65510 70826, 65553 71203, 65254 71251, 65285 71343, 65281 71726, 65668 72320, 64891 72061, 64935 72458, 64607 72515, 64612 72559, 64564 72547, 64598 72895, 64228 72956, 64272 73342, 63897 73399, 63944 73789, 63565 73847, 63609 74236, 63165 74504, 63485 74913, 62921 74883, 62936 75038, 62562 75102, 62624 75596, 62911 75825, 62944 76077, 62690 76122, 62461 76069, 62300 76096, 62320 76311, 61948 76379, 61984 76755, 61615 76819, 61663 77214, 61464 77254, 61486 77432, 61304 77417, 61330 77666, 60940 77749, 60997 78122, 60812 78228, 60856 78585, 61066 78879, 60326 78884, 60370 79264, 59992 79337, 60033 79627, 60176 79697, 60192 79828, 60061 79854, 59948 79740, 59662 79792, 59710 80174, 59417 80237, 59426 80317, 59344 80316, 59380 80631, 59006 80706, 59051 81093, 58935 81120, 58967 81381, 58707 81408, 58722 81553, 58336 81640, 58391 82016, 58246 82090, 58251 82304, 58053 82367, 58069 82570, 57710 82723, 57757 83119, 57543 83168, 57563 83329, 57396 83309, 57426 83580, 57212 83632, 57509 84009, 57085 83905, 57100 84046, 56906 84091, 56905 84257, 56745 84291, 56771 84511, 56557 84561, 56757 84851, 56409 84700, 56434 84976, 56076 85132, 56109 85511, 55755 85661, 55804 86049, 55424 86133, 55470 86511, 55094 86599, 55145 86982, 54763 87067, 54814 87449, 54438 87539, 54486 87922, 54111 88013, 54155 88392, 53782 88487, 53829 88871, 53459 89006, 53510 89393, 53137 89521, 53187 89903, 52802 89990, 52859 90376, 52703 90419, 52710 90624, 52515 90692, 52533 90854, 52151 90944, 52201 91272, 52306 91308, 52250 91667, 52034 91376, 51831 91427, 51879 91810, 51495 91900, 51551 92263, 51626 92274, 51566 92388, 51440 92321, 51177 92389, 51224 92772, 50962 92858, 50975 92967, 51310 93535, 50936 93537, 50649 93353, 50528 93387, 50577 93769, 50267 93859, 50165 94288, 50128 94307, 49991 94714, 49647 94794, 49270 95699, 48904 95815, 48694 96638, 48743 97052, 48853 97371, 48734 97692, 48458 97769, 48332 97513, 48248 97434, 48196 97549, 47810 97630, 47535 98478, 47611 98487, 47576 98586, 47522 98510, 47124 98568, 46867 99452, 46666 99899, 46336 99929, 46100 100429, 46451 100333, 46537 100189, 46563 100324, 46492 100589, 46239 100659, 46047 100588, 45956 100874, 45560 100944, 45274 101782, 45602 101736, 45688 101585, 45774 101826, 45571 101825, 45016 102298, 44728 102233, 44593 102414, 44398 103233, 44170 103691, 43893 103620, 43786 103749, 43552 104250, 43393 104889, 43475 105047, 43290 105457, 43260 105105, 42999 105123, 42722 105625, 42534 105997, 42898 105981, 42778 106445, 42451 106217, 42462 106099, 42175 106075, 42048 106213, 41901 107029, 41647 107479, 41328 107496, 41263 107547, 40991 108053, 40938 108396, 41320 108589, 40870 108695, 40821 108864, 40461 108966, 40166 109442, 39916 109898, 39829 110305, 39431 110378, 39382 110798, 39549 110775, 39417 110972, 39457 111172, 39103 111282, 39169 111630, 38792 111757, 38588 111998, 38485 112383, 38346 112377, 38285 112664, 37909 112761, 37845 113179, 37734 113547, 37423 113581, 37397 113690, 37482 114047, 37105 114157, 37190 114514, 37029 114567, 37004 114799, 36791 114846, 36754 115023, 36402 115058, 36360 115100, 36322 115532, 35926 115607, 36030 116002, 35610 116075, 35729 116457, 35880 116433, 35978 116715, 35708 116634, 35719 116476, 35304 116542, 35299 116972, 35376 116958, 35363 117042, 35287 117063, 35230 117373, 34881 117419, 34856 117488, 34934 117850, 34546 117940, 34628 118322, 34232 118411, 34196 118820, 33802 118904, 33785 119312, 33929 119293, 33978 119588, 34239 119951, 33966 119909, 33504 120034, 33504 120164, 33090 120298, 33318 120877, 32753 120620, 32685 121180, 32362 121273, 32332 121391, 32369 121657, 31958 121737, 32041 122132, 31617 122202, 31633 122600, 31865 122572, 31839 122824, 31605 122889, 31559 123007, 31223 123099, 31217 123135, 30926 123216, 31072 123565, 31093 123746, 30912 123795, 30926 123985, 30558 124091, 30513 124480, 30154 124540, 30114 124986, 29712 125062, 29777 125465, 29366 125541, 29439 125946, 29018 126018, 29002 126835, 28643 126893, 28609 127338, 28206 127410, 28214 127831, 27819 127911, 27875 128275, 28093 128258, 28109 128478, 27946 128686, 27937 129141, 27518 129029, 27487 129175, 27139 129261, 27110 129681, 26752 129730, 26720 129765, 26763 130166, 26373 130253, 26413 130652, 26000 130726, 26028 131148, 25959 131496, 25646 131601, 25652 132019, 25406 132095, 25410 132217, 25290 132235, 25292 132505, 24925 132562, 24912 133001, 24503 133074, 24535 133496, 24127 133567, 24169 133977, 23759 134053, 23800 134466, 23409 134555, 23407 135337, 23055 135414, 23048 135448, 21448 135412, 21472 134763, 21483 127274, 21477 126689, 20543 126499, 20547 125733, 20740 125475, 20742 123147, 20552 123002, 20549 121848, 20739 121598, 20551 121452, 20549 120297, 20739 120048, 20551 119901, 20549 118747, 20739 118497, 20551 118351, 20549 117196, 20738 116947, 20742 113068, 20552 112923, 20549 111769, 20741 111519, 20551 111373, 20549 110219, 20739 109969, 20551 109823, 20549 108668, 20739 108419, 20551 108272, 20550 107307, 20543 107118, 20546 106531, 20263 106323, 20249 106152, 20289 105938, 19975 105771, 19971 105529, 19902 105384, 19903 104888, 20107 104860, 20043 104711, 20055 104570, 20058 103937, 20048 103797, 20057 103019, 20053 101752, 19921 101506, 19914 101119, 20734 100873, 20730 100098, 20726 82901, 20732 80715, 20725 78390, 20733 77861, 20682 77377, 20679 76060, 20673 75926, 20673 74375, 20791 74122, 20766 73599, 20920 73346, 20888 72825, 20780 72572, 20826 72049, 20943 71796, 21012 71314, 21026 70499, 21067 69857, 21079 69335, 21108 68560, 21174 68195, 21159 67397, 20693 67144, 20633 66757, 20627 65980, 20613 65594, 20617 64430, 20611 64297, 20643 63656, 20651 62880, 20644 62747, 20643 61329, 20635 61197, 20626 60556, 20634 60167, 20616 59647, 20612 59006, 20626 58617, 20635 57452, 20621 56933, 20637 56543, 20635 55902, 20623 55771, 20605 55130, 20589 54605, 20479 53698, 20498 53443, 20502 52802, 20483 52673, 20484 52032, 20495 51895, 20488 51253, 20464 51125, 20462 50484, 20438 50222, 20439 49193, 20980 48996, 20972 48796, 21054 48617, 22249 48387, 22365 48176, 22528 47991, 22803 46284, 23023 45522, 23179 45567, 23686 45577, 23908 45496), (27459 128386, 27528 128768, 27898 128695, 27847 128326)), ((46309 131406, 46100 132193, 45817 132066, 45755 131944, 45798 131545, 45735 131174, 46083 130719)), ((46265 129867, 46083 130664, 45720 130403, 45769 130003, 45853 129772, 46158 129536)), ((54828 117709, 54891 117423, 55016 117220)), ((56066 115552, 56016 115584, 55910 115981, 55820 116114, 55765 116020, 55985 115528, 56047 115473)), ((59963 111769, 59714 112290, 59647 112321, 59601 112256, 59642 112169, 59706 111568, 59949 111540)), ((62416 108104, 62244 108298, 62197 108054, 62278 107868, 62506 107656)), ((57993 100763, 57795 101073, 57770 100618, 58007 100553)), ((49407 98770, 49043 99607, 48336 99801, 48010 99151, 48287 98338, 48992 98144)), ((53524 90588, 53555 90831, 53318 90908, 53183 90693, 53153 90576, 53273 90546)), ((56329 85838, 56370 86162, 55836 86037, 56054 85835)), ((222336 47944, 222395 48012, 222777 48153, 222736 48544, 222778 49316, 222736 49687, 222776 50867, 222795 51643, 222701 52375, 222699 53594, 222734 53973, 222663 54767, 222651 55437, 222681 55925, 222655 56215, 222650 56987, 222654 57483, 222627 58132, 222631 58523, 222568 59151, 222623 59817, 222677 60190, 222569 60413, 222370 60649, 222312 61066, 222756 61068, 223426 61317, 223377 61372, 222756 61414, 222487 61515, 222007 61657, 221730 61613, 221633 61475, 221483 61525, 221260 61479, 221073 61600, 220593 61536, 220524 61179, 220568 61156, 220425 61014, 220480 61180, 220318 61410, 220141 61322, 219901 61479, 219414 61586, 219414 49194, 217175 49194, 217219 49066, 217149 48897, 217135 48627, 217222 48422, 217177 48323, 217350 48304, 218065 47960, 218125 47964, 218516 48221, 218898 48295, 219284 48120, 219664 47874, 220022 48066, 220456 48162, 220840 48174, 221181 48040, 221560 47983, 221979 47772)), ((86963 56778, 86303 57198, 86321 57587, 85769 57802, 85799 57221, 86214 56722, 86685 56693)), ((174552 46418, 182693 46412, 182828 46417, 188121 46412, 188256 46418, 191222 46411, 191357 46418, 194323 46409, 194458 46417, 197425 46407, 197560 46416, 199751 46409, 199886 46418, 201049 46413, 201302 46688, 201824 46740, 202094 46910, 202987 46913, 204017 46885, 204149 46822, 204809 46823, 205309 46801, 206086 46789, 206360 46660, 206474 46659, 206748 46390, 206861 46384, 207135 46236, 207249 46235, 207522 46465, 207636 46459, 207910 46560, 208023 46555, 208243 46722, 208436 48071, 208472 48065, 208520 48292, 209213 47870, 209605 48229, 209954 48401, 209935 48462, 210024 48635, 210019 48398, 210342 48113, 210415 48115, 210759 47945, 211151 48229, 211538 48432, 211577 48654, 211555 48434, 212313 47984, 212701 48021, 213120 48192, 213452 48383, 213454 48696, 213563 48746, 213515 48380, 213863 48181, 214304 47874, 214692 48624, 214728 48633, 215442 48174, 215865 47811, 216185 47831, 216603 48152, 216919 48328, 216984 48875, 216970 49194, 167425 49194, 167789 48811, 168129 48436, 168490 46070, 168738 45582, 168888 45717, 170945 45706, 171214 45716, 174047 45702, 174299 45581))) \ No newline at end of file