diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml new file mode 100644 index 0000000000..b4ca2ee699 --- /dev/null +++ b/.github/workflows/unit-test-post.yml @@ -0,0 +1,14 @@ +name: unit-test-post + +on: + workflow_run: + workflows: [ "unit-test" ] + types: [ completed ] + +jobs: + # FIXME: Use `main` instead of `CURA-10831` once merged + publish-test-results: + uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@CURA-10831 + with: + event: ${{ github.event.workflow_run.event }} + conclusion: ${{ github.event.workflow_run.conclusion }} diff --git a/CMakeLists.txt b/CMakeLists.txt index 04ddf4bd1e..dddaa23bd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,6 +13,7 @@ option(ENABLE_BENCHMARKS "Build with Benchmarks" OFF) option(EXTENSIVE_WARNINGS "Build with all warnings" ON) option(ENABLE_PLUGINS "Build with plugins" ON) option(ENABLE_REMOTE_PLUGINS "Build with all warnings" OFF) +option(ENABLE_SENTRY "Send crash data via Sentry" OFF) option(ENABLE_MORE_COMPILER_OPTIMIZATION_FLAGS "Enable more optimization flags" ON) option(USE_SYSTEM_LIBS "Use the system libraries if available" OFF) option(OLDER_APPLE_CLANG "Apple Clang <= 13 used" OFF) @@ -201,6 +202,10 @@ find_package(range-v3 REQUIRED) find_package(scripta REQUIRED) find_package(semver REQUIRED) +if (ENABLE_SENTRY) + find_package(sentry REQUIRED) +endif () + if (ENABLE_TESTING) find_package(GTest REQUIRED) endif () @@ -238,8 +243,14 @@ else () endif (NOT WIN32) use_threads(CuraEngine) -target_link_libraries(CuraEngine PRIVATE _CuraEngine) -target_compile_definitions(CuraEngine PRIVATE VERSION=\"${CURA_ENGINE_VERSION}\") +target_link_libraries(CuraEngine PRIVATE + _CuraEngine + $<$:sentry::sentry> +) +target_compile_definitions(CuraEngine PRIVATE + $<$:SENTRY_URL=\"${SENTRY_URL}\"> + VERSION=\"${CURA_ENGINE_VERSION}\" +) # Compiling the test environment. if (ENABLE_TESTING OR ENABLE_BENCHMARKS) diff --git a/conanfile.py b/conanfile.py index 64a188d957..642340974e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -8,7 +8,8 @@ from conan.tools.files import copy, mkdir from conan.tools.cmake import CMakeToolchain, CMakeDeps, CMake, cmake_layout from conan.tools.build import check_min_cppstd -from conan.tools.scm import Version +from conan.tools.scm import Version, Git + required_conan_version = ">=1.58.0 <2.0.0" @@ -28,6 +29,7 @@ class CuraEngineConan(ConanFile): "enable_benchmarks": [True, False], "enable_extensive_warnings": [True, False], "enable_plugins": [True, False], + "enable_sentry": [True, False], "enable_remote_plugins": [True, False], } default_options = { @@ -35,12 +37,14 @@ class CuraEngineConan(ConanFile): "enable_benchmarks": False, "enable_extensive_warnings": False, "enable_plugins": True, + "enable_sentry": False, "enable_remote_plugins": False, } def set_version(self): if not self.version: - self.version = "5.7.0-alpha" + git = Git(self) + self.version = f"5.7.0-alpha+{git.get_commit()[:6]}" def export_sources(self): copy(self, "CMakeLists.txt", self.recipe_folder, self.export_sources_folder) @@ -57,6 +61,8 @@ def export_sources(self): def config_options(self): if not self.options.enable_plugins: del self.options.enable_remote_plugins + if self.conf.get("user.curaengine:sentry_url", "", check_type=str) == "": + del self.options.enable_sentry def configure(self): self.options["boost"].header_only = True @@ -85,6 +91,8 @@ def build_requirements(self): def requirements(self): if self.options.enable_arcus: self.requires("arcus/5.3.0") + if self.options.get_safe("enable_sentry", False): + self.requires("sentry-native/0.6.5") self.requires("asio-grpc/2.6.0") self.requires("grpc/1.50.1") self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") @@ -112,6 +120,9 @@ def generate(self): tc.variables["ENABLE_BENCHMARKS"] = self.options.enable_benchmarks tc.variables["EXTENSIVE_WARNINGS"] = self.options.enable_extensive_warnings tc.variables["OLDER_APPLE_CLANG"] = self.settings.compiler == "apple-clang" and Version(self.settings.compiler.version) < "14" + if self.options.get_safe("enable_sentry", False): + tc.variables["ENABLE_SENTRY"] = True + tc.variables["SENTRY_URL"] = self.conf.get("user.curaengine:sentry_url", "", check_type=str) if self.options.enable_plugins: tc.variables["ENABLE_PLUGINS"] = True tc.variables["ENABLE_REMOTE_PLUGINS"] = self.options.enable_remote_plugins diff --git a/include/utils/format/filesystem_path.h b/include/utils/format/filesystem_path.h new file mode 100644 index 0000000000..f6f8d697a7 --- /dev/null +++ b/include/utils/format/filesystem_path.h @@ -0,0 +1,47 @@ +// Copyright (c) 2023 UltiMaker +// CuraEngine is released under the terms of the AGPLv3 or higher + +#ifndef CURAENGINE_INCLUDE_UTILS_FORMAT_FILESYSTEM_PATH_H +#define CURAENGINE_INCLUDE_UTILS_FORMAT_FILESYSTEM_PATH_H + +#include +#include + +#include + +namespace fmt +{ +template<> +struct formatter : formatter +{ + static std::string USERNAME; + static constexpr std::string_view OBFUSCATED_STRING = "*******"; + + [[nodiscard]] static std::string anonymizePath(const std::string& path) + { + std::string anonymized_path = path; + size_t pos = anonymized_path.find(USERNAME); + while (pos != std::string::npos) + { + anonymized_path.replace(pos, USERNAME.size(), OBFUSCATED_STRING); + pos = anonymized_path.find(USERNAME, pos + OBFUSCATED_STRING.size()); + } + return anonymized_path; + } + + template + auto format(const std::filesystem::path& path, FormatContext& ctx) + { + return formatter::format(anonymizePath(path.generic_string()), ctx); + } +}; + +#ifdef _WIN32 +std::string fmt::formatter::USERNAME = std::getenv("USERNAME") != nullptr ? std::getenv("USERNAME") : ""; +#else +std::string fmt::formatter::USERNAME = std::getenv("USER") != nullptr ? std::getenv("USER") : ""; +#endif + +} // namespace fmt + +#endif // CURAENGINE_INCLUDE_UTILS_FORMAT_FILESYSTEM_PATH_H diff --git a/include/utils/polygonUtils.h b/include/utils/polygonUtils.h index 59d71a9354..ecda641626 100644 --- a/include/utils/polygonUtils.h +++ b/include/utils/polygonUtils.h @@ -207,7 +207,7 @@ class PolygonUtils * \param max_dist2 The squared maximal allowed distance from the point to the nearest polygon. * \return The index to the polygon onto which we have moved the point. */ - static unsigned int moveInside(const Polygons& polygons, Point2LL& from, int distance = 0, int64_t max_dist2 = std::numeric_limits::max()); + static size_t moveInside(const Polygons& polygons, Point2LL& from, int distance = 0, int64_t max_dist2 = std::numeric_limits::max()); /** * \brief Moves the point \p from onto the nearest polygon or leaves the diff --git a/src/LayerPlan.cpp b/src/LayerPlan.cpp index 6077daa44d..7d4ede0d0f 100644 --- a/src/LayerPlan.cpp +++ b/src/LayerPlan.cpp @@ -2283,8 +2283,8 @@ bool LayerPlan::writePathWithCoasting( bool length_is_less_than_min_dist = true; - unsigned int acc_dist_idx_gt_coast_dist = NO_INDEX; // the index of the first point with accumulated_dist more than coasting_dist (= index into accumulated_dist_per_point) - // == the point printed BEFORE the start point for coasting + std::optional acc_dist_idx_gt_coast_dist; // the index of the first point with accumulated_dist more than coasting_dist (= index into accumulated_dist_per_point) + // == the point printed BEFORE the start point for coasting const Point2LL* last = &path.points[path.points.size() - 1]; for (unsigned int backward_point_idx = 1; backward_point_idx < path.points.size(); backward_point_idx++) @@ -2294,7 +2294,7 @@ bool LayerPlan::writePathWithCoasting( accumulated_dist += distance; accumulated_dist_per_point.push_back(accumulated_dist); - if (acc_dist_idx_gt_coast_dist == NO_INDEX && accumulated_dist >= coasting_dist) + if (! acc_dist_idx_gt_coast_dist.has_value() && accumulated_dist >= coasting_dist) { acc_dist_idx_gt_coast_dist = backward_point_idx; // the newly added point } @@ -2321,22 +2321,23 @@ bool LayerPlan::writePathWithCoasting( { return false; // Skip coasting at all then. } - for (acc_dist_idx_gt_coast_dist = 1; acc_dist_idx_gt_coast_dist < accumulated_dist_per_point.size(); acc_dist_idx_gt_coast_dist++) + for (acc_dist_idx_gt_coast_dist = 1; acc_dist_idx_gt_coast_dist.value() < accumulated_dist_per_point.size(); acc_dist_idx_gt_coast_dist.value()++) { // search for the correct coast_dist_idx - if (accumulated_dist_per_point[acc_dist_idx_gt_coast_dist] >= actual_coasting_dist) + if (accumulated_dist_per_point[acc_dist_idx_gt_coast_dist.value()] >= actual_coasting_dist) { break; } } } - assert(acc_dist_idx_gt_coast_dist < accumulated_dist_per_point.size()); // something has gone wrong; coasting_min_dist < coasting_dist ? + assert( + acc_dist_idx_gt_coast_dist.has_value() && acc_dist_idx_gt_coast_dist < accumulated_dist_per_point.size()); // something has gone wrong; coasting_min_dist < coasting_dist ? - const size_t point_idx_before_start = path.points.size() - 1 - acc_dist_idx_gt_coast_dist; + const size_t point_idx_before_start = path.points.size() - 1 - acc_dist_idx_gt_coast_dist.value(); Point2LL start; { // computation of begin point of coasting - const coord_t residual_dist = actual_coasting_dist - accumulated_dist_per_point[acc_dist_idx_gt_coast_dist - 1]; + const coord_t residual_dist = actual_coasting_dist - accumulated_dist_per_point[acc_dist_idx_gt_coast_dist.value() - 1]; const Point2LL& a = path.points[point_idx_before_start]; const Point2LL& b = path.points[point_idx_before_start + 1]; start = b + normal(a - b, residual_dist); diff --git a/src/gcodeExport.cpp b/src/gcodeExport.cpp index 8372ba1656..cb906927aa 100644 --- a/src/gcodeExport.cpp +++ b/src/gcodeExport.cpp @@ -1429,7 +1429,9 @@ void GCodeExport::writeFanCommand(double speed) else if (speed > 0) { const bool should_scale_zero_to_one = Application::getInstance().current_slice_->scene.settings.get("machine_scale_fan_speed_zero_to_one"); - *output_stream_ << "M106 S" << PrecisionedDouble{ (should_scale_zero_to_one ? 2u : 1u), (should_scale_zero_to_one ? speed : speed * 255) / 100 }; + *output_stream_ << "M106 S" + << PrecisionedDouble{ (should_scale_zero_to_one ? static_cast(2) : static_cast(1)), + (should_scale_zero_to_one ? speed : speed * 255) / 100 }; if (fan_number_) { *output_stream_ << " P" << fan_number_; diff --git a/src/main.cpp b/src/main.cpp index bcfd39d9f0..1965a329cb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2023 UltiMaker // CuraEngine is released under the terms of the AGPLv3 or higher #include //To change the formatting of std::cerr. @@ -7,6 +7,19 @@ #include //For setpriority. #endif +#ifdef SENTRY_URL +#include +#include +#include +#include + +#include +#include + +#include "utils/format/filesystem_path.h" +#endif +#include + #include #include "Application.h" @@ -37,7 +50,68 @@ int main(int argc, char** argv) #endif std::cerr << std::boolalpha; + +// Want to set the sentry URL? Use '-c user.curaengine:sentry_url= -o curaengine:enable_sentry=True' with conan install +#ifdef SENTRY_URL + bool use_sentry = true; + if (const char* use_sentry_env = std::getenv("use_sentry")) + { + if (std::strcmp(use_sentry_env, "0") == 0) + { + use_sentry = false; + } + } + if (use_sentry) + { + // Setup sentry error handling. + sentry_options_t* options = sentry_options_new(); + sentry_options_set_dsn(options, std::string(SENTRY_URL).c_str()); + spdlog::info("Sentry url: {}", std::string(SENTRY_URL).c_str()); + // This is also the default-path. For further information and recommendations: + // https://docs.sentry.io/platforms/native/configuration/options/#database-path +#if defined(__linux__) + const auto config_path = std::filesystem::path(fmt::format("{}/.local/share/cura/.sentry-native", std::getenv("HOME"))); +#elif defined(__APPLE__) && defined(__MACH__) + const auto config_path = std::filesystem::path(fmt::format("{}/Library/Application Support/cura/.sentry-native", std::getenv("HOME"))); +#elif defined(_WIN64) + const auto config_path = std::filesystem::path(fmt::format("{}\\cura\\.sentry-native", std::getenv("APPDATA"))); +#endif + spdlog::info("Sentry config path: {}", config_path); + sentry_options_set_database_path(options, std::filesystem::absolute(config_path).generic_string().c_str()); + constexpr std::string_view cura_engine_version{ CURA_ENGINE_VERSION }; + const auto version = semver::from_string(cura_engine_version.substr(0, cura_engine_version.find_first_of('+'))); + if (ranges::contains(cura_engine_version, '+') || version.prerelease_type == semver::prerelease::alpha) + { + // Not a production build + sentry_options_set_environment(options, "development"); + sentry_options_set_release( + options, + fmt::format( + "curaengine@{}.{}.{}-{}.{}", + version.major, + version.minor, + version.patch, + version.prerelease_type == semver::prerelease::alpha ? "alpha" : "beta", + version.prerelease_number) + .c_str()); + } + else + { + sentry_options_set_environment(options, "production"); + sentry_options_set_release(options, fmt::format("curaengine@{}", version.to_string()).c_str()); + } + sentry_init(options); + } +#endif + cura::Application::getInstance().run(argc, argv); +#ifdef SENTRY_URL + if (use_sentry) + { + sentry_close(); + } +#endif + return 0; } diff --git a/src/utils/polygonUtils.cpp b/src/utils/polygonUtils.cpp index 42f9204a05..4855f34046 100644 --- a/src/utils/polygonUtils.cpp +++ b/src/utils/polygonUtils.cpp @@ -327,13 +327,13 @@ ClosestPolygonPoint PolygonUtils::_moveInside2(const ClosestPolygonPoint& closes /* * Implementation assumes moving inside, but moving outside should just as well be possible. */ -unsigned int PolygonUtils::moveInside(const Polygons& polygons, Point2LL& from, int distance, int64_t maxDist2) +size_t PolygonUtils::moveInside(const Polygons& polygons, Point2LL& from, int distance, int64_t maxDist2) { Point2LL ret = from; int64_t bestDist2 = std::numeric_limits::max(); - unsigned int bestPoly = NO_INDEX; + size_t bestPoly = NO_INDEX; bool is_already_on_correct_side_of_boundary = false; // whether [from] is already on the right side of the boundary - for (unsigned int poly_idx = 0; poly_idx < polygons.size(); poly_idx++) + for (size_t poly_idx = 0; poly_idx < polygons.size(); poly_idx++) { ConstPolygonRef poly = polygons[poly_idx]; if (poly.size() < 2) diff --git a/stress_benchmark/resources/001.settings b/stress_benchmark/resources/001.settings index 0626051682..d56461c776 100644 --- a/stress_benchmark/resources/001.settings +++ b/stress_benchmark/resources/001.settings @@ -530,7 +530,6 @@ 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 diff --git a/stress_benchmark/resources/002.settings b/stress_benchmark/resources/002.settings index 2da8498c4c..c5ec85db58 100644 --- a/stress_benchmark/resources/002.settings +++ b/stress_benchmark/resources/002.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/003.settings b/stress_benchmark/resources/003.settings index 00353b70cf..d0fd7a001a 100644 --- a/stress_benchmark/resources/003.settings +++ b/stress_benchmark/resources/003.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/004.settings b/stress_benchmark/resources/004.settings index c601d4e1cf..4683743db7 100644 --- a/stress_benchmark/resources/004.settings +++ b/stress_benchmark/resources/004.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/005.settings b/stress_benchmark/resources/005.settings index 366cdd5c24..b4ee5d4563 100644 --- a/stress_benchmark/resources/005.settings +++ b/stress_benchmark/resources/005.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/006.settings b/stress_benchmark/resources/006.settings index 7fff40c135..ec75660851 100644 --- a/stress_benchmark/resources/006.settings +++ b/stress_benchmark/resources/006.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/007.settings b/stress_benchmark/resources/007.settings index 2a63b6dbd9..635226ed8c 100644 --- a/stress_benchmark/resources/007.settings +++ b/stress_benchmark/resources/007.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/008.settings b/stress_benchmark/resources/008.settings index 4c0a14ef71..f4771e572b 100644 --- a/stress_benchmark/resources/008.settings +++ b/stress_benchmark/resources/008.settings @@ -62,7 +62,6 @@ 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 diff --git a/stress_benchmark/resources/009.settings b/stress_benchmark/resources/009.settings index d18eb80b4c..f4771e572b 100644 --- a/stress_benchmark/resources/009.settings +++ b/stress_benchmark/resources/009.settings @@ -62,7 +62,6 @@ 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 diff --git a/stress_benchmark/resources/010.settings b/stress_benchmark/resources/010.settings index 3843da798c..f4771e572b 100644 --- a/stress_benchmark/resources/010.settings +++ b/stress_benchmark/resources/010.settings @@ -62,7 +62,6 @@ 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 diff --git a/stress_benchmark/resources/011.settings b/stress_benchmark/resources/011.settings index 7b90f1f8a8..3f63e86a10 100644 --- a/stress_benchmark/resources/011.settings +++ b/stress_benchmark/resources/011.settings @@ -49,7 +49,6 @@ 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 diff --git a/stress_benchmark/resources/012.settings b/stress_benchmark/resources/012.settings index 99daccc636..712087c5e2 100644 --- a/stress_benchmark/resources/012.settings +++ b/stress_benchmark/resources/012.settings @@ -238,7 +238,6 @@ acceleration_travel_enabled=True coasting_enable=False support_interface_density=100 machine_buildplate_type=glass -time=21:10:13 speed_wall_x=65 material_final_print_temperature=250 machine_endstop_positive_direction_x=False diff --git a/stress_benchmark/resources/013.settings b/stress_benchmark/resources/013.settings index a78ed7616e..dd1893e2c9 100644 --- a/stress_benchmark/resources/013.settings +++ b/stress_benchmark/resources/013.settings @@ -569,7 +569,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=35 -time=09:20:33 machine_buildplate_type=glass top_layers=8 jerk_ironing=8 diff --git a/stress_benchmark/resources/014.settings b/stress_benchmark/resources/014.settings index cfc003e2af..3838f85463 100644 --- a/stress_benchmark/resources/014.settings +++ b/stress_benchmark/resources/014.settings @@ -569,7 +569,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=80 -time=09:27:03 machine_buildplate_type=glass top_layers=8 jerk_ironing=8 diff --git a/stress_benchmark/resources/015.settings b/stress_benchmark/resources/015.settings index a56803e6fe..b2a53600c9 100644 --- a/stress_benchmark/resources/015.settings +++ b/stress_benchmark/resources/015.settings @@ -571,7 +571,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=20 speed_wall_x=100.0 -time=09:28:31 machine_buildplate_type=glass top_layers=4 jerk_ironing=20 diff --git a/stress_benchmark/resources/016.settings b/stress_benchmark/resources/016.settings index 63a8d5a7f4..af2f42cf1e 100644 --- a/stress_benchmark/resources/016.settings +++ b/stress_benchmark/resources/016.settings @@ -568,7 +568,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=25.0 -time=09:29:32 machine_buildplate_type=glass top_layers=4 jerk_ironing=8 diff --git a/stress_benchmark/resources/017.settings b/stress_benchmark/resources/017.settings index dee1eba618..02d045445e 100644 --- a/stress_benchmark/resources/017.settings +++ b/stress_benchmark/resources/017.settings @@ -569,7 +569,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=12.0 speed_wall_x=30 -time=09:31:42 machine_buildplate_type=glass top_layers=7 jerk_ironing=12.0 diff --git a/stress_benchmark/resources/018.settings b/stress_benchmark/resources/018.settings index e92d385fed..2b377d53e0 100644 --- a/stress_benchmark/resources/018.settings +++ b/stress_benchmark/resources/018.settings @@ -570,7 +570,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=25.0 -time=09:32:51 machine_buildplate_type=glass top_layers=4 jerk_ironing=8 diff --git a/stress_benchmark/resources/019.settings b/stress_benchmark/resources/019.settings index 42fd9c7708..8910e83a35 100644 --- a/stress_benchmark/resources/019.settings +++ b/stress_benchmark/resources/019.settings @@ -570,7 +570,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=40.0 -time=09:34:51 machine_buildplate_type=glass top_layers=4 jerk_ironing=8 diff --git a/stress_benchmark/resources/020.settings b/stress_benchmark/resources/020.settings index aa4cb141d8..87cecf33c7 100644 --- a/stress_benchmark/resources/020.settings +++ b/stress_benchmark/resources/020.settings @@ -570,7 +570,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=20 speed_wall_x=70 -time=09:35:50 machine_buildplate_type=glass top_layers=4 jerk_ironing=20 diff --git a/stress_benchmark/resources/021.settings b/stress_benchmark/resources/021.settings index bec147df9c..8ddb9175ff 100644 --- a/stress_benchmark/resources/021.settings +++ b/stress_benchmark/resources/021.settings @@ -571,7 +571,6 @@ material_shrinkage_percentage_xy=100.1 bridge_skin_material_flow=95.0 raft_base_jerk=30 speed_wall_x=35 -time=09:44:20 machine_buildplate_type=glass top_layers=8 machine_gcode_flavor=Griffin diff --git a/stress_benchmark/resources/022.settings b/stress_benchmark/resources/022.settings index f9d345efde..6d484adf38 100644 --- a/stress_benchmark/resources/022.settings +++ b/stress_benchmark/resources/022.settings @@ -572,7 +572,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=20 speed_wall_x=63 -time=09:45:42 machine_buildplate_type=glass top_layers=4 jerk_ironing=20 diff --git a/stress_benchmark/resources/023.settings b/stress_benchmark/resources/023.settings index 8ef7f56f7e..abc56c6905 100644 --- a/stress_benchmark/resources/023.settings +++ b/stress_benchmark/resources/023.settings @@ -571,7 +571,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=10.0 speed_wall_x=280.0 -time=09:47:39 machine_buildplate_type=glass top_layers=5 jerk_ironing=10.0 diff --git a/stress_benchmark/resources/024.settings b/stress_benchmark/resources/024.settings index ca30eecf44..05c420b03e 100644 --- a/stress_benchmark/resources/024.settings +++ b/stress_benchmark/resources/024.settings @@ -572,7 +572,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=35.0 -time=09:49:12 machine_buildplate_type=glass top_layers=6 roofing_angles=[] diff --git a/stress_benchmark/resources/025.settings b/stress_benchmark/resources/025.settings index 3239862a7f..a6e3d3500e 100644 --- a/stress_benchmark/resources/025.settings +++ b/stress_benchmark/resources/025.settings @@ -572,7 +572,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=20 speed_wall_x=60.0 -time=09:53:09 machine_buildplate_type=glass top_layers=8 jerk_ironing=20 diff --git a/stress_benchmark/resources/026.settings b/stress_benchmark/resources/026.settings index 7e20bd7a6f..a008515e9f 100644 --- a/stress_benchmark/resources/026.settings +++ b/stress_benchmark/resources/026.settings @@ -570,7 +570,6 @@ material_shrinkage_percentage_xy=100.2 bridge_skin_material_flow=95.0 raft_base_jerk=20 speed_wall_x=35 -time=10:25:13 machine_buildplate_type=glass top_layers=17 machine_gcode_flavor=Griffin diff --git a/stress_benchmark/resources/027.settings b/stress_benchmark/resources/027.settings index bfb55d304d..1b4b00078a 100644 --- a/stress_benchmark/resources/027.settings +++ b/stress_benchmark/resources/027.settings @@ -571,7 +571,6 @@ material_shrinkage_percentage_xy=100.3 bridge_skin_material_flow=95.0 raft_base_jerk=50.0 speed_wall_x=100 -time=10:26:42 machine_buildplate_type=glass top_layers=7 machine_gcode_flavor=Griffin diff --git a/stress_benchmark/resources/028.settings b/stress_benchmark/resources/028.settings index b8537c9277..7f958d05c2 100644 --- a/stress_benchmark/resources/028.settings +++ b/stress_benchmark/resources/028.settings @@ -572,7 +572,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=95 raft_base_jerk=20 speed_wall_x=60.0 -time=10:42:02 machine_buildplate_type=glass top_layers=5 jerk_ironing=20 diff --git a/stress_benchmark/resources/029.settings b/stress_benchmark/resources/029.settings index 38caf27106..823bf8129b 100644 --- a/stress_benchmark/resources/029.settings +++ b/stress_benchmark/resources/029.settings @@ -572,7 +572,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=20 speed_wall_x=150.0 -time=10:51:35 machine_buildplate_type=glass top_layers=5 jerk_ironing=20 diff --git a/stress_benchmark/resources/030.settings b/stress_benchmark/resources/030.settings index 433def02f4..f003931b0a 100644 --- a/stress_benchmark/resources/030.settings +++ b/stress_benchmark/resources/030.settings @@ -571,7 +571,6 @@ material_shrinkage_percentage_xy=100.2 bridge_skin_material_flow=95.0 raft_base_jerk=20 speed_wall_x=30 -time=11:54:33 machine_buildplate_type=glass top_layers=10 machine_gcode_flavor=Griffin diff --git a/stress_benchmark/resources/031.settings b/stress_benchmark/resources/031.settings index 25fa556794..35ea2a8526 100644 --- a/stress_benchmark/resources/031.settings +++ b/stress_benchmark/resources/031.settings @@ -569,7 +569,6 @@ material_shrinkage_percentage_xy=100.0 bridge_skin_material_flow=60 raft_base_jerk=8 speed_wall_x=25.0 -time=11:55:41 machine_buildplate_type=glass top_layers=4 jerk_ironing=8 diff --git a/stress_benchmark/resources/032.settings b/stress_benchmark/resources/032.settings new file mode 100644 index 0000000000..8187ab3099 --- /dev/null +++ b/stress_benchmark/resources/032.settings @@ -0,0 +1,627 @@ +experimental=0 +infill_pattern=trihexagon +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=95 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=120 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=7 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=195 +machine_max_feedrate_x=299792458000 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=1.2 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=53.333333333333336 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=120 +support_xy_distance=0.7 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.1 +support_offset=0.8 +acceleration_layer_0=1000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=all +support_zag_skip_count=8 +retraction_speed=40 +acceleration_roofing=1000 +raft_interface_jerk=8 +support_roof_height=1 +acceleration_travel=3000 +acceleration_wall_x_roofing=1000 +support_roof_enable=False +acceleration_travel_layer_0=3000.0 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=40 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=1 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=95 +material_is_support_material=False +raft_interface_speed=30.0 +skirt_brim_speed=40 +retraction_amount=6 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.04 +acceleration_wall_x=1000 +prime_tower_flow=95 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=22.5 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=95 +skin_material_flow=95 +roofing_material_flow=95 +acceleration_infill=1000 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=1000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=False +support_brim_width=1.6800000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=1000 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=10 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=299792458000 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=120 +relative_extrusion=False +wall_0_material_flow_roofing=95 +raft_surface_speed=40.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=40 +acceleration_ironing=1000 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=220 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_inner +travel_speed=100 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=10 +jerk_travel=10 +speed_travel=100 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=95 +anti_overhang_mesh=False +z_seam_x=110 +support_interface_material_flow=95 +wipe_retraction_retract_speed=40 +speed_support_bottom=53.333333333333336 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=95 +bridge_wall_min_length=2.1 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=9000 +resolution=0 +support_angle=50 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=1000 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.1 +minimum_bottom_area=1.0 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.075 +wall_thickness=1.2 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=40 +material_brand=empty_brand +initial_bottom_layers=8 +support_material_flow=95 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=1000 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.2000000000000002 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=20.0 +support_bottom_distance=0.1 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1.6 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.075 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=95 +bridge_wall_coast=100 +support_interface_density=100 +bridge_wall_speed=22.5 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=80 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=53.333333333333336 +support_bottom_wall_count=0 +speed_print_layer_0=45 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=50 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.02 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=195 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +min_wall_line_width=0.34 +acceleration_support_infill=1000 +meshfix=0 +machine_max_feedrate_y=299792458000 +bridge_skin_speed=22.5 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=33.333333333333336 +bridge_fan_speed_3=0 +raft_speed=40.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0.3 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=45 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=45 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=1000 +inset_direction=inside_out +wall_x_material_flow_roofing=95 +infill_before_walls=True +acceleration_wall_0_roofing=1000 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=13 +raft_surface_line_spacing=0.4 +retraction_retract_speed=40 +bottom_layers=8 +material_print_temperature_layer_0=0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=6 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=402 +acceleration_skirt_brim=1000 +skin_overlap=5 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=402 +raft_smoothing=5 +acceleration_support_interface=1000 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=1000 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=20 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=195 +wipe_hop_amount=0.075 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=80 +support_interface_enable=False +raft_base_acceleration=1000 +wall_line_width_x=0.4 +machine_acceleration=4000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=7 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=8 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=1.2000000000000002 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=1000 +wall_material_flow=95 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_travel_layer_0=10.0 +raft_base_speed=30.0 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.625 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=1000 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=6 +ironing_monotonic=False +skin_material_flow_layer_0=120 +top_thickness=1.6 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=45 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=22.5 +infill=0 +prime_tower_position_y=380.575 +jerk_support=8 +speed_wall_x_roofing=80 +speed_layer_0=45 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +acceleration_prime_tower=1000 +material_print_temperature=195 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=80 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=none +min_odd_wall_line_width=0.34 +speed_z_hop=20 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=95 +prime_tower_position_x=400.575 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=1000 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.1 +machine_height=452 +speed_infill=80 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=45 +speed_support=80 +speed_prime_tower=80 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=140 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=1000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.6666666666666665 +infill_line_width=0.4 +speed_wall_x=80 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=1000 +infill_sparse_density=20 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=1.2000000000000002 +retraction_count_max=90 +jerk_infill=8 +speed_ironing=30.0 +gantry_height=452 +bottom_skin_expand_distance=1.2000000000000002 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=195 +material_adhesion_tendency=0 +default_material_print_temperature=195 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=9.797174393178826e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=1.2000000000000002 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=195 diff --git a/stress_benchmark/resources/032.wkt b/stress_benchmark/resources/032.wkt new file mode 100644 index 0000000000..81b51da4a0 --- /dev/null +++ b/stress_benchmark/resources/032.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((171025 202017, 171280 202159, 171529 202543, 171632 202842, 171761 203498, 171801 205287, 171805 208719, 171893 212263, 171858 216296, 171598 216999, 171059 218039, 171269 218249, 171365 218266, 171573 218175, 171637 218251, 171796 218245, 171885 218527, 171893 219256, 171884 220173, 171904 220480, 171856 224509, 171796 225316, 171758 226225, 171653 227973, 171619 229081, 171653 229663, 171736 230288, 171832 230862, 171865 231711, 171873 232834, 171765 233465, 171496 234122, 171646 234392, 171757 234829, 171711 235541, 171684 236138, 171667 236944, 171682 237999, 171808 240513, 171238 241098, 171466 241735, 171606 242337, 171592 242940, 171892 243549, 171953 244203, 172035 246354, 171966 249888, 171954 251669, 171919 253624, 171745 254130, 171486 254377, 171254 254841, 171681 256113, 171793 256804, 171797 257224, 171831 258137, 171831 259025, 171851 259154, 171911 259842, 171939 260520, 171891 261269, 171711 260758, 171184 261246, 171676 261979, 171883 262720, 171878 263638, 171860 264610, 171734 266990, 171809 267764, 171937 268854, 171900 272390, 171896 273615, 171869 275179, 169816 275179, 169623 273958, 169676 273162, 169695 273119, 169846 271721, 169857 271195, 169904 270102, 169987 269086, 170058 268446, 170042 267761, 169985 267244, 169944 267073, 169928 266365, 169951 266258, 169992 265635, 169794 265134, 169668 264918, 169516 264287, 169480 264191, 169123 262760, 169104 262045, 169019 261330, 168669 259727, 168594 258975, 168386 257785, 168339 257237, 168333 256983, 168232 256066, 168318 255965, 168414 255277, 168423 254956, 168596 254297, 168607 253847, 168658 253630, 168661 253039, 168927 252348, 169012 251659, 169105 251392, 169151 250974, 169288 250805, 169341 250501, 169517 250553, 169690 251125, 169848 251258, 169777 251688, 170011 252804, 170135 252689, 170076 253009, 170266 253633, 170451 253913, 170625 253963, 170769 254058, 170975 253604, 170953 253286, 170808 253236, 170740 253290, 170634 253191, 170479 253395, 170598 252953, 170556 252720, 170481 252621, 170361 252634, 170418 252290, 170322 251861, 170259 251797, 170279 251612, 170157 251015, 170132 250997, 170087 250490, 170014 250222, 169925 249706, 169837 249376, 169738 248390, 169642 247830, 169500 247734, 169433 247209, 169352 248087, 169390 248789, 169396 249468, 169208 250262, 168963 251125, 168933 251646, 168825 252058, 168910 252326, 168689 252617, 168557 253434, 168449 254030, 168443 254273, 168181 254931, 167989 255373, 167851 256282, 167814 256955, 167858 257589, 167953 258112, 168038 258721, 168167 259389, 168715 261704, 168833 262042, 168988 262763, 169016 263490, 169151 264214, 169223 264957, 169329 265677, 169497 266364, 169621 267102, 169734 268441, 169682 269118, 169581 270135, 169537 270462, 169517 271403, 169480 271940, 169418 272636, 169323 273417, 169366 274457, 169374 275178, 167667 275179, 167669 274079, 167615 273486, 167323 272501, 167263 272516, 167285 272378, 167212 271919, 167191 271159, 167116 270525, 167080 270024, 167060 269874, 167057 269359, 166991 269214, 167174 268953, 167740 267886, 167543 267443, 167406 267867, 167095 268529, 166880 269171, 166751 269333, 166538 269922, 166685 270575, 166714 271021, 166823 271983, 167068 273225, 167145 273338, 167235 273342, 167196 273599, 167197 274414, 167256 275179, 166021 275179, 165998 274676, 165794 273690, 165785 273693, 165600 272453, 165483 272316, 165522 272009, 165462 271761, 165398 271195, 165204 271298, 165328 270758, 165303 270241, 165438 269572, 165462 269382, 165682 268638, 165967 267928, 166115 267187, 166171 266446, 166171 265711, 166072 264999, 165820 264618, 165572 264565, 165165 264685, 165036 264797, 164831 264800, 164770 265097, 164946 265370, 165048 265442, 165328 265503, 165451 265570, 165553 265515, 165680 265828, 165873 266065, 165870 266795, 165767 267629, 165672 267945, 165665 268652, 165507 268197, 165390 268345, 165106 269393, 164929 270097, 164963 270596, 165036 271189, 165135 271417, 165267 272024, 165302 272372, 165391 272954, 165446 273136, 165436 273242, 165515 273765, 165448 274573, 165458 275179, 163897 275179, 163865 273669, 163870 273181, 163777 267335, 163810 265854, 163758 262865, 163766 261996, 163850 261220, 163891 260424, 163913 257927, 163961 256340, 163977 256087, 163981 255090, 164060 254796, 164340 255051, 164506 255038, 164566 254981, 164959 255732, 165027 255639, 165020 256018, 165163 256348, 165322 256517, 165761 257497, 165899 258118, 166009 258921, 166162 259777, 166360 260503, 166522 261324, 167038 263521, 167326 264634, 167452 265007, 167464 265193, 167584 265748, 167690 266453, 167660 266843, 167741 267882, 167817 267461, 167974 267362, 168048 267188, 168012 266457, 167889 265877, 167842 265851, 167852 265720, 167417 263803, 167343 263778, 167355 263552, 167231 262954, 167224 262826, 167087 262082, 166929 261344, 166821 260515, 166813 259777, 166762 259049, 166712 258874, 166576 258263, 166509 257701, 166457 257029, 166356 256292, 166292 256032, 166239 255487, 166294 254746, 166638 252925, 166946 250317, 167015 249611, 167068 248620, 167132 247060, 167152 245107, 167138 244341, 167139 243596, 167033 242886, 166949 242793, 166714 242712, 166508 242540, 166443 242365, 166006 241914, 165251 241071, 165305 241295, 165794 241882, 165770 242109, 166053 242541, 166461 243473, 166542 244100, 166586 244353, 166635 244998, 166725 245635, 166790 246313, 166874 246742, 166846 246989, 166826 247664, 166703 248275, 166626 248964, 166669 249609, 166643 250260, 166561 250640, 166447 251594, 166300 252233, 166132 252870, 166103 253113, 165935 254204, 165829 255507, 165803 255472, 165436 255796, 165282 255859, 165205 255744, 165142 255844, 165142 255426, 164841 254972, 164389 253862, 163975 252937, 163929 252303, 164042 251592, 164124 250996, 164163 250047, 164165 249088, 164090 247856, 164065 246588, 164035 245925, 163952 245197, 163873 244199, 163827 241047, 163925 240752, 164078 240822, 164369 240654, 164519 240654, 164644 240597, 164727 240633, 164749 240500, 163969 239656, 163801 238962, 163798 238036, 163906 235814, 163907 235050, 163861 233743, 163832 232576, 163844 230868, 163857 230357, 163860 228506, 163940 227851, 164103 227247, 164185 225268, 164175 225054, 164198 224517, 164078 223381, 163983 222226, 163970 220737, 163976 218464, 164012 217202, 164032 213775, 164075 212969, 164086 211848, 164071 211252, 163965 210621, 164019 209442, 164022 209005, 164057 207604, 164023 205835, 164053 205241, 164054 204962, 164135 202838, 164325 202223, 164734 202060, 165092 202299, 165180 202932, 165176 203041, 165230 203750, 165346 204359, 165409 205192, 165723 207865, 165969 209098, 165953 209287, 166002 209880, 166101 210473, 166208 210743, 166213 211062, 166435 211942, 166525 212000, 166548 212457, 166691 212890, 166838 213532, 166804 214192, 166888 214964, 166937 216036, 166972 216590, 167009 216779, 166964 217079, 166934 217590, 166586 219881, 166596 220235, 166561 220818, 166501 221052, 166357 221750, 166239 222446, 166075 223140, 165857 223823, 165581 224364, 165347 225130, 165327 225673, 165332 225860, 165228 226622, 165165 227291, 165150 228119, 165097 229394, 165039 230171, 165006 230848, 165166 232319, 165183 233050, 165167 233776, 165185 234491, 165258 235247, 165448 236617, 165465 237047, 165573 238014, 165856 238589, 165892 238001, 165819 237489, 165775 237315, 165704 236802, 165665 236618, 165518 235532, 165442 234692, 165412 234505, 165457 234240, 165458 232208, 165423 231636, 165404 230886, 165549 228730, 165574 227857, 165640 226637, 165659 225877, 165714 225641, 165806 225140, 166013 224532, 166344 223903, 166551 223185, 166674 222474, 166846 221711, 166922 221067, 166788 220586, 166830 220066, 166908 219647, 166982 219049, 167121 218184, 167204 217579, 167258 217037, 167297 216898, 167343 216332, 167361 216215, 167419 215532, 167400 214856, 167492 214179, 167420 213526, 167547 212254, 167670 211558, 167687 211039, 167833 210456, 167884 209859, 167973 209393, 167746 209254, 167704 209829, 167612 210304, 167788 210448, 167579 210556, 167551 211021, 167616 211575, 167291 212235, 167262 212378, 167233 212329, 166879 212173, 166724 211768, 166555 211027, 166438 210363, 166356 210121, 166347 209850, 166254 209197, 166170 208741, 166072 207516, 165983 206783, 165861 205521, 165798 204624, 165731 203269, 165722 202675, 165768 202296, 165979 202094, 166187 202030, 166831 202015, 167158 202063, 167460 202195, 167795 203120, 167897 203742, 167891 204211, 168075 205214, 168199 205491, 168068 205557, 168110 206302, 168116 206665, 168166 206879, 168398 207438, 168451 207143, 168424 206514, 168394 206310, 168433 205921, 168362 205207, 168286 204956, 168414 204493, 168402 204182, 168362 204110, 168438 203917, 168316 203217, 168415 203080, 168276 202642, 168261 202461, 168477 202195, 168801 202064, 169193 202092, 169358 202212, 169533 202415, 169660 202987, 169760 203508, 169779 204051, 169744 204453, 169778 205087, 169848 205776, 169881 206661, 169884 207538, 170209 208137, 170296 208772, 170444 210848, 170457 212750, 170353 213352, 170149 213972, 169935 214565, 169946 214861, 169844 214777, 169765 214914, 169648 215426, 169470 215640, 169086 216452, 168877 216925, 168818 217194, 168640 217561, 168444 218235, 168398 218720, 168442 218780, 168381 218940, 168408 219697, 168669 218973, 168756 218269, 168920 217617, 168992 217185, 169224 216918, 169453 216386, 169781 215818, 169801 215523, 169933 215502, 170064 215248, 170290 214664, 170714 213441, 170835 212776, 170868 212200, 170964 211424, 170947 210123, 170887 209715, 170776 208781, 170620 207841, 170481 206768, 170491 206323, 170466 205741, 170368 205141, 170318 204322, 170246 203622, 170244 203487, 170176 202471, 170395 202005) (170585 260507, 170848 260843, 170764 260512, 170687 260390) (170138 259071, 170173 259202, 170247 259788, 170484 260302, 170564 259795, 170439 259539, 170209 258967) (170904 254217, 171173 254656, 171452 254235, 171185 254048) (166858 228965, 166618 229573, 166538 230326, 166564 231081, 166750 231844, 166917 233219, 167072 234160, 167499 236450, 167642 237263, 167649 237463, 167763 238567, 167967 239870, 168113 241281, 168240 241999, 168400 242676, 168491 243325, 168615 244101, 168827 244927, 168970 245639, 169189 246147, 169216 246390, 169235 245998, 169185 245770, 169009 245353, 169020 245054, 168899 244459, 168647 242798, 168543 241944, 168534 241236, 168638 240548, 168505 239819, 168346 239090, 168288 238699, 168084 237592, 167989 237239, 167774 235899, 167697 235339, 167531 234400, 167302 232743, 167203 231526, 167071 230376, 167141 229625, 167153 229135, 167066 228862) (170741 239500, 170808 239296, 170790 239075, 170723 239069, 170473 238656) (170274 237799, 170391 238329, 170428 237908, 170398 237715, 170349 237686) (170640 233267, 170497 233273, 170318 233557, 170501 233770, 171023 233947, 171194 233449, 170772 233145) (169143 230474, 169122 231057, 169247 231624, 169244 231746, 169347 232441, 169378 233144, 169667 233424, 169871 233422, 170004 232953, 169829 232604, 169680 231990, 169665 231646, 169593 231306, 169581 230987, 169412 230414) (169691 226419, 169421 227051, 169062 227785, 168762 228333, 168718 228518, 168544 229046, 168801 229590, 169030 229910, 169092 230141, 169322 230184, 169160 229725, 169150 229597, 169106 229549, 168943 229048, 169015 228363, 169414 227829, 169603 227392, 169762 226567, 170007 226488, 169906 225812) (170412 218423, 170241 218590, 170215 218740, 169990 219268, 169975 219776, 169866 219497, 169238 220930, 169142 221020, 169040 221322, 168345 222976, 168222 223644, 168024 224072, 167640 225378, 167494 226044, 167343 226646, 167369 227067, 167269 226934, 167146 227405, 166959 228607, 167068 228849, 167211 228135, 167235 227690, 167407 227605, 167557 227081, 167697 226511, 167785 226072, 167922 225586, 167937 225425, 168121 224915, 168542 223445, 168660 223190, 169050 222192, 169198 221752, 169383 221442, 170028 220026, 170102 219522, 170209 219646, 170362 219327, 170452 219007, 170501 219080, 170855 218662, 170861 218184) (170960 227016, 170707 227270, 170553 227901, 170572 227976, 170764 227967, 170841 227907, 171070 227460, 171227 227281, 171092 226992) (169920 225774, 170053 226483, 170314 226414, 170480 225874, 170432 225432, 170287 225365) (168044 207459, 168094 207867, 167927 208218, 167823 208636, 168013 209172, 168100 208671, 168285 208084, 168232 207693, 168367 207486, 168085 207177)), ((180401 253120, 180770 253328, 180896 254044, 180950 255594, 180939 256385, 180965 257447, 181027 261131, 180999 262268, 181043 264621, 181053 265621, 180959 266394, 180915 267136, 180917 267899, 180885 269921, 180833 270636, 180822 271584, 180687 271860, 180454 271664, 180287 271686, 180232 271793, 180039 271309, 179876 271205, 179793 271061, 179737 271411, 180003 271830, 180043 271711, 180113 272031, 180472 272798, 180776 273320, 180789 273492, 180877 274014, 180761 274625, 180696 275178, 178285 275179, 178395 274311, 178686 273480, 178802 272821, 178885 272446, 178967 271340, 179110 270986, 179202 271276, 179395 271100, 179508 271097, 179586 270941, 179659 271080, 179728 270749, 179664 270546, 179588 270495, 179314 270104, 179004 269444, 178874 268689, 178842 268581, 178587 267454, 178520 267233, 178318 266433, 178117 265699, 178042 265304, 177864 264756, 177673 263988, 177631 263918, 177450 264122, 177446 263482, 177402 263217, 177118 262649, 177153 261776, 177113 261350, 177427 260679, 177543 260189, 177766 260004, 178111 259341, 178186 258677, 178157 258248, 178095 257998, 178021 257333, 177905 256808, 177690 256176, 177595 255795, 177664 255549, 177677 255139, 177455 254508, 177497 254397, 177502 254014, 177623 253544, 177344 253492, 177001 254010, 177108 254823, 177116 255366, 177250 256146, 177469 256730, 177602 257273, 177680 257746, 177620 258001, 177622 258393, 177721 258588, 177878 258335, 177756 258660, 177761 259328, 177495 259815, 177448 259982, 177185 260456, 177057 260654, 176743 261367, 176831 261995, 176937 261799, 176843 262087, 176977 262493, 177020 262803, 177232 263557, 177566 264892, 177634 265261, 177841 266124, 177948 266497, 178025 267262, 178023 268038, 178220 268832, 178454 270557, 178543 271123, 178555 271680, 178466 272184, 178378 272540, 178245 273191, 178177 273439, 178024 274602, 177937 275179, 175161 275179, 175072 275072, 174908 274173, 174714 273290, 174381 272616, 174234 272588, 173997 272447, 173780 272239, 173774 272831, 173992 273174, 174151 273286, 174465 272849, 174247 273520, 174301 273788, 174403 273931, 174579 273719, 174440 274198, 174664 275178, 172846 275179, 172865 273846, 172901 272749, 173051 272549, 173167 272557, 173719 272179, 173502 271725, 173394 271713, 173417 271519, 173166 270882, 173005 270158, 172980 269156, 172980 268299, 172950 268129, 172869 266955, 173554 266273, 173146 265709, 173043 265790, 173080 265615, 172920 264829, 172954 263238, 173064 261698, 173017 260894, 172927 260304, 172881 259667, 172877 258774, 172930 254727, 172963 254554, 172960 254036, 173186 253499, 173819 253445, 174231 253475, 174503 253549, 174778 253704, 174974 254220, 175060 254700, 175178 255218, 175228 255741, 175028 256553, 175013 257058, 174980 257428, 174954 257950, 174961 258036, 174850 259350, 174765 260073, 174775 260816, 174881 261556, 174830 262315, 175308 263779, 175500 264496, 175675 265237, 175706 265944, 175811 266316, 175976 267035, 176065 267367, 176312 268766, 176418 269461, 176469 270178, 176566 270842, 176468 271328, 176563 271518, 176380 271962, 176355 272547, 176432 272178, 176728 271531, 176930 270862, 176996 270177, 176942 269466, 176791 268635, 176657 268032, 176424 267147, 176088 265976, 175886 265331, 175693 265214, 175821 264614, 175640 263734, 175562 262989, 175407 262252, 175200 261520, 175150 261022, 175089 260055, 175038 259698, 175109 259351, 175013 258923, 175196 259164, 175286 258135, 175320 257566, 175298 257251, 175353 256828, 175271 256599, 175393 256615, 175445 256395, 175498 255706, 175459 255176, 175454 254504, 175393 253577, 175648 253330, 176162 253286, 176581 253523, 176964 253903, 177368 253320, 177734 253188, 178337 253134, 178523 253171, 178685 253329, 178775 253691, 178801 254546, 178865 255240, 178966 255468, 179088 256099, 179295 255568, 179365 254747, 179322 254036, 179231 253412, 179336 253192, 179637 253104, 180046 253063) (175991 273453, 175935 274592, 176030 274154, 176152 273474, 176069 273100) (174513 268260, 174573 268260, 174641 268168, 174606 268043, 174543 267495, 174502 267461) (173356 266952, 173422 267327, 173855 267192, 173962 267088, 174066 267084, 174157 266911, 173590 266311) (179435 258004, 179481 258574, 179512 258664, 179363 259483, 179301 259522, 179164 259912, 178895 260523, 178700 261164, 178632 261896, 178649 262712, 178932 263370, 179179 263498, 179455 263371, 179240 262631, 179185 262546, 179051 261822, 179080 261071, 179213 260623, 179217 260473, 179533 259927, 179743 259304, 179889 258648, 179784 257986, 179635 257451) (180103 262636, 180236 262838, 180346 262652, 180361 262426, 180257 262285) (179094 256146, 179375 257647, 179571 257341, 179485 256716, 179311 255736)), ((210371 236583, 210437 236987, 210423 238199, 210408 238705, 210363 239537, 210345 239619, 210237 241105, 210284 241303, 210263 241676, 210403 242034, 210377 242415, 210534 242603, 210747 242198, 210937 242016, 210943 241628, 211006 241514, 211045 240126, 211078 239928, 211078 239033, 211065 238756, 211048 237470, 211053 236639, 211541 236561, 212150 236589, 212485 236727, 212868 236681, 213127 236726, 213250 236647, 213587 236885, 213784 237300, 213725 237419, 213778 237927, 213763 238030, 213787 238618, 213701 238670, 213716 238801, 213638 238937, 213679 239498, 213657 239654, 213688 241111, 213713 241332, 213630 241755, 213433 241987, 213439 242652, 213380 242912, 213322 244710, 213309 245571, 213292 245698, 213279 247011, 213309 247187, 213278 247829, 213316 248066, 213228 248778, 213257 248973, 213206 249912, 213243 250285, 213232 250885, 213193 251271, 213010 251420, 212879 251836, 212858 252032, 212906 252547, 212966 252671, 212974 252836, 213170 253144, 213082 253843, 213053 254142, 212852 254808, 212776 255347, 212971 256139, 213254 256402, 213463 255845, 213182 255538, 213438 254872, 213433 254322, 213372 253878, 213450 252891, 213574 251908, 213603 251005, 213691 250488, 213811 249958, 213795 249018, 213736 248454, 213777 248111, 213726 247625, 213774 247244, 213793 246659, 213845 245639, 213858 244903, 213944 243972, 214097 243330, 214086 243000, 214135 242811, 214115 242409, 214148 241836, 214166 240676, 214385 240121, 214642 239843, 214763 239293, 214421 238631, 214430 238492, 214348 238098, 214348 237420, 214416 237296, 214621 237091, 214926 237034, 215218 237070, 215313 237311, 215300 237723, 215350 238331, 215349 238645, 215375 239875, 215466 241183, 215491 241364, 215524 242093, 215480 242836, 215539 245017, 215569 249801, 215519 250422, 215458 250861, 215411 251663, 215407 252032, 215351 253010, 215402 253459, 215421 254636, 215415 255114, 215455 256206, 215457 256759, 215421 258910, 215425 259358, 215397 260086, 215398 260502, 215293 262075, 215271 263131, 215310 265849, 215340 266017, 215387 266985, 215375 267578, 215384 268312, 215294 269081, 215355 269442, 215306 270405, 215348 270956, 215217 272603, 215225 273215, 215294 273883, 215324 274050, 215365 275179, 214010 275178, 214121 274427, 214144 273935, 214267 273280, 214121 273135, 213872 273670, 213784 273998, 213719 275179, 212500 275178, 212609 274425, 212306 273683, 212231 272881, 212128 272077, 212134 271540, 212064 270849, 211924 270399, 211924 270287, 211692 270010, 211745 269521, 211719 268974, 211731 267653, 211713 267283, 211763 266285, 211701 265910, 211728 265535, 211731 265001, 211770 264643, 211621 263985, 211302 263948, 211384 263182, 211484 262759, 211658 262293, 211779 261587, 211845 261397, 211800 261313, 211714 260486, 211659 259559, 211694 259215, 211732 258522, 212084 256372, 211943 255909, 211646 256687, 211417 258821, 211308 259548, 211215 259981, 211204 260469, 211119 260780, 211025 262093, 211058 262269, 211085 262800, 211217 263233, 211213 264433, 211488 264377, 211274 264994, 211202 265919, 211297 267437, 211276 267725, 211297 268674, 211396 270043, 211472 270386, 211624 271359, 211721 271896, 211639 272871, 211721 273874, 211702 274355, 211731 275179, 209671 275178, 209589 273375, 209558 270973, 209567 270083, 209557 269395, 209453 265898, 209474 265256, 209461 264650, 209522 264004, 209561 263439, 209628 263073, 209686 262518, 209768 261868, 209866 261614, 209865 261272, 209929 260698, 209953 260368, 210149 259466, 210351 258329, 210499 257964, 210555 257223, 210689 256640, 210714 256044, 210173 255631, 210070 255333, 209913 255204, 209646 256019, 209673 256579, 209666 256952, 209760 258438, 209647 259046, 209533 259398, 209469 260311, 209521 260646, 209406 260558, 209244 260721, 209216 261195, 209156 261400, 209046 262094, 209099 263195, 209025 263179, 208847 263329, 208911 263962, 208909 264207, 208950 264921, 209013 265675, 209048 265876, 209097 266814, 209119 267731, 209124 268450, 209110 268629, 209092 269509, 209130 269818, 209113 270368, 209131 270982, 209127 271210, 209226 272253, 209223 272893, 209201 273464, 209228 273844, 209243 274433, 209279 275179, 207459 275179, 207453 274391, 207432 273626, 207509 273197, 207475 272858, 207499 272521, 207487 271922, 207518 271253, 207516 270384, 207487 269505, 207528 268928, 207440 267149, 207420 265699, 207458 264874, 207492 264422, 207464 263892, 207503 262920, 207561 262036, 207532 261530, 207488 261113, 207509 260664, 207439 258429, 207433 257403, 207443 256351, 207438 255810, 207481 254980, 207476 254525, 207531 254236, 207567 253521, 207724 252682, 207680 251734, 207585 250846, 207565 250210, 207530 249784, 207534 249023, 207521 248364, 207541 247818, 207568 247406, 207547 246528, 207562 245867, 207533 243968, 207550 243442, 207534 242863, 207556 241959, 207544 241563, 207594 240329, 207523 239544, 207557 239023, 207576 238447, 207567 238056, 207731 236998, 207940 236719, 208392 236523, 208870 236551, 208956 236719, 208957 236941, 209095 237154, 208961 237870, 209008 238014, 208975 238139, 209054 238196, 209411 238019, 209267 237871, 209448 237591, 209538 237072, 209648 236542, 210166 236499) (213710 270437, 213663 271249, 213640 271460, 213608 272085, 213549 272596, 213726 272891, 213717 272982, 213758 273017, 213895 272882, 213850 272764, 214158 272058, 214273 271222, 214286 270900, 214416 269831, 214233 269443) (213895 265092, 213840 265877, 213871 266358, 213790 267208, 213773 267699, 213640 268209, 213796 268604, 213752 268795, 213865 268740, 214140 267689, 214160 267322, 214231 266776, 214315 266417, 214345 265863, 214345 265439, 214391 264467, 214238 264031) (213795 261352, 213777 261635, 213553 262263, 213505 262879, 213697 263159, 213841 263544, 213995 263148, 214003 262876, 214195 262238, 214221 261625, 213968 261055) (212981 256966, 212856 257708, 212866 258347, 213118 258646, 213118 258785, 213203 258788, 213341 259561, 213290 260058, 213389 260467, 213354 260736, 213518 260729, 213676 260457, 213731 260121, 213899 259546, 213696 258683, 213593 258646, 213690 258621, 213691 257096, 213403 256876) (208567 252322, 208564 252738, 208518 253280, 208521 254049, 208655 254448, 208835 254113, 208851 253147, 208815 252344, 208770 251719, 208776 251553, 208730 250899) (209120 240735, 209088 240963, 208879 241805, 208904 242455, 208948 242786, 208933 243669, 208854 244453, 208695 244910, 208674 245446, 208642 245654, 208625 246270, 208697 246406, 208760 246901, 208754 247204, 208866 247689, 209036 247172, 209050 246855, 209156 246342, 209189 245843, 209280 245547, 209307 244951, 209150 244440, 209154 243659, 209279 242692, 209391 242330, 209391 242021, 209465 241428, 209451 240913, 209476 240693, 209366 240216) (212215 246286, 212251 246632, 212309 246242, 212276 245297) (210252 244747, 210408 244996, 211017 245524, 211184 244740, 211186 244573, 210438 244466) (212394 237474, 212164 237568, 212284 238866, 212427 239052, 212434 239271, 212604 239527, 212568 239651, 212645 240024, 212618 240418, 212208 240333, 212065 240521, 211759 241057, 211942 241912, 212274 242018, 212712 241642, 212828 241088, 212814 240537, 212764 240067, 212772 239464, 212891 239093, 212875 238894, 212953 238676, 212935 238279, 212855 237892, 212609 237575, 212597 237413, 212485 237294) (209085 238393, 209069 238667, 208966 239142, 208981 239771, 209037 240003, 209358 240195, 209217 239743, 209339 239570, 209411 238919, 209486 238699, 209563 238144, 209413 238017)), ((192410 128152, 192443 129647, 192451 132488, 192594 132474, 192572 130626, 192581 129942, 192578 128942, 192657 128493, 193435 128418, 193984 128420, 194511 128458, 196757 128379, 198201 128396, 198659 128347, 199100 128408, 199897 128452, 200575 128448, 201158 128404, 202011 128379, 202190 128387, 202832 128329, 203208 128368, 203595 128335, 204050 128436, 204879 128287, 206187 128266, 206563 128213, 206912 128270, 207484 128250, 208104 128246, 208521 128339, 208588 128761, 208599 129944, 208635 129492, 208711 129151, 208790 129008, 209227 128726, 209432 128563, 209924 128454, 210534 128416, 210887 128433, 211395 128437, 211700 128498, 212242 128471, 213091 128468, 213408 128515, 214379 128518, 214572 128553, 215166 128454, 215998 128600, 216830 128587, 217466 128428, 218691 128484, 218829 128471, 219338 128476, 219687 128434, 220130 128516, 220952 128525, 221033 128510, 221749 128452, 222479 128452, 223076 128480, 223861 128448, 224423 128603, 224638 128600, 225114 128936, 225270 129119, 226145 129939, 226530 130320, 226653 130418, 227440 131200, 228401 132191, 228534 132427, 228712 132636, 228980 132761, 229481 133302, 229783 133595, 230250 134140, 230354 134206, 231056 134906, 231191 135292, 231148 135601, 231615 135292, 232157 135551, 232520 135938, 232626 136089, 232997 136496, 233273 136770, 233648 137166, 233851 137327, 234359 137890, 234423 137940, 234804 138326, 235248 138726, 235672 139171, 235891 139426, 236228 139659, 236684 140130, 237065 140431, 237393 140885, 238475 141886, 238692 142176, 239200 142607, 239380 142806, 239914 143313, 240529 143955, 240589 144059, 241505 144961, 241646 145187, 242058 145493, 242551 145938, 242936 146331, 243263 146625, 244368 147784, 244667 148326, 244654 148645, 244995 148367, 245894 149270, 246188 149580, 246655 150003, 247145 150486, 247731 151097, 248096 151452, 248483 151859, 249643 152993, 249978 153520, 250108 154140, 250128 158178, 250319 158231, 250424 158343, 250966 158305, 251139 158331, 251683 158603, 251956 158389, 252376 158525, 252834 158468, 252927 158562, 253133 158468, 253657 158397, 254206 158253, 254935 158265, 255427 158326, 256313 158390, 257434 158287, 258107 158325, 259066 158325, 259906 158284, 260766 158296, 261428 158215, 261592 158169, 262454 158165, 263248 158570, 263312 158665, 263440 159107, 263453 159678, 263450 160545, 263405 161735, 263380 162793, 263338 163779, 263354 164910, 263320 165580, 263282 165627, 263180 166119, 263050 166312, 263095 166617, 263049 167185, 263268 167536, 263291 167907, 257174 182673, 257168 185685, 257174 217532, 256904 217498, 256902 219138, 257174 219142, 257174 231170, 256863 231143, 256858 232925, 257174 232823, 257174 275178, 246644 275178, 246447 274181, 246321 273595, 246144 272551, 246065 271817, 245897 270538, 245849 270272, 245950 269348, 246003 268707, 246238 267945, 246483 267201, 247079 265284, 247400 264557, 247777 263745, 247772 263537, 247799 263707, 248111 263115, 248114 262843, 248156 263037, 248376 262617, 248376 261874, 248363 261798, 248035 262423, 247693 263038, 247362 263667, 247081 264320, 246835 264968, 246319 266443, 246155 267060, 245893 267917, 245748 268684, 245642 268862, 245434 269447, 245293 270263, 245337 271021, 245548 271792, 245640 272526, 245744 273086, 245984 274189, 246218 275179, 244435 275179, 244374 274651, 244273 274001, 244245 273255, 244269 272421, 244254 271265, 244224 270942, 244295 270003, 244406 267717, 244447 267079, 244539 266259, 244792 265619, 245251 264908, 245280 264660, 245407 264167, 245440 263967, 245709 262815, 245637 262163, 245650 261775, 245821 260799, 246055 259608, 246155 258787, 246248 258152, 246228 257465, 246296 256783, 246274 256113, 246377 255451, 246201 254977, 246154 255263, 245949 255301, 245528 255170, 245513 254822, 245308 254046, 245188 253717, 245078 253155, 245046 252781, 244960 252189, 244692 249985, 244564 248462, 244538 247567, 244579 247146, 244664 247054, 245066 246940, 245603 246921, 245591 246309, 245533 246174, 245230 246566, 244497 246480, 244347 246328, 244267 245423, 244165 244972, 244187 244428, 244133 245249, 244027 245689, 243929 246227, 243785 246362, 243159 246387, 242895 246296, 242753 246106, 242652 245459, 242609 243888, 242607 242872, 242580 241048, 242576 239765, 242615 237368, 242498 229349, 242500 228464, 242480 226741, 242506 225790, 242586 224526, 242641 223025, 242654 221933, 242648 219036, 242662 217151, 242646 214088, 242705 210897, 242700 208895, 242678 206165, 242639 203402, 242626 200390, 242638 199146, 242610 197892, 242563 196697, 242525 195344, 242517 194183, 242478 192990, 242417 190420, 242397 187920, 242434 187427, 242482 185917, 242578 184128, 242602 183876, 242634 183140, 242650 182318, 242609 181433, 242537 178701, 242477 177249, 242476 174782, 241961 174785, 241953 175694, 241926 176337, 241906 177653, 241909 178593, 241854 179943, 241844 180599, 241953 181918, 241912 182604, 241907 183194, 241877 183894, 241907 185371, 241868 185928, 241795 187666, 241639 188074, 241353 188228, 240589 188239, 240358 187862, 240300 187494, 240297 187803, 240088 188059, 239597 188098, 239353 187904, 239160 188239, 238313 188250, 237976 188131, 237876 187818, 237900 187016, 237689 186988, 237519 187603, 237528 187749, 237311 188249, 236809 188207, 236262 188235, 236161 187816, 236059 186978, 235917 186787, 235930 186317, 235758 185822, 235707 186250, 235829 186862, 235571 188099, 235419 188078, 235194 188201, 234786 188171, 234463 187980, 234249 187540, 234165 187127, 234109 185720, 234114 183040, 234065 181445, 234021 180489, 234060 176553, 234039 175800, 234048 175081, 234019 173962, 234020 173212, 234064 170877, 234139 169927, 234214 168675, 234275 167900, 234297 167153, 234085 165668, 233687 164974, 233638 166365, 233630 167434, 233674 168185, 233733 168747, 233747 169449, 233678 169987, 233674 170133, 233561 170778, 233447 171584, 233436 172973, 233527 174984, 233532 175455, 233595 176493, 233717 177539, 233751 178590, 233812 183152, 233784 184229, 233718 185390, 233700 186493, 233751 188019, 233768 188288, 233781 189008, 233780 189559, 233754 190779, 233745 192596, 233698 193250, 233573 193649, 233518 193990, 233492 194799, 233455 195451, 233427 196478, 233507 197434, 233571 197942, 233617 198718, 233633 200041, 233626 202233, 233592 203457, 233576 204957, 233578 206464, 233523 207639, 233514 208538, 233533 209220, 233634 209877, 233586 210868, 233574 211821, 233547 212474, 233550 213097, 233582 214354, 233476 217213, 233429 217466, 233306 217743, 233094 217919, 232408 217952, 231862 217752, 231421 217817, 231101 217721, 230811 217964, 230373 217979, 229780 217960, 229558 217902, 229493 217835, 229403 217402, 229482 217303, 229490 216468, 229458 216266, 229368 216514, 229261 217115, 229308 217350, 229185 217720, 228997 217986, 228320 218011, 227860 217973, 227756 217303, 227679 217185, 227530 217255, 227102 217570, 226591 217911, 225937 217428, 225708 216545, 225670 214441, 225673 211706, 225635 209836, 225599 208952, 225589 208087, 225605 204975, 225570 203517, 225584 201299, 225574 200124, 225612 196932, 225689 195623, 225781 193717, 225841 192829, 225858 192095, 225797 191405, 225671 190660, 225622 190017, 225595 188988, 225615 188162, 225710 186730, 225741 186420, 225794 185525, 225813 184576, 225782 183386, 225740 182421, 225631 180559, 225513 177500, 225444 176008, 225492 174050, 225566 168640, 225733 167673, 225833 167291, 225827 166627, 225631 165377, 225608 164541, 225582 163986, 225584 163344, 225539 161836, 225582 160497, 225633 158127, 225752 156302, 225733 155632, 225565 154405, 225561 152207, 225590 150576, 224795 149775, 224711 150371, 224256 151138, 224239 151261, 224281 151194, 224416 151487, 224579 151610, 224799 151936, 224792 153471, 224811 156117, 224800 158616, 224744 161961, 224547 163360, 224493 164031, 224509 164671, 224608 165960, 224658 167029, 224692 168247, 224594 168963, 224570 169753, 224344 170506, 224605 171125, 224688 171256, 224737 171574, 224779 172359, 224782 172964, 224724 175850, 224745 176633, 224777 177263, 224795 178342, 224754 181712, 224691 182222, 224382 182539, 223970 182586, 223672 182572, 223475 182411, 223287 182384, 223121 181913, 222944 181222, 222921 180632, 222983 179987, 222944 179287, 222928 179160, 222903 178581, 223010 177873, 223247 177176, 223459 176481, 223628 175773, 223754 175041, 223843 174298, 223829 173977, 223837 172981, 223972 172288, 224127 172025, 224232 171557, 224050 171167, 223824 171712, 223660 172005, 223447 172850, 223481 173509, 223472 173641, 223492 174259, 223178 175557, 222955 176407, 222785 176750, 222640 177424, 222572 177637, 222509 178135, 222488 178540, 222410 179244, 222381 179922, 222432 180561, 222521 181189, 222545 182205, 222448 182430, 221886 182595, 220831 182599, 220701 182566, 220574 182469, 220526 181902, 220321 181305, 220191 181586, 220103 182083, 219958 182499, 219673 182627, 219268 182356, 219092 181880, 219099 181253, 219152 180747, 219166 179635, 219211 179025, 219159 178325, 219196 177700, 219068 176786, 218707 175603, 218522 175126, 218435 174589, 218239 174275, 218151 173993, 218047 173389, 218008 173641, 218029 173808, 217981 174330, 218112 174999, 218429 176364, 218507 176859, 218598 177649, 218615 177728, 218640 178233, 218662 178418, 218691 179539, 218678 179800, 218671 180346, 218604 181203, 218382 181969, 218242 182079, 218156 182267, 218001 182392, 217626 182299, 216968 182012, 216870 181781, 216771 181725, 216726 181266, 216691 180362, 216693 179999, 216654 177370, 216699 174541, 216646 172147, 216559 166166, 216603 164803, 216674 163773, 216717 162823, 216734 161909, 216729 159917, 216744 157655, 216729 155257, 216763 153372, 216781 153168, 216803 152631, 216773 149664, 216867 148838, 217241 148141, 217141 147828, 216917 147404, 216855 147065, 215946 146528, 216035 148472, 216046 149815, 216005 151774, 216062 154229, 216042 155158, 215960 157591, 215917 158179, 215873 158626, 215792 160732, 215487 160955, 215119 161020, 214930 160442, 214829 159937, 214788 159868, 214717 159975, 214602 160884, 214517 160964, 214229 161051, 213586 161046, 213253 160860, 213314 160788, 213348 160461, 213280 159871, 213191 159662, 213383 159471, 213442 159357, 213348 158735, 213271 158533, 213162 158663, 213160 159269, 213040 159734, 213110 160180, 213073 160432, 213108 160503, 212762 161057, 211563 161008, 211146 160859, 211045 160712, 211072 160508, 211006 159563, 211002 159050, 210950 158538, 210891 158277, 210961 157458, 210909 156219, 210759 155771, 210815 155090, 210864 154933, 210773 154558, 210707 153849, 210689 153219, 210760 152627, 210721 152106, 210597 150812, 210475 149054, 210401 147777, 210387 147196, 210329 146929, 210398 146455, 210396 145921, 210368 145424, 210410 144567, 210512 143891, 210482 143170, 210315 142460, 210272 142431, 209996 142484, 209869 143171, 209909 143876, 210095 144833, 210075 146498, 210099 147198, 210138 147449, 210151 148297, 210177 148425, 210189 148954, 210234 149162, 210207 149780, 210276 150885, 210315 152037, 210380 152715, 210446 153159, 210511 154050, 210546 154971, 210600 155441, 210626 156589, 210704 157357, 210669 157518, 210722 157933, 210677 158666, 210601 158868, 210604 159231, 210665 159826, 210634 160752, 210459 160852, 210062 160898, 209065 160776, 208455 160667, 207849 160510, 207787 159837, 207839 158038, 207822 157460, 207767 156542, 207706 154959, 207805 153711, 207812 153134, 207658 151279, 207632 149622, 207649 148992, 207719 148366, 207828 147865, 208031 147116, 208116 146508, 208102 145757, 208104 144541, 207982 143866, 207733 143193, 207652 142528, 207126 142528, 207081 145956, 207012 147181, 206955 148773, 206842 150961, 206869 151792, 206930 152440, 207027 153120, 207077 153801, 207100 155303, 207083 156129, 207007 157672, 206947 158469, 206915 159264, 206897 160039, 206894 160859, 206920 161941, 206925 162607, 206985 164000, 207027 164618, 207081 165673, 207273 171437, 207240 173152, 207159 180144, 206953 181247, 206903 181441, 206878 182101, 206921 182768, 207050 183463, 207103 184130, 207151 185617, 207154 186539, 207195 187978, 207116 191678, 207105 192839, 206967 195345, 207031 196214, 207096 196735, 207147 197409, 207162 199810, 207120 202908, 207114 204678, 207075 205290, 206979 205800, 206456 205948, 206676 206105, 206767 206528, 206831 207114, 206863 208664, 206863 209360, 206879 210399, 206879 211170, 206930 213225, 206957 214926, 206929 216286, 206985 220098, 206915 220769, 206852 221522, 206836 222237, 206843 222970, 206810 224819, 206757 225846, 206745 226798, 206796 227636, 206860 228406, 206851 229243, 206611 230855, 206573 231742, 206567 232507, 206653 234315, 206656 234809, 206692 235704, 206851 237166, 206870 237748, 206923 241217, 206943 243335, 206825 245802, 206828 246410, 206864 247502, 206898 248170, 206907 249269, 206878 250731, 206862 252832, 206787 253242, 206669 253555, 206597 254286, 206571 255458, 206534 256511, 206691 257872, 206760 259072, 206759 262159, 206722 263703, 206708 265244, 206709 266697, 206658 267690, 206644 268981, 206732 269665, 206758 270280, 206717 271077, 206703 272111, 206676 272785, 206713 274883, 206689 275178, 200778 275179, 200788 274640, 200747 274512, 200744 274192, 200572 274125, 200488 274963, 200509 275179, 198843 275179, 198845 271897, 198811 270166, 198756 268769, 198779 265030, 198754 262997, 198761 261728, 198751 261102, 198751 259938, 198795 256481, 198856 255729, 198931 254059, 199018 252678, 199031 251943, 198964 251226, 198843 250512, 198792 249791, 198773 249075, 198780 248229, 198855 246918, 198928 246116, 198970 245182, 198987 244400, 198963 243221, 198790 239950, 198609 235343, 198623 234580, 198660 233480, 198727 228366, 198800 227574, 198997 226793, 198991 226029, 198851 225257, 198795 224576, 198754 223659, 198738 222514, 198705 221644, 198709 220956, 198773 218723, 198786 217774, 198831 216829, 198920 215545, 198889 214829, 198770 213963, 198738 213462, 198721 212253, 198773 208758, 198774 207516, 198826 206788, 199338 206423, 199393 206425, 199248 206277, 199133 205306, 199096 203617, 199096 202218, 199074 201131, 199090 200372, 199040 198312, 199001 195525, 199025 194278, 199010 192825, 198985 191746, 198972 189522, 199067 188431, 199102 187733, 199116 186903, 199106 186317, 199135 184276, 199191 183087, 199223 182094, 199215 181310, 199101 179448, 199116 178549, 199190 177833, 199278 177193, 199357 176417, 199381 175050, 199376 174397, 199312 173183, 199269 171339, 199213 170393, 199121 169473, 199083 168235, 199070 166211, 199041 164973, 199011 161524, 199075 160062, 199123 159231, 199133 158419, 199064 155948, 199081 150808, 199129 150130, 199338 149482, 199409 148818, 199439 146993, 199471 146296, 199428 145598, 199287 144358, 199233 143804, 199198 142997, 199190 142471, 197987 142381, 197973 143321, 197994 145273, 197957 146910, 197955 147413, 197924 147986, 197943 150070, 197892 150737, 197595 151074, 197474 151368, 197731 151905, 197810 152027, 197966 152682, 197967 153701, 197954 154400, 197958 154622, 197915 155329, 197903 155412, 197909 156283, 198039 159371, 198126 160814, 197956 161292, 197763 161129, 197502 161316, 197380 161470, 197881 162110, 198054 162796, 198098 163516, 198118 164579, 198111 165602, 198053 166530, 198005 167051, 197989 167743, 198046 168793, 198058 169212, 198148 171146, 198165 171965, 198161 172709, 198125 173503, 198126 174004, 198105 174661, 198158 176761, 198171 177914, 198072 180939, 197976 182091, 197906 184105, 197785 184452, 197708 184511, 197328 184602, 196833 184576, 196689 184496, 196538 184146, 196380 183296, 196072 180728, 196021 180495, 195928 180561, 195978 180309, 195903 179920, 195905 179718, 195846 179101, 195747 178518, 195597 179131, 195680 179475, 195658 179748, 195714 180342, 195804 180906, 195857 181449, 195972 181789, 195964 181954, 196036 182457, 196144 183440, 196171 184125, 196121 184348, 195976 184541, 196206 184567, 196309 184624, 196313 184717, 196465 184988, 196492 185129, 196623 185274, 197002 184638, 197670 184634, 197919 184724, 198038 184951, 198127 185524, 198159 187024, 198157 187411, 198192 189029, 198157 190303, 198146 191317, 198190 192935, 198264 196789, 198262 197451, 198279 198108, 198264 198952, 198143 200792, 198120 201790, 198110 205340, 198124 207092, 198081 209002, 198082 210397, 198106 212849, 198138 214541, 198136 215847, 198148 216267, 198143 217185, 198179 218509, 198256 219862, 198281 221341, 198318 222395, 198329 222991, 198351 223492, 198368 226035, 198266 227712, 198212 228283, 198166 228642, 198131 229429, 198152 230091, 198191 230779, 198220 231956, 198262 232680, 198290 233739, 198292 234335, 198261 235453, 198250 236759, 198296 238521, 198306 239245, 198290 240144, 198209 242819, 198121 243957, 198038 246213, 197926 246413, 197662 246482, 197819 246479, 197976 246608, 198159 246990, 198235 247688, 198262 248855, 198282 250763, 198276 251220, 198294 252049, 198318 252649, 198356 254840, 198323 256215, 198379 258614, 198374 259744, 198282 260440, 198243 261135, 198241 262307, 198204 264037, 198169 264568, 198146 265461, 198162 266195, 198249 267136, 198269 267690, 198245 267863, 198209 268405, 198096 268996, 197988 269763, 197969 271124, 198050 272537, 198078 273756, 198234 275179, 193720 275179, 193685 274563, 193643 275179, 190079 275178, 190011 273738, 190063 271654, 190116 267968, 190149 266686, 190368 265983, 190412 265318, 190327 264644, 190196 263998, 190175 263173, 190146 262520, 190144 261870, 190113 261139, 190108 260430, 190173 258279, 190197 257074, 190316 255366, 190282 254633, 190175 253918, 190135 253212, 190125 251943, 190178 247902, 190223 247371, 190333 247044, 190639 246921, 191575 246902, 191881 246870, 192882 246810, 192955 246844, 193065 246995, 193146 247319, 193167 247747, 193119 248499, 193101 249583, 193107 249632, 193089 250155, 193128 250347, 193032 250777, 192857 252295, 192804 253033, 192937 253719, 193013 252664, 193046 252009, 193131 251585, 193101 251377, 193237 251042, 193615 248580, 193690 247117, 193651 246998, 193736 246732, 193921 246679, 194752 246670, 195133 246836, 195131 247272, 195177 247788, 194974 247824, 194874 249182, 194931 249582, 194808 249597, 194738 250356, 194654 250836, 194672 250968, 194594 251204, 194477 252034, 194427 252844, 194412 253727, 194438 254301, 194471 255510, 194573 256179, 194658 256866, 194709 257746, 194918 258507, 194912 258918, 194987 259617, 195125 260300, 195261 259610, 195165 259116, 195142 258914, 195033 258222, 195013 257533, 194913 256853, 194901 256191, 194820 255543, 194777 254893, 194759 254205, 194757 252983, 194779 252257, 194850 251485, 194845 250996, 194909 250385, 195027 249948, 195135 248899, 195131 248799, 195262 247887, 195311 247058, 195463 246650, 195523 246590, 195822 246563, 195615 246230, 195591 245812, 195517 245453, 195561 245281, 195445 245126, 195627 245092, 195608 244394, 195537 243896, 195349 244047, 195370 244710, 195524 244915, 195342 244994, 195276 245240, 195416 245878, 195194 246424, 194838 246569, 194320 246552, 193779 246506, 193469 246422, 193324 245962, 193261 245166, 193214 245025, 193245 244938, 193251 244075, 193197 243914, 193185 243344, 193212 242885, 193166 242160, 193116 240365, 193079 239667, 193009 239079, 192913 238448, 193005 237864, 192975 237161, 192821 235432, 192794 235314, 192782 234738, 192711 233573, 192683 232960, 192643 231453, 192633 229783, 192648 229054, 192738 228394, 192756 227614, 192600 226911, 192580 226892, 192487 226332, 192275 226214, 192247 226902, 192101 227636, 192175 228349, 192329 229069, 192318 229368, 192327 231098, 192355 232462, 192430 234133, 192480 234953, 192513 235257, 192547 235895, 192577 236047, 192541 236297, 192577 237196, 192676 238086, 192757 238465, 192769 239111, 192794 239349, 192818 240263, 192834 240354, 192862 240865, 192879 240964, 192870 241673, 192898 243459, 192846 244475, 192912 244875, 192887 245428, 192878 245965, 192722 246352, 192383 246417, 191500 246308, 190689 246164, 190157 246017, 190048 245880, 190020 245729, 190079 243431, 190073 242776, 190032 242249, 189995 241316, 189942 240500, 189963 239848, 190007 239360, 190058 238544, 190038 237850, 189890 236199, 189877 234905, 189886 233768, 189992 232831, 190265 231773, 190361 231110, 190350 230171, 190352 229114, 190277 228427, 190039 227700, 189911 227014, 189893 226231, 189898 225037, 189966 220139, 189886 218314, 189907 217131, 189908 216382, 189882 215438, 189851 213545, 189876 211180, 189912 209435, 189911 208541, 189883 206660, 189894 204532, 189927 202659, 189963 201614, 190113 200721, 190200 199774, 190063 197992, 189974 195938, 189956 194314, 189896 192906, 189960 190449, 189942 189678, 189881 188780, 189905 187594, 189905 186497, 189939 185209, 190142 184731, 190280 184649, 190748 184552, 191548 184532, 192068 184654, 192522 184510, 192831 184499, 192541 184454, 192378 184089, 192294 183352, 192207 182899, 192224 182815, 192049 181297, 191947 181065, 191971 180885, 191853 180305, 191703 179059, 191736 178986, 191771 178325, 191620 176985, 191558 176857, 191562 176203, 191579 176033, 191338 175254, 191081 174646, 190502 173743, 190096 173009, 189938 172175, 189971 171421, 190097 170672, 190296 169948, 190401 169271, 190397 167362, 190349 166727, 190176 166093, 189972 165475, 189924 164820, 189912 163601, 189924 163009, 189921 162394, 189950 160674, 189997 160364, 190137 160265, 190205 160390, 190567 160724, 190641 160685, 190786 161037, 191068 161281, 191170 161220, 191340 161485, 191335 161618, 191579 162195, 191666 162742, 191733 163285, 191730 163403, 191861 164005, 191890 164630, 191911 164721, 191933 165261, 191971 165814, 191988 166604, 192041 167605, 192090 167737, 192067 167851, 192106 168350, 192082 168518, 192103 169462, 192146 169627, 192266 169577, 192227 169883, 192169 169987, 192151 170750, 192217 172036, 192186 172905, 192139 173519, 192144 174311, 192307 175097, 192517 175873, 193058 177609, 193230 178081, 193429 178858, 193527 179423, 193746 180173, 193965 181039, 194186 181972, 194486 183115, 194546 183564, 194522 184140, 194409 184460, 194689 184470, 195091 184602, 195178 184579, 195106 184574, 195012 184485, 194977 183824, 194896 183414, 194742 182505, 194534 181556, 194218 180256, 194031 179341, 193845 178580, 193675 178017, 193626 177765, 193466 177247, 193199 176568, 193037 176316, 192888 176172, 192864 175841, 192760 175333, 192680 175345, 192680 175072, 192579 174535, 192461 173530, 192463 172745, 192487 171993, 192589 171242, 192525 170388, 192446 169859, 192460 169165, 192403 167906, 192413 167824, 192379 166537, 192337 165881, 192316 165232, 192304 165130, 192388 163959, 192325 163389, 192328 163345, 192151 162497, 192004 161526, 191987 160912, 191804 160713, 191482 160056, 191253 159315, 191233 158533, 191235 157850, 191189 157150, 191154 155774, 191002 156126, 190985 156441, 190905 157180, 191153 157787, 190916 157569, 190847 157624, 190906 157896, 191155 158474, 190944 158318, 190927 158589, 190953 159243, 191168 159853, 191349 160639, 191219 160585, 191173 160785, 191015 160600, 190742 160103, 190005 158678, 189887 156181, 189880 154961, 189888 153069, 189867 152481, 189891 150260, 190022 149515, 190335 149065, 189980 148522, 189202 147175, 189113 148121, 188932 148781, 188901 149601, 188854 150377, 189002 151348, 189058 152066, 189074 153401, 189064 154839, 189024 155786, 189011 157981, 188963 158751, 188955 159524, 189075 160259, 189028 160987, 189020 161519, 188984 162406, 189018 163599, 188978 164281, 188919 165745, 188705 166093, 188388 166234, 188032 166259, 187555 166219, 187390 166132, 187214 166104, 186681 166152, 186408 166088, 186163 166273, 185095 166274, 184984 166147, 185041 166059, 184948 165383, 184782 165412, 184779 165944, 184719 166075, 184430 166257, 183688 166321, 183237 166265, 183097 165702, 182982 164978, 183001 164602, 183078 164238, 183121 163646, 183078 162869, 183060 162805, 182962 163237, 182986 163361, 182932 164223, 182975 164614, 182952 164977, 182787 165651, 182560 166249, 181877 166226, 181499 166070, 181204 165482, 181152 165132, 181116 164154, 181107 161326, 181076 160315, 181030 159410, 181039 158201, 181035 157069, 181042 156518, 181037 155941, 181011 155442, 181029 153480, 180690 153967, 179915 154689, 180089 155358, 180144 155503, 180296 156000, 180366 156711, 180368 158506, 180343 160696, 180312 162390, 180305 163625, 180366 164900, 180376 165616, 180348 166488, 180348 167432, 180382 168633, 180406 170177, 180404 171895, 180346 174654, 180379 177365, 180367 179699, 180328 181607, 180298 182535, 180164 183381, 180055 184305, 180100 185163, 180169 185917, 180236 187143, 180286 188741, 180281 189502, 180347 191863, 180299 193912, 180303 194629, 180384 196037, 180330 199485, 180217 199955, 179950 200065, 180198 200062, 180567 200146, 180693 200525, 180751 201077, 180783 202030, 180780 202682, 180807 204260, 180832 204794, 180876 206712, 180837 207736, 180900 210366, 180777 211226, 180749 212002, 180745 212783, 180726 213720, 180710 213873, 180667 215028, 180705 215750, 180783 216485, 180761 217177, 180605 217828, 180497 218495, 180480 219229, 180497 219808, 180564 220710, 180571 221099, 180613 221859, 180728 222566, 180786 223225, 180814 224883, 180834 225524, 180857 227458, 180786 228301, 180735 229231, 180809 230810, 180819 231874, 180808 232495, 180790 232906, 180791 233896, 180715 234652, 180536 235308, 180504 236128, 180457 236900, 180606 237873, 180661 238593, 180677 239931, 180669 241359, 180630 242292, 180615 244507, 180566 245282, 180558 246050, 180678 246785, 180631 247514, 180623 248048, 180588 248920, 180621 250125, 180582 250808, 180522 252272, 180309 252619, 179991 252761, 179635 252786, 179158 252745, 178993 252659, 178819 252631, 178285 252679, 178011 252616, 177765 252799, 177032 252807, 176678 252777, 176587 252672, 176644 252582, 176551 251910, 176385 251939, 176384 252470, 176322 252601, 176034 252784, 175287 252849, 174840 252792, 174701 252228, 174586 251505, 174604 251129, 174681 250766, 174725 250161, 174681 249397, 174663 249331, 174566 249764, 174590 249888, 174536 250750, 174579 251153, 174556 251504, 174391 252178, 174164 252775, 173480 252752, 173102 252597, 172804 252019, 172756 251690, 172715 250338, 172713 248030, 172684 246944, 172634 245798, 172641 242482, 172615 241970, 172613 241330, 172631 240249, 172620 239695, 172662 237268, 172806 235100, 172885 234184, 172882 233397, 172707 232535, 172651 231755, 172645 230968, 172751 229685, 172799 229328, 172847 228591, 172855 227767, 172823 227034, 172778 226450, 172762 226061, 172700 225441, 172495 221653, 172504 220898, 172530 220515, 172602 216618, 172653 215894, 172878 215187, 172822 214447, 172669 213672, 172627 212808, 172621 212118, 172587 211242, 172649 209574, 172677 208441, 172768 207486, 172798 206804, 172689 206149, 172608 205489, 172597 204980, 172644 202288, 172639 201794, 172671 200979, 172965 200420, 174331 200378, 175382 200325, 175521 200415, 175617 200582, 175625 200760, 175706 201026, 175651 201114, 175680 201312, 175634 201381, 175615 201859, 175644 201951, 175614 202218, 175575 203004, 175578 203723, 175516 204000, 175584 204264, 175524 204440, 175605 204348, 175777 203193, 175826 203120, 176113 201556, 176140 200783, 176114 200457, 176167 200338, 176349 200250, 175637 200251, 175226 200103, 174785 200214, 174172 200171, 173994 200115, 173882 200011, 173884 199821, 173793 199248, 173788 198935, 173703 199307, 173501 199811, 173357 200047, 172639 200073, 172378 199984, 172224 199511, 172170 198194, 172137 195413, 172176 193338, 172119 191158, 172054 187393, 172057 186870, 172036 185993, 172073 185078, 172129 184388, 172189 183359, 172216 182302, 172208 181125, 172221 178730, 172210 176775, 172231 175534, 172267 174376, 172262 172921, 172239 170735, 172203 169588, 172202 167958, 172191 166877, 172201 166203, 172196 165276, 171870 165083, 172041 165793, 172041 166608, 171922 168997, 171936 169941, 171995 171091, 172011 171708, 171998 173158, 171981 173723, 171972 176018, 171825 176754, 171734 177109, 171643 179584, 171689 179975, 171855 181765, 171866 183058, 171862 185335, 171827 186629, 171810 189678, 171759 190868, 171749 191761, 171769 192412, 171870 193059, 171818 194159, 171805 195064, 171776 195798, 171807 197028, 171810 197823, 171702 200589, 171527 200988, 171282 201197, 170878 201112, 170748 200943, 170637 200468, 170606 199761, 170485 199097, 170398 198096, 170147 195995, 169904 194659, 169820 193608, 169635 192700, 169572 192675, 169590 192497, 169416 191812, 169039 190460, 168993 189801, 168981 189038, 168917 188423, 168854 187624, 168853 187042, 168820 187023, 168822 186492, 169143 184469, 169187 184283, 169319 182983, 169440 182430, 169546 181748, 169720 181049, 169934 180331, 169947 180341, 170242 179774, 170459 179098, 170473 178728, 170531 178059, 170629 177335, 170692 175832, 170709 174978, 170334 174970, 170275 175821, 170263 176459, 170225 176995, 170189 177750, 170169 178424, 170011 179086, 169760 179791, 169625 179913, 169462 180256, 169324 180680, 169129 181719, 168989 182303, 168917 182962, 169041 183620, 168780 185352, 168621 186326, 168534 186946, 168426 188096, 168426 188457, 168363 189889, 168440 191006, 168354 191179, 168493 191259, 168709 191262, 168923 191370, 169094 191861, 169201 192267, 169347 192002, 169322 192530, 169388 192819, 169412 193204, 169492 193748, 169706 194835, 169749 195559, 169749 195748, 169913 197223, 170057 199026, 170101 199972, 170111 200629, 170066 200942, 169972 201112, 169714 201226, 168814 201260, 168417 201132, 168260 200874, 167976 199777, 167938 199117, 167871 198892, 167622 197336, 167711 196719, 167752 195863, 167595 195409, 167475 195836, 167374 196800, 167409 197085, 167466 197956, 167531 198410, 167499 198792, 167395 199024, 167444 199662, 167576 200877, 167322 201111, 167019 201215, 166812 201161, 166677 201181, 166459 201073, 166248 200713, 166049 199792, 166067 199042, 166053 198382, 165991 197761, 165955 197119, 165941 196452, 165864 195775, 165540 195125, 165502 194406, 165397 192983, 165324 190513, 165510 190234, 165539 190117, 165776 189438, 166055 188777, 166132 188531, 166355 188127, 166303 187540, 166025 188052, 166001 188304, 165927 188243, 165635 188841, 165197 190051, 165169 190202, 165003 190788, 164970 191492, 164871 192237, 164875 192972, 164933 193830, 165055 194599, 165342 196589, 165340 197102, 165401 197852, 165498 198440, 165525 199073, 165600 199599, 165628 200210, 165669 200767, 165548 201172, 165195 201272, 164990 201267, 164744 201171, 164317 200816, 164067 200069, 164024 198788, 164011 197889, 164005 194421, 163923 191739, 163938 190188, 163932 189662, 163953 187624, 164160 186981, 164467 186372, 164836 185756, 164139 185359, 164066 185726, 163925 185226, 163922 183872, 163912 183337, 163958 179676, 164028 178800, 164034 178512, 164120 176909, 164153 176588, 164195 175391, 164176 174909, 163316 174926, 163347 175589, 163251 176906, 163226 177660, 163257 178411, 163403 180144, 163426 182879, 163368 183543, 163252 184293, 163182 184535, 162984 185459, 162923 186130, 162940 187169, 162938 188497, 163009 189112, 163348 190328, 163406 190993, 163423 192639, 163409 194401, 163351 198629, 163364 199217, 163422 200616, 163413 201410, 163386 202455, 163448 205469, 163441 206093, 163454 206384, 163443 208813, 163396 211235, 163429 214580, 163420 216750, 163365 219741, 163265 220691, 163123 221675, 163124 222612, 163174 223208, 163251 224424, 163313 226065, 163329 226757, 163345 228616, 163379 229447, 163395 230381, 163384 231215, 163357 232219, 163347 233536, 163424 234956, 163402 238135, 163386 238987, 163339 239426, 163106 239665, 162760 239789, 161653 239821, 161301 239669, 160832 239834, 160413 239844, 160180 239799, 160128 239450, 159942 238987, 159928 239457, 159861 239701, 159601 239856, 159273 239867, 159266 239927, 159629 239915, 160535 240006, 160938 239974, 161345 240038, 161770 240882, 162085 240125, 162755 240112, 163121 240436, 163188 240752, 163220 241371, 163268 243838, 163280 245271, 163238 247469, 163286 249665, 163366 254762, 163367 256265, 163324 257168, 163244 258416, 163203 259673, 163206 262495, 163190 264186, 163207 266160, 163171 268244, 163154 268504, 163145 269263, 163176 272989, 163191 273326, 163212 275179, 144700 275179, 144712 274792, 144788 274066, 144821 273493, 144971 273125, 145452 272841, 146023 272792, 147449 272773, 152208 272763, 152233 272660, 151428 272736, 150436 272747, 148039 272748, 147465 272740, 147036 272750, 146271 272747, 145483 272728, 144953 272682, 144742 272539, 144487 271888, 144546 271470, 144366 270992, 144415 270197, 144336 269319, 144316 267943, 144346 266960, 144258 266350, 144256 265823, 144206 264601, 144185 264353, 144209 263538, 144167 262793, 144201 262023, 144342 261209, 144491 260157, 144376 258934, 144323 257514, 144357 256882, 144304 256245, 144343 255728, 144280 255041, 144320 254463, 144225 253872, 144297 253309, 144331 252861, 144410 252545, 144579 252398, 144948 252269, 145544 252201, 145280 252167, 145076 252044, 144901 251719, 144993 250786, 145023 250282, 145028 249478, 144887 248646, 144813 247937, 144746 246839, 144655 245970, 144727 245338, 144765 244394, 144719 243225, 144751 241955, 144703 240863, 144749 239931, 144753 239452, 144873 238461, 145101 237975, 145598 237694, 146728 237624, 147335 237620, 148259 237665, 149032 237659, 149379 237631, 150760 237612, 151269 237641, 152331 237735, 152650 237892, 152578 237426, 152018 237410, 151653 237441, 149515 237459, 148965 237433, 147132 237441, 145669 237418, 145208 237316, 144989 236928, 144764 235880, 144811 235012, 144746 234263, 144774 233253, 145006 233150, 145141 233031, 145194 232160, 144855 231765, 144880 230482, 144899 230226, 144834 229003, 144938 228102, 144856 227504, 144838 225837, 144773 225200, 144792 224635, 144913 224001, 144934 223418, 145065 222888, 145300 222520, 145147 222137, 145097 221641, 145138 221398, 145418 220833, 145251 220111, 145286 219929, 145272 219164, 145495 218163, 145495 217969, 145690 217453, 145328 216644, 145370 215987, 145451 215835, 145372 215699, 145205 214946, 145369 214620, 146051 214564, 146302 214604, 146369 214569, 147387 214580, 148140 214633, 149886 214615, 150346 214704, 150764 214577, 151489 214553, 151493 214270, 150940 214258, 149644 214163, 148337 214234, 147728 214295, 146084 214350, 145501 214350, 145238 214288, 145135 214210, 145023 213887, 145036 213813, 144904 213322, 144849 212450, 144893 211942, 144833 211191, 144866 210552, 144863 209895, 144897 209496, 144867 209022, 144754 208627, 144814 208148, 144828 207584, 144802 206856, 144783 206675, 144753 205673, 144725 205404, 144732 204708, 144761 204416, 144719 203879, 144564 202442, 144609 201648, 144535 200441, 144499 200131, 144494 199487, 144505 199311, 144458 198606, 144557 197874, 144513 197140, 144403 196276, 144470 195060, 144433 194270, 144546 193880, 144564 193258, 144630 192449, 144652 191709, 144613 191304, 144554 190433, 144592 189976, 144587 189361, 144667 188397, 144624 187791, 144595 187560, 144610 186949, 144579 186328, 144631 185986, 144620 185294, 144656 184431, 144678 184255, 144622 183373, 144596 183223, 144504 182183, 144558 181615, 144551 180348, 144660 179762, 144814 179475, 145169 179331, 146039 179297, 145065 179271, 144531 179091, 144407 178927, 144433 177691, 144473 177087, 144453 176806, 144463 176110, 144500 175708, 144519 174628, 144509 174485, 144583 174080, 144550 173417, 144605 172688, 144677 171216, 144669 170950, 144670 169896, 144606 168981, 144454 168276, 144515 167858, 144431 167301, 144478 166037, 144541 165329, 144511 164785, 144530 163830, 144528 163280, 144506 163033, 144514 162422, 144537 161715, 144500 161474, 144517 160325, 144562 160046, 144524 159648, 144631 159280, 144907 158944, 145406 158856, 146707 158822, 147946 158825, 150704 158798, 151042 158785, 152216 158784, 152531 158774, 154217 158779, 155236 158797, 157450 158799, 157489 158547, 157462 157758, 157545 157256, 157540 157003, 157556 156101, 157678 155517, 158121 154939, 158426 154675, 159484 153578, 160022 153054, 160149 152896, 160647 152396, 160994 151837, 161480 151447, 162137 150795, 162499 150550, 162618 150375, 163159 149803, 163258 149667, 163643 149287, 163921 148880, 164078 148762, 164481 148345, 164622 148249, 165028 147716, 165587 147163, 165862 146935, 166385 146451, 166990 145918, 167434 145376, 167940 144884, 168340 144622, 168913 144489, 169160 144497, 169289 144560, 169178 144422, 169131 144264, 170155 143341, 171052 142374, 171511 141958, 172004 141380, 173257 140328, 173472 140044, 173995 139464, 174559 139147, 174750 139134, 175141 139477, 175145 139364, 175575 138849, 176050 138410, 176433 137968, 176845 137616, 177010 137493, 177385 137010, 177829 136529, 178584 135811, 179691 134787, 180110 134382, 180265 134246, 180652 133827, 181157 133346, 181668 132774, 181763 132691, 182239 132223, 182717 131720, 183336 131142, 183690 130735, 184652 129746, 185079 129370, 185646 128839, 186236 128394, 186878 128200, 187900 128249, 188725 128250, 189047 128191, 189338 128211, 189823 128162, 190727 128144, 191524 128170, 192151 128135) (205036 273709, 205010 274271, 204985 274483, 205015 274774, 205136 274932, 205261 274445, 205274 274168, 205175 273289) (247820 270238, 247863 270976, 248052 271684, 248027 272433, 248181 272681, 248248 272679, 248238 271456, 248285 270960, 248275 270373, 248213 270297, 248089 270526, 248004 270222, 247893 270155, 247861 269984) (203773 269999, 203713 270513, 203749 271165, 203815 271517, 203893 271319, 203944 270768, 203950 270268, 203920 269702, 203859 269412) (191635 271452, 191672 270912, 191644 270827) (247895 268052, 247426 268749, 247417 269505, 247544 269787, 247736 269505, 247693 269202, 247745 268766, 248162 268118, 248161 267584) (195319 268434, 195359 268389, 195292 267737) (195409 264465, 195310 265264, 195376 266003, 195353 266513, 195393 266747, 195322 267369, 195504 267474, 195650 265290, 195490 264773, 195437 264436) (194064 265183, 194092 265294, 194114 265233, 194083 264660) (152691 259011, 152712 260009, 152745 260834, 152690 261516, 152724 262290, 152699 263746, 153047 263665, 153026 262962, 152748 262280, 152707 261527, 152808 261253, 152799 261052, 152867 260519, 152883 260094, 152755 259337, 152770 258901, 152711 258436) (191454 262488, 191405 263188, 191441 263533, 191533 263451, 191507 263183, 191502 262430, 191485 262312) (195302 261011, 195365 261293, 195377 261710, 195531 262726, 195598 262076, 195488 260965, 195367 260402) (200531 261940, 200542 262429, 200605 262236, 200586 261856) (247777 258918, 247752 258941, 247447 259614, 247212 260250, 247121 261304, 247161 261637, 247208 261608, 247213 261545, 247484 260933, 247639 259977, 247742 259677, 247920 259441, 248285 258845, 248195 258163) (192699 258837, 192728 259018, 192677 259673, 192639 260469, 192621 261201, 192678 261298, 192786 261065, 192758 260906, 192775 260370, 192772 259671, 192789 259519, 192766 258763) (152745 257572, 152714 258360, 152783 257995, 152825 256945, 152799 256820, 152778 256189) (192515 256106, 192459 256828, 192500 257377, 192584 256830, 192574 256687, 192590 256108, 192581 255706) (196796 252899, 196798 253748, 196838 255063, 196814 255286, 196865 255337, 196967 256917, 196969 256531, 197028 256159, 196976 255967, 196975 255342, 197026 255309, 196990 255066, 197005 254441, 196998 254278, 197017 253757, 197003 253099, 196903 252628) (200886 253409, 200824 254109, 200757 255172, 200733 255873, 200737 256226, 200794 255849, 200913 254730, 200961 253935, 200923 253387) (192629 254726, 192713 255156, 192987 254712, 192928 254213, 192744 254208) (246787 250980, 246821 251449, 246777 251695, 246695 251838, 246507 252692, 246457 252763, 246524 253504, 246381 253840, 246336 254141, 246462 254764, 246399 254792, 246479 254893, 246538 254375, 246669 253782, 246749 253503, 246664 253064, 246712 252881, 246849 252725, 247198 251696, 247095 251375, 247208 251145, 246839 250818) (152779 254035, 152788 253354, 152762 253164) (152537 249747, 152090 250399, 152174 250996, 152621 251765, 152212 252072, 151954 252128, 151169 252199, 152183 252203, 152595 252360, 152679 252567, 152861 251779, 152859 251633, 152980 250927, 153066 250499, 153066 249565, 152789 249450, 152583 249270) (147828 252238, 148142 252248, 148898 252226) (246853 249859, 246813 249993, 246850 250404, 246904 250560, 247249 251097, 247339 250831, 247189 249919, 247135 249786, 246791 249785) (178949 249400, 178888 250214, 178914 250387, 179007 250405, 179020 250221, 179148 249641, 179078 249303) (161245 247644, 161320 248226, 161348 248343, 161357 248231, 161332 247638, 161340 247503, 161269 247325) (177741 247708, 177788 248016, 177871 247793, 177806 246927) (196884 245487, 196879 246314, 196732 246502, 196475 246571, 196234 246576, 196470 246731, 196691 247210, 196826 246759, 197018 246574, 197335 246494, 197232 246427, 197149 246174, 197128 245885, 197025 245866, 196965 245295) (161394 246276, 161461 246563, 161459 246072, 161414 246053) (149054 242941, 149324 243447, 149417 243522, 149540 243510, 149583 243259, 149267 242971, 149121 242920) (176201 240709, 176253 241344, 176336 241615, 176366 241465, 176280 240577, 176202 240214) (195320 240717, 195328 241042, 195454 241364, 195425 240829, 195310 240329, 195317 240242, 195249 240095) (152796 240421, 152744 240917, 152345 241048, 152523 241164, 152577 241260, 152736 241098, 153037 241025, 153008 240492, 152974 240457, 152747 239959) (247326 236433, 247284 237082, 247259 237739, 247284 238567, 247246 239359, 247285 240868, 247349 240863, 247353 236162) (195206 238525, 195304 239021, 195302 239138, 195364 239265, 195336 238952, 195261 238402, 195254 238248, 195166 238022) (244563 235703, 244596 236416, 244438 237024, 244399 237853, 244393 238480, 244447 239121, 244481 238867, 244514 238280, 244503 237869, 244566 237278, 244448 237040, 244632 236607, 244648 236319, 244593 235662) (159948 237680, 159982 237942, 159938 238326, 159999 238691, 160067 238716, 159962 238322, 160061 237977, 159996 237584, 160046 237300, 159936 237120) (202126 237510, 202097 237640, 202203 238333, 202228 237641, 202189 237493) (159960 232550, 159990 233304, 159933 233925, 159920 234523, 159967 235323, 159954 235923, 159978 236439, 160021 236615, 159943 237075, 160109 236830, 160119 235214, 160131 234678, 160106 233665, 160061 233304, 160076 232670, 160042 232155) (174626 236039, 174665 236339, 174709 235883, 174670 235705) (195122 236194, 195104 235803, 195020 235516) (174867 234131, 174826 234502, 174883 234818, 174920 234315, 174993 233799) (194902 233254, 194959 234032, 194964 234370, 195114 234599, 195110 234054, 194977 233503, 195023 232980) (200547 234235, 200588 234521, 200566 233909) (244623 232450, 244678 233094, 244659 233424, 244772 233575, 244779 232785, 244629 232298) (200226 232669, 200254 233503, 200286 233571, 200419 233377, 200321 233209, 200320 232514, 200249 232225) (194858 231416, 194864 231721, 194941 232087, 194931 232411, 195061 232650, 195009 231489, 194997 230977, 194759 230017) (194729 227865, 194791 228546, 194781 228793, 194844 229292, 194947 229670, 194924 229310, 194755 227846, 194639 226573) (204060 225066, 203953 225846, 203876 226534, 204025 227467, 204010 227792, 204130 228345, 204241 226660, 204247 225857, 204102 225142, 204057 224673) (200033 223536, 200048 224065, 200116 223701, 200099 223374) (194475 219745, 194495 220662, 194467 221792, 194496 222933, 194567 221934, 194572 220917, 194546 220717, 194613 220247, 194528 219620) (203725 220115, 203774 220787, 203791 221321, 203825 221565, 203861 222286, 203934 222612, 204062 222140, 203999 221846, 203915 220985, 203878 220783, 203887 220252, 203776 219454) (201298 221541, 201362 221761, 201372 222338, 201415 222430, 201475 222213, 201546 221384, 201472 221267) (174162 219334, 174126 219861, 174239 220399, 174480 220660, 174352 220066, 174225 219396, 174181 219267) (201193 219122, 201168 219514, 201200 220274, 201219 220470, 201362 219511, 201420 218673, 201331 218508, 201144 218358) (203389 217451, 203471 217572, 203424 218122, 203458 218269, 203438 218792, 203486 219300, 203620 218781, 203602 218108, 203568 217854, 203520 216948) (201078 216815, 201097 217629, 201189 216818, 201215 215795) (205557 213368, 205409 213545, 205454 215387, 205594 217406, 205563 215981, 205564 214747, 205591 214111, 205653 213367) (177745 215035, 177806 215615, 177805 216457, 177795 216644, 177837 217182, 177856 217289, 177888 217125, 177959 216442, 177996 215740, 178055 215568, 178122 215013, 178034 214506, 177874 214443) (204629 192513, 204789 192612, 204698 193219, 204734 193435, 204702 193922, 204690 194622, 204616 194850, 204560 195316, 204431 195451, 204294 196007, 204364 196707, 204346 197246, 204353 197399, 204281 198322, 204267 198670, 204210 199233, 204217 199400, 204117 200062, 204067 200580, 203882 202121, 203710 203669, 203637 204884, 203606 205027, 203665 205548, 203580 206130, 203486 206192, 203601 206454, 203604 206621, 203724 207598, 203558 207788, 203521 207896, 203574 208957, 203409 209336, 203330 210102, 203298 210302, 203263 210834, 203206 211147, 203029 212911, 203021 213573, 203066 214188, 203118 214640, 203103 214999, 203155 216125, 203197 216355, 203244 217163, 203460 216770, 203374 216443, 203455 215954, 203390 215424, 203380 214704, 203358 214253, 203364 212436, 203415 211733, 203413 211475, 203458 210841, 203429 210627, 203496 210126, 203683 209329, 203710 208798, 203795 207944, 203866 207445, 203914 206221, 204116 206085, 204419 206039, 204287 205881, 204189 205314, 204186 204456, 204212 203960, 204234 203212, 204231 203023, 204251 202496, 204259 201860, 204295 201234, 204468 199271, 204480 198975, 204529 198277, 204518 198097, 204618 197397, 204670 196723, 204724 195779, 204719 195157, 204732 194519, 204841 193926, 204892 193228, 204818 192278) (201332 213488, 201216 214893, 201249 215252, 201418 215112, 201576 214854, 201581 214772, 201362 214145, 201381 213568, 201373 213489, 201393 212892) (231855 213838, 232042 214241, 232111 214015, 232014 213356, 232010 213097, 231947 213039) (173883 212862, 173949 213705, 173969 213807, 173983 213705, 173979 213057, 173901 212139) (177959 211937, 178042 212199, 178052 212024, 177984 211672) (201697 186599, 201810 187800, 201930 188294, 202005 188835, 202001 189527, 202165 190777, 202230 191137, 202268 192156, 202397 193290, 202394 193956, 202444 194359, 202483 194858, 202522 195589, 202532 196243, 202553 196736, 202545 198545, 202514 199297, 202542 199510, 202457 200022, 202408 201040, 202492 201511, 202376 201316, 202332 201718, 202405 202044, 202292 201923, 202263 202005, 202169 203287, 202266 203573, 202110 203588, 202229 204020, 202062 204020, 202187 204431, 202066 204518, 201988 205600, 202004 206023, 201921 206286, 201597 206394, 201690 206568, 201747 206850, 201764 207274, 201728 207962, 201660 210734, 201562 211477, 201685 211631, 201636 211846, 201741 211683, 201810 211204, 201859 210593, 202006 209355, 202220 208074, 202220 207725, 202265 206955, 202202 206795, 202231 206473, 202349 206212, 202398 206191, 202237 205691, 202365 205386, 202335 205033, 202117 204646, 202354 204830, 202444 204830, 202292 204453, 202378 204439, 202358 204097, 202398 204095, 202425 203787, 202388 203665, 202439 203644, 202602 201566, 202681 201162, 202733 200585, 202773 200395, 202824 199646, 202855 199392, 202885 198580, 202910 198160, 202908 196684, 202893 196245, 202887 195342, 202871 194840, 202715 193253, 202644 192276, 202529 191475, 202346 189463, 202271 189340, 202296 189114, 202153 188464, 202170 188121, 202097 187502, 202032 186823, 201848 186256, 201798 185521, 201758 185236) (175123 211263, 175213 211653, 175328 211270, 175250 210420) (191878 211554, 191958 211491, 191994 211024, 191880 210838) (230714 210796, 230767 211008, 230781 210505) (176990 204502, 176940 205311, 176947 205408, 176925 206477, 177046 207636, 177156 208109, 177241 208800, 177365 209592, 177480 210448, 177595 210814, 177673 210355, 177497 209586, 177401 209085, 177438 208829, 177244 208104, 177341 207506, 177263 206697, 177242 205648, 177247 205043, 177116 204391, 177252 204261, 177056 204066) (161338 208376, 161504 209268, 161292 209950, 161264 210277, 161337 210319, 161347 210115, 161538 209315, 161508 208543, 161381 208109) (230550 209397, 230559 210069, 230622 209388, 230587 209221) (232369 207814, 232334 208618, 232362 208794, 232389 208618, 232377 207931, 232537 207237) (174980 208087, 175013 208695, 175121 208086, 175097 207710) (179328 205404, 179344 206018, 179391 206519, 179395 206664, 179447 207196, 179455 207554, 179574 207753, 179599 207342, 179560 206667, 179544 206184, 179480 205277, 179401 205080) (175206 205931, 175141 206823, 175164 206895, 175287 206705, 175239 206559, 175301 205791, 175297 205180) (205643 205960, 204785 206043, 204991 206128, 205270 206463, 205343 206846, 205426 206352, 205656 205998, 206181 205952) (200443 205602, 200445 206148, 200346 206395, 201033 206344, 200857 206173, 200655 205888, 200528 205498) (177337 202292, 177391 202631, 177236 203159, 177172 203730, 177301 204178, 177353 203506, 177277 203232, 177455 202995, 177539 202335, 177488 202039, 177548 201787, 177451 201590) (177624 200894, 177540 201156, 177746 201129, 177770 200710) (176853 200021, 176561 200223, 177253 200212, 177529 200413, 177781 200372, 178070 200150, 178446 200118, 178358 200051, 178155 200031, 178051 200123, 177708 200223, 177279 200225, 177030 200080, 176872 199767) (178907 200202, 179009 200307, 179076 200257, 179374 200244, 179472 200191) (200171 193180, 200213 193482, 200195 194026, 200211 194285, 200228 195005, 200246 195284, 200261 195987, 200356 196947, 200376 197546, 200456 198481, 200543 198705, 200572 198651, 200565 197975, 200488 196318, 200483 195517, 200460 195296, 200430 194445, 200413 193539, 200358 193363, 200275 192835, 200286 192697, 200221 192522) (176812 193659, 176864 194592, 176874 195613, 176971 196715, 176976 196864, 177057 197569, 177069 196930, 177064 196659, 177091 195390, 177042 194852, 176988 193663, 176868 192934) (246067 195478, 246190 196451, 246274 196027, 246253 195475) (167917 193899, 168024 194534, 167787 194513, 167760 195004, 167683 195209, 167859 195517, 168054 194591, 168043 194055, 168057 193916, 167970 193470) (246011 189379, 246017 189859, 245967 190238, 245989 192001, 246038 191929, 246004 192086, 246046 192488, 245999 192743, 245981 193861, 246049 193860, 245999 194065, 246030 194462, 245982 194731, 246050 195333, 246244 194702, 246276 194018, 246283 193352, 246210 189725, 246209 189186, 246168 188699) (173983 193717, 173987 194337, 173974 194534, 174022 194738, 174084 194311, 174110 193810, 174145 193393, 174090 192595) (227777 193488, 227762 193676, 227823 193903, 227873 193403) (191669 192716, 191517 193694, 191608 193873, 191769 193456, 191786 192603, 191744 192556) (168097 192552, 168134 193105, 168062 193237, 168188 193392, 168207 193254, 168118 192399) (160322 177695, 160281 178342, 160303 178887, 160456 180921, 160578 183057, 160643 184726, 160680 188122, 160621 188822, 160569 189240, 160539 189870, 160671 190500, 160782 191143, 160870 192031, 160918 193203, 160974 193114, 160964 193021, 161028 192444, 161029 192171, 161098 191577, 161120 191124, 161248 189994, 161273 189851, 161053 188224, 161040 185390, 160923 182027, 160880 181298, 160793 179031, 160712 178071, 160660 177692, 160655 177221, 160609 176351, 160255 176336) (204546 190576, 204557 191442, 204583 191810, 204605 192495, 204816 191680, 204779 190232, 204761 189896) (168227 191871, 168307 192046, 168332 191877, 168278 191366) (193242 189697, 193301 190202, 193304 190998, 193381 191689, 193421 190835, 193353 190273, 193352 189703, 193368 189478, 193316 189140, 193354 188849, 193214 188735) (204412 186998, 204392 187709, 204616 187819, 204515 188361, 204546 188582, 204536 189624, 204615 189031, 204623 188913, 204711 188347, 204709 187667, 204686 187532, 204402 187664, 204450 186995, 204427 186894) (152945 188667, 153137 188664, 153138 188236, 152929 188115) (193344 187964, 193330 188083, 193420 188317, 193366 187678, 193368 187414, 193267 187155) (248032 178717, 248068 182641, 248043 183307, 247931 184522, 247948 185177, 248109 185974, 248169 186978, 248258 187785, 248276 188309, 248320 187663, 248258 187013, 248364 186325, 248387 185607, 248313 184914, 248298 183805, 248266 183433, 248314 183077, 248312 182380, 248283 181944, 248321 181262, 248372 181020, 248359 180124, 248375 179914, 248267 179322, 248303 178877, 248202 177880, 248246 177403, 248255 176508, 247968 176503) (166399 187422, 166368 188107, 166676 187490, 166678 186793) (245582 176486, 245651 177190, 245711 178724, 245675 179822, 245729 181530, 245810 183302, 245876 184141, 245980 186304, 245998 187839, 246061 187255, 246082 186650, 246007 185171, 246006 184920, 245957 184264, 246006 183220, 245974 182608, 245935 182229, 245958 180969, 245920 179906, 245871 177794, 245810 176481) (238998 187574, 239100 187565, 239199 187404, 239068 186936) (167197 184511, 167136 185099, 167026 185765, 166903 186666, 166691 186784, 166808 187211, 166974 186850, 167051 186563, 167234 186150, 167399 185539, 167452 184862, 167426 184401, 167327 184231) (205785 184863, 205830 186461, 205873 187081, 205918 187081, 205899 186932, 205961 186463, 205950 186069, 205967 185548, 205956 184687, 205901 184369) (240213 184281, 240226 184468, 240173 184992, 240203 185477, 240320 186232, 240310 186336, 240434 186647, 240443 186415, 240323 185477, 240460 185286, 240580 185277, 240546 184990, 240421 184466, 240457 183919) (237962 185970, 237970 185728, 237942 185445) (239141 185577, 239184 185719, 239180 185599, 239111 185088, 239080 184946) (168656 175857, 168541 176320, 168514 176614, 168322 177042, 168013 178161, 167993 178403, 167854 178746, 167636 179511, 167603 179713, 167442 180155, 167439 180272, 167414 180221, 167212 180790, 167174 181046, 167034 181263, 166883 181694, 166596 182303, 166434 182582, 166333 182961, 166234 183021, 165831 183918, 165797 184112, 165766 184059, 165522 184538, 165548 185099, 165456 184911, 165392 184987, 165317 184901, 165215 184932, 165153 185159, 165214 185536, 165445 185428, 165615 185223, 165661 184996, 165715 184968, 165903 184450, 166096 184132, 166440 183371, 166448 182827, 166549 183122, 166624 183044, 166736 182748, 166715 182112, 166814 182569, 167014 182115, 167014 181652, 167100 181929, 167313 181489, 167330 181334, 167393 181269, 167586 180656, 167805 180049, 168198 178657, 168646 176968, 168744 176350, 168809 175806) (235958 184195, 236025 184822, 236072 184841, 236007 184193, 235982 184130) (200200 183488, 200221 184186, 200256 184468, 200284 184187, 200285 183440, 200248 182728, 200214 182292) (203055 183103, 203137 183828, 203247 182992, 203191 182226) (258533 170918, 258025 171330, 257788 171452, 257414 171507, 256839 170956, 256603 170919, 256473 170770, 256332 171086, 256204 171849, 255715 171684, 255670 172206, 255653 172793, 255618 172847, 255658 173119, 255583 173732, 255475 174054, 255295 174277, 254850 174558, 254780 174663, 254969 174779, 255067 174947, 255236 175551, 255295 176183, 255343 176384, 255303 176971, 255432 177401, 255425 177902, 255510 178385, 255388 178802, 255464 179162, 255470 179407, 255560 179798, 255526 179989, 255543 180351, 255431 180723, 255455 181322, 255385 181681, 255403 182070, 255117 182498, 255109 182618, 255361 182749, 255601 182955, 255757 183221, 255790 183615, 256079 183112, 256258 182590, 256586 181933, 256790 181621, 256997 180892, 257317 180079, 257886 178809, 258777 177069, 259277 175973, 259656 175502, 259236 175306, 259070 175286, 258869 174878, 258701 174277, 258968 174208, 259157 174066, 259271 173487, 259444 173474, 259634 173272, 259681 173150, 259486 173050, 259656 172717, 259608 172244, 259478 171605, 259052 171337, 258519 171708, 258832 171267, 258915 171018, 258660 170768) (201861 177762, 201867 178156, 201835 178686, 201833 178882, 201794 179385, 201651 182144, 201669 182837, 201740 183339, 201890 182844, 201986 182649, 202070 182154, 202068 181295, 201938 180771, 201967 180080, 201949 179726, 201975 178819, 201973 177982, 201927 177659) (238931 181210, 238902 181830, 239014 182746, 239133 183246, 239189 182970, 239193 182225, 239114 181437, 238996 181006) (205659 182818, 205678 183225, 205700 182816, 205710 182108, 205688 182073) (240796 179333, 240742 180040, 240759 180509, 240717 180734, 240816 180934, 240854 180860, 240908 180041, 240900 179524, 240942 179011, 240858 178840) (177399 179315, 177377 179795, 177502 180666, 177523 180577, 177589 179765, 177580 179330, 177490 179103) (222126 170842, 221864 171589, 221631 171917, 221550 172352, 221573 172952, 221458 172458, 221306 172540, 221165 173188, 221037 173490, 220858 174300, 220584 175435, 220495 175930, 220421 176737, 220392 177698, 220459 178429, 220579 179130, 220803 179481, 220888 179446, 220945 179031, 220969 177724, 221068 176226, 221093 176086, 221145 175469, 221278 174561, 221424 173765, 221580 173322, 221848 172424, 222158 171683, 222389 171017, 222409 170981, 222583 170184, 222569 170074) (146545 179301, 147300 179320, 148040 179387, 149250 179445, 150186 179400, 150829 179335, 152323 179294) (193894 158758, 194101 159394, 194125 160080, 194232 160696, 194422 161415, 194543 162007, 194647 162635, 194684 163761, 194834 164468, 194859 165026, 194780 166345, 194786 166496, 194674 167512, 194554 169229, 194468 170111, 194419 171120, 194345 171770, 194333 172468, 194319 172646, 194358 173428, 194491 174210, 194850 175751, 195009 176484, 195203 177022, 195306 176877, 195290 177339, 195406 178197, 195536 179026, 195734 178444, 195601 177833, 195535 177163, 195442 176462, 195357 176131, 195234 175979, 195235 175739, 195184 175189, 195184 174192, 195167 174025, 195233 173803, 195382 172640, 195504 171887, 195679 171147, 195630 170616, 195848 170517, 195932 169967, 196126 169095, 196397 168346, 196470 167670, 196331 167448, 196265 167488, 196243 167651, 196303 168233, 196079 168038, 195967 168297, 195957 168611, 196037 169002, 195838 169377, 195741 169689, 195820 170368, 195560 170270, 195502 170434, 195446 171136, 195255 171468, 195111 171867, 195017 172529, 195073 172914, 194937 172681, 194753 172629, 194630 171867, 194630 171524, 194571 171116, 194623 170297, 194756 168962, 194777 168624, 194869 168001, 194925 167316, 195097 166768, 195202 166255, 195260 165024, 195216 164441, 195274 163821, 195240 163319, 195152 162771, 195010 161757, 194830 160639, 194641 159993, 194554 159613, 194441 159384, 194218 158784, 194125 159258, 194167 158676, 194032 158467, 193954 158104) (166078 177081, 165946 177692, 165681 177884, 165377 178407, 165384 178732, 165532 178813, 165874 178488, 166090 177880, 166175 177499, 166316 177266, 166160 177007) (164890 176516, 164768 177123, 165082 177518, 165165 177124, 165193 176268) (166807 174942, 166956 175417, 166714 175959, 166809 176042, 166649 176136, 166468 176642, 166470 177036, 166648 176672, 166980 176109, 167272 175438, 167085 174939) (235715 175711, 235729 175444, 235683 175206) (227303 174676, 227619 175674, 227654 175678, 227649 175564, 227320 174674, 227325 174481) (168707 175489, 168839 175586, 168854 175667, 168945 175529, 169157 174991, 168729 174976) (205286 171819, 205320 171880, 205271 172498, 205313 172735, 205373 173344, 205382 173868, 205474 174524, 205753 174620, 205666 173866, 205550 173522, 205465 172990, 205456 172494, 205345 171756) (178350 172158, 178242 172939, 178249 173688, 178208 174287, 178412 173869, 178279 172969, 178480 172706, 178487 172046, 178377 171628) (237360 173322, 237505 173849, 237453 173155, 237302 172512) (227078 173082, 227107 173181, 227176 172962, 227160 172650) (217503 169812, 217635 171074, 217845 170628, 217774 169808, 217664 169389, 217545 169375) (219779 163326, 219640 163961, 219537 164592, 219285 165202, 218969 165841, 219017 166492, 219222 167783, 219487 168474, 219692 168836, 219784 169088, 219855 169487, 219882 170099, 220301 170549, 220462 170622, 220535 170597, 220829 170670, 221236 170448, 221336 169889, 221498 170039, 221654 169829, 222183 168514, 222235 167581, 222189 167237, 222198 166618, 222249 165872, 222345 165544, 222350 165379, 222037 164844, 221561 164634, 221518 165196, 221813 165589, 221999 166064, 222073 166531, 222055 167085, 221824 167044, 221775 167101, 221777 167200, 221670 167434, 221610 168087, 221720 168135, 221963 168039, 221899 168447, 221757 169076, 221577 169608, 221347 169394, 221306 169481, 220901 169568, 220485 169265, 220394 168998, 220252 168767, 220174 168538, 220012 168298, 219988 168322, 219704 167337, 219641 166826, 219476 166491, 219522 165863, 219731 165675, 219900 164901, 219947 164332, 220045 163681, 220111 163400, 220013 162958) (235937 169403, 235965 170155, 235951 170303, 236003 170610, 236061 169829, 236112 169590, 235998 169206) (203458 167700, 203481 167968, 203501 168683, 203572 169057, 203674 169725, 203676 169945, 203781 170386, 203785 169063, 203909 168389, 203845 168001, 203763 167879, 203731 167696, 203546 167351) (230683 167098, 230778 167914, 230760 168585, 230882 169752, 230904 169394, 230928 168593, 230966 168195, 230925 167920, 231063 167254, 231089 166580, 231060 166387, 230817 166263) (218495 160812, 218265 161492, 218154 162217, 218059 162440, 217706 163556, 217593 164302, 217443 164995, 217396 166403, 217422 167185, 217394 167740, 217425 168705, 217527 169030, 217617 168835, 217714 168819, 217824 166297, 217870 165604, 217937 165075, 218096 164236, 218163 163806, 218338 162981, 218439 162273, 218624 161575, 218833 160879, 218765 160110) (236086 168476, 236223 169027, 236253 168386, 236305 168094, 236154 167736) (236264 166544, 236291 167308, 236367 167670, 236429 166934, 236298 166513, 236294 166388) (223076 162100, 223021 162782, 223037 163429, 223197 164063, 223257 164516, 223436 164774, 223415 166053, 223502 166137, 223517 166305, 223539 166070, 223464 163658, 223421 163480, 223440 163398, 223336 162171, 223262 161484) (232541 165988, 232596 166130, 232622 166057, 232564 165363) (220949 164694, 220789 164670, 220612 164790, 220521 165025, 220539 165374, 220937 165327, 221176 165443, 221356 165234, 221330 164566) (226865 164644, 226900 164841, 226953 164611, 226930 163888) (187346 162874, 187285 163687, 187311 163860, 187404 163878, 187417 163694, 187544 163114, 187474 162776) (230212 158456, 230241 158757, 230346 159318, 230338 159844, 230372 160030, 230438 160750, 230636 161195, 230681 161668, 230750 161914, 230710 162529, 230738 162738, 230789 163301, 230865 163423, 230889 163195, 230823 163077, 230900 162525, 230781 161858, 230771 161283, 230721 160870, 230547 160522, 230606 160310, 230481 159816, 230414 158991, 230414 158446, 230348 157875, 230114 157761) (228120 161635, 228100 161942, 228153 162740, 228201 162848, 228270 162606, 228271 162450, 228319 161932, 228233 161435) (223104 155174, 223034 155481, 222955 155977, 222908 156554, 222903 156791, 222756 157603, 222817 158173, 222864 158406, 222806 158803, 222702 159970, 222766 160712, 222894 161423, 222914 161681, 222986 161888, 223247 161352, 223199 160674, 223104 159936, 222996 159541, 223093 158709, 223108 158408, 223166 157909, 223248 157615, 223225 157050, 223177 156808, 223227 155977, 223187 155358, 223251 154814, 223143 154483) (186137 161181, 186185 161489, 186265 161271, 186212 160434, 186203 160400) (219212 148112, 219056 148171, 219158 148838, 219252 149594, 219421 150333, 219451 150537, 219614 151079, 219667 151837, 219962 152602, 220111 153272, 220143 153369, 220155 153990, 220109 154725, 220126 154915, 220007 155462, 219990 155682, 219883 155920, 219612 157178, 219603 157715, 219429 157685, 219231 158673, 219016 159400, 218965 159988, 218786 160102, 218911 160536, 219005 160168, 219056 159628, 219260 159303, 219659 157982, 219843 157218, 219855 156857, 220004 156550, 220213 155712, 220540 154609, 220637 154132, 220606 153351, 220490 152509, 220318 151816, 220131 150250, 220117 149806, 219986 149559, 219808 149909, 219697 149816, 219614 149818, 219496 150119, 219509 149546, 219295 148816, 219280 148517, 219352 147926) (196058 158301, 196022 158995, 196055 159659, 196253 160095, 196326 159612, 196509 158900, 196426 158246, 196273 157655) (228030 157793, 227963 158221, 227995 158497, 227984 159128, 227992 159503, 228091 158663, 228085 158498, 228116 157879, 228101 157687) (193677 158129, 193789 158467, 193915 158060, 193705 157826) (200929 156442, 200968 157300, 200986 158241, 201019 158442, 201037 158139, 201020 157423, 201055 156501, 200971 156105) (177708 156818, 177792 157399, 177839 158097, 177874 158333, 177971 157741, 177946 157403, 178087 156465) (195386 151562, 195343 152115, 195387 152268, 195499 152813, 195532 153308, 195663 154129, 195671 154648, 195722 155010, 195781 155665, 195880 156264, 196004 156014, 195902 156399, 195979 156975, 196042 157905, 196157 157620, 196246 157505, 196136 156956, 196173 156285, 196209 156006, 196191 155619, 196066 155206, 196130 154957, 196085 154499, 196007 154348, 195735 154968, 195952 154295, 195905 153904, 195973 153598, 196009 152885, 195905 152259, 195860 152303, 195889 152185, 195712 151694, 195558 151952, 195677 151509, 195568 150836) (229914 156253, 230112 157752, 230305 157636, 230283 157048, 230314 156980, 230190 156078, 230207 155189, 229881 154868) (221501 156486, 221473 156776, 221533 157258, 221633 156637, 221573 156277) (213110 156703, 213168 157031, 213154 156629, 213098 156060, 213104 155937, 213022 155323) (193971 153598, 193901 153875, 193909 154041, 193898 154576, 193909 155438, 194030 155754, 194108 155741, 194081 155931, 194319 156763, 194456 156542, 194501 155854, 194475 155364, 194421 155188, 194274 154511, 194115 153850, 194133 153465) (218434 155483, 218444 155599, 218351 156207, 218353 156510, 218397 156333, 218487 155433) (228164 155664, 228272 155927, 228389 155674, 228365 155114, 228144 155044) (190963 154745, 190977 154955, 191154 155612, 191153 154950, 191125 154659, 191017 154600) (184597 154183, 184649 154817, 184733 155088, 184763 154938, 184676 154051, 184598 153689) (192213 153409, 192307 154141, 192561 154792, 192624 154390, 192560 153772, 192436 153133, 192282 152921) (228154 154701, 228263 154148, 228431 153416, 228296 153280) (218220 153687, 218304 154615, 218424 154134, 218369 153474) (223373 152823, 223288 153557, 223168 154280, 223381 154023, 223432 153565, 223615 152702) (218111 152662, 218167 153135, 218269 152674, 218273 152443, 218206 152352) (204852 149584, 204828 150158, 204792 150655, 204774 151383, 204817 151740, 204799 151992, 204882 152395, 204987 150616, 204937 149875, 204959 149705, 204879 149236) (191697 151159, 191764 151476, 191807 151160, 191734 150929) (197142 150685, 197357 151127, 197295 150551) (194175 147495, 194379 148265, 194486 148948, 194589 149698, 194628 150295, 194656 150463, 194678 150289, 194906 149978, 195050 149985, 195158 149890, 195272 150176, 195332 150974, 195511 150834, 195372 150787, 195465 150139, 195444 149915, 195270 149470, 194921 147859, 194646 147410, 194613 147224) (212526 145417, 212571 146128, 212608 147073, 212644 147679, 212664 148225, 212692 148634, 212714 149494, 212881 150757, 212848 149731, 212864 149196, 212797 148564, 212744 146917, 212719 146481, 212709 145928, 212683 145245, 212645 144610, 212548 144488) (201959 148238, 201992 148884, 202045 149539, 202038 149687, 202093 149797, 202148 149544, 202135 149405, 202146 148890, 202111 148101, 202040 147922) (222829 148562, 222880 149026, 222953 148750, 222946 147929, 222849 147832) (204982 147994, 205001 148370, 204927 148890, 205114 148848, 205171 148118, 205145 147716, 205045 147259) (196470 147739, 196661 147870, 196600 147355, 196517 146912, 196292 146736) (205188 146384, 205271 146845, 205310 146191, 205229 145880) (196238 146293, 196287 146689, 196369 146225) (192471 134099, 192609 134100, 192605 133602, 192463 133570)), ((232817 218826, 233139 219181, 233371 219924, 233416 220288, 233455 222188, 233456 225888, 233502 227922, 233535 228825, 233520 233026, 233428 233816, 233046 234687, 233131 235107, 233475 235496, 233552 235786, 233549 237992, 233501 242055, 233437 242926, 233389 244145, 233298 245783, 233276 246329, 233283 247071, 233345 247679, 233451 248346, 233518 249069, 233535 250867, 233395 251242, 233273 251074, 233042 251250, 232937 251060, 232647 251116, 232249 251009, 232054 250893, 231996 250937, 231693 250809, 231593 250502, 231410 250251, 231339 249977, 231320 249556, 231122 248714, 231031 248215, 230936 247996, 230779 248503, 230821 249002, 230808 249195, 230957 249907, 230956 250481, 231411 251029, 231886 251268, 232314 251606, 232706 251763, 233163 252081, 233170 251960, 233322 251816, 233360 252215, 233395 252991, 233347 253727, 233311 254887, 233345 256308, 233446 258234, 233437 258520, 233452 259029, 233296 259250, 233197 259486, 232848 259009, 233004 258275, 232957 257933, 232604 258279, 233074 259783, 233208 260525, 233435 261285, 233589 262069, 233667 264259, 233676 264803, 233628 266354, 233593 268692, 233595 269622, 233560 271792, 233506 272493, 233039 272885, 232826 273129, 233270 274506, 233410 275178, 229905 275178, 229821 274224, 229865 273956, 229817 273447, 229724 273659, 229575 274158, 229486 274661, 229468 275178, 227934 275179, 227853 274481, 227814 273920, 227866 273247, 227956 272498, 228056 272166, 228228 271178, 228542 268132, 228575 267889, 228603 267135, 228585 266954, 228681 265721, 228696 265097, 228688 264413, 228713 263710, 228703 262828, 228668 262243, 228701 261471, 228514 260883, 228318 260758, 228241 260751, 227873 260275, 227871 260872, 228010 261395, 228131 261924, 228264 262287, 228318 262646, 228301 263010, 228364 263354, 228359 263716, 228430 264410, 228409 265781, 228327 266721, 228279 267137, 228284 268482, 228212 268993, 228255 269494, 228152 269535, 227976 270480, 227783 271144, 227679 271877, 227606 272181, 227543 272738, 227456 273897, 227385 274300, 227329 274036, 226907 274485, 226839 274473, 226738 274668, 227002 275179, 225500 275178, 225519 274434, 225535 273132, 225587 273084, 225654 273140, 225810 273451, 225928 273303, 226094 273400, 226190 273374, 226317 273208, 226058 272518, 225759 271853, 225517 271187, 225514 270509, 225619 269863, 225701 269181, 225730 267969, 225714 267185, 225648 265978, 225626 264736, 225569 263776, 225501 263269, 225445 262699, 225410 261740, 225376 258908, 225450 258807, 225493 258805, 226059 258351, 226108 258264, 225505 257579, 225348 256863, 225345 255899, 225401 255018, 225462 253677, 225456 253404, 225466 252880, 225387 250932, 225364 249687, 225405 248567, 225402 247755, 225412 247300, 225413 246017, 225548 244959, 225622 244532, 225668 243034, 225706 242324, 225674 241601, 225574 240421, 225539 239714, 225526 237480, 225540 235601, 225569 234484, 225586 231076, 225630 230187, 225648 229191, 225632 228370, 225524 227709, 225577 226444, 225587 225603, 225618 224573, 225583 222646, 225665 219987, 225757 219288, 226080 218851, 226338 218814, 226596 218886, 226731 219534, 226769 219987, 226828 220115, 226867 220117, 227008 221389, 227036 222057, 227178 223189, 227268 224203, 227393 224129, 227338 224409, 227416 224736, 227416 225032, 227486 225420, 227618 225645, 227568 225952, 227626 226462, 227648 226960, 227730 226926, 227653 226925, 227750 226272, 227758 225592, 227571 224760, 227617 224380, 227419 222355, 227355 221360, 227303 220356, 227299 219544, 227327 219139, 227436 218922, 227731 218793, 228634 218752, 228978 218862, 229209 219079, 229505 220272, 229539 221000, 229679 221884, 229802 222080, 229842 222644, 229910 223111, 229890 223372, 230003 223455, 229909 221616, 229970 221015, 229903 220332, 229800 219512, 229896 219029, 230086 218874, 230383 218785, 230794 218801, 231003 218944, 231191 219186, 231357 220109, 231416 220665, 231392 220844, 231381 221588, 231410 222110, 231474 222708, 231517 223615, 231540 224468, 231852 225087, 231917 225719, 231948 226289, 232047 227671, 232064 228375, 232064 228772, 232085 229410, 232077 230183, 232042 230549, 232081 231193, 232272 230592, 232275 230416, 232399 229858, 232522 228610, 232531 227708, 232492 227022, 232412 226357, 232346 225701, 232236 225103, 232235 225045, 232082 223856, 232081 223700, 232029 222711, 231885 221734, 231862 221146, 231839 221024, 231789 220425, 231775 220094, 231724 219559, 231765 219010, 231900 218767, 232384 218732) (226451 273927, 226495 274125, 226569 274181, 226670 274074, 226708 274327, 226726 273878, 226529 273679) (230388 271245, 230180 271850, 230101 272572, 230010 272876, 230103 273021, 230171 272576, 230191 271929, 230419 271253, 230405 270628) (232522 272275, 232336 272421, 232321 272389, 232289 272458, 232538 272737, 232668 272451, 232616 272272) (231017 266466, 231052 266978, 231008 267125, 231003 267799, 230882 268419, 230908 268579, 230933 268510, 231264 269109, 231348 269545, 231496 269405, 231415 269817, 231521 270525, 231720 271473, 231875 271964, 232010 272176, 232139 272255, 232304 271767, 232134 271409, 231968 270657, 231856 270049, 231814 269742, 231699 269233, 231593 268565, 231405 267639, 231334 266950, 231204 266047) (230576 263565, 230632 263844, 230699 263777, 230583 263204) (228655 246251, 228464 246498, 228317 246904, 228197 247690, 228178 248473, 228338 249247, 228379 249660, 228510 250750, 228726 252137, 228864 252903, 228914 253079, 229096 254080, 229137 254216, 229230 254752, 229316 255069, 229290 255365, 229321 255892, 229372 256413, 229574 257719, 229656 258372, 229741 259269, 229855 259977, 230032 260718, 230205 261962, 230181 261464, 230138 260907, 230128 260370, 230077 259750, 230174 258402, 229971 257332, 229802 256214, 229687 255789, 229538 255085, 229416 254246, 229348 253906, 229202 252902, 229179 252673, 229077 251925, 229000 251441, 228911 250705, 228701 248477, 228661 247706, 228743 246585, 228697 246247) (227542 260216, 227714 260569, 227770 260149, 227523 259902) (227034 259737, 227239 259578, 226970 259439, 226737 259018) (226468 258972, 226589 259109, 226640 259118, 226709 258972, 226291 258493) (226809 252179, 226885 252960, 227096 254419, 227113 254758, 227234 255526, 227248 255865, 227487 256365, 227493 255991, 227365 255303, 227181 253943, 226961 252178, 226798 251410) (228511 236117, 228364 236482, 228176 237761, 228165 238185, 228067 238876, 227944 239248, 227836 239818, 227736 240476, 227626 240945, 227617 241359, 227494 241219, 227363 241435, 227069 242288, 226919 243022, 226924 243596, 226945 243781, 226876 244299, 226832 244534, 226757 246063, 226723 247423, 226651 248412, 226733 249175, 226744 249467, 226858 250332, 226857 250685, 227027 251188, 227032 250686, 226988 249936, 226929 249476, 226935 248418, 227001 247913, 227129 245992, 227160 245117, 227193 244556, 227207 243794, 227233 243654, 227286 243052, 227438 242449, 227449 242346, 227709 241664, 228055 240997, 228076 240831, 228487 238703, 228462 238398, 228268 238578, 228329 238200, 228229 238112, 228469 237100, 228571 236213, 228732 235220) (230238 246301, 230302 246602, 230324 247076, 230371 247190, 230418 247084, 230391 247006, 230441 246325, 230451 245912) (228722 245362, 228718 245885, 228825 245370, 228806 244950) (230646 245563, 230741 245734, 230764 245708, 230839 245159) (232467 244884, 232335 245097, 232408 245256, 232484 245235, 232708 245328, 232759 245082, 232654 244843, 232557 244821) (231631 243119, 231275 244124, 231139 244441, 231028 244850, 231143 245016, 231316 244661, 231392 244156, 231871 243726, 231955 243684, 232039 243531, 232000 243373, 231778 243064) (229219 243151, 229059 243886, 228909 244479, 229037 244950, 229185 244374, 229282 243907, 229446 243322, 229425 243203, 229366 242598) (232139 235723, 231865 235925, 231630 236627, 231625 236621, 231355 237212, 231310 237391, 231187 237571, 230217 239848, 229994 240505, 230007 240936, 229886 240766, 229583 241823, 229571 242113, 229413 242495, 229529 243046, 229661 242524, 229814 241849, 229833 241391, 230008 241321, 230122 240810, 230485 239936, 230529 239379, 230608 239578, 231359 237894, 231397 237664, 231471 237645, 231742 237021, 231870 236621, 232270 236104, 232558 235785, 232436 235590) (230293 234819, 230098 235541, 230014 236276, 230024 236744, 230140 236712, 230204 236082, 230293 235585, 230355 235309, 230426 234440) (228385 230190, 228509 230912, 228457 231660, 228509 232188, 228516 232738, 228550 233000, 228636 232999, 228571 233378, 228594 233968, 228577 234500, 228804 234624, 228863 233966, 228904 233849, 228973 233207, 228979 232431, 229065 231720, 228991 230904, 228995 230692, 228790 230172, 228815 230084, 228778 230150, 228738 229627, 228559 229543) (231749 231256, 231765 231988, 231594 231636, 231473 231973, 231432 232570, 231227 232570, 231179 232685, 231080 233233, 230845 233404, 230714 233922, 230588 234113, 230679 234367, 231120 233532, 231204 232801, 231419 232912, 231782 232046, 232035 231318, 231897 230841) (228192 229508, 228223 229756, 228293 229915, 228526 229469, 228299 229232) (227781 227569, 227853 228090, 227903 228205, 227900 228379, 228031 228963, 228065 229041, 228113 228838, 228167 228331, 228105 228003, 227912 227409, 227906 226944) (229352 227481, 229362 227548, 229375 227441, 229336 226899) (229482 225584, 229531 226170, 229345 226794, 229562 226265, 229547 225686, 229578 225594, 229515 225444) (229716 224385, 229730 224886, 229712 224990, 229768 225160, 229815 225000, 229798 224512, 229840 224395, 229743 224039)), ((243534 247038, 243728 247088, 243928 247574, 243972 248247, 244083 248768, 244150 249474, 244406 251339, 244507 251868, 244626 252391, 244691 253008, 244797 253629, 244943 254251, 245323 255509, 245507 256153, 245543 256829, 245573 257033, 245736 258848, 245706 259554, 245512 260760, 245373 261510, 245319 262049, 245209 262797, 245071 263295, 244884 264122, 244643 264859, 244613 264885, 244280 265497, 244062 266225, 244015 266557, 244016 266996, 243901 267835, 243868 269340, 243785 270130, 243781 270920, 243904 271715, 243935 272494, 243923 273235, 243975 274018, 244140 275179, 242720 275178, 242727 274009, 242706 273666, 242668 272475, 242675 269896, 242685 269105, 242713 268523, 242961 267758, 243011 267025, 243049 265554, 242938 264621, 242880 264289, 242798 263496, 242791 260424, 242826 259424, 242837 256983, 242888 255870, 242900 255074, 242877 254443, 242785 253822, 242829 253173, 242868 251382, 242835 249885, 242874 249446, 242953 247590, 243067 247248, 243244 247016, 243467 246980)), ((219205 273608, 219435 274056, 219485 274352, 219523 275179, 216079 275179, 216090 274536, 216146 274112, 216289 273858, 216694 273676, 217260 273641, 217782 273636, 218098 273798, 218243 273715, 218510 273685, 218711 273604)), ((221224 273778, 221474 273743, 221736 273614, 222292 273669, 222515 273776, 222598 274492, 222718 274665, 222662 275160, 222763 274613, 222975 273875, 223103 273782, 223863 273770, 224105 273975, 224196 274366, 224248 275179, 219540 275179, 219545 274352, 219580 273738, 219719 273635, 220015 273586, 220948 273567)), ((186759 229470, 187003 229341, 187705 229408, 187886 229956, 187924 229931, 188071 230030, 188199 229652, 188152 229507, 188223 229535, 188511 229460, 188875 229484, 189474 229752, 189556 230481, 189603 233084, 189607 233812, 189573 235252, 189576 236023, 189612 237273, 189694 241318, 189699 242606, 189668 243182, 189587 244233, 189541 245303, 189548 246294, 189535 248692, 189545 250615, 189498 252916, 189530 255852, 189547 256397, 189560 257485, 189555 258491, 189578 259584, 189576 260596, 189616 261494, 189685 262512, 189710 263957, 189774 266052, 189788 267626, 189777 268318, 189697 269740, 189576 270941, 189554 271637, 189587 272179, 189709 275179, 186479 275178, 186448 274612, 186414 273373, 186388 272937, 186378 272384, 186352 271700, 186305 270854, 186264 270507, 186182 270998, 186209 271320, 186194 271869, 186240 272584, 186278 273528, 186314 274135, 186359 275178, 184126 275179, 184070 274230, 184055 273650, 183997 273381, 184066 272911, 184064 272378, 184038 271875, 184080 271023, 184182 270347, 184151 269626, 184007 268961, 183693 268627, 183669 268915, 183538 269627, 183577 270331, 183765 271299, 183744 272954, 183768 273653, 183807 273904, 183820 274751, 183853 275179, 181348 275178, 181388 274821, 181497 274319, 181702 273570, 181784 272960, 181772 272282, 181772 270999, 181651 270321, 181402 269648, 181322 268954, 181316 268195, 181328 266698, 181387 263251, 181384 262483, 181329 261546, 181309 261013, 181322 260134, 181319 258948, 181286 257600, 181281 255959, 181291 254939, 181340 252286, 181309 250470, 181325 247731, 181355 246041, 181398 245239, 181588 244218, 181600 243285, 181514 242401, 181463 241601, 181419 240601, 181386 239424, 181389 238835, 181319 237202, 181361 235525, 181376 235301, 181369 234753, 181377 234601, 181348 233917, 181304 233342, 181349 230410, 181369 229731, 181593 229518, 181964 229391, 183081 229359, 183329 229452, 183539 229478, 183889 229355, 184372 229339, 184933 229403, 185284 229319, 186249 229313) (186061 268122, 186061 268817, 186106 268234, 186111 267884) (183755 267542, 183878 268023, 183819 267456, 183773 267390) (185993 264715, 186014 264930, 185937 265438, 185948 265797, 185951 266521, 186035 266137, 186018 266015, 186113 265421, 186148 264704, 186184 264491, 186139 264173) (185923 262511, 185925 263176, 186029 262699, 185978 262343)), ((238842 264205, 239031 264578, 239288 264231, 239497 264187, 240082 264288, 240254 264523, 240356 265714, 240400 265276, 240490 265013, 240572 265024, 240649 264965, 240737 264542, 240847 264403, 241445 264368, 241689 264472, 241836 264686, 241928 265219, 241966 266371, 242011 269933, 242015 271093, 241985 272862, 241977 274109, 241996 275179, 233818 275179, 233857 272843, 233846 271805, 233794 270824, 233765 269892, 233797 267565, 233798 266394, 233826 264831, 233883 264684, 234181 264376, 234483 264251, 235508 264202, 235741 264355, 235922 264402, 236318 264189, 236849 264162, 237005 264209, 237141 264388, 237130 264435, 237182 265012, 237153 266235, 237241 266583, 237206 266754, 237254 266661, 237259 265988, 237240 265592, 237296 264422, 237384 264273, 237552 264158, 238579 264135) (239951 274986, 240034 274958, 240041 274731, 239984 274504) (240039 273025, 240025 273326, 240137 273813, 240142 273337, 240190 272832) (237089 268690, 237093 270943, 237115 272093, 237135 272499, 237111 273209, 237138 273477, 237256 273609, 237265 272203, 237313 271866, 237324 271145, 237291 269924, 237274 269708, 237265 268925, 237242 268372, 237181 267827, 237186 267593, 237114 267195) (240112 272144, 240194 272351, 240183 271984, 240137 271853)), ((224447 183282, 224550 184231, 224586 186140, 224582 187233, 224602 188770, 224600 189673, 224638 191102, 224678 194053, 224665 195018, 224646 195492, 224702 199777, 224690 200709, 224627 201380, 224573 202108, 224561 202831, 224561 204184, 224541 205337, 224539 206018, 224466 207994, 224472 209041, 224584 210794, 224583 211790, 224333 213790, 224298 214546, 224291 216029, 224355 217381, 224391 219130, 224434 220129, 224503 220751, 224555 221338, 224593 222485, 224609 224755, 224635 225855, 224663 228667, 224652 229796, 224569 231563, 224543 232473, 224558 233421, 224612 234970, 224611 235659, 224622 236106, 224611 237860, 224600 238177, 224604 238709, 224595 239177, 224594 240598, 224574 241157, 224327 242499, 224314 243379, 224275 244317, 224277 244673, 224248 245429, 224295 246103, 224350 246679, 224372 247029, 224450 247840, 224473 248571, 224486 250859, 224478 252935, 224446 254211, 224429 256271, 224430 258269, 224383 259372, 224366 260651, 224376 261481, 224486 262201, 224470 262917, 224441 263643, 224422 265046, 224395 265865, 224431 268094, 224410 268862, 224374 269624, 224323 271783, 224147 272412, 223970 272565, 223148 272604, 222848 272234, 222350 272406, 222044 272370, 221731 272554, 221361 272617, 220686 272589, 220552 272530, 220351 272282, 220189 272391, 219628 272669, 218880 272651, 218609 272478, 218584 272049, 218610 271507, 218570 271310, 218539 270793, 218384 271287, 218189 271750, 217954 272537, 217516 272545, 217084 272427, 216830 271939, 216613 271147, 216565 268553, 216558 264186, 216522 262228, 216486 261099, 216477 260491, 216493 257562, 216503 257117, 216499 256031, 216472 253963, 216486 251430, 216464 249965, 216516 245719, 216586 244422, 216654 242519, 216743 240815, 216752 240116, 216723 239502, 216661 238873, 216568 238219, 216524 237584, 216490 236230, 216506 235135, 216568 233863, 216651 232616, 216687 231722, 216707 230869, 216701 229923, 216679 229135, 216531 225559, 216331 219356, 216374 217420, 216408 214498, 216409 213576, 216427 212681, 216454 210147, 216605 209413, 216714 208774, 216729 208105, 216679 207420, 216546 206738, 216514 206144, 216492 205236, 216466 204618, 216463 203492, 216426 202227, 216430 201491, 216465 200211, 216520 197089, 216634 194859, 216636 194149, 216507 192973, 216453 192264, 216456 190971, 216443 190252, 216488 186887, 216507 184549, 216543 184025, 216615 183617, 216971 183471, 217830 183442, 219051 183340, 219314 183418, 219459 183886, 219487 184467, 219442 185849, 219410 187433, 219382 187999, 219367 188611, 219390 188863, 219284 189428, 219203 190396, 219174 191021, 219319 191652, 219356 191025, 219331 190622, 219458 189873, 219412 189792, 219488 189706, 219576 188603, 219571 188408, 219669 188060, 219768 187204, 219942 185532, 219983 184466, 219930 183976, 219962 183478, 220082 183209, 220292 183151, 221175 183144, 221267 183262, 221380 183688, 221332 183877, 221359 184134, 221485 184092, 221329 184479, 221303 185014, 221321 185341, 221246 185564, 221236 185815, 221355 185766, 221214 186121, 221097 187364, 221059 187981, 221057 188307, 221009 188807, 220895 189404, 220815 190144, 220750 191391, 220740 192209, 220778 195101, 220949 196160, 220956 196402, 221026 197159, 221033 197692, 221110 198562, 221163 198774, 221140 198845, 221220 199434, 221348 200987, 221411 201257, 221566 201406, 221504 201601, 221601 202069, 221581 202313, 221611 203094, 221744 204087, 221750 204272, 221815 204912, 221875 204073, 221881 203400, 221835 202777, 221653 201372, 221626 200756, 221565 200147, 221440 199675, 221438 199420, 221364 198766, 221369 198261, 221310 197173, 221206 197061, 221220 195958, 221141 194961, 221122 194825, 221100 194168, 221079 192852, 221070 190963, 221162 189736, 221171 189147, 221164 188859, 221180 188304, 221304 187820, 221413 186984, 221422 186472, 221527 185273, 221504 185228, 221537 185165, 221600 184499, 221642 183187, 221868 183031, 222621 182969, 222896 183411, 223205 183100, 223623 182886, 224146 182886) (221579 271452, 221677 271624, 221791 271589, 221676 271035, 221598 270763) (218301 267048, 218320 267226, 218239 267686, 218228 268304, 218275 269127, 218442 268452, 218452 268292, 218554 267794, 218601 266861, 218502 266661) (222871 266324, 222708 267065, 222680 267782, 222880 268273, 222951 267758, 222782 267285, 222876 267147, 222924 266966, 222905 266309) (221401 262111, 221440 263168, 221492 264009, 221553 264201, 221594 263782, 221578 263025, 221515 262262, 221418 261760) (223248 259991, 223192 260544, 223336 260606, 223354 259998, 223259 259490) (223354 258416, 223427 259152, 223375 258378) (220045 253121, 220169 253585, 220165 253125, 220020 252587) (218447 244665, 218498 244992, 218554 244391, 218442 244221) (218581 243353, 218488 243838, 218620 243690, 218639 243444, 218549 242983) (221494 242384, 221525 242967, 221576 243399, 221606 243109, 221558 242496, 221488 242053) (218647 241972, 218647 242211, 218709 242491, 218759 241863) (218661 241275, 218784 241414, 218797 240995, 218702 240782) (218844 238922, 218842 239048, 218741 239701, 218854 240368, 218756 239732, 218882 239251, 218892 238832) (222535 230596, 222651 231465, 222673 230706, 222568 230176) (219891 221588, 219824 222165, 219831 222537, 219905 222767, 219967 223238, 220069 222526, 220022 222241, 220006 221740, 219954 221128, 219887 220566) (217920 215876, 217954 216771, 218169 216804, 218156 217736, 218237 218085, 218305 218874, 218355 218808, 218396 218375, 218333 218080, 218292 217494, 218262 217290, 218215 216522, 217981 216554, 217957 215920, 217928 215828) (220148 212201, 220146 212837, 220208 212441, 220234 211647) (221676 207556, 221593 208146, 221584 208840, 221630 209360, 221752 209538, 221731 210072, 221753 211026, 221789 211564, 221846 210636, 221969 208162, 221955 207470, 221910 207167) (223382 206906, 223445 207583, 223418 206839, 223380 206415) (217876 206674, 217887 206958, 217906 206790, 217899 206047) (217700 203481, 217666 204005, 217697 204636, 217775 204393, 217753 204127, 217762 203627, 217741 203195) (218966 201405, 218984 202172, 219048 202451, 219012 202834, 219063 203166, 219177 202826, 219234 202158, 219187 201799, 219024 201502, 219045 200889) (218852 198320, 218858 199204, 218891 200056, 219085 199208, 219019 198112) (218879 196159, 218803 196403, 218811 197084, 218831 197750, 218895 197490, 218874 197385, 218961 196821, 218977 196029, 218887 195908) (219100 191706, 219047 192287, 219023 192916, 218959 193569, 218971 194193, 218951 194539, 219045 194532, 219223 194217, 219286 193573, 219165 192923, 219164 192286, 219314 191674)), ((238343 189074, 238466 189951, 238541 189602, 238613 189493, 238645 189311, 238794 189391, 239047 188956, 239074 188676, 239423 188828, 239546 188950, 239750 189388, 239803 189758, 239767 190009, 239782 191249, 239710 191843, 239742 192441, 239723 193700, 239974 194816, 240044 195031, 240147 195546, 240242 195710, 240447 196382, 240504 196527, 240652 197054, 240686 197287, 240889 197730, 240974 198611, 241107 199123, 241073 199371, 241136 199823, 241106 200524, 241183 201703, 241255 201911, 241271 202166, 241222 202618, 241128 204066, 241045 205657, 240961 206288, 240589 208316, 240467 209198, 240312 209647, 240069 210479, 240062 210743, 239680 211869, 239256 213328, 239121 213885, 238955 214403, 238854 214909, 238649 215754, 238499 216236, 238370 216732, 238274 217295, 238325 218051, 238453 218891, 238611 219601, 238806 221174, 238815 222674, 238869 222780, 238905 222760, 238853 221963, 239061 221662, 239142 221664, 239370 221558, 239385 221871, 239529 222317, 239665 222596, 239619 222820, 239635 223341, 239596 224068, 239628 224771, 239727 225452, 239774 226138, 239897 226768, 239890 226818, 239907 227507, 239945 228187, 240037 228864, 240042 228961, 240130 229456, 240131 229573, 240230 230959, 240251 231684, 240239 232431, 240265 233174, 240469 233887, 240808 234681, 240962 234927, 241100 235036, 241178 234559, 240855 233840, 240653 233116, 240818 232362, 240756 231638, 240483 230936, 240483 230707, 240393 229747, 240486 228828, 240475 228728, 240472 228132, 240361 227431, 240251 226855, 240260 226793, 240246 226029, 240318 225458, 240252 224699, 240111 224001, 239940 223418, 239741 221825, 239598 221203, 239589 221071, 239508 220570, 239397 220322, 239370 219606, 239095 218908, 238951 218216, 238871 218027, 238863 217305, 238898 216514, 239024 215712, 239032 215506, 239114 215386, 239265 214624, 239396 214130, 239408 213996, 239780 212643, 239914 212107, 239929 211922, 240012 211769, 240202 211235, 240472 210557, 240714 209875, 240820 209163, 241093 208411, 241299 207799, 241416 207071, 241454 206940, 241562 206309, 241567 205790, 241599 204818, 241570 204094, 241591 203532, 241549 202618, 241389 201907, 241440 201704, 241461 201204, 241390 200508, 241333 200139, 241261 199255, 241190 198524, 241113 198413, 241166 198342, 241064 197706, 241083 197452, 241034 197000, 240765 195656, 240585 194949, 240469 194319, 240329 193050, 240303 192285, 240291 191408, 240329 190524, 240440 189673, 240692 189167, 241035 188977, 241165 188990, 241466 189159, 241919 189372, 241927 189425, 242107 189544, 242166 189839, 242219 190574, 242260 193582, 242220 196581, 242263 198318, 242349 203539, 242361 205152, 242306 206488, 242251 207307, 242211 207755, 242175 208744, 242169 209889, 242176 211654, 242160 213534, 242176 216292, 242132 218077, 242085 218699, 242105 219587, 242110 221679, 241993 222464, 241946 222538, 241924 222462, 241620 222140, 241356 222442, 241463 222779, 241603 223055, 241936 223864, 242097 224582, 242130 225301, 242135 225920, 242120 226887, 242136 227340, 242096 228115, 242091 228860, 242144 230395, 242184 231981, 242283 234070, 242297 234594, 242206 235307, 241952 235986, 242136 236674, 242281 237408, 242277 237847, 242302 239597, 242266 241099, 242183 242292, 242164 243079, 242190 243842, 242231 244484, 242285 246326, 242352 248044, 242356 249246, 242317 249939, 242300 250644, 242291 252041, 242350 254884, 242347 255935, 242261 259208, 242141 260772, 242087 262831, 242022 263442, 241963 263614, 241691 263748, 241304 263770, 241260 263720, 241007 263670, 240762 262918, 240688 262185, 240679 261955, 240620 261823, 240542 260977, 240417 260160, 240429 260017, 240372 259463, 240241 258383, 240116 257068, 239992 256314, 239824 255078, 239768 254380, 239655 253672, 239502 252946, 239415 251429, 239443 251175, 239537 250000, 239680 248866, 239774 248252, 240064 246754, 240020 246522, 240084 246654, 240239 245997, 240318 245234, 240482 244703, 240527 244496, 240726 243772, 240732 243678, 240833 243049, 240789 242535, 240792 242329, 240719 242095, 240679 242217, 240625 242790, 240550 243028, 240310 243290, 240227 243721, 240286 244023, 240239 244463, 240166 244579, 240043 245198, 239836 245937, 239711 246705, 239746 247201, 239609 246970, 239508 247049, 239375 248117, 239383 248263, 239320 248369, 239115 249194, 239001 248246, 238908 247708, 238953 247232, 238961 246669, 238985 246421, 239019 245721, 239137 243961, 239182 242980, 239442 241678, 239476 240987, 239531 239192, 239535 238642, 239570 238158, 239446 237173, 239215 235484, 239176 234866, 238828 233217, 238629 232674, 238413 231982, 238225 231428, 237949 230810, 237870 231367, 237951 231862, 238238 232738, 238237 232822, 238305 233443, 238364 234147, 238486 234863, 238640 235447, 238761 236166, 238846 236819, 238892 237562, 238850 238192, 238971 238925, 239025 239170, 239061 239838, 238986 241568, 238937 242014, 238870 242815, 238767 244690, 238684 245975, 238608 247781, 238519 248276, 238502 249076, 238525 249851, 238629 250654, 239073 253179, 239171 253674, 239356 254378, 239509 255348, 239682 256303, 239682 256420, 239781 257305, 239802 257577, 239908 258471, 239975 258916, 240060 259767, 240072 260070, 240188 260790, 240332 262146, 240387 263258, 240336 263386, 240039 263760, 239860 263772, 239265 263643, 239241 262821, 239208 262648, 239083 261652, 238621 259224, 238256 257179, 238231 256993, 237988 255951, 237805 255011, 237614 254279, 237251 253547, 237065 252835, 236933 251926, 236830 251346, 236734 250572, 236723 249668, 236758 248330, 236855 247633, 236792 246570, 236740 245897, 236624 241292, 236577 240327, 236600 239805, 236627 239686, 236716 238760, 236702 238342, 236617 237739, 236475 236970, 236460 236839, 236356 236263, 236286 235725, 236326 235113, 236148 234799, 235820 234077, 235582 233219, 235479 232408, 235520 230968, 235484 230196, 235510 229820, 235460 229420, 235400 228643, 235479 227943, 235461 227347, 235471 227082, 235346 226735, 235276 226779, 235167 227039, 235163 227668, 235180 227868, 235182 228648, 235134 229426, 235076 229804, 235164 230572, 235028 230745, 235109 231770, 235018 232533, 235401 233237, 235459 233937, 235404 234531, 235069 233961, 234723 233171, 234400 232559, 234250 231839, 234232 230792, 234198 229856, 234181 227180, 234193 225615, 234171 225243, 234162 224313, 234147 224039, 234180 221495, 234379 220757, 234802 220123, 234983 219747, 235171 219528, 235356 219129, 235619 218639, 235742 217885, 235722 217610, 235831 217309, 235903 216323, 236055 215526, 236096 214985, 236133 214717, 236195 214065, 236227 213910, 236204 213692, 236176 213113, 236219 212329, 236311 211552, 236281 210794, 236151 210056, 236006 209465, 235946 209334, 235969 209208, 235991 208624, 236009 208509, 235995 207937, 235949 207551, 235818 207365, 235753 207444, 235780 207284, 235690 206929, 235694 206623, 235670 205673, 235617 204800, 235405 205220, 235402 205075, 235392 205251, 235441 205947, 235431 206112, 235452 206628, 235444 206868, 235481 207715, 235462 208249, 235540 208649, 235649 210076, 235812 211576, 235793 212347, 235657 213908, 235685 214506, 235642 215429, 235471 217868, 235519 218413, 235389 218183, 235315 218343, 235281 218619, 235187 219194, 235078 219117, 234858 219348, 234785 219854, 234721 219595, 234552 219687, 234223 219379, 234203 218779, 234209 218235, 234198 217128, 234206 216894, 234186 214805, 234199 213486, 234198 212325, 234207 211648, 234266 209342, 234354 208618, 234455 207962, 234510 207323, 234497 206593, 234388 205145, 234347 204230, 234311 203025, 234394 202314, 234409 201601, 234566 200894, 234862 200182, 235136 199476, 235290 199235, 235493 198758, 235503 197947, 235564 197188, 235594 196688, 235759 195934, 235918 195386, 236095 194694, 236298 194088, 236409 193551, 236468 193030, 236464 192850, 236560 192099, 236614 191279, 236582 190696, 236498 190197, 236455 189602, 236476 188896, 236527 188773, 236873 188592, 238132 188572) (240900 240252, 240969 240744, 240992 240253, 240950 239972) (241520 235027, 241285 235269, 241617 235624, 241769 235280, 241657 234982) (237279 229235, 237401 229619, 237637 229919, 237611 230403, 237752 230909, 237780 230640, 237654 229936, 237348 229022) (238179 225876, 238102 226234, 238120 226825, 238117 227685, 238157 228361, 238354 229240, 238507 229512, 238607 229992, 238674 230084, 238783 229732, 238742 229296, 238780 228311, 238647 227301, 238574 226928, 238487 226236, 238422 225928, 238489 225531, 238275 225271) (236384 225592, 236462 225985, 236458 226334, 236582 226826, 236602 227068, 236736 227566, 236858 227429, 236768 227058, 236836 226776, 236738 225966, 236723 225586, 236503 224927) (238493 224488, 238422 224821, 238520 225431, 238559 224823, 238719 224109, 238705 224038) (236045 222573, 235943 222839, 235941 223324, 236131 224095, 236194 224927, 236292 224850, 236222 224267, 236154 224096, 236291 223704, 236162 222717, 236142 222130) (240959 220227, 241188 220935, 241072 220064, 241032 220035) (240535 214767, 240447 215722, 240411 216476, 240424 217236, 240533 217769, 240643 217990, 240599 218166, 240824 219535, 240908 218741, 240835 217983, 240600 217035, 240615 215719, 240656 214977, 240634 214446) (236852 217712, 236725 218297, 236746 218799, 236758 218846, 236939 217702) (237578 212775, 237514 213156, 237517 213600, 237440 213973, 237341 214670, 237466 214805, 237456 214990, 237515 214855, 237675 213995, 237715 213679, 237796 213185, 237676 212609) (237984 210681, 237912 211600, 237839 211949, 237924 212134, 238181 211046, 238175 210874, 238046 210467) (238366 209385, 238272 209921, 238178 210120, 238257 210712, 238359 210159, 238381 209486, 238542 209077) (237656 200927, 237545 200973, 237285 201343, 236755 202641, 236720 203315, 236728 203978, 236716 204626, 236675 205208, 236577 205916, 236611 206182, 236740 206256, 236816 206421, 237059 206467, 237328 205881, 237085 205249, 236992 204625, 236982 204196, 237053 203998, 237141 203374, 237104 203076, 237174 202730, 237363 202110, 237657 201876, 238116 201740, 238179 201673, 238155 201753, 238562 202288, 238851 202825, 238995 203426, 239238 204036, 239304 204499, 239374 204692, 239344 205365, 239169 205939, 238988 206297, 238940 206705, 238875 206858, 238812 207360, 238783 207670, 238671 208063, 238562 208568, 238691 208756, 239018 208248, 239047 208230, 239313 207492, 239422 206798, 239756 205949, 240007 205437, 239979 204723, 239744 203362, 239613 203002, 239440 202706, 239212 202080, 239176 201409, 239064 201032, 238707 200491, 238594 200497, 238459 200367, 237831 200289) (238123 204104, 238329 205275, 238273 205912, 238015 206509, 237794 206376, 237700 206363, 237398 206516, 237377 206374, 237350 206541, 237761 206705, 238028 206609, 238334 206237, 238507 205942, 238398 205282, 238324 204102, 238174 203773) (238362 191738, 238144 191680, 238002 192028, 237973 192393, 237977 193015, 237930 193581, 237932 193658, 237844 194985, 237787 195553, 237776 195751, 237637 196768, 237427 197672, 236960 199011, 236496 200253, 236303 201098, 236196 201820, 236350 201218, 236411 201121, 236528 200667, 236621 200902, 236739 200747, 236914 200206, 237315 199390, 237430 199122, 237506 199057, 237662 198391, 237829 198164, 237902 197766, 238030 197217, 238250 196405, 238417 195740, 238531 194978, 238611 193732, 238574 192958, 238514 192403, 238411 191889, 238445 191249, 238431 190864)), ((234450 234457, 234980 235087, 235013 235067, 235417 235572, 235537 235674, 235765 236292, 235840 236935, 235913 237772, 236006 238386, 236063 239040, 236101 239706, 236120 239872, 236161 240578, 236234 242552, 236310 245043, 236308 245456, 236402 246188, 236368 246932, 236413 247684, 236426 248456, 236384 249655, 236322 250581, 236371 251307, 236501 252056, 236651 252800, 237214 255047, 237404 255666, 237654 257041, 238061 258853, 238359 260389, 238399 260660, 238546 261313, 238694 262037, 238755 262893, 238711 263384, 238623 263575, 238328 263743, 237416 263693, 236907 263631, 236745 263514, 236657 263377, 236512 261806, 236512 261601, 236238 259282, 236228 259124, 236080 258254, 236091 257824, 236021 257143, 236068 256445, 235973 255593, 235882 254304, 235870 253770, 235874 253548, 235733 252837, 235469 251848, 235112 251144, 235027 251002, 234518 250051, 234298 249355, 234218 248630, 234243 247856, 234332 247086, 234523 246264, 234670 245502, 234713 244736, 234701 243942, 234705 242584, 234637 241828, 234474 241189, 234291 240557, 234221 239969, 234190 239053, 234198 237815, 234188 237079, 234200 235539, 234241 234423, 234421 234310)), ((234699 252115, 235042 252659, 235132 252732, 235154 252689, 235443 253585, 235573 254291, 235586 254258, 235605 255049, 235484 255572, 235502 256537, 235604 257557, 235628 257895, 235804 259166, 235995 260094, 236000 260318, 236037 260874, 236070 261140, 236070 261699, 236218 262676, 236157 263318, 236050 263345, 235909 263450, 235590 263411, 235073 263302, 234599 263133, 234411 262951, 234482 259797, 234427 259070, 234357 257393, 234308 256474, 234309 255777, 234402 254403, 234407 253623, 234385 252908, 234428 252102, 234694 251969)), ((212440 161411, 212695 161715, 212968 161451, 213288 161437, 213687 161481, 213762 161557, 213985 162190, 214154 161762, 214444 161585, 215057 161587, 215443 161680, 215612 162197, 215664 163053, 215677 164716, 215704 166271, 215695 167747, 215661 169361, 215735 172914, 215805 177782, 215784 178881, 215700 180264, 215657 181141, 215642 181986, 215646 184473, 215628 186095, 215649 188704, 215595 191835, 215635 195825, 215646 196163, 215659 197615, 215653 198779, 215673 199975, 215671 200992, 215690 202183, 215771 203627, 215794 204455, 215810 205979, 215867 207776, 215880 208674, 215891 211173, 215784 213394, 215679 214490, 215650 215501, 215721 217192, 215741 218264, 215800 219676, 215813 221360, 215786 222596, 215771 223960, 215823 226624, 215819 227927, 215717 231715, 215642 232784, 215567 235278, 215512 235597, 215257 235788, 214940 235867, 214709 235657, 214712 235290, 214616 234833, 214425 234517, 214406 234841, 214420 235587, 214264 235823, 214080 235894, 213238 235899, 213109 235747, 213059 235249, 213020 235044, 213116 234818, 213171 233598, 212910 233213, 212908 233570, 213053 233822, 212878 233711, 212810 234280, 212906 234917, 212696 235789, 212448 235895, 211421 235864, 211005 235727, 210953 235676, 210826 235294, 210729 232555, 210692 232520, 210735 231063, 210650 230072, 210668 229274, 210643 228245, 210600 227702, 210539 227151, 210496 226539, 210472 225830, 210517 225452, 210515 224876, 210447 223841, 210343 222516, 210246 220602, 210208 219192, 210176 218361, 210156 215819, 210146 215442, 210175 214814, 210302 213689, 210283 213185, 210147 212584, 210060 211653, 209784 211565, 209773 212224, 209623 213193, 209638 213698, 209853 215052, 209850 217707, 209879 218985, 209976 221518, 210059 223109, 210082 224343, 210160 225372, 210261 226027, 210285 226635, 210288 227146, 210312 227498, 210315 228229, 210368 228750, 210377 229280, 210428 229721, 210406 229915, 210417 230514, 210408 230639, 210411 231342, 210437 232023, 210430 232777, 210378 232955, 210394 234232, 210421 234678, 210417 235345, 210324 235602, 210104 235684, 209793 235698, 209200 235614, 208295 235447, 207762 235262, 207538 235090, 207566 234057, 207602 231983, 207592 231454, 207544 230472, 207539 230101, 207459 228215, 207526 227284, 207588 226165, 207544 225077, 207473 224320, 207422 223319, 207405 221222, 207414 220620, 207470 219790, 207575 219098, 207670 218709, 207786 218152, 207865 217637, 207886 217135, 207866 215940, 207875 214846, 207831 214345, 207733 213837, 207571 213314, 207451 212734, 207418 211861, 207417 209814, 207487 204769, 207486 203965, 207418 202465, 207402 201902, 207432 200397, 207389 197813, 207394 197304, 207381 196974, 207377 196415, 207403 192751, 207437 191270, 207408 188057, 207422 185090, 207466 182056, 207645 180758, 207707 180234, 207699 179314, 207618 178259, 207545 176541, 207496 175108, 207483 173204, 207418 171732, 207468 169113, 207482 168798, 207469 167819, 207403 166529, 207427 164953, 207434 163576, 207467 162005, 207641 161687, 207894 161553, 208174 161476, 209149 161445, 209497 161594, 209774 161542, 209986 161431, 210544 161419, 210712 161464, 210847 161629, 210878 162280, 210906 161921, 211036 161499, 211230 161398, 212120 161382) (212912 233140, 213125 233207, 213039 232607, 212925 232540) (212806 228865, 212855 229397, 212968 229728, 212950 228843, 212811 228159, 212767 228030) (212747 225751, 212825 226366, 212765 225625, 212652 224658) (212550 222099, 212551 222374, 212645 222578, 212628 222208, 212570 221663, 212482 221328) (212261 214313, 212236 214855, 212368 217723, 212397 218735, 212496 219954, 212504 220320, 212571 220623, 212532 220903, 212644 220804, 212574 219703, 212553 219034, 212548 218233, 212491 216876, 212440 216129, 212423 215247, 212346 214252, 212315 213624) (212142 211547, 212145 211643, 212214 211075, 212195 210932) (212058 205702, 212067 205984, 211995 206315, 212012 207264, 212240 207285, 212049 207835, 212044 208551, 212138 208884, 212060 209057, 212086 209876, 212241 209402, 212266 208559, 212118 208215, 212242 207809, 212242 207283, 212182 206755, 212227 206591, 212220 206220, 212250 205491, 212222 205159) (211999 204427, 212018 205052, 212221 205149, 212139 204623, 212162 204273, 212124 203930) (209374 193203, 209357 193802, 209467 193918, 209510 193142) (213678 169320, 213752 169432, 213706 168918) (210828 164479, 210793 166386, 210909 167076, 210912 167278, 210978 167382, 210925 165323, 210884 164169, 210855 163677)), ((185297 167110, 185407 167451, 185338 167598, 185329 167852, 185381 168350, 185440 168634, 185651 168170, 185703 167967, 185970 167346, 185951 167256, 186126 167059, 186995 167057, 187112 167225, 187126 167396, 187297 167851, 187511 167580, 187718 167194, 187870 167100, 188330 167079, 188764 167155, 188994 167415, 189208 168124, 189259 170043, 189265 172829, 189303 174099, 189352 175290, 189338 177095, 189317 178365, 189324 178591, 189317 179552, 189335 180080, 189336 181778, 189365 182574, 189307 185446, 189234 186526, 189151 188026, 189098 188685, 189071 189372, 189129 190059, 189263 190768, 189309 191406, 189325 192154, 189286 193042, 189214 194103, 189187 194381, 189130 195334, 189118 196181, 189172 197770, 189250 199065, 189299 199563, 189498 203737, 189430 206912, 189389 209907, 189222 210588, 189108 211235, 189156 211949, 189317 212617, 189341 213367, 189375 214059, 189384 214777, 189416 215539, 189407 216229, 189356 217642, 189328 219067, 189215 220574, 189234 221297, 189335 221977, 189374 222713, 189388 223874, 189324 227914, 189109 228395, 188719 228449, 188023 228456, 186631 228549, 186472 228294, 186408 227996, 186415 227471, 186472 226226, 186490 224835, 186572 224305, 186831 221683, 186915 221369, 186945 220871, 186783 220779, 186532 221354, 186601 222053, 186534 222688, 186516 222971, 186301 224576, 186158 225468, 186101 225766, 185988 226490, 185888 227052, 185879 227574, 185884 228095, 185903 228345, 185800 228622, 185648 228661, 184705 228665, 184580 228544, 184505 228065, 184589 227785, 184592 227338, 184713 226475, 184776 225868, 184855 225273, 184967 224652, 185050 223973, 185108 223369, 185147 222391, 185115 221420, 185102 220614, 185028 219962, 184895 219037, 184863 218607, 184664 217295, 184543 216617, 184519 216385, 184402 215871, 184301 216015, 184314 215632, 184248 215280, 184263 214892, 184154 214176, 183924 214098, 183955 214899, 184062 215474, 184143 215982, 184290 217116, 184437 217790, 184485 218576, 184610 219345, 184622 219973, 184659 220157, 184721 220668, 184758 221351, 184776 222025, 184770 223359, 184705 224019, 184708 224132, 184682 224654, 184580 225282, 184460 225890, 184397 226657, 184348 226954, 184281 227490, 184203 228319, 184198 228589, 184131 228705, 183472 228795, 183168 228715, 183084 228646, 182878 228161, 182621 228725, 182522 228823, 181707 228851, 181435 228417, 181350 227690, 181327 226798, 181332 226001, 181306 225040, 181307 223943, 181234 221768, 181239 220209, 181254 220012, 181188 216954, 181248 216258, 181333 215500, 181336 214207, 181369 212866, 181422 212207, 181449 211242, 181418 210532, 181344 209805, 181330 209094, 181393 208494, 181534 207740, 181587 207109, 181606 206295, 181572 205427, 181536 204928, 181513 204025, 181460 203209, 181407 202874, 181346 202316, 181309 201374, 181297 200232, 181281 199875, 181240 197166, 181250 196634, 181339 195182, 181353 194246, 181298 192862, 181286 191907, 181303 190654, 181308 188838, 181532 188195, 181627 187585, 181656 186499, 181699 185835, 181613 185045, 181541 184647, 181431 183748, 181409 182317, 181416 180616, 181454 179562, 181469 177082, 181521 175854, 181525 174698, 181410 173973, 181453 173234, 181473 172197, 181501 171633, 181456 170072, 181527 169120, 181574 167732, 181674 167318, 182006 167041, 182733 167028, 182932 167135, 183128 167348, 183253 167247, 183784 167190, 184405 167022, 184888 167021) (182601 220573, 182601 220833, 182575 221391, 182589 221549, 182558 222068, 182557 222276, 182513 222984, 182619 223110, 182774 222721, 182727 221382, 182712 220690, 182653 220062) (186874 218523, 186899 218720, 186834 219235, 186874 219794, 187068 219231, 187034 218959, 187056 218340, 187039 217808) (186807 215685, 186788 216242, 186814 216403, 186714 217267, 186752 217528, 187037 217808, 186850 217109, 186886 216506, 186880 216399, 186968 215570, 186736 215251) (188015 213703, 188055 214135, 188100 215107, 188192 215141, 188177 214751, 188239 214003, 188173 213331, 188153 213301) (182346 211844, 182288 211830, 182377 212784, 182461 213044, 182533 212958, 182502 212708, 182479 212001, 182439 211663) (185267 212010, 185261 212745, 185405 212303, 185449 211755, 185350 211748) (187888 211959, 187918 212466, 187950 211958, 187923 211687) (184110 208365, 184085 209894, 183979 210471, 184007 210590, 183928 210733, 183874 211295, 183917 212207, 184178 212008, 184328 211284, 184328 210906, 184243 210539, 184282 209889, 184284 209201, 184240 208653, 184164 208194) (187824 206319, 187819 206833, 187922 206254, 187903 205990) (187613 204764, 187640 204905, 187597 205679, 187634 205715, 187779 205556, 187696 205446, 187760 204747, 187708 204580) (187325 203943, 187332 204158, 187409 204261, 187509 203922, 187510 203680, 187417 203655) (185723 201112, 185803 201361, 185782 202147, 185822 202381, 185871 203134, 185947 203520, 185999 203290, 185993 202138, 185999 201841, 185953 200921, 185896 200713) (183111 196097, 183111 196338, 183220 196571, 183346 196089, 183357 195861, 183244 195515) (187168 187332, 187096 188140, 187055 188812, 186932 189816, 186947 190690, 187033 190305, 186975 189832, 187148 189628, 187219 188881, 187258 188142, 187230 187867, 187370 187292) (184359 187722, 184404 188292, 184387 187689, 184349 187311) (187365 185986, 187363 186393, 187203 187147, 187394 187204, 187461 186611, 187503 185973, 187455 185491) (185911 183458, 185982 184152, 186008 184285, 186031 184115, 186101 183340, 186009 182935) (187495 180554, 187553 181290, 187625 180551, 187535 179884) (182489 175139, 182515 175803, 182391 176384, 182360 176383, 182395 176941, 182579 176594, 182646 175985, 182711 175237, 182687 174648) (184155 172903, 184186 173891, 184245 174426, 184331 174780, 184395 174585, 184412 173770, 184378 173140, 184238 172626) (187354 169144, 187305 169545, 187269 170271, 187255 170954, 187324 171368, 187399 171508, 187539 171257, 187533 171111, 187641 170750, 187724 169433, 187631 169027, 187644 168917, 187597 168883) (182772 170156, 182859 170644, 182923 171233, 183103 171365, 183165 170881, 183182 170371, 182928 170047) (184144 167291, 184024 167660, 184063 167803, 184162 168395, 184189 168798, 184297 169405, 184296 169102, 184244 168395, 184283 168102, 184311 167596, 184411 167274) (182898 167926, 182844 168051, 182954 168592, 183074 169096, 183100 169155, 183098 168673, 183052 167999, 183066 167740)), ((235459 188654, 235687 188917, 235822 189324, 236001 190191, 235918 191121, 235928 191635, 236013 192207, 235998 192273, 236012 192789, 235902 193397, 235786 193668, 235569 194393, 235505 194555, 235319 195235, 235090 196611, 235041 197310, 234999 197624, 235055 198027, 234832 198748, 234866 199199, 234741 199466, 234758 200007, 234621 199769, 234389 199579, 234325 199670, 234281 199476, 234248 198732, 234254 197148, 234286 195536, 234204 193095, 234226 191243, 234221 190495, 234237 189605, 234266 189452, 234274 188928, 234657 188619, 235149 188598)), ((190945 175323, 191056 175591, 191143 175634, 191279 175359, 191317 176094, 191367 176309, 191424 176930, 191362 177653, 191320 178375, 191372 178726, 191437 179275, 191479 179855, 191543 180389, 191708 180544, 191648 180897, 191717 181145, 191724 181439, 191798 181801, 191987 181569, 191896 181948, 191968 182137, 191889 182525, 191944 183472, 191990 183616, 192074 183655, 191952 184189, 191699 184362, 191201 184289, 190347 184111, 190098 183979, 190087 183430, 190096 183346, 190105 182806, 190150 181489, 190128 180812, 190090 180358, 190042 179446, 190034 179080, 189985 178259, 190101 176873, 190082 175434, 190129 175036, 190276 174786, 190571 175021, 190665 174877, 190781 174873, 190924 174583))) \ No newline at end of file diff --git a/stress_benchmark/resources/033.settings b/stress_benchmark/resources/033.settings new file mode 100644 index 0000000000..5783e17291 --- /dev/null +++ b/stress_benchmark/resources/033.settings @@ -0,0 +1,629 @@ +experimental=0 +infill_pattern=zigzag +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=20 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=185 +machine_max_feedrate_x=299792458000 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=66.66666666666667 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.7 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.1 +support_offset=0.8 +acceleration_layer_0=3000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=all +support_zag_skip_count=8 +retraction_speed=25 +acceleration_roofing=3000 +raft_interface_jerk=20 +support_roof_height=1 +acceleration_travel=5000 +acceleration_wall_x_roofing=3000 +support_roof_enable=False +acceleration_travel_layer_0=5000.0 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=1 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=20 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=20 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=20 +material_flow=100 +material_is_support_material=False +raft_interface_speed=37.5 +skirt_brim_speed=50.0 +retraction_amount=6.5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.04 +acceleration_wall_x=3000 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=60.0 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=25.0 +cross_infill_pocket_size=4.0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=20 +acceleration_print_layer_0=3000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.3 +meshfix_union_all_remove_holes=False +retraction_min_travel=0.8 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=False +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=3000 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=10 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=299792458000 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=50.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=3000 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=255 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_inner +travel_speed=120 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=10 +jerk_travel=30 +speed_travel=120 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=125.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=25 +speed_support_bottom=66.66666666666667 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.1 +speed_slowdown_layers=2 +optimize_wall_printing_order=False +machine_max_acceleration_y=9000 +resolution=0 +support_angle=0 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=20 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=3000 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.1 +minimum_bottom_area=1.0 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=1 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=4 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=3000 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=20.0 +support_bottom_distance=0.1 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=1 +jerk_prime_tower=20 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=100 +bridge_wall_speed=25.0 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=50.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=66.66666666666667 +support_bottom_wall_count=0 +speed_print_layer_0=50.0 +jerk_support_interface=20 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=20 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.02 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +quality_name=Draft +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=3000 +meshfix=0 +machine_max_feedrate_y=299792458000 +bridge_skin_speed=25.0 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=13.333333333333334 +bridge_fan_speed_3=0 +raft_speed=50.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0.3 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=50.0 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=50.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=20 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=3000 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=4 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_depth=255 +acceleration_skirt_brim=3000 +skin_overlap=5 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=250 +raft_smoothing=5 +acceleration_support_interface=3000 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=20 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=3000 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=20 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=200 +wipe_hop_amount=1 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=100.0 +support_interface_enable=False +raft_base_acceleration=3000 +wall_line_width_x=0.4 +machine_acceleration=4000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.3 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=3000 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=30.0 +raft_base_speed=37.5 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=20 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.6 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=3000 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=4.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=6.5 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=50.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=25.0 +infill=0 +prime_tower_position_y=233.575 +jerk_support=20 +speed_wall_x_roofing=100.0 +speed_layer_0=50.0 +wall_line_width_0=0.4 +jerk_support_infill=20 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +acceleration_prime_tower=3000 +material_print_temperature=200 +jerk_print_layer_0=20 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=100.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=none +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=248.575 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=3000 +support_roof_wall_count=0 +raft_jerk=20 +support_z_distance=0.1 +machine_height=265 +speed_infill=100.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=50.0 +speed_support=100.0 +speed_prime_tower=100.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=3000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.6666666666666665 +infill_line_width=0.4 +speed_wall_x=100.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.36 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=3000 +infill_sparse_density=10.0 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=90 +jerk_infill=20 +speed_ironing=33.333333333333336 +gantry_height=0 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=190 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=200 diff --git a/stress_benchmark/resources/033.wkt b/stress_benchmark/resources/033.wkt new file mode 100644 index 0000000000..85a019b685 --- /dev/null +++ b/stress_benchmark/resources/033.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, 115058 47917, 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, 127010 47210, 129336 47204, 130302 47216, 130502 47358, 130647 47521, 130909 48432, 130325 49083, 130401 49194, 104681 49194, 104681 66303, 104485 66253, 104426 67081, 104497 67968, 104434 68318, 104504 68792, 104426 68928, 104406 69103, 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, 101384 92965, 100900 93958, 100806 94311, 101018 94313, 100884 94504, 100741 94527, 100768 94381, 100388 94450, 100156 95315, 100225 95351, 100144 95357, 100147 95327, 99763 95409, 99643 95846, 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, 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, 87821 113564, 87326 114734, 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, 82309 122264, 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, 80553 125184, 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, 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, 78822 157751, 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, 69370 157241, 69251 157677, 68886 157760, 68644 157457, 67888 157662, 67637 157346, 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, 65782 174148, 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, 65639 185035, 65915 185341, 65827 185752, 65480 186343, 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, 65652 190835, 65758 191199, 65666 191602, 65608 191627, 65530 191968, 65565 192027, 65534 192103, 65621 192400, 65685 192385, 65787 192742, 65594 193569, 65824 194283, 66195 194191, 66470 194493, 67598 194194, 67871 194496, 68992 194200, 69102 194547, 70603 194146, 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, 81245 179994, 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, 90101 167096, 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, 95102 159509, 95655 158201, 95921 158121, 95957 157983, 96052 158024, 96359 157230, 96733 157124, 97204 156023, 96890 155669, 97362 155556, 97431 155387, 97801 155285, 98183 154406, 98552 154303, 99041 153014, 99407 152906, 99573 152468, 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, 107557 140201, 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, 143642 143102, 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, 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, 132022 159869, 131754 160196, 131521 160639, 131028 161226, 130851 161583, 130351 162280, 130135 162698, 129687 163327, 129220 164012, 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, 124774 170757, 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, 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, 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, 128776 192924, 128981 192475, 129276 191623, 129643 191528, 130063 190633, 130212 190210, 130575 190114, 130869 189248, 131242 189143, 131351 188809, 131289 188741, 131301 188545, 131434 188605, 131809 187835, 132160 187793, 132459 186874, 132549 186846, 132580 186231, 132970 186475, 133266 185874, 133396 185452, 133772 185348, 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, 134589 177753, 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, 134682 170755, 134187 170128, 134672 169197, 134172 168569, 134640 167665, 134141 167027, 134569 166177, 134564 166102, 134351 165806, 134468 165449, 134444 165394, 134563 164934, 134362 164659, 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, 143649 159728, 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, 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, 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, 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, 159283 158972, 159411 158424, 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, 159183 138262, 161310 138300, 165974 138218, 170748 137963, 175585 137525, 180428 136898, 181209 136764, 181125 137713, 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, 181214 137843, 181386 137408, 181415 137012, 181279 136751, 185219 136077, 186357 135831, 186193 136213, 186214 136472, 186370 137063, 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, 224897 80276, 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, 224284 126405, 224317 126595, 224337 127181, 224355 127370, 224352 127956, 224290 128146, 224259 128731, 224315 128921, 224316 129119, 224389 129309, 224389 129507, 224325 129696, 224277 130084, 224327 130543, 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 141127, 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 145825, 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, 208497 159050, 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, 197670 175586, 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 189774, 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, 55995 196588, 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, 53600 189779, 53565 190276, 53500 190585, 53565 191051, 53675 191409, 53499 192105, 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, 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, 50959 190121, 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, 50336 195029, 49906 194767, 49915 194635, 49759 194640, 49209 194959, 49252 195038, 49164 195062, 49044 194946, 48408 194737, 48444 194781, 48385 195162, 48035 195258, 47713 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, 42280 194901, 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 199134, 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, 22491 185568, 22510 184772, 22486 184403, 22466 183309, 22549 182850, 22596 182074, 22575 181298, 22570 179360, 22545 178974, 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, 24620 172167, 24627 171073, 24581 170311, 24667 169208, 24612 168364, 24689 167180, 24689 166553, 24711 165023, 24650 164090, 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, 35028 157720, 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, 46203 138369, 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, 40521 139194, 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, 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, 27235 155628, 27445 155475, 27498 155117, 27821 154979, 27860 154637, 28074 154423, 28170 154208, 28436 153927, 28754 153371, 28990 153161, 28971 152783, 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, 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, 49060 122106, 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, 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, 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, 75960 95755, 76329 94963, 76621 94885, 77005 93991, 77388 93827, 77781 93010, 77992 92872, 78050 92754, 78153 92712, 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, 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, 88623 75779, 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 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, 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, 58333 111438, 58675 111287, 58757 110937, 58969 110491, 58976 110351, 59328 110217, 59541 109851, 59711 109411, 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, 64018 102810, 64222 102487, 64545 102243, 64658 101954, 64951 101486, 64936 101414, 65027 101347, 65264 101013, 65460 100856, 65863 100067, 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, 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, 74509 86800, 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, 76045 83614, 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, 71162 86681, 71059 86962, 70845 87169, 70713 87431, 70505 87654, 70422 87957, 70178 88152, 70088 88445, 69853 88639, 69913 89027, 69752 89045, 69542 89131, 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, 62769 99521, 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, 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, 50022 113344, 50274 112493, 50638 112399, 50867 112712, 50862 112779, 50929 112695, 50886 112700, 50648 112383, 51075 111498, 51098 111541, 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, 61385 95497, 61728 95408, 61908 94984, 61879 94962, 61943 94900, 62284 94098, 62637 94003, 62811 93545, 63183 93446, 63510 92581, 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, 65565 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, 71397 80543, 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, 76622 72829, 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, 79195 68601, 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, 85077 59989, 85376 59613, 85405 59527, 85372 59187, 85913 58509, 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, 89962 52619, 89914 52239, 90259 51889, 90909 51129, 90882 51104, 90928 51081, 90892 50722, 91559 49947, 92249 49196, 92201 48820, 92534 48456, 92896 46537, 93135 45885, 93274 45832, 93915 45830, 94437 45851, 94824 45830, 95063 46013, 95473 45629, 99087 45628) (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, 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, 175180 194542, 175146 193934) (170728 193079, 170795 193419, 170733 193823, 170528 194267, 170606 194305, 170689 194641, 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, 164390 187662, 164391 188197, 164361 188592, 164432 188961, 164385 189473, 164730 189655, 164410 190039, 164378 190523, 164434 190983, 164810 191183, 164441 191582, 164457 192900, 164564 193377, 164521 193588, 164263 194046, 164563 194352, 164963 194288, 165032 194350, 165261 194321, 165402 194510, 165581 194460, 165670 193944, 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, 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) (156902 193996, 156853 194139, 157080 194465, 157260 194415, 157354 194076, 157660 193918, 157338 193881) (161631 193182, 161248 193226, 161085 193754, 161097 194139, 161346 194459, 161479 194465, 161701 194361, 161801 194259, 161885 193923, 161752 193571, 161717 193089) (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, 29784 193307, 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) (46073 193881, 46125 194254, 46556 194344, 46730 194273, 46924 194034, 46246 193516) (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) (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, 24479 185887, 24541 186990, 24509 187727, 24430 188269, 24481 189333, 24422 189740, 24452 190503, 24451 191171, 24397 192123, 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, 24710 189658, 24642 189289, 24678 188174, 24608 187420, 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, 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, 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, 29884 186404, 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, 49971 189300, 49926 189296) (22994 187415, 23006 188131, 23047 188563, 23038 189319, 22984 190130, 23058 190731, 23080 190104, 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, 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, 165419 182487, 165551 181684, 165408 180939, 165535 180053) (44586 182124, 44668 182248, 44714 182500, 44812 182284, 44698 181912) (136162 182001, 136254 182342, 136394 182479, 136409 182156, 136226 181961, 136340 181596, 136348 181416) (23017 180389, 23035 181174, 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) (136370 174556, 136280 174976, 136417 174503) (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, 38545 169708, 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, 33479 167051, 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) (137804 169125, 137756 169617, 137891 169488, 138019 169237, 138014 169067, 138114 168698, 137718 168623) (159637 169617, 159909 169552, 159834 169288, 159859 169054, 159583 168898) (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, 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, 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, 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, 165497 160857, 165598 159977, 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, 72875 153570, 73079 152753, 72829 152043, 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, 65916 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, 51623 153275, 51602 153213, 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, 70992 156476, 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, 53624 153929, 53685 153219) (57235 153680, 57329 153970, 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, 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) (68831 154157, 68853 154511, 68935 154665, 68861 154859, 68823 155294, 69159 155148, 69341 154998, 69319 154108) (47717 154277, 47674 155049, 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, 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) (57275 149332, 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 150675, 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) (74569 149249, 74581 149258, 74769 148808) (72802 146626, 72577 147464, 72045 147978, 72063 148380, 72019 148575, 72012 149123, 72648 148921, 73014 148120, 72586 147462, 73053 146715, 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, 210334 142654, 210280 142925, 210070 143158, 209988 143524, 210048 143550, 210253 143839, 210439 143846, 210806 143687, 210743 143317, 210486 142999, 210474 142615, 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, 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, 192344 138668, 192357 139440, 192301 140158, 192347 140994, 192303 141696, 192314 142165, 192368 142443, 192337 142935, 192016 143412, 192058 143782, 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, 192569 135506, 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) (181212 142495, 181065 142923, 180983 143333, 181147 143519, 181380 143612, 181584 143589, 181727 143345, 181749 143124, 181475 142985, 181236 142489, 181151 142092) (182863 143594, 183201 143612, 183286 143478, 182775 143100) (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, 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, 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, 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, 67179 126862, 67244 127218, 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, 70609 126055, 70678 126401, 70863 126613, 70776 126992, 70805 127017, 71162 126966, 71169 126845, 71030 126566, 71233 126363, 71390 125689, 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, 101756 72135, 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, 103545 73782, 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) (102856 66392, 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, 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 65930, 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, 225630 181166, 225501 181198, 225501 201627, 225491 202402, 225469 202910, 225469 214698, 189190 214698, 189122 214369, 189502 214263, 189441 213910, 189797 213801, 189863 213394, 190234 213290, 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, 206292 194965, 206675 195213, 207472 195028, 207513 194984, 207433 194326, 208139 194763, 208187 194751, 208198 194796, 209310 194493, 209652 194785, 210783 194487, 211127 194769, 211887 194564, 211904 194572, 212647 194363, 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, 219401 184748, 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, 30181 162185, 30267 161930, 30497 161755)), ((31148 161146, 30929 161241, 30951 161675, 30542 161699, 30589 161371, 30882 160992)), ((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)), ((32851 158392, 32811 158440, 32565 158430, 32715 158295, 32793 158110)), ((33547 157387, 33627 157494, 33315 157450, 33355 157287, 33511 157131)), ((39116 145521, 39364 145607, 39465 145590, 39635 145639, 39593 145824, 39925 146523, 40177 146819, 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, 78962 46675, 79133 46472, 79903 46483, 80127 48386, 80383 48432, 80159 48711, 80166 48815, 79153 49961, 79190 50343, 78293 51384, 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 67858, 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 70828, 65553 71203, 65254 71251, 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, 62560 75104, 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, 55749 85672, 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, 42516 105998, 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, 39104 111284, 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, 21466 134830, 21477 133090, 21471 132505, 21483 127274, 21477 126689, 20543 126499, 20554 125724, 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, 20546 106531, 20263 106323, 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, 20732 80715, 20725 78390, 20733 77861, 20683 77391, 20673 74375, 20791 74122, 20766 73599, 20920 73346, 20888 72825, 20780 72572, 20826 72049, 20943 71796, 21012 71314, 21026 70499, 21067 69857, 21108 68560, 21174 68195, 21159 67397, 20693 67144, 20633 66757, 20627 65980, 20612 65460, 20611 64297, 20643 63656, 20651 62880, 20644 62747, 20643 61329, 20626 60556, 20633 60033, 20616 59647, 20612 59006, 20626 58617, 20635 57452, 20621 56933, 20637 56543, 20635 55902, 20623 55771, 20605 55130, 20613 54993, 20488 53580, 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, 53153 90576, 53273 90546)), ((56329 85838, 56370 86162, 55836 86037, 56054 85835)), ((222336 47944, 222395 48012, 222777 48153, 222736 48544, 222779 49314, 222736 49687, 222806 51559, 222701 52375, 222699 53594, 222734 53973, 222663 54767, 222651 55437, 222681 55925, 222655 56215, 222654 57483, 222627 58132, 222624 58654, 222568 59144, 222623 59817, 222677 60190, 222569 60413, 222370 60649, 222312 61066, 222756 61068, 223426 61317, 223377 61372, 222756 61414, 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, 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, 206044 46809, 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, 168129 48436, 168490 46070, 168738 45582, 168888 45717, 170945 45706, 171214 45716, 174047 45702, 174299 45581))) \ No newline at end of file diff --git a/stress_benchmark/resources/034.settings b/stress_benchmark/resources/034.settings new file mode 100644 index 0000000000..0ed9af0382 --- /dev/null +++ b/stress_benchmark/resources/034.settings @@ -0,0 +1,626 @@ +experimental=0 +infill_pattern=cubic +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=200 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=25.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.8 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=off +support_zag_skip_count=10 +retraction_speed=45 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=0.8 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=45 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=18.75 +skirt_brim_speed=20.0 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=12.5 +cross_infill_pocket_size=12.0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=25.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=45 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=235 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=150.0 +machine_shape=rectangular +ironing_enabled=True +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=117.5 +support_interface_material_flow=100 +wipe_retraction_retract_speed=45 +speed_support_bottom=25.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=1 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=45 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=50 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.8 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.5 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=45 +material_brand=empty_brand +initial_bottom_layers=4 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.5 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=12.5 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=25.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=45 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=12.5 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.1 +support_tree_angle_slow=30.0 +bridge_fan_speed_3=0 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=25.0 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=45 +bottom_layers=4 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=235 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=True +support_interface_height=0.8 +wall_extruder_nr=-1 +machine_width=235 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=0 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=200 +wipe_hop_amount=0.5 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=25.0 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=5 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=18.75 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=50 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=12.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=True +jerk_enabled=False +speed_wall_0_roofing=25.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=50 +bridge_skin_speed_3=12.5 +infill=0 +prime_tower_position_y=208.575 +jerk_support=8 +speed_wall_x_roofing=25.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=0 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=200 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=raft +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=228.575 +wipe_pause=0 +material_standby_temperature=180 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=5 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=250 +speed_infill=50.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=25.0 +speed_support=25.0 +speed_prime_tower=25.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=25.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=10 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=16.666666666666668 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=200 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=0.8 +material_bed_temperature=50 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=200 diff --git a/stress_benchmark/resources/034.wkt b/stress_benchmark/resources/034.wkt new file mode 100644 index 0000000000..1fd9aae3aa --- /dev/null +++ b/stress_benchmark/resources/034.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((147289 101492, 147197 101776, 147218 102093, 147259 102076, 147389 102138, 147398 102467, 147648 102288, 147623 102181, 148137 102295, 148172 102346, 148465 102254, 148577 102197, 148901 102061, 149036 102086, 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, 158377 103782, 158054 103621, 158326 103620, 158921 103328, 158926 103578, 159080 103506, 159208 103335, 159407 103114, 159605 103018, 160226 102526, 160454 102824, 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, 165092 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, 167417 101900, 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, 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, 182810 103445, 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, 193774 108134, 193856 108785, 193928 109098, 193921 109623, 194041 109726, 194014 109968, 194186 109989, 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, 194031 118525, 194060 118432, 194108 118157, 194177 118380, 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, 193949 124428, 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 128032, 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, 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, 174554 135176, 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, 161713 135737, 161331 135585, 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, 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, 153652 136120, 153552 136060, 153593 135690, 153306 135419, 153053 135341, 152580 135581, 152424 135744, 152010 136078, 151973 136256, 151750 136416, 151665 136297, 151649 136165, 151319 135935, 151244 135715, 150941 135293, 150655 135636, 150553 135647, 150201 135755, 150161 135787, 149841 135908, 149141 135992, 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, 145554 135726, 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, 142018 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, 136348 134700, 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, 130811 135921, 130474 136087, 130566 135694, 130433 135488, 130058 135503, 130241 135641, 130311 135805, 129948 135956, 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, 125907 135956, 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, 117982 137027, 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, 110750 135379, 110126 135364, 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, 106749 135924, 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, 96728 135226, 96725 134880, 96456 134773, 96152 134807, 95843 134931, 95367 135283, 95072 135605, 94874 135414, 94584 135321, 94485 135118, 94285 134980, 93918 135156, 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, 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, 84146 136283, 84165 136654, 84073 136578, 84008 136352, 83879 136374, 83968 136325, 83982 136146, 83780 136341, 83944 136147, 84002 136108, 84028 135950, 83831 135806, 83748 135631, 83148 135941, 82702 136044, 82544 136113, 82485 136088, 82156 136110, 81742 136005, 81304 136319, 81199 136183, 81247 136069, 81111 136096, 81017 136168, 81122 136274, 81174 136215, 81398 136618, 80878 136583, 80988 136446, 80919 136464, 80688 136602, 80607 136305, 80260 136390, 79838 136780, 79352 136963, 79204 137074, 78889 136647, 78575 136452, 78214 136412, 78091 136286, 78104 136094, 77898 136077, 77858 136221, 77880 136293, 77736 136379, 77573 136136, 77356 136219, 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, 73980 135632, 73536 135753, 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, 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, 63636 135779, 63183 136382, 62995 135952, 62927 135832, 62946 135473, 62925 135342, 62808 135451, 62588 135515, 62483 135489, 62333 135146, 62578 134986, 62457 134920, 62208 134847, 61895 134946, 61753 134798, 61578 134975, 61937 135253, 62069 135289, 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, 57916 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, 52475 135204, 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, 44104 133693, 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, 42755 128222, 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, 41263 126609, 41298 126498, 41365 125897, 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, 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 103341, 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, 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, 59914 102988, 60241 102811, 60840 102283, 61082 102235, 61133 101982, 61256 101889, 61397 102096, 61731 102268, 61738 102342, 61969 102451, 62118 102641, 62319 102503, 62687 102504, 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, 65313 102750, 65707 102604, 66086 102383, 66205 102382, 66480 102342, 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, 69233 102238, 69011 102701, 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, 72928 103153, 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, 77126 102706, 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 101435, 80893 101793, 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, 92044 104293, 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, 97955 102968, 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, 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, 111114 102197, 111396 102219, 111501 102275, 111484 102645, 111727 102914, 112139 102810, 112410 102597, 112739 102249, 112982 102181, 113035 101905, 113178 101773, 113348 102030, 113410 102047, 113648 102337, 113692 102355, 113916 102639, 114059 102420, 114483 102266, 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, 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, 121508 104565, 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, 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, 128716 103854, 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, 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, 67017 134614, 66814 134713, 66601 134499, 66540 134559, 66487 134521, 66270 134667, 66058 134661, 65904 134347, 65827 134312) (164793 134568, 164770 134690, 164905 134902, 164993 134817, 165283 134808, 165433 134869, 165622 134594, 165601 134517, 165139 134610, 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, 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) (193713 118969, 193757 118982, 193790 118915, 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, 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, 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/stress_benchmark/resources/035.settings b/stress_benchmark/resources/035.settings new file mode 100644 index 0000000000..0106e70349 --- /dev/null +++ b/stress_benchmark/resources/035.settings @@ -0,0 +1,628 @@ +experimental=0 +infill_pattern=lightning +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=98 +skirt_brim_line_width=0.4 +minimum_support_area=0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=200.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=1.0 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=30.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.0 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=10 +retraction_speed=35 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=1.2000000000000002 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=35 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=98 +material_is_support_material=False +raft_interface_speed=22.5 +skirt_brim_speed=20.0 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=98 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=15.0 +cross_infill_pocket_size=6.4 +support_bottom_material_flow=98 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=2 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=True +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.36 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=98 +raft_surface_speed=30.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=35 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=300 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=150.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=98 +anti_overhang_mesh=False +z_seam_x=150.0 +support_interface_material_flow=98 +wipe_retraction_retract_speed=35 +speed_support_bottom=30.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=98 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=80.0 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=50 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=2 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1.2000000000000002 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=35 +material_brand=empty_brand +initial_bottom_layers=5 +support_material_flow=98 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=Cura5-0_Terrain_04mmNozzle_v3 +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1.0 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=98 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=15.0 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=30.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=45.0 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.05 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=15.0 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=30.0 +bridge_fan_speed_3=0 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=tree +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=30.0 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=98 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=35 +bottom_layers=5 +material_print_temperature_layer_0=205.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=300 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1.2000000000000002 +wall_extruder_nr=-1 +machine_width=300 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=200.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=30.0 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=5 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=98 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=22.5 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=61.0 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=6.4 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=1.0 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=30.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=65.0 +bridge_skin_speed_3=15.0 +infill=0 +prime_tower_position_y=271.0 +jerk_support=8 +speed_wall_x_roofing=30.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=200.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=98 +prime_tower_position_x=291.0 +wipe_pause=0 +material_standby_temperature=180 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=400 +speed_infill=60.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=30.0 +speed_support=30.0 +speed_prime_tower=30.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=30.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=10 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=20.0 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=200.0 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=6.123233995736766e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=0.8 +material_bed_temperature=61.0 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=200.0 diff --git a/stress_benchmark/resources/035.wkt b/stress_benchmark/resources/035.wkt new file mode 100644 index 0000000000..2437697235 --- /dev/null +++ b/stress_benchmark/resources/035.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((105538 100642, 105460 100865, 105332 100671, 105324 100395))) \ No newline at end of file diff --git a/stress_benchmark/resources/036.settings b/stress_benchmark/resources/036.settings new file mode 100644 index 0000000000..496ddb57a3 --- /dev/null +++ b/stress_benchmark/resources/036.settings @@ -0,0 +1,627 @@ +experimental=0 +infill_pattern=cubic +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=95.0 +skirt_brim_line_width=0.42 +minimum_support_area=0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=12.0 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=205.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.42 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.12 +top_bottom_thickness=0.84 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=25.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.84 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.42 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.0 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=0 +retraction_speed=45 +acceleration_roofing=500 +raft_interface_jerk=12.0 +support_roof_height=0.96 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=45 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=2 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=12.0 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=12.0 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=12.0 +material_flow=95.0 +material_is_support_material=False +raft_interface_speed=18.75 +skirt_brim_speed=30 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.126 +acceleration_wall_x=500 +prime_tower_flow=95.0 +machine_steps_per_mm_x=50 +speed_travel_layer_0=35 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=12.5 +cross_infill_pocket_size=5.04 +support_bottom_material_flow=95.0 +skin_material_flow=95.0 +roofing_material_flow=95.0 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.5200252002520025 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=12.0 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.36 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=3 +support_initial_layer_line_distance=0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.04 +ironing_inset=0.381 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.38 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=95.0 +raft_surface_speed=25.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=45 +acceleration_ironing=500 +line_width=0.42 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=0 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_inner +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=12.0 +speed_travel=150.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.76 +infill_material_flow=95.0 +anti_overhang_mesh=False +z_seam_x=0.0 +support_interface_material_flow=95.0 +wipe_retraction_retract_speed=45 +speed_support_bottom=25.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=95.0 +bridge_wall_min_length=2.24 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=40 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=12.0 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=50 +support_xy_distance_overhang=0.42 +acceleration_support_roof=500 +retract_at_layer_change=False +support_roof_line_width=0.42 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.42 +support_top_distance=0.24 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.18 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.96 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=1.26 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=45 +material_brand=empty_brand +initial_bottom_layers=7 +support_material_flow=95.0 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=12.0 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=12.0 +top_skin_preshrink=0.84 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.12 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=2.5200252002520025 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=GG_Best_Dragon_1 +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.84 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=12.0 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=95.0 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=12.5 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=25.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=12.0 +raft_surface_line_width=0.42 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=50 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.12 +sub_div_rad_add=0.42 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.12 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=buildplate +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=True +top_skin_expand_distance=0.84 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=12.5 +bridge_fan_speed=100 +interlocking_beam_width=0.84 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.38 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=33.333333333333336 +bridge_fan_speed_3=0 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=tree +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=25.0 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.12 +raft_base_line_width=0.8 +prime_tower_line_width=0.42 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=12.0 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=outside_in +wall_x_material_flow_roofing=95.0 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=concentric +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.42 +retraction_retract_speed=45 +bottom_layers=7 +material_print_temperature_layer_0=205.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.84 +jerk_ironing=12.0 +machine_depth=235 +acceleration_skirt_brim=500 +skin_overlap=30.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=True +adaptive_layer_height_enabled=False +support_interface_height=0.96 +wall_extruder_nr=-1 +machine_width=235 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=12.0 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=12.0 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=205.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=25.0 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.42 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=7 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.84 +layer_height_0=0.12 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=95.0 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=1 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=12.0 +raft_base_speed=18.75 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=12.0 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=5.04 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.84 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=25.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=65 +bridge_skin_speed_3=12.5 +infill=0 +prime_tower_position_y=203.535 +jerk_support=12.0 +speed_wall_x_roofing=30 +speed_layer_0=20.0 +wall_line_width_0=0.42 +jerk_support_infill=12.0 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.12 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=205.0 +jerk_print_layer_0=12.0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=95.0 +prime_tower_position_x=223.535 +wipe_pause=0 +material_standby_temperature=180 +jerk_wall=12.0 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=12.0 +support_z_distance=0.24 +machine_height=250 +speed_infill=60 +raft_surface_thickness=0.12 +infill_randomize_start_location=False +speed_roofing=25.0 +speed_support=25.0 +speed_prime_tower=25.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.42 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.42 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=0 +infill_line_width=0.42 +speed_wall_x=30 +ooze_shield_dist=2 +raft_interface_line_width=0.84 +support_type=buildplate +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.144 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=25.0 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.84 +retraction_count_max=100 +jerk_infill=12.0 +speed_ironing=16.666666666666668 +gantry_height=25 +bottom_skin_expand_distance=0.84 +min_feature_size=0.105 +layer_0_z_overlap=0.15 +material_initial_print_temperature=215.0 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=5.143516556418883e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=0 +expand_skins_expand_distance=0.84 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=12.0 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=205.0 diff --git a/stress_benchmark/resources/036.wkt b/stress_benchmark/resources/036.wkt new file mode 100644 index 0000000000..b446df5126 --- /dev/null +++ b/stress_benchmark/resources/036.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((121388 114032, 121864 114082, 122072 114095, 122751 114286, 123176 114526, 123628 115013, 123660 115052, 123686 115064, 124108 115321, 124414 115470, 125223 116018, 125499 116259, 125729 116424, 126182 116776, 126279 116928, 126493 117177, 126607 117388, 126679 117838, 126648 118351, 126483 118764, 126431 118936, 126176 119342, 126107 119410, 125957 119769, 125849 120186, 125789 120699, 125629 120953, 125359 121178, 125203 121271, 124971 121431, 124460 121712, 124334 121817, 123797 121962, 123166 122179, 122754 122238, 122089 122409, 121296 122573, 121147 122612, 120003 122710, 118982 122698, 118634 122712, 118143 122674, 117670 122751, 117333 122786, 116462 122746, 115663 122601, 115265 122396, 114854 122220, 114347 121911, 113956 121494, 113812 121290, 113687 120672, 113765 120296, 113322 119208, 113269 118000, 113483 117108, 113604 116860, 113909 116508, 114406 115892, 114825 115607, 115154 115399, 115949 115145, 116618 115084, 117232 114925, 118095 114619, 118395 114533, 119157 114269, 119722 114149, 120298 114060, 120912 114029) (121263 114638, 120566 114766, 119835 114963, 119063 115234, 118193 115571, 117603 115895, 117303 116186, 117605 116222, 117921 116412, 118252 116777, 118419 117050, 118566 117498, 118948 118551, 118965 118880, 118812 119617, 118364 119738, 117904 119832, 116763 120138, 116484 120172, 115931 120196, 115199 120569, 114801 120598, 114879 120686, 115473 121094, 116247 121402, 117043 121434, 117516 121274, 117778 121152, 118062 120974, 118426 120523, 118677 120173, 118771 119812, 118812 119617, 118887 119597, 119360 119454, 120054 119224, 120519 119045, 121009 118829, 120921 118129, 121443 116921, 121675 116410, 122014 116103, 122426 115920, 123157 115934, 124016 116102, 123930 116424, 123816 116745, 123690 116914, 123553 117161, 123230 117517, 122857 117830, 122367 118159, 121933 118398, 121517 118604, 121009 118829, 121095 119514, 121241 119796, 121469 120081, 121754 120588, 122072 120846, 122598 121111, 122735 121130, 123182 121220, 123860 121105, 124594 120695, 124751 120557, 125112 120027, 125361 119552, 125531 118873, 125454 117597, 125355 116997, 125170 116591, 124654 116227, 124016 116102, 124034 115771, 123922 115376, 123660 115052, 123015 114765, 122542 114637, 121940 114594) (115382 116201, 114771 116440, 114478 116880, 114275 117562, 114204 117858, 114059 118691, 114152 119452, 114214 119608, 113835 119958, 113765 120296, 113869 120552, 114085 120649, 114801 120598, 114736 120524, 114581 120250, 114351 119951, 114214 119608, 114290 119538, 114389 119466, 114703 119029, 114876 118930, 115043 118770, 115316 118297, 115622 117898, 116337 117236, 116671 116799, 117303 116186, 116865 116134)), ((112971 116946, 112971 116987, 113166 117294, 113249 117705, 113208 118014, 113124 118151, 113003 118233, 112971 118240, 112971 118261, 112876 118284, 112876 116900, 112901 116893))) \ No newline at end of file diff --git a/stress_benchmark/resources/037.settings b/stress_benchmark/resources/037.settings new file mode 100644 index 0000000000..4a40bf459b --- /dev/null +++ b/stress_benchmark/resources/037.settings @@ -0,0 +1,627 @@ +experimental=0 +infill_pattern=lines +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=2 +wall_x_material_flow_layer_0=101 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=190 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +top_bottom_thickness=1.2 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=20 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=101 +support_xy_distance=0.8 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.8 +acceleration_layer_0=350 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=10 +retraction_speed=25 +acceleration_roofing=350 +raft_interface_jerk=8 +support_roof_height=0.8 +acceleration_travel=500 +acceleration_wall_x_roofing=350 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=8 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=16.875 +skirt_brim_speed=20.0 +retraction_amount=6.5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0 +acceleration_wall_x=350 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=90 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=12 +cross_infill_pocket_size=0.40404040404040403 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=350 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=350 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.4 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=350 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=101 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=22.5 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=350 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=225 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=10 +speed_travel=100 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=112.5 +support_interface_material_flow=100 +wipe_retraction_retract_speed=25 +speed_support_bottom=20 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.2 +speed_slowdown_layers=1 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=55 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.4 +acceleration_support_roof=350 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.638 +cool_min_speed=12 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.15000000000000002 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.8 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=1.2000000000000002 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=8 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=False +acceleration_wall_0=350 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=8 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=2.4 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.1 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1.2 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=15.0 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=22.5 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=20 +support_bottom_wall_count=0 +speed_print_layer_0=20 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=55 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.1 +cool_fan_full_layer=3 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=2.4 +min_wall_line_width=0.34 +acceleration_support_infill=350 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=12 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=36.666666666666664 +bridge_fan_speed_3=0 +raft_speed=22.5 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=20 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=30 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.1 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=350 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=350 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=15 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=8 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=225 +acceleration_skirt_brim=350 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.8 +wall_extruder_nr=-1 +machine_width=225 +raft_smoothing=5 +acceleration_support_interface=350 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=350 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=190 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=30 +support_interface_enable=True +raft_base_acceleration=350 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=8 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=2.4 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=350 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=6 +jerk_travel_layer_0=10 +raft_base_speed=16.875 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=55 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=60 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=350 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=0.40404040404040403 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=101 +top_thickness=1.2 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=30 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=70 +bridge_skin_speed_3=12 +infill=0 +prime_tower_position_y=195.562 +jerk_support=8 +speed_wall_x_roofing=35 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=350 +material_print_temperature=190 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=45 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=215.562 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=350 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=250 +speed_infill=40 +raft_surface_thickness=0.1 +infill_randomize_start_location=False +speed_roofing=20 +speed_support=30 +speed_prime_tower=20 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=120 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=350 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=35 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=350 +infill_sparse_density=99 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=2.4 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=13.333333333333334 +gantry_height=25 +bottom_skin_expand_distance=2.4 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=190 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=2.4 +material_bed_temperature=55 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=190 diff --git a/stress_benchmark/resources/037.wkt b/stress_benchmark/resources/037.wkt new file mode 100644 index 0000000000..81e2c480a0 --- /dev/null +++ b/stress_benchmark/resources/037.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((107638 61798, 107744 62158, 108015 62180, 108062 62230, 108158 62595, 108629 62124, 108298 62134, 108653 62014, 109074 62244, 109253 61956, 109398 62376, 109778 62263, 110656 62109, 110664 62166, 111427 62029, 111455 62046, 111909 62070, 111589 62212, 111811 62557, 112026 62552, 112468 62660, 112801 62720, 113487 62365, 113536 62295, 113672 62301, 113685 62442, 113789 62647, 113875 62653, 114231 62320, 114654 62279, 115076 62173, 115173 62437, 115478 62555, 115710 62416, 115765 62591, 116266 62673, 116360 62845, 116641 62839, 116922 62956, 117235 62822, 117458 63223, 117459 62791, 117998 62730, 117546 62587, 117967 62033, 118261 61840, 118748 61934, 119096 62353, 119359 62691, 119801 62728, 120175 62684, 120280 62944, 120774 62898, 120901 62842, 121043 63014, 121518 63116, 121805 63356, 122041 63450, 122526 63294, 122632 63225, 123064 63424, 123244 63527, 123317 63515, 124068 63678, 124174 63956, 124422 63794, 124995 63832, 125404 64201, 126132 64693, 126089 64441, 126457 64147, 126777 64239, 127418 64478, 128049 64082, 128275 64819, 128762 64965, 128929 64780, 128811 65015, 129252 65023, 130043 64726, 130423 64443, 130492 64314, 130544 64398, 130731 64407, 131153 64554, 131278 64749, 131377 65183, 131928 65221, 132241 65138, 132370 65393, 132667 65433, 132789 65394, 133284 65774, 133424 65732, 133566 65611, 134116 65771, 134053 66534, 134180 66604, 134271 66552, 134167 65762, 134697 65797, 134853 65990, 134596 66599, 134863 66665, 135169 66580, 135312 66469, 135630 66611, 135871 66841, 136072 66764, 136384 66966, 136641 67299, 136703 67429, 136850 67448, 137216 67207, 137434 67416, 137720 67474, 137803 67771, 137931 67972, 138182 67790, 138010 67383, 138471 67543, 138462 67769, 138718 68077, 139093 67699, 139253 67684, 139313 67819, 139270 68249, 139653 68632, 139943 68770, 140305 68715, 140118 68196, 140039 68075, 140343 68073, 140824 68399, 140847 68453, 140689 68774, 141071 69419, 141379 69254, 141750 69433, 141961 69711, 142034 69702, 143056 70297, 143079 70701, 143137 70925, 143207 70998, 143671 70858, 144069 70888, 144063 70756, 144170 70669, 144256 70867, 144197 71122, 143918 71390, 143754 71388, 143741 71894, 143973 71983, 144178 71866, 144287 71644, 144585 71807, 145227 72064, 145344 72079, 145422 72196, 145734 72514, 146087 72750, 146266 73205, 146504 73286, 146903 72997, 147138 73558, 147258 73710, 147374 73949, 147816 74245, 148300 74404, 148262 73694, 148482 73644, 148546 74002, 148808 73791, 148947 73748, 149399 74308, 149320 74843, 149861 75048, 150004 75194, 150297 75228, 150697 75742, 150898 76141, 151018 76209, 151055 76307, 151091 76961, 151179 77070, 151126 77332, 151570 77909, 151580 78020, 151677 78055, 152478 78580, 152696 78890, 153246 78969, 153380 79090, 153611 79598, 153792 79860, 153905 79874, 153936 79591, 154122 79201, 154206 79214, 154328 79854, 154605 79798, 154504 80124, 154638 80595, 154936 80806, 155128 80869, 155269 81264, 155431 81461, 155986 81903, 156258 82619, 156519 82902, 156556 83165, 157009 83410, 157167 83650, 157544 83967, 157864 84528, 158004 84588, 158073 85144, 158021 85262, 158066 85649, 158272 85891, 158599 86346, 158557 86503, 158724 86951, 158727 86979, 158994 87451, 158791 87519, 158896 87858, 159613 88094, 159336 88273, 159649 88589, 159739 88888, 160231 89076, 160204 89377, 160601 89355, 160838 89733, 161221 90494, 161383 90683, 161672 91308, 161571 91396, 161971 91966, 162496 92318, 162462 92594, 162351 92817, 162180 92856, 161919 93082, 162058 93324, 162016 93586, 162077 93918, 161818 93768, 161505 94100, 161903 94483, 162130 94357, 162118 94570, 162029 94651, 161900 95118, 162044 95320, 162237 95693, 162398 96260, 162247 96429, 162428 97079, 162416 97087, 162649 97642, 162676 97681, 162746 98177, 162913 98358, 162884 98734, 162808 98875, 163144 99515, 163166 99796, 163123 100064, 163535 100638, 163830 100958, 163875 101096, 164441 101577, 164657 102608, 164595 102645, 164362 103065, 164983 103275, 165146 103843, 164874 103985, 165021 104245, 165545 104603, 165903 105016, 165782 105809, 165812 105910, 165682 106040, 165320 106161, 165251 107010, 165111 107456, 165237 108118, 165064 108353, 165277 108600, 165182 108913, 165174 109503, 165333 109641, 165308 109854, 165320 110236, 165568 110298, 165474 110446, 165754 111299, 165547 111687, 165981 111636, 165974 111657, 165481 111804, 165584 111929, 165889 112497, 165964 112767, 165945 113418, 166046 114684, 165503 115419, 165817 116075, 165383 116036, 165285 116518, 165742 116536, 165617 116819, 165673 117116, 165822 117431, 165683 117658, 165526 117986, 165568 118331, 165417 118612, 165467 118745, 165151 118758, 164957 118933, 164905 119163, 165368 119289, 165490 119256, 165516 119450, 165484 119467, 165217 120121, 165067 120571, 165157 121003, 165172 121288, 165011 121820, 164765 121800, 164445 121913, 164355 122565, 164523 122609, 164201 122923, 164910 123207, 164748 123566, 165050 124082, 164563 125083, 164392 125386, 164152 125996, 163871 126297, 163547 126535, 163469 126722, 163349 126839, 163017 127240, 162763 127834, 162564 127878, 162590 127731, 162175 127658, 162065 127927, 162342 128096, 162190 128472, 162603 128759, 162611 128912, 162760 129315, 162472 129764, 162485 130421, 162416 130697, 162248 130937, 162311 131118, 162261 132151, 162371 132801, 162325 132903, 162382 133095, 162566 133491, 162586 133703, 162446 133854, 162530 133985, 162238 134286, 161767 134062, 161670 134133, 161712 134452, 160591 134891, 160035 135235, 159899 135389, 159790 135615, 159612 135650, 159146 136137, 158963 136445, 158739 136611, 158161 136703, 157900 137055, 157994 137249, 157778 137593, 158521 137562, 158398 137737, 158264 137783, 157781 138194, 157602 138122, 157415 138501, 157068 138911, 156974 139057, 156760 139345, 156410 139507, 156292 139768, 155917 139738, 155750 139652, 155490 139865, 155149 140040, 155280 140188, 155685 140146, 155753 140218, 155589 140305, 155221 140427, 155160 140620, 155287 141386, 155238 141436, 155052 142258, 154966 142371, 154495 143275, 154456 143369, 154201 143734, 154049 144255, 153871 144409, 153698 144744, 153645 145119, 153283 144989, 152823 145452, 152842 145920, 152754 146154, 152301 146979, 152110 147120, 152044 147501, 151917 147924, 151659 148182, 151360 148687, 151430 149144, 151420 149256, 151372 149220, 150907 149175, 150656 149553, 150614 149805, 150902 150066, 151046 150526, 150329 151460, 150202 151491, 149753 151374, 149417 151668, 149174 152094, 148972 151942, 148562 152188, 148517 152674, 148526 152895, 148418 152955, 148350 153100, 148103 153019, 147353 153203, 147243 153213, 147088 153415, 147014 153879, 146967 153867, 146071 154506, 145993 154466, 145495 154367, 145205 154083, 145100 154068, 144872 153638, 144729 153643, 144741 154034, 144882 154200, 144749 154383, 144397 154504, 144154 154600, 143646 154758, 143366 154743, 143275 155263, 143228 155261, 143174 155353, 142516 155406, 142285 156030, 142168 156078, 142060 156390, 142113 156052, 141577 156346, 141933 156689, 141829 157065, 141794 157330, 141700 157397, 141716 157431, 140903 157507, 140293 157893, 140034 158441, 140068 157709, 140640 157507, 140116 157450, 139847 157552, 139436 158276, 139837 158458, 139336 158461, 138686 158872, 137909 158995, 137861 158740, 137635 158791, 137532 158912, 137450 159332, 137196 159858, 135972 160278, 135835 160233, 135518 160665, 135594 160729, 135517 160742, 135391 160690, 135007 160607, 134864 160622, 134745 160899, 134671 161326, 134448 161485, 134359 161330, 134092 161332, 133701 161441, 133695 161585, 133506 161665, 133254 161563, 132782 161658, 132173 162159, 132000 162484, 131789 162307, 131500 162273, 131201 162404, 130891 162617, 130781 162604, 130708 162672, 130305 162626, 130092 162964, 129726 162769, 129546 162178, 129065 162143, 129020 162183, 128325 162112, 128244 162139, 128097 162067, 128237 162029, 128235 161603, 128399 161569, 128252 161425, 127574 161299, 127228 161617, 127387 161818, 127212 161733, 127046 162124, 126770 162433, 126418 162319, 126131 162762, 125819 162784, 125715 163046, 125310 163312, 125114 163304, 125127 163483, 124763 163835, 124536 163765, 124474 163510, 124167 163601, 124074 163593, 123247 163771, 122981 163958, 122697 164085, 122335 164007, 121863 164241, 121858 164227, 121137 164199, 121067 164467, 120021 164611, 119693 163971, 119739 163581, 119366 163183, 119105 163154, 119020 163401, 119114 163896, 118883 163770, 118631 163914, 118470 163732, 118453 163882, 118177 163847, 118321 164160, 117915 164427, 118067 164735, 117856 164553, 117582 164442, 117481 164518, 117068 164577, 116939 164916, 116709 165055, 116192 165087, 116027 164799, 116062 164641, 116039 164238, 115539 163917, 115085 163960, 115015 163931, 114539 163932, 114354 164048, 114197 164264, 114091 164522, 114280 165180, 113539 164858, 113371 164716, 113113 164784, 112690 164606, 111994 165075, 111490 165262, 111219 165331, 110298 164515, 110557 165316, 110477 165308, 110032 164930, 109991 164995, 109892 164947, 109392 164932, 109305 165141, 109136 165242, 109037 165177, 108134 165011, 107889 165174, 107890 165207, 107535 165027, 107281 164788, 107097 164792, 106984 164860, 106574 164973, 106296 164837, 105829 164535, 105493 164437, 105167 164174, 104876 164084, 104653 164317, 103974 164179, 103578 163873, 103532 164101, 102784 163889, 102609 163627, 102484 163388, 101939 163456, 101877 163716, 101795 163419, 101351 163304, 101293 163693, 101638 163863, 101453 164071, 101246 163822, 100885 163533, 101153 162796, 101934 163113, 102341 163186, 102017 162680, 101132 162568, 100907 162322, 101047 162652, 100880 163530, 100496 163549, 100135 163399, 99760 163287, 99423 163126, 99214 162951, 98920 163149, 98490 163059, 98142 162563, 97901 162928, 97559 162428, 97072 162026, 96310 161931, 96778 162238, 96736 162288, 96671 162241, 96623 162260, 96193 161924, 95762 161666, 95631 161693, 95338 161385, 94738 161327, 94356 161354, 94035 161322, 94213 161133, 93952 160952, 93626 161035, 93167 160833, 92458 160573, 92483 160542, 91980 160109, 91620 160219, 91635 160057, 91176 159840, 91294 159570, 91504 159403, 91193 159130, 90531 159379, 89536 159374, 89282 159293, 89299 159127, 89111 158789, 89120 158769, 88695 158394, 88407 158566, 88150 158607, 87522 158118, 87379 158052, 86752 157585, 86554 157572, 86219 157667, 85893 157358, 85559 157215, 85735 156690, 85727 156510, 85591 156449, 85593 156521, 85081 156933, 85053 156526, 85152 156226, 84432 156133, 84073 156466, 84088 156721, 83864 156586, 83664 156539, 83838 156454, 84155 156068, 83957 155828, 83676 155305, 83334 155100, 82732 154931, 82745 154765, 82658 154885, 82135 154847, 81814 154578, 81757 154250, 81376 154469, 80767 154183, 80818 153959, 80751 153846, 80146 153555, 79859 153068, 79693 152867, 79265 152780, 78962 152586, 78662 152546, 78113 152225, 78048 152007, 77743 151619, 77425 151154, 77646 150887, 77376 150978, 76961 150958, 76693 150973, 76627 150905, 76689 150795, 76621 150181, 76183 149989, 76111 149562, 75871 149735, 75370 150201, 75322 149778, 75193 149701, 74914 149472, 74486 148900, 74513 148800, 74464 148427, 74190 148322, 74076 148230, 73738 148245, 73618 148397, 73659 148164, 73500 147713, 73666 146997, 73648 146658, 73301 146188, 73129 146033, 72780 145897, 72312 146251, 72276 145911, 72056 145754, 71945 145570, 71284 145039, 70815 144606, 70801 144331, 70597 144262, 70424 144117, 70432 143568, 70647 143304, 70680 142891, 70297 142497, 69982 143003, 69855 143086, 69805 143064, 69791 142923, 70270 142480, 69746 142313, 69407 142467, 69113 141754, 68871 141327, 68720 141118, 68511 140871, 68561 140310, 68669 140001, 68576 139702, 68364 139591, 68332 139947, 67868 139424, 67407 139393, 67186 139323, 66959 138724, 66983 138469, 66424 138353, 66486 137934, 66538 137653, 66020 137484, 65843 136947, 65627 136590, 65374 136286, 65343 135432, 65250 135015, 65159 134751, 64778 134435, 64885 134175, 64196 133775, 64179 133680, 64333 133269, 64195 132998, 63970 132896, 63712 132872, 63225 132438, 63375 131948, 63074 131185, 63119 131037, 63074 130981, 62915 130326, 62777 130148, 62721 129550, 62657 129309, 62584 129210, 62057 128796, 62203 128478, 61955 128412, 61929 128235, 62047 127661, 61699 127364, 61684 127190, 61755 127070, 61773 126640, 62035 126030, 62009 125911, 61436 125556, 61432 125520, 61857 125167, 61540 125052, 61054 124897, 61013 124414, 61229 123732, 61206 123700, 60717 123715, 60734 123292, 60628 123041, 60716 122373, 60480 121823, 60265 121578, 60217 120990, 60468 120094, 60238 119458, 60004 119090, 59981 118793, 59828 118448, 59823 117850, 59701 117599, 59670 117391, 59759 116940, 59654 116786, 59793 116138, 59588 115572, 59575 115355, 59731 114955, 59857 114376, 59599 113591, 59856 112715, 59776 112139, 59887 111652, 60011 111355, 59808 111014, 59734 110646, 59686 110483, 59827 109878, 59940 109779, 59994 109528, 59940 109297, 59649 109152, 59583 108877, 59915 108894, 60079 108737, 60252 108998, 60478 109100, 60548 108936, 60481 108729, 60268 108467, 60596 108248, 60714 108136, 60701 108075, 60857 108020, 61222 107710, 61301 107710, 61218 107408, 60219 106833, 60044 107052, 59763 107001, 60192 106806, 60291 106190, 60565 105774, 60593 105609, 60659 105643, 60655 105497, 60723 105129, 60848 104635, 60874 104340, 61021 104090, 61048 102967, 61091 102932, 61011 102630, 61123 102383, 61004 102171, 60910 101701, 60885 101387, 61199 100818, 61145 100707, 61376 100410, 61494 100173, 61688 100090, 61820 99750, 61972 99564, 61858 99159, 61816 98760, 61950 98612, 62065 98263, 62079 97386, 62111 97085, 62311 96552, 62332 96320, 62505 96335, 62659 95923, 62637 95813, 63041 95281, 63354 95070, 63339 94378, 63390 94042, 63886 93811, 64211 93100, 64312 93017, 64288 92830, 64368 92463, 64531 92378, 64728 91633, 64661 91444, 64750 90969, 64664 90595, 64752 90411, 64803 90087, 64957 90200, 64961 90453, 65257 90882, 65490 90727, 65715 90836, 66168 90639, 66220 90569, 66181 90244, 65966 89980, 65606 89857, 65511 90282, 65388 90350, 65269 89946, 65367 89777, 65311 89403, 65365 89082, 65784 88998, 65968 88879, 65801 88198, 66423 87757, 66470 87783, 66483 87703, 66672 87366, 67092 87078, 67525 86514, 67736 86138, 68038 85312, 68331 85212, 68766 84683, 68658 84425, 69008 84286, 69551 83796, 69773 82646, 69905 82334, 70278 81957, 70394 81760, 70475 81723, 70809 81300, 71241 81463, 71389 81277, 71375 80953, 70861 81223, 71346 80613, 71462 80697, 71682 80604, 71981 80583, 72016 80532, 72447 80372, 72659 80263, 72576 80080, 72447 79614, 72736 79324, 73032 78853, 73318 78735, 73314 78631, 73465 78597, 73725 78275, 73833 78183, 73800 77861, 73687 77683, 73900 77542, 74015 77407, 74281 77286, 74665 77314, 75150 77680, 75233 76974, 75746 76759, 75853 76678, 76135 76806, 76072 76387, 76293 75934, 76542 75750, 76961 75829, 77021 75669, 77140 75787, 77293 75861, 78094 75293, 78260 75090, 78560 74838, 78138 74243, 78580 74003, 79071 73679, 79173 73665, 79896 73332, 80217 73357, 80228 73057, 80593 73050, 80682 72879, 80725 72331, 81188 71782, 81414 71643, 82167 71556, 82415 71469, 82405 71348, 82702 70919, 82725 70678, 83050 70397, 83858 69751, 84248 69190, 84308 69050, 84388 69066, 84411 68405, 84266 68336, 84248 68033, 84547 68005, 84744 67907, 85257 68266, 85370 68279, 86119 68437, 86165 67866, 86320 67645, 86362 67230, 86722 67072, 87027 66667, 87459 66643, 88121 66513, 88125 66307, 88576 66447, 89015 66728, 89248 66285, 89680 65979, 89710 65827, 90025 65647, 90292 65288, 91699 65040, 91843 65174, 91803 65479, 92197 65569, 92568 65917, 92697 65862, 92474 65523, 92616 65436, 92809 65182, 93354 65118, 93778 65542, 93951 65570, 94671 65348, 94694 65251, 94819 65197, 95130 64605, 95165 64605, 95181 64525, 94977 64273, 95382 64182, 95570 64205, 96162 63962, 96461 63772, 96690 63543, 96787 63371, 97676 63653, 97902 63476, 98374 63151, 98461 62855, 98556 62844, 98610 62901, 98658 63205, 99056 63088, 99395 63359, 99804 63559, 100333 63509, 100415 63772, 100805 63361, 101010 62939, 101252 62919, 101611 62855, 102073 62624, 102333 62846, 102565 62800, 103215 62762, 103198 62253, 102993 61820, 102934 61788, 102919 61678, 103019 61612, 103775 61530, 103877 61422, 103926 61511, 104386 61511, 104682 61620, 104751 62166, 105231 62050, 105494 61705, 105716 61970, 105985 62345, 106404 62038, 106632 62045, 107082 62232, 107223 61822, 107320 61394) (107405 163123, 107658 163399, 107872 163671, 108234 163678, 108544 163668, 108569 163577, 108562 163262, 108410 163315, 108084 163236, 107876 163248, 107574 163068, 107392 163009) (104025 163306, 104223 163629, 104453 163662, 104530 163378, 104357 163119) (118332 64249, 117941 64298, 117861 64327, 116702 64337, 116338 64265, 115949 64310, 115152 64290, 114927 64232, 113840 64171, 113565 64190, 113494 64076, 113018 64133, 112030 64137, 111788 64178, 110986 64242, 109716 64235, 109400 64280, 109212 64269, 107898 64604, 106933 64043, 106712 64278, 106557 64475, 106399 64460, 105159 64515, 104534 64856, 103577 64886, 103375 64972, 103091 64974, 102518 65034, 101601 65102, 100399 65081, 100307 65042, 99991 65061, 99430 65219, 99351 65274, 98751 65234, 98501 65229, 97418 65711, 96438 66211, 95855 66285, 95702 66424, 95166 66789, 95003 66784, 93994 67300, 93565 67491, 93450 67561, 93275 67551, 92746 67656, 92677 67642, 92602 67697, 92389 68016, 92034 68146, 91538 68520, 91054 68778, 90543 68507, 90189 68638, 89572 68818, 89431 68894, 89600 69240, 89152 69427, 88704 69395, 88043 69758, 87655 69861, 87129 69892, 86755 69902, 86660 69960, 85555 70291, 85627 70909, 84995 71379, 84372 71916, 84189 72110, 83892 72549, 83540 72778, 83195 72953, 83119 73024, 81636 74220, 81427 74422, 80402 74743, 80336 74845, 80131 75541, 79908 75972, 79451 76296, 79219 76480, 78370 77063, 77598 77965, 77425 78059, 77134 78291, 76996 78386, 76762 78693, 76494 78814, 76366 79273, 75559 80110, 75523 80171, 75071 80725, 74926 80792, 74274 81543, 74046 81739, 73512 82236, 73432 82394, 73287 82441, 73195 83047, 72690 83547, 72675 83599, 72014 84512, 71734 85155, 71464 85491, 71166 85735, 70684 86870, 70468 87225, 69999 87689, 69674 88209, 69360 88868, 69222 89131, 68714 89882, 68209 90916, 67841 91761, 67500 92602, 67136 93381, 66926 93690, 66526 94671, 66412 95158, 66303 95397, 65974 96510, 65766 97083, 65441 97653, 65284 98604, 65214 98882, 65143 99712, 64590 100407, 64500 100809, 64418 101321, 64408 101545, 64072 102139, 63842 102588, 63716 103865, 63684 104077, 63644 104860, 63652 105000, 63568 105413, 63591 105916, 63628 106423, 63570 106622, 63393 107695, 63431 107873, 63516 108445, 63492 108902, 63314 109220, 63445 109770, 63410 110098, 63355 111041, 63337 111208, 63322 111967, 63234 112230, 63222 112796, 63356 113665, 63268 114234, 63233 115222, 63268 115478, 63252 116059, 63179 117013, 63251 117207, 63404 118524, 63430 118819, 63622 119082, 63693 120009, 63900 120454, 63854 120862, 64062 121653, 64175 121995, 64201 122326, 64402 123143, 64545 123670, 64562 123809, 65015 125370, 65101 125609, 65173 126317, 65233 126683, 65422 127154, 65697 127749, 65835 127942, 66039 128414, 65981 128841, 66105 129353, 66362 130142, 66715 130892, 66819 131198, 66966 131728, 67741 133316, 67863 133501, 68490 134853, 68571 135075, 68746 135211, 69075 135718, 69459 136475, 69570 136810, 69745 137069, 69822 137324, 70255 138093, 70518 138490, 70762 138734, 70950 139101, 71035 139601, 72216 140772, 72578 141326, 72855 141789, 73131 142910, 73205 142988, 73201 142906, 73804 142853, 74067 142994, 73804 143344, 74120 143350, 74567 143816, 74944 144274, 75672 145048, 75809 145220, 76382 145873, 76660 146129, 77248 146760, 77838 147367, 77561 147882, 77986 148080, 78110 148405, 78588 148758, 78812 149017, 79004 149291, 79293 149580, 80175 150357, 80996 150861, 81132 150999, 81469 151225, 82383 152190, 82961 152145, 83411 152379, 83602 152383, 83776 152532, 84030 152705, 84332 153022, 84989 153522, 85236 153680, 85811 153977, 86088 154147, 87503 155176, 87941 155484, 88037 155644, 88509 155894, 88649 156026, 88896 156464, 89256 156693, 89976 156860, 90298 156903, 90826 157231, 91428 157487, 92466 157794, 93189 157931, 94452 158517, 94652 158574, 95101 158783, 95323 158911, 96117 159087, 96193 159084, 96735 159292, 97287 159520, 97997 159705, 99238 160198, 99530 160345, 100146 160544, 100454 160282, 100923 160136, 101193 160173, 102820 160613, 103521 161372, 103640 161587, 104564 161534, 105113 161583, 106008 161762, 106274 161772, 106554 161984, 107012 162164, 107372 161803, 107580 161665, 108231 161557, 108698 161681, 109450 162234, 109527 162340, 110191 162230, 110362 162249, 110745 162246, 111519 162512, 111975 162605, 112070 162538, 112267 162685, 112569 162368, 113001 162209, 113297 162148, 113753 162246, 114120 162432, 114284 162624, 115492 162998, 115842 163021, 115936 163094, 115995 163083, 116014 162936, 116562 162232, 116741 162045, 117010 161708, 117549 161399, 117916 161394, 118641 161286, 119454 161150, 120071 161144, 120446 161289, 121097 161718, 122237 161336, 122955 161373, 123198 161502, 123406 161454, 123904 161418, 124372 161282, 124564 161268, 125138 160939, 125848 160412, 127286 160207, 127539 160206, 127987 160160, 128492 160038, 129097 160282, 129479 160041, 129849 159927, 130055 159748, 130325 159620, 130993 159527, 131266 159365, 132113 159153, 132375 159132, 132663 158903, 132893 158953, 133028 158471, 133350 158246, 134054 157389, 134145 157158, 134631 156874, 135563 156265, 135868 156297, 136264 156301, 136527 156485, 136855 156983, 137067 156746, 137396 156838, 137538 156827, 137765 156737, 138488 156186, 138769 156047, 139205 155497, 139329 155768, 139746 155523, 139996 155443, 140685 154981, 140785 154271, 141249 153702, 141374 153163, 141450 153050, 141575 153016, 142406 152562, 142670 152365, 143077 152360, 143404 152460, 144087 152220, 144265 152108, 144932 151865, 145318 151417, 145450 151382, 145672 151218, 146028 151007, 146462 150661, 146538 150476, 146782 150375, 147350 149983, 147657 149637, 148380 148989, 149170 148735, 149406 148492, 149427 148299, 149553 147781, 149546 147627, 149170 147541, 149179 147259, 149621 147344, 149776 147059, 150031 146436, 150062 146160, 150227 145713, 150261 145330, 150362 145027, 150515 144747, 151115 144003, 151850 142957, 152578 141858, 152779 141599, 153416 140855, 153547 140649, 153820 140336, 153833 139718, 153854 139343, 153971 139212, 154216 139230, 154439 139371, 154816 139041, 155069 138562, 155892 137302, 156253 136712, 156316 136456, 156763 135491, 157157 134559, 157716 134034, 158304 133462, 158783 132859, 158935 132748, 159680 132397, 159798 132167, 160053 131875, 160621 131758, 160572 130952, 160533 130837, 160892 130141, 160799 129900, 160781 129657, 160903 129457, 160982 128990, 160987 128625, 161176 128257, 161166 128110, 161557 127571, 161669 127305, 161738 127185, 161887 126263, 161440 125660, 161501 125490, 161901 125130, 161852 124508, 161726 124351, 161996 123695, 161765 122827, 161848 122322, 162041 121681, 162146 120906, 162238 120500, 162328 119792, 162466 119524, 162556 118576, 162558 118218, 162658 118233, 162887 117852, 162861 117560, 162940 117257, 162949 116670, 162815 116087, 162691 115786, 162653 115598, 162949 115117, 162837 114936, 162467 114521, 162421 114072, 162851 113620, 162914 113675, 162895 113588, 163052 113137, 163096 112475, 162816 112337, 162767 111631, 162838 111282, 162788 111154, 162883 110292, 162829 110177, 162773 109418, 162575 108764, 162593 107705, 162642 107502, 162602 106746, 162630 106378, 162654 105255, 162643 104845, 162461 104012, 162598 103620, 162538 103199, 162269 102862, 162168 102299, 161936 102017, 161825 101733, 161994 101331, 161460 100585, 161389 100509, 160987 99974, 160702 99563, 160116 98162, 160078 97301, 160030 97091, 160163 96953, 160030 96835, 160213 96249, 159915 95619, 159709 95519, 159606 95087, 159662 94582, 159780 94567, 159737 94166, 159880 93232, 159554 92811, 159278 92701, 158941 92375, 158735 91583, 158056 90671, 158031 90487, 157694 89655, 157567 89499, 157393 89087, 157390 89026, 157289 88594, 156872 88218, 156632 88097, 156472 87979, 155579 87725, 155415 87548, 155195 86858, 155225 86781, 155151 86730, 154982 85908, 154180 84810, 154167 84709, 153923 84142, 153010 84035, 152679 83755, 152641 83063, 152862 82895, 152628 83030, 152354 82668, 152259 81794, 151577 81214, 151511 81185, 151083 80454, 150987 80241, 150883 80216, 150151 79183, 150120 79110, 149967 78910, 149525 78717, 149453 78432, 149224 78487, 148997 78170, 148806 78022, 148269 77129, 148047 76893, 147812 76854, 147700 76878, 146995 76693, 146742 76644, 146492 76505, 146216 76178, 145992 76002, 145365 75304, 145041 74457, 144978 74075, 144709 74103, 144229 74193, 143949 74147, 143396 74395, 143274 74409, 142661 74114, 142150 73737, 141928 73607, 141257 72838, 141262 72776, 140917 72224, 140786 71965, 140761 71988, 139847 71919, 139375 71573, 139008 71533, 138453 71257, 137972 70699, 137711 70457, 137577 70044, 137637 69671, 137000 68917, 136714 69035, 136514 69048, 136292 68757, 135873 68740, 135567 68510, 135344 68283, 134919 68430, 134676 68453, 134236 68218, 134057 68154, 133281 67841, 132775 67687, 131954 67617, 131716 67520, 131452 67203, 131068 67053, 130761 66919, 130344 66928, 129949 66616, 129054 66515, 128832 66803, 128529 66715, 127661 66437, 126795 66102, 126468 66087, 125917 66030, 125027 65716, 124646 65610, 123784 65289, 123550 65306, 122980 65095, 122571 65075, 121657 64533, 121195 64627, 119556 64070, 119199 64016) (97747 161636, 98038 161957, 98138 161655, 97891 161358) (137167 158299, 137516 158370, 137528 158041, 137367 157993) (164383 121157, 164460 121458, 164643 121522, 164651 121052) (165315 113634, 165369 114218, 165799 114380, 165940 113417) (163783 104411, 164070 104509, 163958 104846, 164043 104979, 164418 104902, 164321 104595, 164220 104404, 163754 104362) (164371 103476, 164497 103574, 164952 103288, 164357 103226) (164030 102190, 164349 102398, 164361 101710) (62343 97288, 62705 97711, 62815 97991, 63011 97994, 62946 97661, 63191 97365, 62735 96934) (63712 97384, 63444 97446, 63704 97768, 63836 97639, 63840 97309) (161996 97262, 161982 97442, 162590 97623, 162361 97115) (62940 96740, 63290 97296, 63423 96919, 63229 96594) (161250 96057, 161332 96219, 161509 96299, 161675 96146, 161399 95965) (161528 92489, 161412 92579, 161881 92672, 161810 92403, 161531 92208) (67036 87741, 67287 87743, 67496 87568, 67116 87236) (157512 86791, 157894 87140, 157806 86746, 157543 86569) (68660 85381, 68873 85485, 68972 85478, 69044 85346, 68962 84984) (157148 84782, 157317 85047, 157841 85054, 157744 84588, 157505 84507) (154475 81612, 154617 81963, 154688 82040, 155046 82077, 155312 81938, 154902 81489, 154793 81079) (148148 74973, 148185 75238, 148290 75288, 148587 75136, 148667 74723, 148333 74586) (84059 69892, 84210 70181, 84431 70204, 84386 70094, 84499 69920, 84353 69654) (139600 69184, 139319 69556, 139738 69340, 139806 69096, 139661 69025) (87096 68038, 87328 67948, 87495 67797, 87062 67638) (88318 67155, 89083 66978, 88634 66696) (96357 64276, 96536 64491, 96761 64482, 96798 64312, 96649 64269) (110797 62370, 110959 62617, 111135 62607, 111268 62228)), ((75815 150408, 75891 150745, 75537 150700, 75397 150390)), ((156372 140873, 156236 141029, 156017 141039, 155807 140986, 155929 140815)), ((71837 79997, 71743 80151, 71603 79971, 71504 80015, 71541 79854, 72177 79688)), ((78017 74627, 77871 74674, 77757 74502, 78127 74251)), ((146743 71850, 146863 71919, 146785 72533, 146546 72150, 146620 71955, 146542 71809)), ((125944 63739, 126212 63938, 125900 64280, 125410 64170, 125556 63785, 125754 63696))) \ No newline at end of file diff --git a/stress_benchmark/resources/038.settings b/stress_benchmark/resources/038.settings new file mode 100644 index 0000000000..853b097d2d --- /dev/null +++ b/stress_benchmark/resources/038.settings @@ -0,0 +1,628 @@ +experimental=0 +infill_pattern=cubic +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=3 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=203.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=False +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=25.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.8 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=10 +retraction_speed=25 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=0.8 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=18.75 +skirt_brim_speed=20.0 +retraction_amount=6.5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=12.5 +cross_infill_pocket_size=17.142857142857142 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=25.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=300 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=150.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=150.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=25 +speed_support_bottom=25.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=65.0 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.8 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=4 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=12.5 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=25.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=65.0 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=buildplate +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=12.5 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=43.333333333333336 +bridge_fan_speed_3=0 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=25.0 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=8 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=4 +material_print_temperature_layer_0=203.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=300 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.8 +wall_extruder_nr=-1 +machine_width=300 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=0 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=203.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=25.0 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=5.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=18.75 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=55 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=17.142857142857142 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=25.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=55 +bridge_skin_speed_3=12.5 +infill=0 +prime_tower_position_y=273.575 +jerk_support=8 +speed_wall_x_roofing=25.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=0 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=203.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=raft +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=293.575 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=5.0 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=340 +speed_infill=50.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=25.0 +speed_support=25.0 +speed_prime_tower=25.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=25.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=buildplate +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=7 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=16.666666666666668 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=203.0 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=0.8 +material_bed_temperature=55 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=203.0 diff --git a/stress_benchmark/resources/038.wkt b/stress_benchmark/resources/038.wkt new file mode 100644 index 0000000000..2749e28665 --- /dev/null +++ b/stress_benchmark/resources/038.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((141255 74687, 140348 76216, 139171 78161, 138898 78604, 139063 78598, 139133 78603, 138844 78788, 138737 78863, 138482 79276, 138535 79320, 139006 79418, 139737 79539, 142371 79929, 142124 79838, 141799 79570, 141613 79217, 141614 78873, 141393 78843, 139719 78644, 139133 78603, 139976 78064, 141025 77414, 141504 77131, 141773 76992, 142142 76883, 142446 76864, 143051 76945, 143921 77095, 145247 77346, 146648 77626, 147378 77787, 147700 77867, 147941 77940, 148197 78069, 148268 78153, 148301 78344, 148178 78783, 148073 79095, 147909 79533, 147854 79665, 147662 79679, 147298 79661, 146845 79611, 143958 79194, 143744 79165, 143769 79105, 143769 78710, 143698 78526, 143436 78212, 143073 78001, 142647 77923, 142440 77947, 142066 78128, 141777 78439, 141614 78822, 141614 78873, 143744 79165, 143606 79489, 143316 79802, 142944 79982, 142758 79984, 144732 80261, 146033 80426, 146499 80474, 146856 80496, 147247 80487, 147447 80393, 147579 80272, 147740 79937, 147854 79665, 148048 79650, 148409 79522, 148759 79307, 150434 78109, 151208 77595, 151926 77158, 152580 76802, 152913 76638, 153249 76486, 153587 76348, 153926 76227, 154262 76121, 154597 76029, 155254 75884, 155919 75780, 156536 75713, 157105 75673, 157555 75654, 158195 75644, 158584 75648, 158864 75665, 159239 75729, 159566 75837, 160017 76042, 160504 76296, 164911 78715, 165647 79108, 166026 79300, 166334 79442, 166712 79583, 167016 79611, 167461 79570, 169882 79086, 170623 78958, 170935 79053, 171175 79330, 171396 79711, 171661 80281, 172002 81101, 172405 82119, 175045 88942, 176915 93676, 178101 96603, 179701 100462, 180886 103236, 182027 105842, 183099 108221, 183763 109655, 184903 112052, 185559 113368, 185901 114015, 186177 114494, 186400 114826, 186576 115023, 186736 115127, 186892 115159, 187263 115119, 188763 114861, 189027 114831, 189250 114861, 189567 115170, 189991 115848, 190208 116233, 191107 117926, 193734 123000, 195736 126814, 198669 132311, 204627 143337, 205859 145646, 207109 148020, 208364 150452, 209617 152941, 210865 155485, 212102 158078, 213324 160716, 214530 163393, 215715 166100, 216876 168832, 218011 171577, 219122 174347, 220188 177073, 221226 179802, 222227 182504, 223188 185167, 224111 187788, 224990 190351, 225826 192845, 226619 195264, 227369 197608, 228076 199879, 228744 202079, 229374 204212, 229968 206280, 230528 208289, 231056 210242, 231556 212143, 232027 213995, 232475 215805, 232899 217576, 233692 221023, 234419 224368, 235100 227642, 235916 231800, 231831 231800, 231174 228481, 230569 225558, 229854 222255, 229078 218851, 228659 217101, 228177 215143, 227755 213481, 227264 211604, 226743 209673, 226190 207686, 225604 205637, 224982 203524, 224321 201342, 223621 199088, 222878 196759, 222092 194353, 221262 191870, 220389 189320, 219474 186714, 218519 184057, 217526 181363, 216476 178581, 215440 175910, 214351 173174, 213235 170442, 212097 167733, 210884 164922, 209767 162400, 208581 159797, 207389 157246, 206193 154752, 204998 152320, 203809 149955, 202634 147655, 196965 136752, 195740 134370, 193277 129494, 191619 126134, 189012 120757, 188522 119789, 188160 119136, 187945 118800, 187774 118611, 187575 118478, 187325 118447, 186920 118476, 185580 118622, 185076 118664, 184809 118620, 184575 118462, 184266 118071, 184116 117849, 183747 117255, 183260 116415, 182369 114817, 181624 113446, 180792 111885, 179901 110175, 178971 108347, 178020 106433, 177071 104469, 176144 102481, 175694 101486, 174792 99429, 174026 97599, 173648 96660, 172936 94828, 172267 93021, 171688 91396, 171149 89822, 170666 88360, 169502 84707, 169126 83587, 168936 83093, 168779 82768, 168642 82582, 168509 82506, 168371 82510, 168121 82600, 166644 83275, 166277 83423, 166039 83472, 165785 83463, 165420 83333, 165167 83223, 164583 82937, 163809 82534, 159471 80221, 158667 79817, 158271 79645, 157807 79511, 157271 79494, 156705 79515, 156178 79579, 155785 79656, 155352 79773, 154882 79937, 154373 80160, 153828 80444, 153545 80607, 152971 80960, 152398 81336, 151841 81718, 150057 82995, 149762 83191, 149499 83333, 149239 83423, 148954 83466, 148620 83466, 147968 83401, 143735 82803, 141376 82503, 140544 82416, 140137 82390, 139745 82395, 139491 82461, 139327 82552, 139116 82770, 138610 83493, 137773 84739, 137486 85146, 137123 85605, 136904 85718, 136788 85723, 136550 85636, 136222 85436, 135865 85191, 135332 84804, 135082 84611, 134322 85767, 133647 86771, 131649 85654, 132483 84438, 133637 82721, 134784 80978, 135925 79207, 137058 77410, 138183 75589, 139198 73913))) \ No newline at end of file diff --git a/stress_benchmark/resources/039.settings b/stress_benchmark/resources/039.settings new file mode 100644 index 0000000000..3810b98181 --- /dev/null +++ b/stress_benchmark/resources/039.settings @@ -0,0 +1,628 @@ +experimental=0 +infill_pattern=cubic +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=225.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.8 +material_guid=a55a7c05-b00d-42fc-953e-95b01860e05c +platform_adhesion=0 +speed_support_interface=40.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.8 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=10 +retraction_speed=45 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=0.8 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=45 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=30.0 +skirt_brim_speed=20.0 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=20.0 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=40.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=45 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=220 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=200.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=200.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=110.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=45 +speed_support_bottom=40.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=45 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.8 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=45 +material_brand=empty_brand +initial_bottom_layers=4 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=20.0 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=40.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=40.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=45 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=20.0 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=30.0 +bridge_fan_speed_3=0 +raft_speed=40.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=40.0 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=40.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=45 +bottom_layers=4 +material_print_temperature_layer_0=225.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=220 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.8 +wall_extruder_nr=-1 +machine_width=220 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=225.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=40.0 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=30.0 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=40.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=20.0 +infill=0 +prime_tower_position_y=187.375 +jerk_support=8 +speed_wall_x_roofing=40.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=225.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=80.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=207.375 +wipe_pause=0 +material_standby_temperature=180.0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=305.0 +speed_infill=80.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=40.0 +speed_support=40.0 +speed_prime_tower=40.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=40.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=20 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=26.666666666666668 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=225.0 +material_adhesion_tendency=0 +default_material_print_temperature=225.0 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=225.0 diff --git a/stress_benchmark/resources/039.wkt b/stress_benchmark/resources/039.wkt new file mode 100644 index 0000000000..752d94d3bd --- /dev/null +++ b/stress_benchmark/resources/039.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)), ((120264 46043, 119739 47404, 111260 47404, 110736 46043, 110616 45892, 120385 45891)), ((109264 46043, 108739 47404, 100260 47404, 99736 46043, 99616 45892, 109385 45891)), ((131264 46043, 130739 47404, 122260 47404, 121736 46043, 121616 45892, 131384 45892)), ((98264 46043, 97739 47404, 89260 47404, 88736 46043, 88616 45892, 98384 45892)), ((165002 41351, 165002 42361, 177640 42360, 177639 55002, 178648 55002, 178655 55358, 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 164573, 178655 164646, 178649 165002, 177639 165002, 177640 177640, 164998 177639, 164998 178648, 164642 178655, 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, 55427 178649, 55354 178655, 54998 178649, 54998 177639, 42360 177640, 42361 164998, 41352 164998, 41345 164642, 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 55427, 41345 55354, 41351 54998, 42361 54998, 42360 42360, 55002 42361, 55002 41352, 55358 41345, 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, 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/stress_benchmark/resources/040.settings b/stress_benchmark/resources/040.settings new file mode 100644 index 0000000000..9df0af97c1 --- /dev/null +++ b/stress_benchmark/resources/040.settings @@ -0,0 +1,628 @@ +experimental=0 +infill_pattern=grid +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.8 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=20 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=265 +machine_max_feedrate_x=299792458000 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.8 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.3 +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=53.333333333333336 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=3.2 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.4 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.8 +machine_heated_bed=False +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.2 +support_offset=1.2000000000000002 +acceleration_layer_0=3000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=no_outer_surfaces +support_zag_skip_count=4 +retraction_speed=35 +acceleration_roofing=3000 +raft_interface_jerk=20 +support_roof_height=0.75 +acceleration_travel=5000 +acceleration_wall_x_roofing=3000 +support_roof_enable=True +acceleration_travel_layer_0=5000.0 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=35 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=1 +machine_nozzle_size=0.8 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=20 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=20 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=20 +material_flow=100 +material_is_support_material=False +raft_interface_speed=30.0 +skirt_brim_speed=40.0 +retraction_amount=2.0 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.08 +acceleration_wall_x=3000 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=250.0 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=30.0 +cross_infill_pocket_size=0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.8421052631578947 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=20 +acceleration_print_layer_0=3000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.3 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.6 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=2.4000000000000004 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=4.444444444444445 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=3000 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.8 +ironing_inset=0.76 +infill_overlap=10 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=299792458000 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.8 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=40.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=35 +acceleration_ironing=3000 +line_width=0.8 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=-2000 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_inner +travel_speed=120 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.2 +support_tree_top_rate=30 +jerk_travel=30 +speed_travel=500 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=1.6 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=-2000 +support_interface_material_flow=100 +wipe_retraction_retract_speed=35 +speed_support_bottom=53.333333333333336 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=1.8 +speed_slowdown_layers=1 +optimize_wall_printing_order=False +machine_max_acceleration_y=9000 +resolution=0 +support_angle=55 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=20 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.35 +acceleration_support_roof=3000 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.8 +wall_0_wipe_dist=0.4 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=1 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.8 +support_top_distance=0.25 +minimum_bottom_area=1.0 +bridge_skin_density=100 +raft_interface_thickness=0.44999999999999996 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.75 +small_hole_max_size=0 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=1 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=95 +wipe_retraction_prime_speed=35 +material_brand=empty_brand +initial_bottom_layers=4 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=3000 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.3 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=0.8421052631578947 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=20.0 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=1 +jerk_prime_tower=20 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=95 +bridge_wall_speed=30.0 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=60 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=53.333333333333336 +support_bottom_wall_count=0 +speed_print_layer_0=40.0 +jerk_support_interface=20 +raft_surface_line_width=0.8 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=55 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.8 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.3 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=buildplate +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.68 +acceleration_support_infill=3000 +meshfix=0 +machine_max_feedrate_y=299792458000 +bridge_skin_speed=30.0 +bridge_fan_speed=100 +interlocking_beam_width=1.6 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.8 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=36.666666666666664 +bridge_fan_speed_3=0 +raft_speed=40.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0.25 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=60 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=60 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.3 +raft_base_line_width=1.6 +prime_tower_line_width=0.8 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=20 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=3000 +min_bead_width=0.52 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=10 +raft_surface_line_spacing=0.8 +retraction_retract_speed=35 +bottom_layers=4 +material_print_temperature_layer_0=265 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=2.0 +support_tree_tip_diameter=1.6 +jerk_ironing=20 +machine_depth=800.0 +acceleration_skirt_brim=3000 +skin_overlap=5 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.75 +wall_extruder_nr=-1 +machine_width=800.0 +raft_smoothing=5 +acceleration_support_interface=3000 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=20 +support_roof_density=95 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=3000 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=20 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=265 +wipe_hop_amount=1 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=80 +support_interface_enable=True +raft_base_acceleration=3000 +wall_line_width_x=0.8 +machine_acceleration=4000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.3 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=3000 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=3.2 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=1 +jerk_travel_layer_0=30.0 +raft_base_speed=30.0 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=20 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=1.6 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=3000 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=2.0 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=60 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=30.0 +infill=0 +prime_tower_position_y=770.175 +jerk_support=20 +speed_wall_x_roofing=70 +speed_layer_0=40.0 +wall_line_width_0=0.8 +jerk_support_infill=20 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.25 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +machine_name=Unknown +acceleration_prime_tower=3000 +material_print_temperature=265 +jerk_print_layer_0=20 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=80 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.68 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=790.175 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=3000 +support_roof_wall_count=0 +raft_jerk=20 +support_z_distance=0.25 +machine_height=900.0 +speed_infill=80 +raft_surface_thickness=0.3 +infill_randomize_start_location=False +speed_roofing=60 +speed_support=80 +speed_prime_tower=80 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.68 +support_bottom_line_width=0.8 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.8 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=3000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=4.444444444444445 +infill_line_width=0.8 +speed_wall_x=70 +ooze_shield_dist=2 +raft_interface_line_width=1.6 +support_type=buildplate +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.36 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=3000 +infill_sparse_density=0 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=90 +jerk_infill=20 +speed_ironing=40.0 +gantry_height=900.0 +bottom_skin_expand_distance=0.8 +min_feature_size=0.45 +layer_0_z_overlap=0.15 +material_initial_print_temperature=265 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=7.347880794884119e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=18 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=265 diff --git a/stress_benchmark/resources/040.wkt b/stress_benchmark/resources/040.wkt new file mode 100644 index 0000000000..130784e163 --- /dev/null +++ b/stress_benchmark/resources/040.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((402121 100550, 402567 100684, 402759 100844, 402807 101064, 401914 110025, 400645 123031, 400840 125036, 412494 125403, 412515 125536, 412689 125681, 412692 125682, 412697 125681, 412886 125554, 412921 125416, 412494 125403, 412482 125323, 412824 123054, 412443 115525, 411786 101283, 411841 101065, 412038 100914, 412374 100830, 412847 100812, 413937 100844, 415387 100946, 415816 101100, 415997 101269, 416032 101492, 414220 113794, 412824 123054, 412940 125344, 412921 125416, 417267 125553, 426762 126450, 426775 126570, 426932 126714, 427112 126603, 427148 126487, 426762 126450, 426751 126354, 427169 124222, 427138 113717, 427083 102299, 427152 102085, 427359 101944, 427819 101854, 429295 101967, 430768 102138, 431204 102315, 431380 102493, 431406 102716, 429574 111944, 427169 124222, 427175 126397, 427148 126487, 434465 127178, 438949 127888, 438957 128037, 439116 128200, 439121 128202, 439139 128201, 439338 128092, 439387 127958, 438949 127888, 438946 127822, 439526 125509, 439883 118011, 440616 103833, 440691 103621, 440900 103490, 441350 103419, 442776 103601, 444194 103840, 444602 104034, 444763 104219, 444776 104444, 441784 116510, 439526 125509, 439413 127888, 439387 127958, 451528 129881, 453033 130218, 453033 130219, 453037 130437, 453189 130606, 453204 130612, 453217 130612, 453421 130512, 453500 130322, 453033 130218, 453735 127862, 454687 117762, 455749 106320, 455838 106115, 456054 105994, 456514 105947, 457942 106195, 459360 106501, 459772 106719, 459927 106913, 459930 107138, 457215 116176, 453735 127862, 453504 130312, 453500 130322, 465054 132905, 465046 133079, 465187 133256, 465208 133266, 465235 133267, 465444 133176, 465522 133010, 465054 132905, 465056 132863, 465895 130508, 466965 123133, 469045 109151, 469142 108948, 469360 108836, 469816 108811, 471211 109126, 472593 109500, 472981 109732, 473123 109933, 473114 110157, 468964 121890, 465895 130508, 465536 132980, 465522 133010, 468387 133650, 478829 136684, 478819 136820, 478954 137004, 478982 137019, 479010 137021, 479223 136940, 479289 136817, 478829 136684, 478835 136602, 479825 134163, 481707 124432, 483880 113088, 483987 112892, 484212 112791, 484668 112787, 486052 113167, 487422 113606, 487801 113860, 487935 114067, 487915 114291, 484347 123023, 479825 134163, 479325 136749, 479289 136817, 484977 138470, 490555 140478, 490535 140616, 490658 140806, 490677 140817, 490703 140821, 490919 140751, 490989 140635, 490555 140478, 490566 140402, 491622 138152, 493407 130870, 496812 117182, 496927 116988, 497157 116899, 497614 116918, 498978 117368, 500325 117876, 500688 118145, 500811 118358, 500781 118581, 495501 129890, 491622 138152, 491031 140565, 490989 140635, 501231 144322, 503912 145482, 503880 145664, 503996 145860, 504027 145880, 504057 145886, 504276 145826, 504372 145681, 503912 145482, 503918 145450, 505153 143088, 507945 133654, 511214 122536, 511340 122350, 511572 122271, 512024 122311, 513360 122820, 514675 123386, 515028 123675, 515139 123893, 515099 124114, 510728 132424, 505153 143088, 504396 145645, 504372 145681, 515236 150382, 515187 150582, 515293 150782, 515299 150787, 515309 150789, 515531 150741, 515660 150567, 515660 150566, 515236 150382, 515239 150372, 516429 148368, 518954 141146, 523657 127844, 523790 127663, 524030 127597, 524486 127662, 525818 128250, 527119 128887, 527464 129196, 527568 129421, 527518 129640, 521140 140434, 516429 148368, 515660 150566, 517085 151182, 528024 156756, 527986 156893, 528083 157099, 528106 157117, 528123 157122, 528347 157083, 528441 156968, 528024 156756, 528044 156684, 529450 154528, 533167 145343, 537498 134570, 537642 134398, 537881 134342, 538331 134426, 539613 135064, 540873 135757, 541196 136078, 541286 136307, 541225 136523, 536114 144308, 529450 154528, 528484 156915, 528441 156968, 532478 159025, 538810 162770, 538769 162884, 538847 163072, 539049 163048, 539129 162959, 538810 162770, 538842 162681, 540043 161044, 543360 153855, 549332 141033, 549483 140867, 549730 140826, 550192 140942, 551479 141667, 552739 142442, 553059 142786, 553144 143022, 553072 143235, 545636 153423, 540043 161044, 539193 162887, 539129 162959, 547347 167819, 550927 170252, 550876 170385, 550956 170601, 550969 170613, 550983 170619, 551211 170605, 551307 170510, 550927 170252, 550954 170182, 552536 168209, 557140 159389, 562488 149077, 562648 148919, 562893 148889, 563332 149016, 564565 149785, 565763 150605, 566059 150959, 566129 151196, 566048 151406, 560268 158565, 552536 168209, 551365 170452, 551307 170510, 560945 177060, 560942 177064, 560852 177260, 560903 177435, 561088 177430, 561247 177285, 561255 177271, 560945 177060, 562203 175648, 566108 168965, 573440 156507, 573607 156356, 573857 156340, 574300 156495, 575510 157341, 576685 158230, 576970 158601, 577031 158844, 576940 159050, 568764 168284, 562203 175648, 561255 177271, 561635 177529, 572499 185956, 572428 186095, 572486 186318, 572497 186331, 572512 186339, 572741 186349, 572870 186244, 572499 185956, 572526 185902, 574302 184091, 579493 176182, 586095 166048, 586270 165906, 586518 165900, 586941 166069, 588093 166956, 589208 167890, 589465 168269, 589511 168512, 589410 168713, 583298 174914, 574302 184091, 572910 186211, 572870 186244, 575285 188117, 581473 193572, 581414 193674, 581453 193873, 581657 193888, 581751 193818, 581473 193572, 581522 193487, 583026 192096, 587296 186159, 595929 174219, 596110 174084, 596360 174092, 596791 174293, 597915 175252, 599003 176253, 599252 176653, 599290 176900, 599180 177097, 590390 185285, 583026 192096, 581830 193759, 581751 193818, 588244 199542, 592330 203628, 592260 203741, 592292 203967, 592303 203983, 592326 203998, 592553 204028, 592659 203957, 592330 203628, 592375 203557, 594360 201890, 600242 194598, 607827 185134, 608015 185010, 608261 185026, 608666 185235, 609712 186217, 610717 187240, 610936 187642, 610958 187887, 610837 188077, 604107 193705, 594360 201890, 592733 203907, 592659 203957, 600459 211757, 600650 211973, 600621 211995, 600495 212171, 600517 212397, 600521 212404, 600531 212411, 600755 212449, 600939 212336, 600954 212319, 600650 211973, 602485 210576, 607188 205222, 616865 194255, 617056 194138, 617301 194166, 617702 194400, 618713 195443, 619680 196524, 619883 196940, 619895 197188, 619766 197372, 610235 204676, 602485 210576, 600954 212319, 610434 223073, 610312 223232, 610321 223460, 610336 223487, 610366 223511, 610589 223562, 610776 223460, 610434 223073, 610444 223060, 612660 221538, 619121 214942, 627611 206226, 627810 206120, 628052 206159, 628436 206405, 629378 207478, 630277 208591, 630456 209011, 630453 209257, 630314 209433, 623059 214398, 612660 221538, 610780 223458, 610776 223460, 611883 224716, 617790 232330, 617705 232426, 617705 232653, 617715 232674, 617735 232691, 617954 232751, 618072 232694, 617790 232330, 617849 232263, 619975 230946, 625107 226135, 635748 216201, 635950 216102, 636190 216153, 636562 216419, 637459 217543, 638096 218411, 638347 218807, 638467 219129, 638453 219375, 638306 219545, 628109 225907, 619975 230946, 618150 232657, 618072 232694, 622471 238365, 626502 244297, 626412 244391, 626401 244618, 626414 244649, 626436 244670, 626653 244740, 626770 244691, 626502 244297, 626562 244233, 628874 242955, 635949 237000, 645263 229120, 645471 229035, 645709 229097, 646070 229384, 646907 230546, 647699 231746, 647836 232181, 647809 232425, 647654 232588, 639979 236816, 628874 242955, 626853 244656, 626770 244691, 632181 252654, 633039 254105, 632884 254250, 632863 254477, 632873 254503, 632890 254521, 633102 254600, 633291 254530, 633039 254105, 633042 254102, 635301 252988, 640883 248688, 652412 239848, 652621 239770, 652856 239843, 653199 240141, 653981 241341, 654709 242569, 654826 243010, 654788 243252, 654625 243407, 643848 248771, 635301 252988, 633305 254525, 633291 254530, 640590 266871, 640569 266880, 640405 267022, 640374 267248, 640380 267266, 640388 267276, 640597 267367, 640805 267303, 640834 267283, 640590 266871, 642848 265895, 650574 260568, 660621 253605, 660837 253540, 661069 253627, 661401 253948, 662131 255203, 662812 256492, 662909 256940, 662860 257182, 662691 257330, 654711 260765, 642848 265895, 640834 267283, 640976 267523, 645990 277364, 645888 277443, 645846 277666, 645850 277683, 645857 277691, 646060 277790, 646190 277756, 645990 277364, 646059 277310, 648302 276461, 654364 272661, 666704 264972, 666920 264913, 667147 265010, 667382 265258, 667627 265659, 668125 266614, 668735 267912, 668808 268363, 668747 268602, 668570 268740, 657295 273058, 648302 276461, 646270 277735, 646190 277756, 648819 282916, 652252 290851, 652156 290919, 652107 291127, 652292 291232, 652407 291208, 652252 290851, 652332 290794, 654418 290123, 662858 285428, 673543 279448, 673764 279405, 673988 279518, 674293 279879, 674907 281223, 675473 282592, 675530 283060, 675459 283300, 675277 283431, 667120 286039, 654418 290123, 652504 291188, 652407 291208, 655679 298770, 656720 301662, 656581 301751, 656517 301969, 656517 301971, 656521 301977, 656715 302100, 656869 302076, 656720 301662, 656764 301634, 658999 301031, 665426 297816, 678499 291333, 678720 291297, 678937 291417, 679217 291778, 679762 293127, 680248 294490, 680280 294952, 680197 295185, 680008 295308, 668352 298508, 658999 301031, 656928 302067, 656869 302076, 661531 315024, 661657 315456, 661640 315460, 661453 315567, 661390 315749, 661547 315858, 661761 315833, 661765 315831, 661657 315456, 663614 315025, 672997 310933, 683834 306177, 684059 306155, 684270 306288, 684536 306674, 685018 308067, 685448 309478, 685459 309947, 685366 310180, 685172 310293, 676374 312213, 663614 315025, 661765 315831, 665018 327028, 664898 327089, 664813 327299, 664816 327306, 664995 327447, 665137 327438, 665018 327028, 665092 326991, 667355 326615, 674397 323926, 687739 318900, 687963 318886, 688167 319026, 688412 319417, 688822 320810, 689171 322213, 689158 322677, 689052 322901, 688852 323004, 676591 325082, 667355 326615, 665211 327434, 665137 327438, 666350 331614, 668431 340921, 668321 340970, 668234 341163, 668394 341301, 668515 341298, 668431 340921, 668518 340881, 670671 340620, 680657 337344, 691499 333763, 691725 333763, 691923 333915, 692094 334223, 692239 334686, 692498 335764, 692791 337217, 692758 337687, 692643 337909, 692439 338003, 683096 339113, 670671 340620, 668610 341296, 668515 341298, 670119 348473, 670829 352957, 670690 353010, 670585 353210, 670585 353217, 670591 353233, 670756 353389, 670899 353394, 672822 365536, 672967 367070, 672964 367070, 672759 367140, 672645 367338, 672644 367353, 672649 367368, 672807 367531, 673012 367546, 674126 379333, 673957 379380, 673832 379568, 673829 379590, 673837 379618, 673987 379788, 674171 379812, 674447 382734, 674789 393602, 674656 393633, 674523 393819, 674517 393852, 674523 393878, 674666 394055, 674804 394080, 674990 400000, 674804 405926, 674666 405951, 674523 406126, 674518 406147, 674523 406173, 674656 406357, 674789 406388, 674447 417267, 674172 420176, 673988 420202, 673837 420373, 673828 420406, 673832 420438, 673957 420629, 674125 420676, 673011 432459, 672806 432475, 672648 432637, 672645 432645, 672646 432654, 672760 432851, 672966 432920, 672967 432920, 672821 434465, 670901 446591, 670758 446598, 670592 446756, 670583 446781, 670583 446797, 670689 446999, 670828 447053, 670119 451528, 668514 458708, 668608 458710, 670538 459347, 678399 460280, 692438 461998, 692643 462090, 692758 462313, 692792 462786, 692498 464236, 692152 465673, 691923 466085, 691725 466237, 691500 466236, 679513 462311, 670538 459347, 668521 459108, 668433 459069, 668514 458708, 668393 458705, 668239 458836, 668324 459020, 668433 459069, 666350 468387, 665142 472544, 665217 472548, 667582 473443, 677393 475097, 688853 476995, 689052 477099, 689158 477323, 689171 477783, 688822 479190, 688414 480580, 688167 480974, 687963 481114, 687738 481101, 679143 477816, 667582 473443, 665088 473022, 665014 472984, 665142 472544, 665000 472537, 664819 472680, 664811 472697, 664810 472710, 664895 472923, 665014 472984, 661763 484175, 663496 484936, 671060 486585, 685171 489708, 685366 489820, 685460 490053, 685449 490522, 685018 491933, 684535 493328, 684270 493712, 684059 493845, 683835 493822, 672526 488900, 663496 484936, 661658 484535, 661763 484175, 661758 484173, 661544 484149, 661393 484252, 661455 484426, 661643 484532, 661658 484535, 661530 484977, 656873 497913, 656933 497922, 659203 499051, 668330 501545, 680009 504692, 680197 504815, 680280 505048, 680248 505507, 679762 506873, 679219 508220, 678937 508583, 678720 508703, 678498 508668, 670712 504772, 659203 499051, 656757 498382, 656714 498354, 656873 497913, 656718 497890, 656526 498012, 656514 498031, 656512 498044, 656575 498265, 656714 498354, 655678 501231, 652402 508801, 652499 508822, 654288 509823, 661252 512049, 675276 516570, 675459 516700, 675530 516940, 675472 517412, 674907 518777, 674293 520120, 673988 520482, 673764 520595, 673544 520551, 663040 514721, 654288 509823, 652335 509199, 652255 509142, 652402 508801, 652288 508776, 652111 508875, 652159 509075, 652255 509142, 648818 517085, 646194 522235, 646275 522255, 648471 523626, 657227 526969, 668571 531258, 668747 531398, 668808 531637, 668735 532086, 668125 533386, 667463 534656, 667147 534990, 666920 535086, 666703 535029, 659271 530369, 648471 523626, 646053 522703, 645983 522649, 646194 522235, 646064 522202, 645860 522303, 645847 522320, 645840 522345, 645882 522570, 645983 522649, 640975 532478, 640829 532726, 642728 534042, 649269 536858, 662690 542671, 662860 542818, 662909 543060, 662812 543510, 662131 544797, 661399 546053, 661069 546373, 660837 546460, 660622 546394, 650730 539587, 642728 534042, 640594 533123, 640829 532726, 640799 532705, 640593 532639, 640385 532730, 640380 532736, 640376 532748, 640408 532972, 640573 533114, 640594 533123, 633295 545464, 633309 545469, 635428 547096, 643713 551210, 654626 556592, 654788 556748, 654826 556990, 654710 557430, 653981 558659, 653200 559858, 652856 560157, 652621 560230, 652411 560153, 645448 554789, 635428 547096, 633036 545908, 633033 545906, 633295 545464, 633105 545395, 632892 545475, 632869 545499, 632857 545532, 632878 545759, 633033 545906, 632181 547347, 626764 555317, 626846 555353, 628746 556960, 634917 560360, 647653 567413, 647809 567575, 647836 567819, 647698 568255, 646907 569454, 646069 570617, 645709 570903, 645470 570966, 645264 570879, 636062 563148, 628746 556960, 626566 555759, 626506 555697, 626764 555317, 626648 555266, 626432 555336, 626414 555353, 626404 555377, 626415 555604, 626506 555697, 622470 561635, 618075 567301, 618154 567339, 620082 569141, 627935 574031, 638307 580454, 638452 580626, 638467 580871, 638306 581302, 637459 582457, 636564 583580, 636191 583847, 635950 583897, 635747 583799, 629355 577807, 620082 569141, 617842 567746, 617783 567678, 618075 567301, 617958 567245, 617738 567304, 617713 567326, 617700 567353, 617700 567582, 617783 567678, 611883 575285, 610768 576549, 610771 576551, 612524 578350, 618342 582333, 630313 590568, 630453 590743, 630456 590989, 630277 591409, 629378 592522, 628432 593597, 628052 593841, 627810 593880, 627612 593773, 619180 585181, 612524 578350, 610451 576931, 610442 576920, 610768 576549, 610581 576447, 610359 576495, 610339 576511, 610326 576535, 610316 576761, 610442 576920, 600959 587675, 602586 589521, 610039 595223, 619767 602626, 619895 602812, 619883 603060, 619680 603474, 618713 604557, 617701 605601, 617301 605833, 617056 605862, 616864 605746, 611130 599219, 602586 589521, 600642 588035, 600959 587675, 600944 587658, 600758 587547, 600534 587586, 600519 587597, 600512 587608, 600489 587835, 600614 588013, 600642 588035, 600458 588244, 592649 596053, 592722 596103, 594220 597971, 599709 602564, 610836 611924, 610958 612112, 610936 612358, 610717 612760, 609712 613783, 608670 614762, 608261 614974, 608015 614990, 607828 614865, 600237 605475, 594220 597971, 592383 596434, 592338 596364, 592649 596053, 592543 595981, 592318 596009, 592305 596017, 592298 596028, 592265 596253, 592338 596364, 588243 600459, 581757 606177, 581837 606236, 583121 608015, 590192 614589, 599181 622902, 599290 623100, 599252 623347, 599003 623747, 597915 624748, 597070 625469, 596680 625759, 596360 625908, 596110 625915, 595928 625782, 590928 618831, 583121 608015, 581514 606521, 581465 606434, 581757 606177, 581662 606108, 581449 606124, 581407 606332, 581465 606434, 575284 611883, 572856 613767, 572896 613800, 574158 615736, 579203 620856, 589409 631288, 589511 631488, 589465 631731, 589208 632109, 588093 633044, 586942 633930, 586518 634100, 586270 634093, 586096 633952, 579450 623855, 574158 615736, 572536 614090, 572509 614036, 572856 613767, 572729 613662, 572501 613669, 572495 613676, 572438 613896, 572509 614036, 561635 622471, 561262 622724, 562280 624457, 569068 632112, 576941 640949, 577031 641156, 576970 641399, 576685 641771, 575510 642659, 574299 643505, 573857 643660, 573607 643644, 573439 643494, 568895 635719, 562280 624457, 560939 622944, 561262 622724, 561254 622710, 561093 622566, 560901 622562, 560846 622744, 560936 622941, 560939 622944, 551295 629497, 551353 629556, 552411 631595, 557144 637459, 566047 648595, 566129 648804, 566059 649041, 565764 649395, 564564 650215, 563334 650984, 562893 651111, 562648 651080, 562488 650922, 556723 639904, 552411 631595, 550969 629808, 550942 629738, 551295 629497, 551201 629402, 550975 629387, 550972 629388, 550968 629392, 550890 629606, 550942 629738, 547346 632181, 539138 637036, 539203 637107, 540120 639081, 546317 647559, 553073 656764, 553144 656978, 553059 657214, 552819 657472, 552424 657752, 551479 658332, 550190 659059, 549730 659173, 549484 659133, 549331 658968, 545389 650425, 540120 639081, 538835 637323, 538804 637233, 539138 637036, 539056 636948, 538845 636924, 538765 637119, 538804 637233, 532477 640976, 528432 643037, 528475 643090, 529366 645306, 533482 651576, 541224 663478, 541286 663693, 541196 663922, 540874 664241, 539613 664936, 538333 665573, 537881 665658, 537642 665602, 537499 665429, 532828 653909, 529366 645306, 528056 643309, 528036 643239, 528432 643037, 528339 642921, 528115 642883, 528108 642885, 528094 642896, 527997 643101, 528036 643239, 517084 648819, 515671 649430, 516491 651759, 521652 660480, 527518 670359, 527568 670579, 527464 670804, 527118 671114, 525818 671750, 524484 672338, 524030 672403, 523791 672337, 523656 672157, 520540 663247, 516491 651759, 515233 649632, 515230 649621, 515671 649430, 515670 649428, 515539 649255, 515315 649208, 515301 649212, 515289 649220, 515182 649422, 515230 649621, 504365 654323, 504388 654358, 505096 656762, 508563 663353, 515098 675886, 515139 676107, 515028 676325, 514674 676613, 513360 677180, 512026 677689, 511572 677729, 511340 677650, 511215 677463, 507676 665531, 505096 656762, 503929 654545, 503923 654514, 504365 654323, 504269 654177, 504051 654116, 504029 654120, 504005 654136, 503890 654331, 503923 654514, 501230 655679, 491000 659362, 491042 659431, 491675 661988, 495873 670964, 500782 681418, 500811 681642, 500688 681855, 500323 682126, 498978 682632, 497611 683082, 497157 683101, 496927 683012, 496811 682819, 494565 673657, 491675 661988, 490559 659601, 490549 659525, 491000 659362, 490928 659246, 490710 659177, 490675 659182, 490653 659195, 490530 659386, 490549 659525, 484976 661531, 479282 663185, 479318 663253, 479786 665695, 482622 672634, 487914 685710, 487935 685933, 487801 686140, 487423 686393, 486052 686832, 484668 687213, 484212 687209, 483987 687108, 483880 686911, 481505 674658, 479786 665695, 478846 663394, 478839 663314, 479282 663185, 479217 663061, 479006 662980, 478984 662982, 478961 662994, 478828 663178, 478839 663314, 468386 666350, 465535 666987, 465549 667016, 465939 669656, 469225 678927, 473115 689843, 473123 690067, 472981 690268, 472589 690503, 471211 690873, 469814 691189, 469360 691164, 469142 691052, 469044 690850, 467696 681557, 465939 669656, 465047 667140, 465045 667097, 465535 666987, 465453 666821, 465244 666731, 465208 666733, 465180 666746, 465039 666923, 465045 667097, 453494 669679, 453498 669690, 453713 672009, 455915 679337, 459929 692863, 459927 693087, 459772 693281, 459364 693497, 457942 693805, 456869 693992, 456398 694041, 456054 694006, 455838 693885, 455749 693679, 454565 681197, 453713 672009, 453043 669780, 453494 669679, 453416 669489, 453213 669388, 453207 669388, 453197 669392, 453044 669562, 453043 669779, 453043 669780, 451527 670119, 439401 672040, 439427 672108, 439557 674672, 441950 684295, 444777 695555, 444763 695781, 444601 695966, 444191 696162, 442776 696399, 441345 696580, 440899 696510, 440691 696379, 440615 696168, 440173 686864, 439557 674672, 438937 672181, 438941 672113, 439401 672040, 439351 671906, 439150 671797, 439124 671796, 439107 671802, 438949 671964, 438941 672113, 434464 672822, 427141 673514, 427168 673605, 427158 675639, 428700 683400, 431405 697285, 431380 697507, 431204 697685, 430772 697861, 429295 698033, 427824 698147, 427359 698056, 427152 697915, 427084 697700, 427113 685088, 427158 675639, 426762 673644, 426772 673549, 427141 673514, 427106 673397, 426933 673290, 426784 673429, 426772 673549, 417266 674447, 412939 674583, 412958 674654, 412839 677168, 414300 687025, 416033 698507, 415997 698731, 415816 698900, 415383 699056, 413937 699156, 412484 699197, 412038 699086, 411842 698935, 411785 698718, 412253 689528, 412839 677168, 412470 674679, 412482 674597, 412939 674583, 412902 674446, 412711 674318, 412693 674316, 412679 674319, 412502 674465, 412482 674597, 400833 674964, 400646 676836, 401416 684547, 402806 698935, 402759 699156, 402567 699316, 402231 699417, 401750 699458, 400642 699478, 399173 699451, 398719 699315, 398527 699155, 398480 698935, 399665 686658, 400646 676836, 400460 674976, 400833 674964, 400833 674959, 400792 674747, 400647 674635, 400500 674747, 400458 674959, 400460 674976, 400000 674990, 386256 674558, 386232 674403, 386056 674257, 386038 674253, 386022 674255, 385831 674382, 385789 674543, 386256 674558, 386266 674618, 385896 677117, 386344 686577, 386959 698656, 386901 698872, 386705 699023, 386264 699135, 384809 699096, 383363 698995, 382928 698839, 382747 698669, 382711 698447, 384011 689838, 385896 677117, 385776 674592, 385789 674543, 382734 674447, 374522 673671, 374509 673554, 374360 673415, 374185 673523, 374150 673636, 374522 673671, 374532 673768, 374131 675786, 374167 683091, 374201 697825, 374133 698040, 373927 698181, 373463 698272, 371988 698156, 370515 697985, 370082 697809, 369905 697631, 369878 697408, 372178 685618, 374131 675786, 374121 673730, 374150 673636, 365535 672822, 359825 671917, 359817 671783, 359658 671621, 359635 671613, 359611 671614, 359412 671724, 359367 671845, 359825 671917, 359830 672001, 359206 674510, 358733 683872, 358159 695988, 358081 696198, 357872 696329, 357424 696399, 355998 696220, 354585 695983, 354169 695786, 354008 695600, 353995 695376, 356130 686869, 359206 674510, 359336 671927, 359367 671845, 348472 670119, 348190 670056, 348201 670021, 348200 669805, 348050 669636, 348040 669632, 348030 669632, 347827 669733, 347743 669933, 347741 669956, 348190 670056, 347527 672267, 346869 679360, 345487 693921, 345400 694128, 345185 694249, 344720 694296, 343293 694045, 341873 693738, 341466 693523, 341311 693329, 341307 693104, 344726 681593, 347527 672267, 347741 669956, 333749 666827, 333756 666626, 333613 666448, 333583 666434, 333548 666432, 333338 666522, 333246 666715, 333749 666827, 333748 666843, 332854 669367, 331502 678511, 329756 690554, 329658 690755, 329439 690866, 328991 690892, 327591 690579, 326212 690208, 325818 689971, 325675 689771, 325685 689546, 328636 681266, 332854 669367, 333245 666718, 333246 666715, 331613 666350, 322358 663661, 322370 663535, 322238 663351, 322218 663340, 322191 663338, 321978 663418, 321917 663533, 322358 663661, 322350 663750, 321407 666059, 320082 672973, 317310 687265, 317204 687464, 316980 687565, 316521 687568, 315138 687186, 313770 686747, 313390 686495, 313256 686288, 313275 686064, 317785 674924, 321407 666059, 321876 663609, 321917 663533, 315023 661530, 308277 659101, 308293 658972, 308169 658781, 308141 658764, 308110 658760, 307893 658830, 307827 658939, 308277 659101, 308266 659188, 307143 661590, 304921 670558, 302018 682407, 301900 682598, 301672 682687, 301215 682668, 299851 682220, 298508 681716, 298138 681442, 298016 681229, 298046 681006, 301770 673074, 307143 661590, 307780 659016, 307827 658939, 298770 655678, 297222 655008, 297263 654800, 297148 654604, 297127 654590, 297099 654585, 296880 654645, 296769 654812, 297222 655008, 297221 655012, 296050 657240, 294061 664001, 289930 677929, 289806 678116, 289573 678195, 289119 678155, 287783 677644, 286470 677078, 286118 676790, 286006 676572, 286047 676351, 291614 665676, 296050 657240, 296760 654825, 296769 654812, 283610 649118, 283621 649099, 283669 648887, 283563 648687, 283546 648675, 283535 648672, 283312 648720, 283182 648894, 283170 648928, 283610 649118, 282357 651236, 279237 660086, 275202 671626, 275066 671805, 274826 671870, 274367 671804, 273041 671220, 271737 670582, 271391 670272, 271288 670047, 271339 669828, 275774 662359, 282357 651236, 283170 648928, 282916 648818, 273074 643804, 273110 643681, 273014 643476, 273002 643467, 272990 643463, 272766 643500, 272682 643604, 273074 643804, 273050 643888, 271734 645892, 269064 652530, 263600 666005, 263459 666180, 263219 666235, 262769 666151, 261484 665510, 260225 664816, 259904 664498, 259812 664269, 259874 664053, 266458 653932, 271734 645892, 272629 643669, 272682 643604, 267523 640975, 260080 636573, 260118 636462, 260036 636265, 259825 636289, 259746 636375, 260080 636573, 260048 636667, 258756 638435, 254686 647195, 249558 658313, 249403 658478, 249156 658518, 248699 658405, 247410 657679, 246151 656906, 245827 656559, 245743 656323, 245814 656110, 250880 649206, 258756 638435, 259678 636449, 259746 636375, 252654 632181, 250111 630453, 250171 630300, 250094 630086, 250093 630085, 250086 630082, 249858 630096, 249748 630206, 250111 630453, 250092 630501, 248642 632298, 245331 638680, 238563 651610, 238405 651770, 238159 651801, 237719 651673, 236486 650902, 235290 650083, 234994 649730, 234924 649492, 235005 649282, 242555 639842, 248642 632298, 249705 630249, 249748 630206, 238365 622471, 238009 622195, 238020 622183, 238108 621985, 238052 621801, 237862 621805, 237703 621952, 237701 621956, 238009 622195, 236679 623695, 231494 632521, 225521 642738, 225353 642887, 225103 642904, 224661 642750, 223453 641906, 222274 641015, 221990 640643, 221928 640400, 222019 640194, 228009 633470, 236679 623695, 237701 621956, 228488 614809, 228550 614690, 228494 614469, 228487 614465, 228259 614457, 228149 614547, 228488 614809, 228450 614882, 226837 616519, 222723 622831, 214883 634740, 214710 634883, 214463 634890, 214035 634718, 212886 633830, 211776 632901, 211516 632519, 211469 632276, 211571 632075, 220268 623187, 226837 616519, 228092 614594, 228149 614547, 224715 611883, 217561 605576, 217621 605471, 217577 605263, 217367 605247, 217270 605320, 217561 605576, 217514 605660, 215919 607143, 209772 615657, 203105 624926, 202923 625058, 202673 625051, 202245 624852, 201121 623894, 200029 622890, 199781 622490, 199743 622244, 199853 622047, 206759 615659, 215919 607143, 217194 605377, 217270 605320, 211756 600458, 208546 597248, 208627 597124, 208595 596900, 208591 596894, 208576 596884, 208351 596855, 208233 596934, 208546 597248, 208509 597305, 206681 598835, 201985 604690, 193058 615731, 192872 615857, 192627 615842, 192222 615633, 191173 614649, 190169 613625, 189953 613226, 189931 612980, 190052 612791, 199564 604788, 206681 598835, 208171 596976, 208233 596934, 199542 588243, 198522 587087, 198523 587086, 198647 586907, 198624 586680, 198616 586668, 198603 586658, 198379 586619, 198205 586727, 198522 587087, 196563 588585, 189862 596191, 182278 604823, 182085 604938, 181839 604908, 181440 604678, 180430 603636, 179458 602548, 179257 602136, 179246 601889, 179375 601705, 186884 595989, 196563 588585, 198195 586733, 198205 586727, 190375 577846, 190484 577711, 190475 577484, 190465 577466, 190443 577448, 190220 577398, 190057 577486, 190375 577846, 190349 577879, 188282 579294, 183084 584629, 173184 594718, 172987 594825, 172745 594787, 172364 594543, 171417 593465, 170520 592353, 170342 591934, 170345 591689, 170484 591512, 180738 584459, 188282 579294, 190029 577501, 190057 577486, 188117 575285, 181452 566693, 181541 566589, 181540 566360, 181527 566333, 181504 566313, 181285 566254, 181159 566315, 181452 566693, 181400 566754, 179166 568145, 171924 574913, 163499 582812, 163295 582909, 163054 582858, 162682 582593, 161787 581471, 160937 580313, 160778 579884, 160792 579638, 160939 579468, 168957 574502, 179166 568145, 181089 566348, 181159 566315, 177529 561635, 174196 556730, 174293 556630, 174305 556404, 174296 556384, 174278 556366, 174062 556296, 173937 556349, 174196 556730, 174142 556786, 171963 557987, 166241 562827, 155440 571900, 155235 571989, 154996 571926, 154638 571643, 153798 570476, 153009 569280, 152871 568842, 152898 568598, 153053 568435, 163971 562390, 171963 557987, 173862 556380, 173937 556349, 167819 547346, 166332 544831, 166464 544702, 166485 544476, 166471 544439, 166452 544419, 166239 544340, 166076 544399, 166332 544831, 166308 544854, 163917 546041, 156116 552030, 146937 559103, 146726 559180, 146491 559107, 146234 558883, 145952 558509, 145368 557611, 144820 556688, 144608 556270, 144520 555940, 144559 555698, 144721 555542, 153142 551389, 163917 546041, 166036 544414, 166076 544399, 160051 534212, 160207 534079, 160240 533854, 160237 533845, 160232 533839, 160023 533747, 159816 533813, 159815 533813, 160051 534212, 160042 534219, 157898 535143, 151613 539498, 139990 547495, 139776 547563, 139544 547475, 139213 547156, 138480 545897, 137801 544611, 137705 544163, 137753 543920, 137922 543772, 149426 538791, 157898 535143, 159815 533813, 159025 532477, 153451 521537, 153562 521448, 153603 521223, 153596 521197, 153586 521184, 153382 521084, 153239 521122, 153451 521537, 153393 521584, 150990 522501, 142583 527748, 132747 533917, 132529 533972, 132302 533877, 131990 533548, 131326 532276, 130715 530975, 130640 530524, 130701 530286, 130878 530147, 139590 526853, 150990 522501, 153173 521139, 153239 521122, 151182 517084, 148260 510332, 148360 510264, 148408 510067, 148231 509968, 148113 509993, 148260 510332, 148182 510386, 146247 511004, 139339 514871, 126971 521734, 126751 521779, 126527 521667, 126223 521304, 125607 519959, 125044 518595, 124986 518124, 125057 517884, 125240 517753, 137244 513883, 146247 511004, 148019 510013, 148113 509993, 144321 501230, 142855 497157, 142974 497079, 143036 496858, 143033 496841, 143025 496828, 142832 496705, 142699 496725, 142855 497157, 142793 497198, 140351 497865, 131443 502294, 121056 507493, 120834 507526, 120616 507407, 120334 507042, 119793 505699, 119304 504328, 119272 503871, 119356 503638, 119544 503517, 128429 501122, 140351 497865, 142618 496738, 142699 496725, 138751 485761, 138756 485760, 138945 485654, 139007 485482, 138855 485377, 138640 485402, 138624 485409, 138751 485761, 136906 486163, 129817 489276, 116562 495045, 116339 495068, 116127 494935, 115862 494550, 115377 493154, 114949 491742, 114938 491276, 115032 491043, 115226 490930, 127267 488265, 136906 486163, 138624 485409, 138469 484977, 134634 471774, 134773 471701, 134856 471488, 134854 471467, 134848 471454, 134668 471313, 134503 471323, 134634 471774, 134581 471801, 132080 472222, 123230 475569, 111933 479887, 111707 479899, 111503 479759, 111259 479370, 110850 477978, 110586 476922, 110501 476453, 110512 476109, 110617 475885, 110817 475783, 119407 474358, 132080 472222, 134451 471326, 134503 471323, 133650 468387, 131850 460336, 131958 460289, 132043 460106, 131887 459972, 131769 459974, 131850 460336, 131759 460375, 129731 460616, 122782 462911, 108778 467496, 108554 467499, 108356 467346, 108126 466930, 107779 465494, 107560 464405, 107497 463926, 107522 463575, 107636 463351, 107841 463257, 119764 461799, 129731 460616, 131671 459975, 131769 459974, 129881 451528, 128977 445818, 129101 445768, 129206 445567, 129207 445545, 129198 445522, 129032 445365, 128904 445360, 127178 434464, 127151 434178, 127187 434177, 127394 434109, 127508 433914, 127509 433905, 127505 433894, 127347 433732, 127131 433714, 127108 433719, 127151 434178, 124846 434229, 117894 435797, 103619 438982, 103395 438963, 103214 438796, 103028 438375, 102821 436933, 102711 435850, 102696 435375, 102756 435035, 102892 434827, 103105 434754, 115108 434447, 124846 434229, 127108 433719, 125759 419445, 125953 419390, 126078 419199, 126082 419165, 126073 419132, 125922 418961, 125711 418933, 125553 417266, 125250 407635, 125375 407607, 125509 407423, 125513 407400, 125507 407374, 125365 407197, 125236 407174, 125010 400000, 125235 392832, 125364 392809, 125508 392631, 125515 392601, 125509 392569, 125375 392384, 125250 392355, 125553 382733, 125712 381055, 125923 381029, 126074 380858, 126081 380834, 126077 380807, 125952 380617, 125758 380563, 127107 366288, 124707 365751, 115326 365519, 103104 365247, 102892 365173, 102756 364965, 102676 364509, 102821 363066, 103026 361629, 103214 361204, 103395 361037, 103620 361017, 112094 362927, 124707 365751, 127152 365811, 127107 366288, 127129 366293, 127346 366274, 127504 366111, 127510 366093, 127509 366079, 127394 365882, 127189 365812, 127152 365811, 127178 365535, 128906 354625, 129034 354621, 129200 354467, 129205 354453, 129205 354440, 129100 354239, 128975 354191, 129881 348472, 131768 340033, 131669 340032, 129594 339351, 119997 338186, 107840 336744, 107636 336649, 107522 336425, 107489 335956, 107779 334506, 108124 333073, 108356 332654, 108554 332501, 108779 332502, 116910 335187, 129594 339351, 131762 339614, 131852 339654, 131768 340033, 131886 340034, 132047 339894, 131960 339702, 131852 339654, 133650 331613, 134508 328661, 134457 328658, 132296 327833, 125206 326657, 110818 324216, 110617 324114, 110512 323890, 110497 323429, 110850 322022, 111261 320627, 111503 320241, 111707 320101, 111932 320113, 123244 324376, 132296 327833, 134577 328211, 134630 328239, 134508 328661, 134672 328671, 134851 328532, 134852 328529, 134853 328522, 134769 328310, 134630 328239, 138470 315023, 138622 314600, 136783 313797, 126788 311593, 115225 309071, 115032 308957, 114939 308724, 114950 308258, 115377 306846, 115860 305453, 116127 305065, 116339 304932, 116563 304954, 124809 308573, 136783 313797, 138755 314232, 138622 314600, 138637 314606, 138852 314629, 139010 314519, 138947 314339, 138759 314233, 138755 314232, 142704 303262, 142623 303249, 140566 302220, 133293 300258, 119545 296483, 119356 296362, 119272 296129, 119304 295670, 119793 294301, 120336 292956, 120616 292593, 120834 292474, 121055 292508, 132196 298033, 140566 302220, 142786 302819, 142849 302860, 142704 303262, 142836 303284, 143029 303163, 143030 303162, 143031 303155, 142968 302936, 142849 302860, 144322 298770, 148109 290017, 148015 289997, 146115 288940, 136115 285723, 125239 282248, 125057 282116, 124986 281876, 125044 281408, 125607 280041, 126221 278698, 126527 278333, 126751 278221, 126972 278265, 135182 282859, 146115 288940, 148185 289606, 148263 289661, 148109 290017, 148227 290041, 148412 289936, 148362 289731, 148263 289661, 151182 282915, 153243 278870, 153178 278852, 151161 277587, 144139 274931, 130879 269851, 130701 269714, 130640 269475, 130713 269027, 131326 267724, 131990 266453, 132302 266123, 132529 266027, 132746 266083, 143297 272657, 151161 277587, 153386 278429, 153445 278475, 153243 278870, 153386 278908, 153590 278809, 153593 278806, 153598 278786, 153557 278562, 153445 278475, 159025 267523, 159810 266195, 157779 264795, 148478 260773, 137921 256228, 137753 256080, 137705 255836, 137800 255391, 138480 254103, 139212 252845, 139544 252525, 139776 252438, 139991 252504, 147748 257878, 157779 264795, 160046 265775, 160054 265782, 159810 266195, 159811 266196, 160019 266259, 160228 266167, 160237 266156, 160242 266141, 160210 265916, 160054 265782, 166080 255593, 166041 255578, 164061 254053, 157377 250756, 144722 244457, 144559 244302, 144520 244060, 144638 243618, 145368 242389, 146148 241191, 146491 240893, 146726 240820, 146936 240898, 156813 248471, 164061 254053, 166301 255158, 166325 255180, 166080 255593, 166243 255654, 166455 255575, 166470 255559, 166480 255533, 166459 255306, 166325 255180, 167819 252653, 173931 243660, 173855 243629, 171839 241932, 163168 237138, 153052 231566, 152898 231402, 152871 231158, 153008 230722, 153798 229524, 154637 228358, 154996 228074, 155235 228011, 155441 228099, 162643 234191, 171839 241932, 174147 243208, 174200 243264, 173931 243660, 174057 243711, 174274 243640, 174297 243618, 174308 243592, 174296 243365, 174200 243264, 177529 238365, 181163 233680, 181093 233646, 179276 231943, 172907 227998, 160940 220531, 160792 220361, 160778 220116, 160937 219687, 161787 218528, 162681 217408, 163054 217142, 163295 217091, 163498 217188, 172622 225705, 179276 231943, 181393 233254, 181446 233315, 181163 233680, 181288 233742, 181507 233684, 181522 233670, 181534 233647, 181535 233419, 181446 233315, 188117 224715, 190050 222523, 190021 222508, 188153 220600, 180047 215032, 170483 208489, 170345 208311, 170342 208066, 170520 207645, 171417 206535, 172361 205459, 172745 205213, 172987 205175, 173185 205281, 179737 212006, 188153 220600, 190355 222113, 190381 222147, 190050 222523, 190214 222609, 190436 222560, 190465 222537, 190479 222511, 190489 222283, 190381 222147, 198209 213268, 198200 213262, 196662 211512, 190574 206877, 179376 198294, 179245 198112, 179257 197864, 179463 197445, 180430 196364, 181439 195323, 181839 195091, 182085 195062, 182278 195177, 190571 204578, 196662 211512, 198514 212922, 198209 213268, 198383 213376, 198607 213338, 198612 213334, 198618 213325, 198642 213098, 198515 212922, 198514 212922, 199542 211756, 208223 203075, 208161 203034, 206545 201031, 198957 194658, 190051 187210, 189931 187019, 189953 186774, 190168 186376, 191173 185351, 192223 184367, 192627 184158, 192872 184143, 193059 184268, 198884 191535, 206545 201031, 208517 202687, 208554 202744, 208223 203075, 208342 203154, 208569 203123, 208591 203108, 208601 203094, 208634 202869, 208554 202744, 211757 199541, 217276 194676, 217200 194618, 216010 192963, 210203 187593, 199854 177952, 199743 177756, 199781 177509, 200028 177111, 201121 176106, 202243 175150, 202673 174949, 202923 174941, 203104 175075, 210495 185296, 216010 192963, 217506 194347, 217554 194430, 217276 194676, 217371 194749, 217573 194735, 217614 194534, 217554 194430, 224716 188117, 228136 185464, 228077 185417, 226689 183302, 219725 176197, 211570 167926, 211469 167724, 211516 167481, 211711 167196, 212052 166868, 212886 166170, 214036 165282, 214463 165110, 214710 165117, 214884 165259, 219907 172969, 226689 183302, 228460 185109, 228498 185183, 228136 185464, 228247 185553, 228476 185543, 228494 185533, 228502 185524, 228559 185302, 228498 185183, 237707 178040, 236754 176411, 231603 170629, 222020 159805, 221928 159600, 221990 159357, 222274 158986, 223453 158094, 224660 157251, 225103 157096, 225353 157113, 225520 157263, 231776 167891, 236754 176411, 238002 177811, 237707 178040, 237709 178044, 237867 178190, 238051 178195, 238103 178019, 238013 177823, 238002 177811, 238365 177529, 249738 169801, 249694 169758, 248522 167512, 242603 160128, 235005 150718, 234924 150507, 234994 150270, 235291 149916, 236486 149098, 237721 148326, 238159 148199, 238405 148230, 238564 148389, 242573 156118, 248522 167512, 250106 169489, 250125 169538, 249738 169801, 249849 169910, 250077 169924, 250097 169916, 250106 169907, 250185 169691, 250125 169538, 252654 167819, 259754 163620, 259687 163546, 258826 161681, 254503 155790, 245815 143889, 245743 143677, 245827 143441, 246149 143096, 247411 142320, 248698 141596, 249156 141482, 249404 141522, 249557 141688, 254626 152577, 258826 161681, 260042 163337, 260074 163431, 259754 163620, 259832 163707, 260034 163731, 260111 163542, 260074 163431, 267523 159025, 272674 156400, 272621 156336, 271652 153940, 266530 146086, 259873 135947, 259813 135731, 259904 135502, 260226 135183, 261484 134489, 262773 133849, 263219 133765, 263459 133820, 263601 133994, 266875 142132, 271652 153940, 273063 156104, 273087 156190, 272674 156400, 272759 156503, 272983 156541, 273004 156535, 273024 156519, 273122 156312, 273087 156190, 282916 151181, 283179 151067, 282417 148889, 278779 142763, 271340 130171, 271288 129953, 271391 129728, 271736 129419, 273041 128780, 274364 128196, 274826 128130, 275066 128195, 275202 128375, 279202 139697, 282417 148889, 283602 150884, 283179 151067, 283191 151101, 283320 151276, 283541 151325, 283549 151323, 283559 151316, 283665 151115, 283614 150904, 283602 150884, 296761 145190, 296753 145178, 295994 142611, 291711 134417, 286046 123649, 286006 123428, 286118 123209, 286473 122920, 287783 122356, 289117 121845, 289573 121805, 289806 121884, 289931 122070, 292412 130503, 295994 142611, 297233 144982, 297234 144986, 296761 145190, 296874 145358, 297093 145418, 297126 145412, 297156 145392, 297273 145196, 297234 144986, 298770 144321, 307837 141057, 307792 140980, 307198 138557, 304205 132183, 298047 118993, 298016 118771, 298138 118558, 298506 118286, 299851 117780, 301212 117332, 301672 117313, 301901 117402, 302017 117594, 304917 129257, 307198 138557, 308258 140815, 308270 140901, 307837 141057, 307902 141167, 308117 141237, 308141 141234, 308164 141220, 308289 141030, 308270 140901, 315024 138469, 321910 136469, 321869 136393, 321368 133799, 317890 125229, 313274 113937, 313257 113712, 313390 113505, 313772 113251, 315138 112814, 316525 112431, 316980 112435, 317204 112536, 317312 112734, 318961 121340, 321368 133799, 322361 136246, 322368 136336, 321910 136469, 321972 136584, 322185 136664, 322219 136661, 322245 136647, 322379 136462, 322368 136336, 331614 133650, 333259 133282, 333257 133278, 332896 130791, 330530 124151, 325686 110452, 325675 110229, 325818 110029, 326209 109794, 327591 109421, 328637 109186, 329099 109114, 329439 109134, 329658 109245, 329755 109447, 331526 121355, 332896 130791, 333740 133160, 333741 133175, 333259 133282, 333349 133475, 333557 133566, 333582 133565, 333607 133553, 333748 133377, 333741 133175, 347734 130046, 347503 127600, 344824 118604, 341306 106897, 341311 106671, 341466 106477, 341876 106260, 343293 105955, 344366 105767, 344840 105716, 345185 105750, 345400 105872, 345488 106078, 346291 114729, 347503 127600, 348201 129942, 347734 130046, 347736 130069, 347821 130268, 348025 130368, 348044 130368, 348056 130363, 348208 130193, 348211 129976, 348201 129942, 348472 129881, 359381 128153, 359351 128069, 359237 125678, 357496 118736, 353996 104623, 354008 104400, 354169 104214, 354580 104019, 355998 103779, 357421 103600, 357872 103671, 358081 103802, 358158 104013, 358780 116071, 359237 125678, 359820 128002, 359816 128084, 359381 128153, 359424 128274, 359623 128384, 359636 128385, 359649 128380, 359809 128218, 359816 128084, 365536 127178, 374143 126365, 374114 126272, 374121 124079, 372264 114602, 369878 102593, 369905 102368, 370082 102191, 370409 102058, 370885 101971, 371988 101844, 373467 101729, 373927 101818, 374133 101959, 374202 102174, 374161 110738, 374121 124079, 374542 126230, 374531 126328, 374143 126365, 374179 126477, 374361 126589, 374518 126445, 374531 126328, 382734 125553, 385807 125456, 385794 125406, 385911 123101, 384838 115989, 382712 101552, 382747 101331, 382928 101161, 383359 101007, 384809 100904, 386259 100864, 386705 100977, 386901 101128, 386959 101345, 386401 113422, 385911 123101, 386255 125384, 386246 125443, 385807 125456, 385848 125617, 386036 125745, 386044 125743, 386221 125598, 386246 125443, 400000 125010, 400451 125024, 400449 125042, 400494 125253, 400647 125369, 400798 125253, 400841 125042, 400840 125036, 400451 125024, 400645 123031, 399653 112841, 398479 101064, 398526 100845, 398719 100685, 399055 100584, 399537 100543, 400642 100522) (400683 674518, 401566 674424, 400639 674448, 399705 674415) (411964 674186, 412596 674222, 412700 674223, 413216 674142) (385923 674150, 386021 674161, 386546 674132, 385306 674053) (374375 673307, 374501 673311, 375300 673310, 374174 673229, 373423 673119) (426913 673119, 425968 673179, 426948 673183, 427848 673003) (438602 671730, 439015 671711, 439143 671700, 439816 671528) (359520 671499, 359615 671519, 360134 671544, 358926 671349) (348057 669539, 348198 669558, 348984 669638, 348060 669481, 347134 669268) (453171 669240, 452237 669391, 453193 669296, 453289 669272, 454089 669036) (464477 666755, 465078 666666, 465200 666643, 465668 666477) (333467 666306, 333590 666344, 334294 666450, 333088 666173) (322250 663254, 322383 663285, 323155 663441, 322252 663196, 321354 662898) (478933 662843, 478020 663084, 478947 662898, 479062 662857, 479823 662553) (489947 659275, 490539 659128, 490654 659094, 491118 658879) (308037 658625, 308165 658678, 308854 658851, 307678 658459) (297180 654514, 297294 654553, 297847 654720, 296527 654178) (503960 653989, 503076 654315, 503975 654045, 504092 653989, 504816 653616) (514755 649310, 515163 649167, 515251 649132, 515873 648766) (283468 648526, 283592 648593, 284259 648827, 283128 648326) (273077 643401, 273162 643439, 273914 643742, 273073 643331, 272254 642866) (528020 642757, 527168 643166, 528034 642818, 528141 642754, 528832 642304) (538301 637063, 538714 636876, 538775 636845, 539366 636409) (259984 636105, 260087 636174, 260737 636470, 259649 635858) (250162 630018, 250240 630062, 250971 630438, 250170 629946, 249394 629397) (550875 629262, 550061 629753, 550909 629316, 550990 629256, 551647 628725) (560206 622832, 560811 622488, 561205 622128) (238150 621724, 238732 622056, 237724 621354) (228540 614385, 228623 614444, 229331 614905, 228582 614337, 227863 613714) (572392 613554, 571630 614122, 572453 613588, 572524 613523, 573108 612944) (580945 606363, 581282 606123, 581379 606047, 581861 605520) (217583 605123, 217634 605174, 218227 605599, 217280 604792) (208632 596804, 208726 596885, 209366 597403, 208684 596770, 208033 596086) (592198 595908, 591504 596543, 592266 595926, 592328 595858, 592848 595236) (600050 587894, 600353 587626, 600455 587528, 600883 586968) (198615 586523, 198674 586594, 199216 587074, 198355 586182) (190522 577393, 190608 577484, 191188 578059, 190568 577360, 189984 576618) (610225 576419, 609593 577121, 610279 576443, 610356 576340, 610809 575689) (617282 567669, 617549 567381, 617637 567279, 618016 566674) (181533 566183, 181600 566282, 182082 566800, 181317 565838) (174363 556321, 174440 556420, 174964 557050, 174413 556293, 173901 555498) (626290 555275, 625727 556037, 626344 555295, 626415 555178, 626802 554491) (632472 545884, 632713 545569, 632784 545468, 633104 544827) (166496 544297, 166556 544407, 166983 544964, 166315 543933) (160321 533804, 160375 533890, 160846 534578, 160368 533768, 159936 532927) (640241 532672, 639752 533487, 640297 532691, 640357 532566, 640676 531842) (645477 522753, 645702 522397, 645750 522312, 646008 521632) (153643 521069, 153692 521183, 154065 521774, 153493 520673) (148515 510047, 148964 510848, 148564 509994, 148216 509114) (651876 508997, 651539 509675, 652011 508830, 652055 508709, 652301 507948) (656188 498486, 656382 498104, 656423 498012, 656610 497309) (143092 496718, 143124 496821, 143477 497525, 143158 496767, 142930 496107) (139124 485467, 139491 486291, 139182 485417, 138924 484519) (661213 484201, 660894 485080, 661288 484192, 661477 483312) (664534 473170, 664693 472759, 664724 472667, 664840 471952) (134919 471329, 134941 471432, 135202 472107, 134851 470903) (132149 460080, 132185 460207, 132435 460966, 132209 460057, 132036 459122) (668029 459004, 667833 459719, 668134 458804, 668146 458725, 668247 457878) (670361 447255, 670469 446858, 670498 446735, 670543 446041) (129280 445399, 129291 445497, 129483 446197, 129253 444973) (127601 433888, 127627 434031, 127795 434803, 127628 433664, 127575 432929) (672473 432836, 672349 433566, 672552 432627, 672558 432529, 672583 431695) (673657 420911, 673724 420512, 673740 420388, 673724 419686) (126168 419016, 126170 419142, 126289 419847, 126178 418610) (125603 407404, 125614 407542, 125706 408324, 125660 407389, 125667 406442) (674371 406339, 674318 407097, 674426 406158, 674422 406034, 674370 405217) (674394 394384, 674424 393966, 674427 393848, 674342 393146) (125615 392458, 125604 392594, 125653 393304, 125662 392065) (126170 380858, 126168 380982, 126185 381775, 126237 380644, 126326 379902) (673683 379615, 673720 380557, 673741 379615, 673725 379490, 673592 378684) (672569 367909, 672559 367471, 672552 367368, 672397 366671) (127627 365971, 127602 366106, 127590 366611, 127755 365390) (129291 354503, 129281 354595, 129239 355196, 129484 353786) (670436 353262, 670561 354198, 670499 353266, 670471 353145, 670256 352350) (668218 341916, 668141 341217, 667973 340715) (132184 339798, 132150 339917, 132069 340626, 132314 339409) (134939 328571, 134920 328664, 134788 329475, 135008 328561, 135290 327653) (664664 327355, 664879 328282, 664727 327337, 664695 327244, 664392 326455) (661394 316309, 661265 315754, 660989 315144) (139126 314527, 139018 315049, 139413 313891) (143123 303181, 143093 303277, 142873 304093, 143183 303205, 143553 302329) (656373 302037, 656680 302939, 656425 301991, 656385 301902, 656014 301168) (652176 291675, 652054 291286, 652012 291170, 651659 290549) (148501 290001, 148293 290657, 148768 289506) (153692 278816, 153645 278928, 153350 279697, 153740 278853, 154189 278022) (645713 277747, 646101 278604, 645742 277666, 645274 276921) (640516 267800, 640356 267432, 640296 267307, 639893 266725) (160375 266110, 160323 266191, 160036 266852, 160620 265755) (166559 255589, 166497 255703, 166129 256431, 166712 255441, 167127 254841) (632748 254581, 633221 255398, 632784 254531, 632714 254432, 632234 253800) (626607 245167, 626415 244822, 626343 244705, 625886 244160) (174441 243579, 174366 243675, 174023 244291, 174700 243270) (181603 233715, 181534 233817, 181096 234509, 181646 233751, 182244 233019) (617603 232770, 618154 233539, 617636 232720, 617550 232619, 617016 232040) (610693 224149, 610357 223661, 610280 223559, 609919 223204) (190610 222514, 190521 222608, 190124 223184, 190900 222229) (198678 213401, 198615 213477, 198106 214138, 198728 213433, 199395 212762) (600417 212515, 601041 213232, 600455 212472, 600351 212372, 599762 211846) (592602 204472, 592332 204146, 592264 204071, 591698 203618) (208728 203113, 208635 203194, 208313 203581, 209207 202729) (217640 194821, 217583 194878, 217003 195504, 217841 194722, 218421 194257) (581347 194009, 582036 194664, 581376 193950, 581278 193874, 580629 193406) (572841 186793, 572529 186482, 572455 186414, 571843 186019) (228626 185554, 228540 185615, 228174 185980, 229158 185210) (238097 178306, 237431 178906, 238166 178343, 238941 177819) (560967 177707, 561536 178166, 560824 177525, 560747 177477, 560036 177066) (551335 171024, 550992 170745, 550910 170684, 550270 170357) (250247 169934, 250160 169984, 249595 170444, 250393 169901, 250864 169614) (260087 163826, 259981 163897, 259335 164370, 260130 163874, 260966 163421) (538763 163222, 539561 163729, 538787 163163, 538712 163125, 537938 162767) (528657 157585, 528144 157248, 528041 157186, 527577 157000) (273166 156559, 273079 156598, 272469 156998, 273554 156405) (283593 151406, 283467 151474, 282784 151873, 283623 151456, 284498 151084) (515425 151008, 516083 151354, 515252 150869, 515162 150833, 514376 150553) (504456 146200, 504094 146012, 503977 145956, 503307 145757) (297296 145446, 297179 145486, 296542 145818, 297691 145329) (308165 141321, 308038 141374, 307322 141703, 308198 141370, 309099 141084) (490637 140959, 491518 141301, 490654 140906, 490540 140873, 489746 140670) (479437 137295, 479063 137144, 478949 137103, 478258 136966) (322384 136713, 322247 136746, 321590 137012, 322781 136635) (333587 133656, 333468 133693, 332720 133954, 333622 133707, 334544 133510) (465368 133452, 466093 133668, 465206 133360, 465078 133336, 464272 133211) (453692 130850, 453288 130729, 453197 130706, 452478 130635) (348195 130442, 348057 130461, 347574 130606, 348788 130386) (359597 128481, 358740 128697, 359659 128536, 360595 128430) (439119 128356, 440049 128527, 439140 128299, 439018 128289, 438196 128246) (426210 126823, 427460 126921, 426899 126819) (374370 126692, 373874 126795, 375106 126694, 374495 126688) (385118 125975, 386056 125902, 387007 125890, 386010 125837) (412600 125778, 411756 125821, 412696 125841, 413644 125922, 412696 125777) (400160 125539, 401369 125559, 400672 125482)), ((673461 447259, 683344 447956, 694928 448746, 695135 448830, 695263 449040, 695321 449489, 695113 450910, 694842 452321, 694636 452729, 694447 452886, 694223 452894, 685239 450439, 673461 447259, 670891 447078, 670828 447053, 670901 446591, 670975 446588)), ((128904 445360, 128977 445818, 128900 445849, 126322 446030, 117269 448474, 105570 451672, 105345 451662, 105155 451505, 104948 451093, 104681 449688, 104470 448265, 104528 447816, 104655 447605, 104864 447523, 113615 446924, 126322 446030, 128816 445357)), ((675302 432972, 682946 433143, 697047 433503, 697262 433575, 697397 433783, 697478 434241, 697329 435684, 697125 437123, 696939 437543, 696757 437711, 696533 437731, 684298 435000, 675302 432972, 672967 432920, 673011 432459, 673021 432458)), ((698467 420091, 698613 420288, 698715 420727, 698644 422158, 698512 423583, 698346 424009, 698173 424182, 697950 424213, 688697 422623, 676833 420617, 686667 420357, 698251 420030)), ((110448 419045, 123071 419378, 113953 420919, 101962 422980, 101738 422949, 101565 422775, 101399 422350, 101268 420928, 101196 419493, 101297 419055, 101444 418857, 101660 418797)), ((676833 420617, 674166 420687, 674125 420676, 674172 420176, 674204 420172)), ((125711 418933, 125759 419445, 125745 419449, 123071 419378, 125707 418933)), ((113126 406765, 122672 407470, 115691 408346, 101241 410127, 101021 410088, 100856 409905, 100712 409477, 100644 408036, 100639 406609, 100763 406160, 100919 405970, 101138 405918)), ((699112 404728, 699268 404918, 699392 405363, 699384 406795, 699318 408236, 699175 408662, 699010 408845, 698789 408885, 686401 407358, 677348 406223, 684822 405670, 698892 404678)), ((125236 407174, 125250 407635, 125162 407654, 122672 407470, 125151 407159)), ((677348 406223, 674868 406406, 674789 406388, 674804 405926, 674879 405913)), ((699010 391155, 699175 391338, 699320 391769, 699384 393205, 699391 394642, 699268 395082, 699112 395272, 698893 395323, 689486 394628, 677491 393771, 687329 392552, 698788 391114)), ((677491 393771, 674880 394094, 674804 394080, 674789 393602, 674867 393583)), ((109936 390962, 122529 392523, 113304 393182, 101137 394083, 100919 394029, 100763 393839, 100640 393396, 100644 391964, 100711 390527, 100856 390095, 101021 389912, 101242 389871)), ((125250 392355, 125235 392832, 125150 392848, 122529 392523, 125164 392335)), ((113833 379017, 123231 380630, 116185 380828, 101661 381202, 101444 381142, 101297 380945, 101195 380503, 101268 379072, 101400 377646, 101565 377225, 101738 377051, 101961 377021)), ((125758 380563, 125712 381055, 125709 381055, 123231 380630, 125744 380559)), ((698173 375818, 698346 375991, 698511 376413, 698644 377841, 698716 379268, 698613 379711, 698467 379909, 698250 379969, 685809 379648, 676670 379392, 684012 378131, 697951 375788)), ((676670 379392, 674202 379816, 674171 379812, 674126 379333, 674167 379322)), ((696757 362289, 696939 362457, 697079 362773, 697177 363238, 697329 364316, 697440 365401, 697457 365877, 697397 366217, 697262 366424, 697048 366498, 687613 366709, 675426 367009, 673023 367547, 673012 367546, 672967 367070, 675426 367009, 685323 364795, 696532 362268)), ((117229 351464, 126509 353997, 128898 354161, 128975 354191, 128906 354625, 128819 354628, 126509 353997, 119368 353508, 104865 352476, 104655 352395, 104528 352184, 104469 351731, 104681 350312, 104950 348904, 105155 348495, 105345 348338, 105569 348329)), ((694447 347114, 694636 347271, 694840 347673, 695113 349090, 695322 350507, 695263 350960, 695135 351170, 694927 351253, 682527 352136, 673265 352771, 670972 353397, 670899 353394, 670829 352957, 670893 352933, 673265 352771, 680510 350791, 694224 347106))) \ No newline at end of file diff --git a/stress_benchmark/resources/041.settings b/stress_benchmark/resources/041.settings new file mode 100644 index 0000000000..6054309199 --- /dev/null +++ b/stress_benchmark/resources/041.settings @@ -0,0 +1,631 @@ +experimental=0 +infill_pattern=gyroid +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0 +wall_x_material_flow_layer_0=110.0 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=220.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=False +support_tree_branch_diameter_angle=5.0 +prime_tower_base_height=0.2 +top_bottom_thickness=1.2 +material_guid=d2af194b-ecf5-4d5e-873a-b57dea74bfa2 +platform_adhesion=0 +speed_support_interface=35.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +wall_0_material_flow_layer_0=110.0 +support_xy_distance=0.8 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=all +support_infill_angles=[] +support_zag_skip_count=2 +retraction_speed=25 +acceleration_roofing=250 +raft_interface_jerk=8 +support_roof_height=1 +acceleration_travel=1000 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=1000 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=3 +alternate_extra_perimeter=False +support_brim_line_count=9 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=10.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=26.25 +skirt_brim_speed=20.0 +retraction_amount=0.3 +skin_angles=[] +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=17.5 +cross_infill_pocket_size=4.0 +support_bottom_material_flow=60 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=4.0 +zig_zaggify_support=True +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=4 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=False +support_brim_width=4 +support_tree_branch_diameter=3.0 +support_initial_layer_line_distance=8.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=250 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=True +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=110.0 +relative_extrusion=False +wall_0_material_flow_roofing=95 +raft_surface_speed=35.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=250 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=110 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_weighted +travel_speed=200.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=175.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=110.0 +support_interface_material_flow=60 +wipe_retraction_retract_speed=25 +speed_support_bottom=35.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=60 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=45 +cutting_mesh=False +minimum_interface_area=1 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.4 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +roofing_angles=[] +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=1 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=1 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=triangles +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=25 +support_bottom_density=30 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=6 +support_material_flow=90 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=4.0 +material_flush_purge_speed=0.5 +meshfix_union_all=False +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=Test_Me +support_interface_pattern=triangles +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1.2 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.02 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=95 +bridge_wall_coast=100 +support_interface_density=30 +bridge_wall_speed=12.5 +minimum_roof_area=1 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=True +speed_wall=35.0 +infill_offset_y=0 +cool_fan_speed_max=10.0 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=35.0 +support_bottom_wall_count=1 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=60.0 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.08 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=17.5 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=1.474 +support_tree_angle_slow=40.0 +bridge_fan_speed_3=0 +raft_speed=35.0 +support_tree_branch_reach_limit=30 +support_structure=tree +support_bottom_stair_step_height=0.3 +support_fan_enable=True +z_seam_position=back +support_interface_offset=0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=35.0 +adaptive_layer_height_variation=0.08 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=gyroid +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=19 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=6 +material_print_temperature_layer_0=220.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=0.3 +support_tree_tip_diameter=0.8 +jerk_ironing=4 +machine_depth=220 +acceleration_skirt_brim=500 +skin_overlap=20.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=220 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=1 +jerk_skirt_brim=8 +support_roof_density=30 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=False +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=False +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=220.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=100 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=6 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.1 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=26.25 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.1 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=False +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=4.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=0.5 +ironing_monotonic=False +skin_material_flow_layer_0=110.0 +top_thickness=1.2 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=25.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=17.5 +infill=0 +prime_tower_position_y=191.0 +jerk_support=8 +speed_wall_x_roofing=35.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=450 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=triangles +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=220.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=70 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=211.0 +wipe_pause=0 +material_standby_temperature=180.0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=1 +raft_jerk=8 +support_z_distance=0.2 +machine_height=300 +speed_infill=70 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=35.0 +speed_support=100 +speed_prime_tower=35.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=100 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=110.0 +support_interface_line_width=0.4 +zig_zaggify_infill=True +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=8.0 +infill_line_width=0.4 +speed_wall_x=35.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=10 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=23.333333333333332 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=220.0 +material_adhesion_tendency=0 +default_material_print_temperature=225.0 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=7.34788079488412e-17 +cool_fan_speed_min=10.0 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=True +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=5 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=220.0 diff --git a/stress_benchmark/resources/041.wkt b/stress_benchmark/resources/041.wkt new file mode 100644 index 0000000000..d4f4854cea --- /dev/null +++ b/stress_benchmark/resources/041.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((79120 127292, 79224 127278, 79336 127282, 79528 127350, 79629 127367, 79848 127505, 79926 127530, 80372 128226, 80774 129260, 81174 130451, 81674 131726, 82375 134464, 82461 135843, 82643 137089, 82750 138193, 82963 139968, 82948 139942, 82875 140325, 82735 140623, 82542 140828, 82288 140924, 82007 140896, 81894 140826, 81527 141166, 81202 140623, 80700 139600, 80189 137690, 79790 136498, 79407 135193, 78360 133995, 78752 132443, 78502 131105, 78321 129860, 78048 128411, 78254 128446, 78320 128150, 78513 128186, 78618 128185, 78431 127668, 78474 127632, 78535 127473, 78606 127434, 78714 127343, 78948 127275)), ((83389 130103, 83478 130248, 83796 130463, 83818 130707, 83859 130807, 83802 130835, 83755 130991, 83579 130819, 83122 130741, 82774 130701, 82671 130642, 82545 130613, 82433 130446, 82727 130221, 82865 130151, 83132 130083)), ((97619 124430, 98131 124848, 98376 125088, 98389 125104, 98638 125442, 98677 125472, 99409 126405, 99851 126891, 100473 127465, 100956 127793, 101443 128332, 101908 128704, 102198 128999, 102374 129230, 102698 129762, 101340 129409, 100722 129165, 99040 128367, 98417 128039, 98633 128311, 98604 128664, 98812 129096, 98889 129461, 98125 129283, 97370 129064, 97039 128952, 96335 128767, 95896 128602, 95980 128816, 95851 129152, 95866 129587, 95806 129789, 94999 129543, 94079 129361, 93524 129193, 92967 128442, 93413 129252, 93528 129618, 93478 129881, 93363 130326, 93349 130457, 93185 130409, 92283 130197, 92041 130101, 91887 130021, 91764 129778, 91383 129164, 91447 128284, 91533 127807, 91656 126941, 92086 127342, 92888 128306, 93106 126673, 93167 126035, 93235 125848, 93363 125914, 93716 126150, 94228 126612, 94598 126917, 94767 126444, 94944 125904, 95015 125734, 95281 125207, 95415 125059, 95524 125132, 96098 125568, 96331 125795, 96930 126426, 97122 126605, 96989 125178, 97021 124617, 97215 124124)), ((109692 100044, 111513 100230, 111714 100266, 112574 100596, 113175 100782, 114293 101234, 114709 101453, 115529 101710, 117418 102497, 117666 102669, 119616 104773, 119906 105092, 120184 105783, 120705 106824, 121535 110116, 120882 112825, 120085 114761, 119981 114962, 119891 115057, 119121 116010, 118313 116547, 117558 117151, 116926 117724, 116574 118089, 116074 118654, 115781 119026, 114898 120328, 114317 121059, 113580 121436, 113266 121566, 112687 121534, 111361 121616, 109756 121473, 109291 121419, 109129 121461, 108708 121532, 108678 121795, 108695 121805, 108838 122281, 109063 122896, 109021 123430, 108902 124017, 108838 124389, 108252 125185, 107971 125546, 106584 126460, 105446 126917, 105091 127026, 104801 127052, 103923 127221, 103117 127242, 102608 127187, 101709 127169, 100463 126777, 100365 126737, 100293 126673, 99946 126448, 98677 125472, 98389 125104, 97962 124526, 97090 123478, 96939 122871, 96805 120972, 96909 120677, 97385 120348, 97593 120219, 97964 120052, 98237 119914, 98469 119273, 99200 118646, 99529 118345, 99870 118004, 101017 117704, 101853 117663, 103575 117979, 105120 119682, 106843 121200, 107770 121634, 107994 121756, 108533 121953, 108677 121806, 108678 121795, 108117 121464, 108006 121416, 107598 121285, 107578 121204, 107130 120585, 106939 120243, 106337 119096, 104614 118313, 103749 117422, 102433 115545, 102232 115280, 101095 113080, 100940 112750, 100742 111942, 100367 110675, 100368 109151, 100549 108698, 100648 108346, 100798 107954, 101111 107003, 101336 106482, 101674 105779, 102104 105069, 102358 104725, 102537 104510, 102716 104433, 103093 104221, 103554 104171, 103722 104183, 103781 103995, 103971 103631, 104079 103259, 104087 103198, 104323 102842, 104557 102657, 104690 102483, 104846 102230, 105146 101931, 105333 101609, 105631 101213, 105746 101100, 105881 101004, 106262 100611, 106771 100236, 106882 100187, 107164 100165, 108405 99980)), ((102856 116674, 103420 117404, 104003 118058, 104085 118073, 104614 118313, 105063 118776, 105559 119223, 105748 119349, 106140 119634, 106367 119890, 106467 120069, 105387 119570, 105299 119560, 104795 118946, 104003 118058, 103575 117979, 103429 117818, 102979 117279, 102847 117046, 102474 116516, 102256 115983)), ((111979 98048, 112640 98165, 114894 98757, 116554 100122, 117825 101324, 118551 102149, 120011 103750, 120517 104181, 120948 104476, 121480 104934, 121869 105433, 122266 105911, 122398 106118, 122538 106978, 122565 107526, 122448 108026, 122397 108330, 122312 108422, 122071 108594, 121829 108632, 121738 108717, 121614 108507, 121475 108242, 121452 107882, 121370 107371, 120931 106491, 120759 106056, 120433 105672, 119906 105092, 119837 104921, 119625 104354, 118732 103524, 118601 103249, 118490 103049, 117962 102723, 117418 102497, 116041 101538, 114943 100723, 113715 100386, 112653 100196, 111239 99730, 110995 99706, 110863 99705, 110703 99664, 109853 99360, 109531 99105, 109226 98937, 109504 98678, 109811 98368, 111163 97983)), ((113590 77519, 114718 77643, 114776 77694, 115017 77881, 114957 77842, 115114 77973, 115623 78315, 116242 78690, 116925 79083, 118875 80173, 119285 80412, 119755 81105, 120657 82492, 120971 82992, 121375 83720, 121636 84159, 121799 84325, 122004 84513, 122038 84567, 122230 84788, 122444 84933, 123436 85194, 123585 85190, 124020 85242, 123609 84818, 123120 84253, 123306 84064, 123458 83893, 124225 83636, 125320 84424, 126745 85831, 126872 85938, 128212 87377, 129072 88321, 129622 88941, 131671 91334, 132012 91715, 132077 91784, 131707 91847, 131407 91881, 131591 92747, 131648 93329, 131745 93717, 132323 95142, 132510 96186, 132564 96338, 132560 96544, 132458 97262, 132155 97896, 131934 98397, 131222 99404, 130709 99737, 130492 99776, 130356 99760, 129990 99775, 129687 99931, 129494 100079, 128874 100439, 128527 100729, 128267 100932, 127519 101262, 127061 101259, 126943 101275, 126370 101390, 125467 102144, 125284 102273, 124152 103137, 123055 103364, 122879 103414, 121993 103257, 121918 103005, 121768 102255, 121641 102189, 121452 101995, 120579 101023, 120326 100233, 120093 99955, 119948 99760, 118919 98580, 118248 97980, 118271 97689, 118384 97046, 118492 96921, 119378 96178, 121005 95573, 121673 95365, 122491 95094, 123023 94650, 123403 94379, 123492 94331, 124432 94269, 122932 92966, 121228 91461, 119935 90290, 119642 90012, 119392 89740, 118531 88850, 118250 88240, 118557 88108, 119202 88404, 119569 88592, 119238 88124, 119181 88078, 118640 87535, 118314 87364, 118281 87360, 117934 87236, 117836 87181, 116956 86534, 115714 86010, 115604 86006, 115423 85918, 114951 85293, 114733 84976, 114872 84580, 114917 83952, 115035 83619, 114940 83614, 114752 83589, 114563 83550, 114375 83497, 114190 83431, 114011 83354, 113836 83265, 113670 83166, 113372 82941, 113244 82816, 113131 82685, 113036 82548, 112961 82407, 112910 82262, 112877 82113, 112865 81964, 112878 81778, 112900 81665, 112943 81518, 113010 81365, 113082 81237, 113177 81101, 113282 80980, 113403 80863, 113537 80759, 113682 80666, 113838 80589, 114005 80529, 114180 80488, 114365 80465, 114555 80464, 114750 80480, 114947 80513, 115145 80561, 115340 80622, 115709 80778, 115761 81235, 115681 81854, 115528 82227, 115383 82780, 115179 83214, 115035 83619, 115125 83623, 115306 83617, 115479 83593, 115646 83553, 115804 83497, 115953 83428, 116093 83344, 116224 83248, 116340 83143, 116451 83025, 116564 82877, 116704 82628, 116761 82484, 116800 82338, 116822 82190, 116823 82041, 116804 81894, 116760 81749, 116693 81607, 116604 81470, 116495 81339, 116367 81213, 116224 81093, 115997 80937, 115719 80782, 115709 80778, 115551 79387, 115495 79243, 115588 79126, 115470 78944, 115019 78738, 114164 78461, 113464 78431, 113117 78185, 112795 78000, 112885 77893, 112859 77727, 113247 77548, 113451 77477) (125243 93587, 125095 93738, 124875 94240, 124432 94269, 124727 94525, 124832 94338, 124875 94240, 124877 94240, 126199 94299, 126478 94452, 126504 94493, 126596 94534, 126617 94528, 126478 94452, 126109 93872, 125506 93344) (115588 79126, 115605 79152, 115663 79170, 115749 79224, 115616 79090)), ((115584 75422, 115860 75454, 116152 75509, 116458 75585, 116780 75682, 117116 75798, 117631 76008, 117606 75949, 117754 75980, 118059 76081, 118362 76202, 119070 76524, 119801 76894, 119962 77007, 120145 77088, 120335 77276, 120494 77382, 120585 77461, 120731 77624, 120928 77783, 120979 77804, 121357 78105, 121705 78349, 121864 78285, 122041 78367, 122216 78484, 122758 78928, 123094 79169, 123375 79307, 123433 79309, 123553 79349, 123616 79335, 123759 79333, 123894 79393, 124274 79675, 124464 79766, 124571 79839, 124658 79930, 124768 79979, 124818 80022, 125026 80121, 125168 80205, 125784 80641, 125942 80617, 126439 80929, 126963 81287, 127187 81473, 127358 81634, 127744 82027, 128252 82576, 128405 82773, 129166 83530, 130073 84471, 130180 84597, 130170 84665, 130199 84836, 130348 84985, 130405 85067, 130505 85137, 130758 85352, 130989 85491, 131156 85642, 131771 86336, 131783 86534, 131769 86624, 131836 86734, 131938 86849, 132188 87053, 132292 87160, 132322 87211, 132466 87366, 132679 87530, 133018 87840, 133140 87985, 133497 88459, 133730 88792, 133973 89187, 134040 89343, 133979 89316, 134295 89775, 134648 90363, 134883 90830, 135042 91218, 135127 91480, 135186 91738, 135220 91967, 135230 92189, 135218 92396, 135186 92584, 135133 92754, 135060 92906, 134970 93036, 134862 93145, 134739 93228, 134601 93289, 134448 93323, 134283 93328, 134119 93309, 133915 93255, 133717 93170, 133489 93042, 133288 92904, 133035 92705, 132627 92345, 132438 92165, 132077 91784, 132124 91776, 132621 91923, 133094 92076, 133717 91823, 134195 91246, 133525 90688, 132083 89526, 128898 87048, 126511 85280, 125320 84424, 125113 84219, 124838 83980, 124599 83803, 123525 83089, 123006 82733, 122825 82598, 122718 82500, 121275 81606, 119797 80710, 119285 80412, 119055 80072, 118741 79655, 118601 79490, 118468 79384, 118180 78998, 117865 78516, 117521 78095, 117092 77768, 116678 77597, 116366 77625, 115926 77709, 114808 77653, 114718 77643, 114553 77499, 114364 77309, 114206 77125, 114079 76947, 113990 76775, 113938 76606, 113903 76438, 113906 76283, 113997 75999, 114083 75871, 114192 75759, 114485 75576, 114664 75506, 114866 75455, 115086 75424, 115327 75411)), ((111598 82831, 112129 83423, 112139 84189, 111689 84729, 111577 84684, 110990 84372, 110827 84186, 110509 83784, 110597 83254, 110605 83126, 110722 83027, 110999 82741)), ((112226 78193, 112723 78420, 112919 79118, 112795 79462, 112375 79815, 112036 80226, 111729 80617, 111679 80900, 111917 81136, 112273 81651, 112348 81782, 112395 82029, 112506 82450, 112400 82595, 112241 82928, 111994 82962, 111789 82855, 111372 82752, 110864 82130, 110601 81840, 110475 81456, 110426 81221, 110315 80805, 110378 79940, 110460 79774, 110794 79328, 111852 78212, 111875 78152, 111986 78087, 112129 78060))) \ No newline at end of file diff --git a/stress_benchmark/resources/042.settings b/stress_benchmark/resources/042.settings new file mode 100644 index 0000000000..91100ebe88 --- /dev/null +++ b/stress_benchmark/resources/042.settings @@ -0,0 +1,629 @@ +experimental=0 +infill_pattern=lines +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=2 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=200.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.6 +material_guid=b78b23dd-5921-41c7-a12a-de01d122f8fd +platform_adhesion=0 +speed_support_interface=13.333333333333334 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.7 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.8 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=off +support_zag_skip_count=8 +retraction_speed=45 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=0.4 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=45 +support_use_towers=False +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=2 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=5 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=22.5 +skirt_brim_speed=15 +retraction_amount=1 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.08 +acceleration_wall_x=500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=30.0 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=15 +cross_infill_pocket_size=4.0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +retraction_min_travel=2 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=False +support_brim_width=2 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=20 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=30.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=45 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=240.0 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_inner +travel_speed=120 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=120 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=140.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=45 +speed_support_bottom=13.333333333333334 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.1 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=70 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=500 +machine_disallowed_areas=[] +retract_at_layer_change=True +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.2 +minimum_bottom_area=1.0 +bridge_skin_density=60 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=zigzag +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=1 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=45 +material_brand=empty_brand +initial_bottom_layers=3 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.2 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.6 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=1 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=100 +bridge_wall_speed=10 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=15 +infill_offset_y=0 +cool_fan_speed_max=100.0 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=13.333333333333334 +support_bottom_wall_count=0 +speed_print_layer_0=15 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=70 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +quality_name=Draft +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=15 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=46.666666666666664 +bridge_fan_speed_3=0 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0.3 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=30 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=15 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=5 +raft_surface_line_spacing=0.4 +retraction_retract_speed=45 +bottom_layers=3 +material_print_temperature_layer_0=200.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=1 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=240.0 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=280 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=True +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=200.0 +wipe_hop_amount=1 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=20 +support_interface_enable=False +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=4 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=50 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=1 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=8 +raft_base_speed=22.5 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60.0 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.8 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=4.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=1 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=15 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60.0 +bridge_skin_speed_3=15 +infill=0 +prime_tower_position_y=214.775 +jerk_support=8 +speed_wall_x_roofing=30 +speed_layer_0=15 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=25 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +machine_name=SV01 +acceleration_prime_tower=500 +material_print_temperature=200.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=274.775 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.2 +machine_height=300 +speed_infill=60.0 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=30 +speed_support=20 +speed_prime_tower=60.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=True +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.6666666666666665 +infill_line_width=0.4 +speed_wall_x=30 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=10 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=90 +jerk_infill=8 +speed_ironing=20.0 +gantry_height=300 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=200.0 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=4.898587196589413e-17 +cool_fan_speed_min=100.0 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=0.8 +material_bed_temperature=60.0 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=200.0 diff --git a/stress_benchmark/resources/042.wkt b/stress_benchmark/resources/042.wkt new file mode 100644 index 0000000000..ae4001d6e9 --- /dev/null +++ b/stress_benchmark/resources/042.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((179969 66896, 100031 66896, 100000 66756, 180000 66755))) \ No newline at end of file diff --git a/stress_benchmark/resources/043.settings b/stress_benchmark/resources/043.settings new file mode 100644 index 0000000000..6e142cc7e7 --- /dev/null +++ b/stress_benchmark/resources/043.settings @@ -0,0 +1,630 @@ +experimental=0 +infill_pattern=triangles +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=95.0 +extruder_prime_pos_y=6 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=20 +brim_width=7 +material_no_load_move_factor=0.91 +material_final_print_temperature=185 +machine_max_feedrate_x=300 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=95.0 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +top_bottom_thickness=1 +material_guid=0e01be8c-e425-4fb1-b4a3-b79f255f1db9 +platform_adhesion=0 +speed_support_interface=20 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=15 +speed_equalize_flow_width_factor=110.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=True +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=110.00000000000001 +support_xy_distance=0.7 +prime_tower_brim_enable=True +gradual_support_infill_steps=2 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0 +support_offset=0.8 +acceleration_layer_0=1000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=no_outer_surfaces +support_zag_skip_count=40 +retraction_speed=25 +acceleration_roofing=1000 +raft_interface_jerk=20 +support_roof_height=0.2 +acceleration_travel=5000 +acceleration_wall_x_roofing=1500 +support_roof_enable=True +acceleration_travel_layer_0=1428.5714285714287 +support_extruder_nr=1 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=1 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=20 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=0.4 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=20 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=20 +material_flow=100 +material_is_support_material=False +raft_interface_speed=22.5 +skirt_brim_speed=10.0 +retraction_amount=6.5 +skin_angles=[] +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.0 +acceleration_wall_x=1500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=250 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=30 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=95.0 +skin_material_flow=95.0 +roofing_material_flow=100 +acceleration_infill=3500 +machine_extruder_count=2 +support_roof_line_distance=0.4 +zig_zaggify_support=True +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=1 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=20 +acceleration_print_layer_0=1000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +retraction_min_travel=0.8 +support_bottom_offset=0.8 +gradual_infill_steps=0 +support_extruder_nr_layer_0=1 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=0.5 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=1000 +extruder_prime_pos_x=9 +draft_shield_enabled=False +raft_interface_line_spacing=0.8 +ironing_inset=0.38 +infill_overlap=0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=40 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=60 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=30 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=1000 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=215 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_none +travel_speed=250 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=11 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=20 +speed_travel=250 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=100 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=116.5 +support_interface_material_flow=95.0 +wipe_retraction_retract_speed=25 +speed_support_bottom=20 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=95.0 +bridge_wall_min_length=2.1 +speed_slowdown_layers=1 +optimize_wall_printing_order=True +machine_max_acceleration_y=9000 +resolution=0 +support_angle=45 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=20 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=1500 +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +roofing_angles=[] +blackmagic=0 +travel_avoid_distance=3 +cool_min_speed=4 +interlocking_depth=2 +roofing_layer_count=1 +bridge_skin_density_3=100 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0 +minimum_bottom_area=1.0 +bridge_skin_density=80 +raft_interface_thickness=0.2 +jerk_travel_enabled=False +raft_interface_layers=1 +support_bottom_height=0.2 +small_hole_max_size=0 +support_roof_pattern=zigzag +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=10 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=429 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=6 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=1 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=False +extruder_prime_pos_z=2 +machine_heated_build_volume=False +layer_height=0.1 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +machine_gcode_flavor=Griffin +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=zigzag +xy_offset=-0.010000000000000002 +machine_max_jerk_xy=20.0 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1 +material_type=empty +material_maximum_park_duration=7200 +retraction_hop=2 +jerk_prime_tower=20 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=1 +wall_0_material_flow=100 +bridge_wall_coast=0 +support_interface_density=100 +bridge_wall_speed=30 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=20 +support_bottom_wall_count=1 +speed_print_layer_0=10.0 +jerk_support_interface=20 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=100 +lightning_infill_straightening_angle=40 +support_tree_angle=45 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +quality_name=Fine +print_temperature=200 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=2000 +meshfix=0 +machine_max_feedrate_y=300 +bridge_skin_speed=30 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=50 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=30.0 +bridge_fan_speed_3=100 +raft_speed=15 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.8 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=30 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=2 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=20 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.1 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=1.6 +jerk_wall_0=20 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3500 +inset_direction=outside_in +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=429 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=False +material_diameter=2.85 +brim_line_count=18 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=10 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=50 +bridge_skin_material_flow_2=95.0 +machine_max_feedrate_e=45 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_depth=215 +acceleration_skirt_brim=1000 +skin_overlap=10 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.2 +wall_extruder_nr=-1 +machine_width=233 +raft_smoothing=5 +acceleration_support_interface=1500 +layer_start_y=198.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=1 +jerk_skirt_brim=20 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=3500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=20 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=True +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=210 +wipe_hop_amount=2 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=False +speed_support_infill=25 +support_interface_enable=True +raft_base_acceleration=3500 +wall_line_width_x=0.4 +machine_acceleration=3000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0 +z_seam_type=sharpest_corner +prime_tower_base_size=3 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.8 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=10 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=95.0 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=True +support_tower_diameter=3.0 +acceleration_wall=1500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1.0 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=100 +wall_line_count=2 +jerk_travel_layer_0=20.0 +raft_base_speed=15 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=20 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.8 +support_tree_limit_branch_reach=True +xy_offset_layer_0=-0.010000000000000002 +remove_empty_first_layers=True +retraction_combing_max_distance=15 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=3500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.04 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=100 +retraction_extrusion_window=1 +ironing_monotonic=False +skin_material_flow_layer_0=95 +top_thickness=1 +prime_blob_enable=True +bridge_settings_enabled=True +jerk_enabled=True +speed_wall_0_roofing=20 +support_tower_roof_angle=0 +material_bed_temp_wait=True +raft_interface_fan_speed=50.0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=30 +infill=0 +prime_tower_position_y=188.2 +jerk_support=20 +speed_wall_x_roofing=30 +speed_layer_0=10.0 +wall_line_width_0=0.4 +jerk_support_infill=20 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=zigzag +raft_base_wall_count=1 +acceleration_prime_tower=2000 +material_print_temperature=200 +jerk_print_layer_0=20 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=70 +wall_0_inset=0 +skin_edge_support_thickness=0.4 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=185 +wipe_pause=0 +material_standby_temperature=100 +jerk_wall=20 +machine_nozzle_cool_down_speed=0.75 +raft_margin=15 +raft_acceleration=3500 +support_roof_wall_count=1 +raft_jerk=20 +support_z_distance=0 +machine_height=300 +speed_infill=70 +raft_surface_thickness=0.1 +infill_randomize_start_location=False +speed_roofing=30 +speed_support=25 +speed_prime_tower=30 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=True +layer_start_x=213.0 +acceleration_support=2000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=0.5 +infill_line_width=0.4 +speed_wall_x=30 +ooze_shield_dist=2 +raft_interface_line_width=0.6000000000000001 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.3 +mold_width=5 +bridge_skin_density_2=100 +acceleration_support_bottom=100 +infill_sparse_density=20 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=25 +jerk_infill=20 +speed_ironing=20.0 +gantry_height=60 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=190 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=6.123233995736766e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=1 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=80 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=190 diff --git a/stress_benchmark/resources/043.wkt b/stress_benchmark/resources/043.wkt new file mode 100644 index 0000000000..030bcf1fe0 --- /dev/null +++ b/stress_benchmark/resources/043.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((116557 108997, 116571 109003, 116623 108979, 116612 109036, 116622 109048, 116681 109050, 116647 109098, 116650 109113, 116701 109140, 116651 109165, 116647 109180, 116682 109228, 116623 109230, 116613 109242, 116624 109299, 116571 109275, 116557 109281, 116542 109339, 116505 109295, 116489 109295, 116453 109339, 116437 109282, 116423 109276, 116369 109299, 116380 109243, 116370 109231, 116311 109229, 116347 109181, 116343 109166, 116291 109140, 116344 109113, 116347 109098, 116311 109050, 116370 109048, 116380 109036, 116369 108980, 116423 109003, 116437 108997, 116452 108940, 116489 108984, 116505 108984, 116541 108940))) \ No newline at end of file diff --git a/stress_benchmark/resources/044.settings b/stress_benchmark/resources/044.settings new file mode 100644 index 0000000000..db0ea47a59 --- /dev/null +++ b/stress_benchmark/resources/044.settings @@ -0,0 +1,630 @@ +experimental=0 +infill_pattern=triangles +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=95.0 +extruder_prime_pos_y=6 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=20 +brim_width=7 +material_no_load_move_factor=0.91 +material_final_print_temperature=180 +machine_max_feedrate_x=300 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=95.0 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.06 +top_bottom_thickness=1 +material_guid=44a029e6-e31b-4c9e-a12f-9282e29a92ff +platform_adhesion=0 +speed_support_interface=20 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=15 +speed_equalize_flow_width_factor=110.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=True +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=110.00000000000001 +support_xy_distance=0.7 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0 +support_offset=0.0 +acceleration_layer_0=1000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=no_outer_surfaces +support_zag_skip_count=3 +retraction_speed=45 +acceleration_roofing=1000 +raft_interface_jerk=20 +support_roof_height=0.12 +acceleration_travel=5000 +acceleration_wall_x_roofing=1500 +support_roof_enable=True +acceleration_travel_layer_0=1428.5714285714287 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=45 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=False +skirt_line_count=1 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=20 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=0.24 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=20 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=20 +material_flow=100 +material_is_support_material=False +raft_interface_speed=17.5 +skirt_brim_speed=7.199999999999999 +retraction_amount=6.5 +skin_angles=[] +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.04 +acceleration_wall_x=1500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=150 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=35 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=95.0 +skin_material_flow=95.0 +roofing_material_flow=100 +acceleration_infill=3500 +machine_extruder_count=2 +support_roof_line_distance=0.4 +zig_zaggify_support=True +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0.136 +jerk_topbottom=20 +acceleration_print_layer_0=1000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +retraction_min_travel=0.8 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=6.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=1000 +extruder_prime_pos_x=333 +draft_shield_enabled=False +raft_interface_line_spacing=0.8 +ironing_inset=0.38 +infill_overlap=10 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=40 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=60 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=20 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=45 +acceleration_ironing=1000 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=240 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_none +travel_speed=150 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=11 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=20 +speed_travel=150 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=50 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=165.0 +support_interface_material_flow=95.0 +wipe_retraction_retract_speed=45 +speed_support_bottom=20 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=95.0 +bridge_wall_min_length=2.1 +speed_slowdown_layers=1 +optimize_wall_printing_order=True +machine_max_acceleration_y=9000 +resolution=0 +support_angle=45 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=20 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=1500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +roofing_angles=[] +blackmagic=0 +travel_avoid_distance=3 +cool_min_speed=5 +interlocking_depth=2 +roofing_layer_count=1 +bridge_skin_density_3=100 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0 +minimum_bottom_area=1.0 +bridge_skin_density=80 +raft_interface_thickness=0.18 +jerk_travel_enabled=False +raft_interface_layers=1 +support_bottom_height=0.12 +small_hole_max_size=0 +support_roof_pattern=zigzag +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=2 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=45 +material_brand=empty_brand +initial_bottom_layers=17 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=1500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=6 +material_shrinkage_percentage_xy=100.2 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=False +extruder_prime_pos_z=2 +machine_heated_build_volume=True +layer_height=0.06 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +machine_gcode_flavor=Griffin +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=zigzag +xy_offset=-0.006 +machine_max_jerk_xy=20.0 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1 +material_type=empty +material_maximum_park_duration=7200 +retraction_hop=2 +jerk_prime_tower=20 +material_shrinkage_percentage=100.2 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=0 +support_interface_density=100 +bridge_wall_speed=35 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=35 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=20 +support_bottom_wall_count=1 +speed_print_layer_0=7.199999999999999 +jerk_support_interface=20 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=100 +lightning_infill_straightening_angle=40 +support_tree_angle=45 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.08 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.18 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +print_temperature=200 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=2000 +meshfix=0 +machine_max_feedrate_y=300 +bridge_skin_speed=35 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=50 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=30.0 +bridge_fan_speed_3=100 +raft_speed=15 +support_tree_branch_reach_limit=30 +support_structure=tree +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=35 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=2 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=24 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.06 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=1.6 +jerk_wall_0=20 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3500 +inset_direction=outside_in +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=1500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=triangles +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=False +material_diameter=2.85 +brim_line_count=18 +raft_surface_line_spacing=0.4 +retraction_retract_speed=45 +bottom_layers=17 +material_print_temperature_layer_0=195 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=50 +bridge_skin_material_flow_2=95.0 +machine_max_feedrate_e=45 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_depth=240 +acceleration_skirt_brim=1000 +skin_overlap=20 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.12 +wall_extruder_nr=-1 +machine_width=330 +raft_smoothing=5 +acceleration_support_interface=1500 +layer_start_y=228.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=1 +jerk_skirt_brim=20 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=3500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=20 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=True +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=210 +wipe_hop_amount=2 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=25 +support_interface_enable=True +raft_base_acceleration=3500 +wall_line_width_x=0.4 +machine_acceleration=3000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0 +z_seam_type=sharpest_corner +prime_tower_base_size=3 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.2 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=17 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=95.0 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=True +support_tower_diameter=3.0 +acceleration_wall=1500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1.0 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=1 +cool_fan_speed_0=100 +wall_line_count=2 +jerk_travel_layer_0=20.0 +raft_base_speed=15 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=20 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.8 +support_tree_limit_branch_reach=True +xy_offset_layer_0=-0.08600000000000001 +remove_empty_first_layers=True +retraction_combing_max_distance=15 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=3500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.04 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=100 +retraction_extrusion_window=1 +ironing_monotonic=False +skin_material_flow_layer_0=95 +top_thickness=1 +prime_blob_enable=False +bridge_settings_enabled=True +jerk_enabled=True +speed_wall_0_roofing=24 +support_tower_roof_angle=0 +material_bed_temp_wait=True +raft_interface_fan_speed=25.0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=35 +infill=0 +prime_tower_position_y=217.0 +jerk_support=20 +speed_wall_x_roofing=35 +speed_layer_0=7.199999999999999 +wall_line_width_0=0.4 +jerk_support_infill=20 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.06 +machine_nozzle_head_distance=3 +support_bottom_pattern=zigzag +raft_base_wall_count=1 +acceleration_prime_tower=2000 +material_print_temperature=195 +jerk_print_layer_0=20 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50 +wall_0_inset=0 +skin_edge_support_thickness=0.24 +retraction_extra_prime_amount=0 +adhesion_type=none +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=305.0 +wipe_pause=0 +material_standby_temperature=100 +jerk_wall=20 +machine_nozzle_cool_down_speed=0.75 +raft_margin=15 +raft_acceleration=3500 +support_roof_wall_count=1 +raft_jerk=20 +support_z_distance=0 +machine_height=300 +speed_infill=50 +raft_surface_thickness=0.06 +infill_randomize_start_location=False +speed_roofing=35 +speed_support=25 +speed_prime_tower=35 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=True +layer_start_x=330.0 +acceleration_support=2000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=6.0 +infill_line_width=0.4 +speed_wall_x=35 +ooze_shield_dist=2 +raft_interface_line_width=0.6000000000000001 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.3 +mold_width=5 +bridge_skin_density_2=100 +acceleration_support_bottom=100 +infill_sparse_density=20 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=25 +jerk_infill=20 +speed_ironing=23.333333333333332 +gantry_height=55 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.0 +material_initial_print_temperature=185 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=6.245698675651501e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=185 diff --git a/stress_benchmark/resources/044.wkt b/stress_benchmark/resources/044.wkt new file mode 100644 index 0000000000..ea468ef16f --- /dev/null +++ b/stress_benchmark/resources/044.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((227245 67099, 226990 67099, 226984 67105, 226984 67290, 226990 67296, 227245 67296, 227245 67697, 226990 67698, 226984 67704, 226984 68048, 226990 68054, 227245 68072, 227245 68581, 226990 68582, 226984 68588, 226984 68884, 226990 68890, 227245 68890, 227245 69003, 226990 69003, 226984 69009, 226984 69360, 226990 69366, 227245 69367, 227245 70541, 226990 70539, 226984 70545, 226984 70742, 226990 70748, 227245 70747, 227245 71180, 226990 71182, 226984 71188, 226984 71484, 226990 71490, 227245 71490, 227245 72218, 226990 72218, 226984 72224, 226984 72306, 226990 72312, 227245 72313, 227245 72607, 226990 72607, 226984 72613, 226984 72773, 226990 72779, 227245 72778, 227245 73542, 226903 73542, 226897 73548, 226897 112385, 226903 112391, 227245 112391, 227245 112790, 226990 112790, 226984 112796, 226984 112979, 226990 112985, 227245 112989, 227245 113386, 226990 113389, 226984 113395, 226984 113743, 226990 113749, 227245 113759, 227245 114272, 226990 114273, 226984 114279, 226984 114574, 226990 114580, 227245 114580, 227245 114694, 226990 114690, 226984 114696, 226984 115050, 226990 115056, 227245 115057, 227245 117739, 226990 117759, 226984 117765, 226990 117771, 227245 117771, 227245 119233, 226903 119233, 226897 119239, 226897 121400, 226648 121400, 226642 121406, 226642 126757, 226648 126763, 226897 126764, 226897 142132, 226648 142132, 226642 142138, 226642 147076, 226648 147082, 226897 147081, 226897 158077, 226903 158083, 227245 158083, 227245 158481, 226990 158481, 226984 158487, 226984 158670, 226990 158676, 227245 158681, 227245 159080, 226990 159081, 226984 159087, 226984 159435, 226990 159441, 227245 159455, 227245 159963, 226990 159964, 226984 159970, 226984 160265, 226990 160271, 227245 160271, 227245 160385, 226990 160381, 226984 160387, 226984 160741, 226990 160747, 227245 160748, 227245 163336, 226990 163335, 226984 163341, 226984 164237, 226990 164243, 227245 164243, 227245 168043, 226989 168071, 226984 168077, 226990 168083, 227245 168085, 227245 169495, 225466 169495, 225466 169241, 225460 169235, 224455 169235, 224449 169241, 224448 169495, 222558 169495, 222557 169241, 222551 169235, 221522 169235, 221516 169241, 221516 169495, 220883 169495, 220883 169241, 220877 169235, 220638 169235, 220632 169241, 220631 169495, 220128 169495, 220128 169241, 220122 169235, 219361 169235, 219355 169241, 219354 169495, 219261 169495, 219261 169042, 219255 169036, 196409 169036, 196403 169042, 196403 169269, 196295 169269, 196300 169063, 196295 169057, 196101 169008, 196094 169014, 196095 169269, 195747 169269, 195748 169014, 195742 169008, 195314 169008, 195308 169014, 195308 169269, 194469 169269, 194468 169014, 194462 169008, 193990 169008, 193984 169014, 193984 169269, 192318 169269, 192318 169014, 192312 169008, 191312 169008, 191306 169014, 191306 169269, 189562 169269, 189562 169042, 189556 169036, 157003 169036, 156997 169042, 156997 169269, 156153 169269, 156153 169014, 156147 169008, 155748 169008, 155742 169014, 155745 169269, 154863 169269, 154866 169014, 154860 169008, 154274 169008, 154268 169014, 154268 169269, 152761 169269, 152761 169014, 152755 169008, 152631 169008, 152625 169014, 152624 169269, 151991 169269, 151991 169014, 151985 169008, 151700 169008, 151694 169014, 151689 169269, 150150 169269, 150150 168798, 150144 168792, 127296 168783, 127290 168789, 127290 169495, 126347 169495, 126347 169241, 126341 169235, 125910 169235, 125904 169241, 125905 169495, 124956 169495, 124954 169241, 124948 169235, 124108 169235, 124102 169241, 124102 169495, 122887 169495, 122886 169241, 122880 169235, 122194 169235, 122188 169241, 122188 169495, 121911 169495, 121911 169241, 121905 169235, 121084 169235, 121078 169241, 121077 169495, 119308 169495, 119308 166571, 119591 166571, 119597 166565, 119597 166318, 119591 166312, 119308 166311, 119308 165504, 119591 165504, 119597 165498, 119597 165322, 119591 165316, 119308 165315, 119308 163863, 119591 163864, 119597 163858, 119597 163645, 119591 163639, 119308 163640, 119308 162766, 119450 162769, 119456 162762, 119308 162017, 119295 161713, 119289 161708, 119010 161698, 119007 161699, 118933 161748, 118933 161715, 118927 161709, 118678 161708, 118672 161714, 118676 161804, 117215 161801, 117212 161105, 117313 161105, 117319 161099, 117321 160796, 117315 160790, 117215 160791, 117207 160695, 117315 160693, 117321 160688, 117315 160681, 117209 160679, 117213 160044, 117318 160045, 117324 160039, 117321 159761, 117315 159755, 117209 159753, 117212 158880, 118222 158877, 118228 158871, 118228 157366, 118307 157366, 118313 157361, 118308 157354, 118228 157345, 118230 157201, 118297 157197, 118303 157191, 118303 156920, 118297 156914, 118228 156914, 118228 156413, 118297 156415, 118303 156409, 118303 155716, 118297 155710, 118228 155712, 118228 154560, 118297 154560, 118303 154554, 118303 154036, 118297 154030, 118228 154026, 118228 151728, 118297 151728, 118303 151722, 118303 150373, 118297 150367, 118228 150367, 118229 147946, 119315 147934, 119319 148278, 119325 148284, 119382 148288, 119388 148282, 119387 147935, 120519 147936, 120515 158077, 120521 158083, 127290 158083, 127290 158535, 127043 158535, 127037 158541, 127037 159010, 127043 159016, 127290 159017, 127290 159086, 127043 159087, 127037 159093, 127037 159810, 127043 159816, 127290 159816, 127290 159997, 127043 159997, 127037 160003, 127037 160447, 127043 160453, 127290 160454, 127290 163320, 127294 163326, 127886 163509, 127887 163509, 128497 163562, 128500 163562, 128789 163471, 129397 163467, 129400 163466, 129719 163295, 130270 163393, 130275 163392, 130471 163222, 130473 163217, 130477 162585, 131027 162612, 131029 162612, 131620 162387, 132217 162618, 132851 162618, 133466 162511, 134047 162435, 134658 162510, 135266 162530, 135906 162519, 136516 162573, 137092 162581, 137094 162581, 137714 162434, 138344 162574, 138346 162574, 138931 162484, 138957 162490, 138958 162490, 139564 162440, 140786 162555, 140788 162555, 141402 162412, 141568 162474, 141657 162847, 141427 163427, 140910 163427, 140904 163432, 140906 163438, 141312 163742, 141321 163740, 141606 163324, 141926 163252, 142211 163397, 142215 163398, 142821 163294, 143146 163384, 143150 163384, 143760 163209, 144038 163490, 144039 163491, 144365 163650, 144371 163650, 144528 163566, 144530 163558, 144415 163347, 144429 163109, 144539 162936, 144743 162818, 144968 162818, 145181 162946, 145286 163127, 145229 163478, 145233 163485, 145239 163484, 145590 163226, 146193 163518, 146196 163519, 146813 163563, 146817 163562, 147103 163329, 147417 163402, 147706 163645, 147713 163645, 148032 163448, 148318 163441, 148639 163543, 148642 163543, 148810 163514, 148814 163505, 148745 163367, 148745 163127, 148853 162932, 149053 162818, 149289 162818, 149495 162932, 149615 163249, 149617 163252, 149857 163430, 149862 163431, 150145 163393, 150150 163387, 150150 161511, 151728 161511, 151729 161761, 151735 161767, 151813 161767, 151819 161761, 151820 161511, 152435 161511, 152438 161761, 152444 161767, 152649 161767, 152655 161761, 152654 161511, 153232 161511, 153233 161761, 153239 161767, 153287 161767, 153293 161761, 153293 161511, 154291 161511, 154292 161761, 154298 161767, 154378 161767, 154384 161761, 154385 161511, 154521 161511, 154521 161761, 154527 161767, 154607 161767, 154613 161761, 154608 161511, 155626 161511, 155624 161761, 155630 161767, 156083 161767, 156089 161761, 156088 161511, 156997 161511, 156997 162074, 157003 162080, 164857 162080, 164856 162337, 164862 162343, 169796 162343, 169802 162337, 169803 162080, 185170 162080, 185171 162337, 185177 162343, 189556 162343, 189562 162337, 189562 161511, 192161 161511, 192161 161761, 192167 161767, 192292 161767, 192298 161761, 192297 161511, 192684 161511, 192685 161761, 192691 161767, 192865 161767, 192871 161761, 192871 161511, 194015 161511, 194016 161761, 194022 161767, 194092 161767, 194098 161761, 194098 161511, 194638 161511, 194641 161761, 194647 161767, 195305 161767, 195311 161761, 195311 161511, 196403 161511, 196403 162738, 196409 162744, 196644 162743, 196645 162743, 197227 162596, 197836 162693, 197838 162693, 198446 162632, 199057 162756, 199058 162756, 199669 162705, 200279 162685, 200885 162595, 201497 162749, 201498 162749, 202107 162746, 202746 162645, 203356 162696, 203963 162644, 204551 162661, 205184 162708, 205185 162708, 205768 162574, 206357 162765, 206359 162765, 207018 162761, 207020 162761, 207602 162550, 208210 162660, 208212 162660, 208236 162656, 208820 162757, 208821 162757, 209400 162711, 209399 163107, 209402 163112, 209660 163268, 209669 163263, 209677 162677, 210650 162665, 210676 162674, 210678 162674, 211263 162662, 211897 162671, 212512 162716, 213123 162734, 213730 162670, 214340 162749, 215558 162588, 216175 162678, 216784 162615, 217366 162721, 218001 162736, 218002 162736, 218610 162716, 219255 162637, 219261 162631, 219261 161508, 219513 161353, 219515 161346, 219510 161342, 219261 161342, 219261 159406, 219510 159406, 219516 159400, 219516 159301, 219510 159295, 219261 159294, 219261 158083, 219835 158083, 219841 158077, 219841 155916, 220090 155916, 220096 155910, 220096 150562, 220090 150556, 219841 150555, 219841 135181, 220090 135181, 220096 135175, 220096 130245, 220090 130239, 219841 130240, 219841 119239, 219835 119233, 219261 119233, 219261 118781, 219510 118781, 219516 118775, 219516 118306, 219510 118300, 219261 118299, 219261 118230, 219510 118229, 219516 118223, 219516 117507, 219510 117501, 219261 117501, 219261 117321, 219510 117321, 219516 117315, 219516 116869, 219510 116863, 219261 116862, 219261 115202, 219510 115195, 219516 115189, 219516 115095, 219510 115089, 219261 115088, 219261 114695, 219510 114692, 219516 114686, 219516 114619, 219510 114613, 219261 114612, 219261 112391, 220658 112391, 220664 112385, 220720 111042, 220720 111041, 220639 110454, 220645 109847, 220669 109263, 220681 108657, 220708 108073, 220708 108072, 220590 107468, 220588 106882, 220710 106250, 221229 106248, 221235 106243, 221301 105820, 221300 105289, 221294 105282, 221078 105283, 220807 105075, 220803 105074, 220680 105069, 220694 104494, 220638 103891, 220558 102701, 220649 101513, 220666 100318, 220651 99130, 220623 98545, 220652 97939, 220707 97355, 220709 96749, 220709 96748, 220589 96164, 220515 95560, 220563 94973, 220636 94364, 220632 93780, 220584 93174, 220642 92590, 220616 91984, 220567 91399, 220597 90793, 220642 90208, 220673 89601, 220674 89016, 220674 89015, 220546 87828, 220643 87224, 220665 86640, 220665 86639, 220630 86033, 220683 85445, 220614 84835, 220668 83645, 220587 83062, 220582 82458, 220655 81267, 220603 80683, 220560 79490, 220553 78883, 220667 78299, 220707 77693, 220707 77692, 220628 76504, 220637 75313, 220655 74727, 220714 74119, 220699 73548, 220693 73542, 219261 73542, 219261 73501, 219459 73498, 219464 73495, 219515 73393, 219510 73384, 219261 73385, 219261 73216, 219510 73218, 219516 73212, 219516 72988, 219510 72982, 219261 72982, 219261 72567, 219510 72566, 219516 72560, 219516 72343, 219510 72337, 219261 72337, 219261 71505, 219510 71505, 219516 71499, 219516 70977, 219510 70971, 219261 70970, 219261 70128, 219513 69970, 219515 69962, 219510 69959, 219261 69958, 219261 68031, 219510 68031, 219516 68025, 219516 67914, 219510 67908, 219261 67907, 219261 66700, 227245 66700) (139214 163427, 139208 163432, 139210 163437, 139479 163732, 139484 163734, 140093 163681, 140095 163680, 140501 163438, 140503 163431, 140498 163427) (133165 163427, 133159 163432, 133163 163439, 133375 163505, 133378 163505, 133913 163439, 133918 163433, 133912 163427) (118359 160726, 118273 160861, 118272 160866, 118357 161089, 118362 161093, 118577 161127, 118581 161126, 118711 161050, 118711 161040, 118579 160973, 118575 160972, 118421 161001, 118508 160868, 118509 160863, 118481 160768, 118477 160764, 118366 160723) (119036 158531, 119011 158970, 119017 158976, 119283 158976, 119289 158971, 119299 158888, 119293 158881, 119162 158889, 119159 158535, 119153 158529, 119042 158525)), ((100547 157629, 100554 157814, 100554 161524, 100440 161529, 99949 161382, 99941 161388, 99947 161529, 98886 161531, 98886 161316, 98880 161310, 98418 161308, 98412 161314, 98406 161382, 98406 161314, 98400 161308, 98019 161309, 98013 161315, 98013 161530, 96282 161534, 96282 159761, 96416 159759, 96422 159753, 96422 159186, 96416 159180, 96282 159181, 96282 158926, 96416 158925, 96422 158919, 96422 158829, 96416 158823, 96282 158823, 96276 157372, 96416 157371, 96422 157365, 96418 156729, 96412 156723, 96275 156723, 96275 154698, 98240 154696, 98240 154914, 98246 154920, 98417 154918, 98423 154912, 98423 154697, 98629 154697, 98631 154914, 98637 154920, 98872 154919, 98878 154913, 98883 154697, 99978 154698, 99979 154860, 99987 154866, 100547 154669)), ((126470 135168, 126478 135376, 126484 135382, 126941 135380, 126945 135377, 126948 135380, 127330 135382, 127336 135376, 127340 135159, 129115 135160, 129103 136921, 128969 136920, 128963 136926, 128959 137505, 128965 137511, 129093 137511, 129096 137765, 128964 137765, 128958 137771, 128955 137850, 128961 137856, 129096 137857, 129087 139310, 128955 139307, 128949 139313, 128943 139948, 128949 139954, 129081 139955, 129068 141997, 127128 142001, 127131 141784, 127125 141778, 126909 141777, 126903 141782, 126884 141999, 126739 142000, 126739 141780, 126733 141774, 126451 141778, 126445 141784, 126440 142000, 125336 142000, 125337 141841, 125329 141835, 124747 142016, 124761 139306, 124771 138890, 124788 135687, 124918 135661, 124881 136134, 124886 136140, 124890 136139, 125205 135951, 125207 135950, 125436 135643, 125437 135638, 125386 135360, 125381 135355, 125207 135328, 125202 135330, 124959 135594, 124986 135204, 125393 135312, 125401 135306, 125400 135155) (125456 138080, 125394 138216, 125393 138218, 125429 138686, 125439 138691, 125483 138657, 125485 138652, 125523 138127, 125521 138122, 125465 138077)), ((97497 63734, 97501 63737, 97644 63765, 97647 63765, 97912 63658, 98179 63907, 98188 63907, 98453 63584, 98930 64024, 99014 64326, 99023 64329, 99425 64109, 99811 64348, 99818 64347, 100066 64083, 100340 63977, 100344 63973, 100363 63903, 100360 63896, 100164 63776, 100160 63775, 99870 63817, 99804 63698, 99797 63695, 99532 63764, 99406 63703, 99312 63505, 99383 63322, 99380 63315, 99373 63316, 99259 63422, 99155 63255, 100377 63255, 100377 63468, 100382 63474, 100388 63472, 100554 63267, 100559 66864, 100565 66870, 101097 66830, 101103 66824, 101100 66819, 100713 66623, 119301 71007, 119308 71001, 119308 70131, 127290 70131, 127290 71171, 127043 71171, 127037 71177, 127037 71622, 127043 71628, 127290 71627, 127290 71813, 127043 71813, 127037 71819, 127037 72532, 127043 72538, 127290 72539, 127290 72607, 127043 72608, 127037 72614, 127037 73084, 127043 73090, 127290 73089, 127290 73542, 126961 73542, 126955 73548, 126955 75709, 126700 75709, 126694 75715, 126694 81065, 126700 81071, 126955 81072, 126955 96444, 126700 96444, 126694 96450, 126694 101382, 126700 101388, 126955 101387, 126955 112385, 126961 112391, 127290 112391, 127290 113603, 127043 113604, 127037 113610, 127037 113708, 127043 113714, 127290 113714, 127290 115648, 127043 115648, 127037 115653, 127040 115659, 127285 115814, 127040 115964, 127038 115971, 127043 115975, 127290 115975, 127290 117912, 127043 117912, 127037 117918, 127037 118019, 127043 118025, 127290 118026, 127290 119233, 119308 119233, 119308 118834, 119563 118834, 119569 118828, 119569 118643, 119563 118637, 119308 118641, 119308 118241, 119563 118242, 119569 118236, 119569 117873, 119563 117867, 119308 117867, 119308 117351, 119563 117350, 119569 117344, 119569 117051, 119563 117045, 119308 117045, 119308 116934, 119563 116934, 119569 116928, 119569 116579, 119563 116573, 119312 116570, 119312 115057, 119563 115057, 119569 115051, 119569 114697, 119563 114691, 119308 114690, 119308 114580, 119563 114580, 119569 114574, 119569 114279, 119563 114273, 119308 114272, 119308 113762, 119563 113762, 119569 113756, 119569 113395, 119563 113389, 119308 113385, 119308 112989, 119563 112984, 119569 112978, 119569 112795, 119563 112789, 119308 112789, 119308 112391, 119643 112391, 119649 112385, 119649 101387, 119905 101388, 119911 101382, 119911 96450, 119905 96444, 119649 96443, 119649 81072, 119905 81071, 119911 81065, 119911 75734, 119904 75728, 119649 75780, 119649 74101, 119644 74095, 117527 73594, 117520 73600, 117518 75077, 117370 75274, 115698 74836, 115654 74564, 115648 74559, 115642 74565, 115641 74826, 114825 74618, 114816 74348, 114811 74342, 114804 74348, 114785 74603, 113950 74384, 113799 74111, 113792 74108, 113789 74111, 113639 74422, 113101 74282, 113099 74020, 113095 74014, 112771 73930, 112763 73936, 112763 74197, 112538 74135, 112539 73872, 112534 73866, 112459 73848, 112452 73854, 112453 74113, 111877 73967, 111879 73705, 111875 73699, 111795 73669, 111787 73675, 111788 73939, 111595 73887, 111593 73628, 111589 73622, 111534 73604, 111526 73610, 111527 73873, 110228 73534, 110069 73139, 110060 73136, 109919 73215, 109461 73094, 109461 72833, 109457 72827, 109228 72766, 109220 72772, 109221 73034, 108713 72888, 108712 72638, 108708 72632, 108568 72595, 108560 72601, 108560 72863, 107742 72652, 107723 72380, 107717 72374, 107711 72380, 107712 72645, 107402 72559, 107396 72298, 107392 72292, 107291 72264, 107283 72270, 107277 72533, 106484 72322, 106341 72170, 106332 72171, 106189 72483, 105802 72384, 105794 72119, 105789 72113, 105628 72072, 105621 72078, 105621 72338, 105264 72239, 105260 71981, 105256 71975, 104815 71861, 104807 71867, 104806 72127, 104306 71998, 104305 71736, 104301 71730, 104022 71651, 104014 71657, 104015 71795, 104001 71652, 103997 71647, 103631 71550, 103623 71556, 103623 71818, 102761 71591, 102614 71199, 102616 70519, 102612 70513, 102567 70501, 102565 70071, 102560 70065, 100566 69596, 100559 69602, 100559 70083, 99473 70085, 99432 69870, 99426 69865, 99420 69871, 99417 70084, 98445 70086, 98421 69873, 98415 69868, 98409 69874, 98410 70084, 96287 70090, 96286 68662, 96421 68660, 96427 68654, 96427 68322, 96515 68327, 96545 68662, 96350 69095, 96350 69101, 96473 69251, 96561 69577, 96568 69581, 96572 69579, 96972 69101, 96972 69094, 96843 68850, 96836 68847, 96692 68901, 96598 68630, 96623 68239, 96842 67828, 96978 67808, 96983 67802, 96983 67581, 97064 67374, 97064 67370, 96880 66941, 96875 66516, 97109 65993, 97156 66009, 97162 66008, 97573 65659, 97571 65648, 97420 65589, 97384 65328, 97374 65324, 97105 65552, 96965 65452, 96962 65451, 96696 65449, 96572 65227, 96569 65226, 96574 65224, 97030 64787, 97352 64950, 97372 65052, 97380 65057, 97527 64995, 97530 64992, 97648 64820, 97914 64796, 97915 64796, 98275 64657, 98449 64768, 98458 64765, 98621 64370, 98621 64369, 98673 64018, 98669 64011, 98664 64012, 98451 64125, 98345 64104, 98188 63946, 98180 63945, 97674 64363, 97672 64367, 97641 64563, 97564 64503, 97588 64369, 97585 64363, 97412 64270, 97107 63255, 97244 63255) (97615 66125, 97205 66512, 97203 66517, 97224 66749, 97225 66751, 97327 66943, 97129 67369, 97128 67372, 97132 67802, 97134 67807, 97297 67931, 97304 67931, 97378 67895, 97642 68064, 97649 68064, 97918 67866, 97920 67863, 97969 67724, 97966 67717, 97960 67717, 97917 67738, 97845 67489, 97841 67485, 97647 67407, 97641 67409, 97592 67453, 97419 66943, 97676 66519, 97677 66515, 97625 66128, 97619 66123) (98530 67798, 98528 67804, 98599 67992, 98608 67995, 98977 67807, 98980 67800, 98976 67796, 98774 67723, 98727 67627, 98718 67626) (98273 67368, 98272 67373, 98302 67605, 98305 67609, 98449 67708, 98458 67705, 98589 67374, 98588 67369, 98457 67146, 98447 67145) (99252 66120, 99092 66773, 99093 66777, 99253 67002, 99261 67004, 99264 67000, 99368 66354, 99367 66351, 99263 66119, 99256 66115) (98257 66395, 98188 66340, 98178 66343, 98050 66716, 98053 66723, 98059 66723, 98184 66664, 98451 66719, 98457 66716, 98580 66519, 98581 66516, 98574 66330, 98567 66324) (99793 65873, 99713 66084, 99713 66087, 99770 66553, 99778 66558, 99893 66522, 99895 66512, 99840 66458, 99887 65953, 99885 65948, 99803 65871) (98987 65329, 98868 65840, 98870 65845, 98989 65972, 98997 65973, 98999 65969, 99063 65655, 99063 65653, 98999 65329, 98993 65324) (97907 64803, 97843 65224, 97844 65224, 97686 65579, 97688 65586, 97695 65585, 97914 65353, 98182 65428, 98185 65428, 98343 65403, 98448 65492, 98455 65492, 98935 65230, 98938 65224, 98884 64975, 98878 64970, 98606 64978, 98427 64839, 98420 64839, 98037 65027, 97918 64801, 97911 64798) (99793 64580, 99769 64795, 99528 65031, 99526 65034, 99467 65313, 99470 65319, 99529 65347, 99537 65345, 99849 64800, 99850 64796, 99805 64580, 99799 64575)), ((96564 65219, 96569 65226, 96565 65224, 96561 65228, 96398 65652, 96398 65656, 96460 65818, 96465 65822, 96711 65853, 96781 66086, 96735 66239, 96735 66242, 96805 66515, 96526 66940, 96525 66942, 96415 67376, 96415 67377, 96424 67601, 96427 67606, 96571 67674, 96577 67674, 96709 67586, 96783 67801, 96572 68025, 96427 68041, 96427 67991, 96421 67985, 96287 67983, 96282 66876, 96476 66519, 96477 66514, 96416 66336, 96409 66332, 96282 66364, 96282 66282, 96416 66282, 96422 66276, 96422 66184, 96416 66178, 96282 66177, 96283 65387, 96416 65389, 96422 65383, 96422 65302, 96559 65230, 96560 65221, 96422 65068, 96432 64801, 96612 64725))) \ No newline at end of file diff --git a/stress_benchmark/resources/045.settings b/stress_benchmark/resources/045.settings new file mode 100644 index 0000000000..c93fd544aa --- /dev/null +++ b/stress_benchmark/resources/045.settings @@ -0,0 +1,630 @@ +experimental=0 +infill_pattern=zigzag +dual=0 +slicing_tolerance=exclusive +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=20 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=220 +machine_max_feedrate_x=299792458000 +top_bottom_pattern=zigzag +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.8 +material_guid=4f14d5fb-3b32-4bc4-adc2-e83693b02d69 +platform_adhesion=0 +speed_support_interface=40.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.7 +prime_tower_brim_enable=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=False +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.1 +support_offset=0.8 +acceleration_layer_0=3000 +support_conical_min_width=5.0 +shell=0 +retraction_combing=no_outer_surfaces +support_zag_skip_count=8 +retraction_speed=25 +acceleration_roofing=3000 +raft_interface_jerk=20 +support_roof_height=1 +acceleration_travel=5000 +acceleration_wall_x_roofing=3000 +support_roof_enable=False +acceleration_travel_layer_0=5000.0 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=1 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=20 +date=01-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=20 +cool_fan_speed=100.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=20 +material_flow=100 +material_is_support_material=False +raft_interface_speed=22.5 +skirt_brim_speed=30.0 +retraction_amount=6.5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0 +acceleration_wall_x=3000 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=60.0 +skirt_gap=3 +ooze_shield_angle=60 +bridge_skin_speed_2=50 +cross_infill_pocket_size=0.4 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=20 +acceleration_print_layer_0=3000 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +retraction_min_travel=0.8 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=False +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +skin_monotonic=True +command_line_settings=0 +acceleration_topbottom=3000 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=299792458000 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=30.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=3000 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=310 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_inner +travel_speed=120 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=10 +jerk_travel=30 +speed_travel=120 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=225.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=25 +speed_support_bottom=40.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=3.0 +speed_slowdown_layers=2 +optimize_wall_printing_order=False +machine_max_acceleration_y=9000 +resolution=0 +support_angle=50 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=20 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=3000 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Fri +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=1 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.1 +minimum_bottom_area=1.0 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=1 +wall_thickness=0.8 +top_bottom_pattern_0=zigzag +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=5 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=3000 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=zigzag +jerk_wall_x_roofing=20 +top_skin_preshrink=1.6 +minimum_polygon_circumference=4.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=20.0 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.8 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=1 +jerk_prime_tower=20 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=0.0 +support_interface_density=100 +bridge_wall_speed=50 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30.0 +infill_offset_y=0 +cool_fan_speed_max=100.0 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=40.0 +support_bottom_wall_count=0 +speed_print_layer_0=30.0 +jerk_support_interface=20 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=95 +lightning_infill_straightening_angle=40 +support_tree_angle=50 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.1 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=2 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=buildplate +lightning_infill_overhang_angle=40 +quality_name=Coarse +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=1.6 +min_wall_line_width=0.34 +acceleration_support_infill=3000 +meshfix=0 +machine_max_feedrate_y=299792458000 +bridge_skin_speed=50 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=33.333333333333336 +bridge_fan_speed_3=0 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0.3 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=30.0 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=20 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=3000 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=False +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=5 +material_print_temperature_layer_0=220 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=6.5 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_depth=310 +acceleration_skirt_brim=3000 +skin_overlap=25 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=450 +raft_smoothing=5 +acceleration_support_interface=3000 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=20 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=3000 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=20 +alternate_carve_order=False +wipe_hop_speed=10 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=220 +wipe_hop_amount=1 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=60 +support_interface_enable=False +raft_base_acceleration=3000 +wall_line_width_x=0.4 +machine_acceleration=4000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=5 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=95 +skin_preshrink=1.6 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=3000 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=4 +jerk_travel_layer_0=30.0 +raft_base_speed=22.5 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=20 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.8 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=False +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=3000 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=0.4 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=6.5 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.8 +prime_blob_enable=False +bridge_settings_enabled=True +jerk_enabled=False +speed_wall_0_roofing=30.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=50 +infill=0 +prime_tower_position_y=280.575 +jerk_support=20 +speed_wall_x_roofing=60.0 +speed_layer_0=30.0 +wall_line_width_0=0.4 +jerk_support_infill=20 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +machine_name=Unknown +acceleration_prime_tower=3000 +material_print_temperature=220 +jerk_print_layer_0=20 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=brim +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=440.575 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=3000 +support_roof_wall_count=0 +raft_jerk=20 +support_z_distance=0.1 +machine_height=900 +speed_infill=60 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=30.0 +speed_support=60 +speed_prime_tower=60 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=3000 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.6666666666666665 +infill_line_width=0.4 +speed_wall_x=60.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=buildplate +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=3000 +infill_sparse_density=100 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=1.6 +retraction_count_max=90 +jerk_infill=20 +speed_ironing=20.0 +gantry_height=900 +bottom_skin_expand_distance=1.6 +min_feature_size=0.32 +layer_0_z_overlap=0.15 +material_initial_print_temperature=220 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=6.123233995736766e-17 +cool_fan_speed_min=100.0 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=1.6 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=220 diff --git a/stress_benchmark/resources/045.wkt b/stress_benchmark/resources/045.wkt new file mode 100644 index 0000000000..5811a3c9c1 --- /dev/null +++ b/stress_benchmark/resources/045.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((302030 234958, 302026 234978, 302005 234946)), ((302414 234417, 302456 234464, 302244 234612, 302232 234624, 302254 234461, 302238 234162)), ((302610 234480, 302659 234533, 302572 234595, 302456 234464, 302497 234436, 302561 234409)), ((304291 234278, 304213 234268, 304209 234256)), ((303386 234037, 303762 234137, 303742 234134, 303322 234200, 303292 234178, 302566 233851)), ((261951 233033, 261878 233014, 261873 233007, 261913 232965)), ((262907 232282, 262967 232628, 262960 232632, 262400 232746, 262069 232713, 261974 232459, 261695 232330, 261767 232262, 261783 232237, 262224 232153, 262682 231886, 262912 231700)), ((261976 232704, 262069 232713, 262077 232734, 261867 232713, 261836 232635)), ((263149 232614, 263148 232634, 262998 232699, 262963 232706, 262964 232698, 263148 232615, 262970 232644, 262967 232628, 263142 232543)), ((261348 232329, 261441 232372, 261502 232439, 261348 232329, 261314 232313, 261317 232307)), ((261783 232237, 261655 232261, 261624 232297, 261615 232293, 261479 232148, 261491 232138, 261896 232053)), ((299479 230332, 299507 230343, 299507 230350, 299403 230309)), ((299508 79655, 299479 79666, 299438 79678, 299508 79652)), ((262957 77366, 262964 77370, 262906 77716, 262914 78301, 262683 78114, 262224 77843, 261781 77760, 261767 77737, 261649 77624, 261695 77513, 262043 77288, 262396 77252)), ((261658 77737, 261781 77760, 261894 77945, 261600 77885, 261615 77705, 261620 77693)), ((262054 77281, 262043 77288, 261974 77295, 261619 77469, 261578 77532, 261557 77500, 261619 77469, 261665 77400, 261834 77290, 262061 77267)), ((263124 77377, 263123 77447, 262964 77370, 262969 77342, 262951 77331)), ((262992 77297, 263124 77354, 263124 77373, 263147 77383, 263124 77377, 263124 77373, 262944 77291, 262944 77287)), ((262946 77330, 262946 77335, 262861 77308)), ((303745 75860, 303776 75856, 303387 75956, 302604 76139, 303293 75819, 303316 75802)), ((302460 75532, 302421 75575, 302239 75837, 302255 75537, 302228 75340)), ((304210 75744, 304213 75732, 304293 75722)), ((302660 75466, 302618 75511, 302565 75588, 302495 75561, 302460 75532, 302573 75405)), ((302030 75040, 302005 75052, 302026 75021)), ((261929 231714, 261987 231728, 262024 231737, 261965 231743, 261964 231744)), ((250196 167964, 249781 166859, 249410 165810, 249081 164806, 248793 163847, 248543 162928, 248439 162511, 262246 162511, 262246 168087, 250245 168087)), ((305216 72882, 305560 73066, 305700 73216, 305897 73538, 306025 73910, 306110 74342, 306156 75147, 306100 75885, 305989 76355, 305715 76779, 305339 76921, 304832 76999, 304294 77123, 304267 77144, 304080 77197, 303969 77285, 303697 77688, 303528 78403, 303414 79639, 303369 80568, 303339 81658, 303323 82898, 303325 84270, 303369 86547, 303397 87358, 303528 89914, 303591 90804, 303668 91710, 303854 93596, 304101 95597, 304408 97735, 304779 100038, 305211 102530, 306306 108720, 306487 109788, 307077 113114, 307393 114843, 307734 116601, 307905 117411, 308096 118380, 308491 120165, 308913 121954, 309364 123737, 309834 125506, 310319 127258, 310813 128987, 312343 134172, 313076 136688, 313419 137910, 314054 140279, 314339 141436, 314606 142579, 314850 143690, 315071 144790, 315270 145874, 315445 146948, 315600 148007, 315798 149673, 315895 150763, 315971 151836, 316025 152897, 316055 153951, 316066 155001, 316056 156050, 316026 157103, 315972 158163, 315899 159238, 315800 160328, 315672 161438, 315523 162570, 315342 163732, 315128 164926, 314883 166156, 314606 167431, 314341 168572, 314053 169732, 313415 172123, 313070 173356, 310757 181334, 309795 184805, 309319 186608, 308844 188503, 308440 190211, 308048 191988, 307688 193743, 307350 195468, 307020 197265, 305399 206425, 304634 210849, 304318 212884, 304177 213866, 303972 215419, 303855 216403, 303735 217578, 303582 219329, 303523 220188, 303395 222678, 303368 223473, 303325 225730, 303323 227102, 303339 228345, 303369 229447, 303415 230384, 303515 231442, 303696 232309, 303969 232714, 304079 232800, 304253 232843, 304293 232874, 304846 233003, 305339 233077, 305714 233219, 305988 233642, 306101 234115, 306157 234852, 306111 235657, 306025 236088, 305896 236459, 305699 236782, 305560 236932, 305216 237117, 304835 237208, 304239 237208, 302574 236772, 301388 236477, 301232 236389, 300898 236109, 300621 235716, 300542 235522, 300465 235050, 300404 234233, 300146 233851, 299605 233489, 299409 233416, 299403 233412, 298276 232989, 296892 232594, 296145 232401, 294585 232023, 292872 231635, 291692 231379, 289967 231021, 288559 230741, 287192 230491, 285869 230262, 284591 230057, 283361 229876, 282181 229725, 281049 229604, 279970 229519, 278939 229465, 277941 229438, 277759 229440, 277753 229440, 276812 229450, 275737 229502, 275048 229557, 274219 229649, 273422 229764, 272629 229903, 271914 230058, 271196 230236, 270499 230430, 269819 230644, 269273 230830, 268608 231079, 267813 231406, 267049 231756, 266203 232196, 265990 232357, 265887 232417, 265332 232837, 265209 233013, 265059 233419, 265036 234114, 264979 234392, 264857 234696, 264634 235032, 264177 235377, 263873 235517, 263334 235629, 262603 235728, 262046 235760, 261408 235740, 260889 235690, 260723 235616, 260343 235428, 260134 235267, 259792 234815, 259562 234352, 259380 233797, 259269 233264, 259181 232697, 259113 232069, 259074 231561, 259016 230110, 259004 228898, 259019 227750, 259041 226885, 259099 225548, 259181 224640, 259274 224177, 259396 224038, 259698 224941, 259733 225006, 260028 226214, 260202 226811, 260392 227378, 260616 227890, 260905 228396, 261193 228637, 261323 228675, 261482 228422, 261563 228144, 261683 227331, 261746 226527, 261789 225624, 261826 224293, 261851 222906, 261879 218451, 261871 215290, 261836 212973, 261804 211948, 261757 210868, 261691 209746, 261598 208543, 261478 207374, 261315 206101, 261104 204760, 260825 203337, 260468 201827, 260035 200241, 259521 198591, 258935 196896, 258288 195182, 257604 193474, 256880 191776, 256141 190108, 255388 188464, 253865 185263, 249426 176269, 248752 174867, 248111 173501, 247507 172176, 246951 170901, 246435 169668, 245966 168488, 245553 167371, 245176 166292, 244841 165262, 244549 164268, 244287 163311, 244066 162387, 243870 161495, 243710 160626, 243573 159781, 243460 158954, 243370 158145, 243301 157347, 243254 156559, 243228 155776, 243218 155001, 243229 154221, 243256 153438, 243302 152651, 243371 151852, 243462 151043, 243574 150218, 243711 149371, 243867 148549, 244066 147611, 244291 146686, 244550 145729, 244847 144738, 245180 143706, 245554 142627, 245982 141486, 246438 140330, 246950 139104, 247511 137822, 248115 136498, 249429 133729, 250130 132296, 252346 127832, 253868 124737, 254631 123148, 255390 121532, 256143 119889, 256889 118205, 257607 116522, 258294 114814, 258938 113103, 259524 111405, 260036 109754, 260471 108169, 260824 106661, 261103 105239, 261317 103895, 261479 102623, 261602 101406, 261708 99998, 261807 98046, 261837 97000, 261871 94990, 261879 91213, 261850 87057, 261827 85704, 261794 84484, 261747 83470, 261662 82420, 261525 81647, 261325 81326, 261194 81362, 260906 81601, 260615 82106, 260392 82622, 260201 83187, 260027 83785, 259733 84992, 259698 85057, 259396 85960, 259274 85820, 259181 85358, 259098 84451, 259040 83114, 259018 82250, 259004 81100, 259011 80104, 259061 78666, 259113 77929, 259182 77301, 259268 76736, 259387 76177, 259561 75647, 259729 75291, 260122 74745, 260153 74715, 260341 74571, 260866 74311, 261407 74258, 262046 74239, 262609 74271, 263179 74346, 263857 74475, 264177 74623, 264650 74985, 264857 75302, 265017 75700, 265059 76580, 265209 76986, 265329 77159, 265886 77581, 265990 77641, 266195 77797, 267048 78243, 267813 78593, 268607 78920, 269272 79167, 269817 79355, 270497 79567, 271195 79762, 271913 79941, 272653 80097, 273422 80236, 274218 80348, 275047 80440, 275911 80508, 276812 80546, 277398 80553, 277967 80560, 279057 80528, 279970 80480, 281049 80394, 282180 80273, 283361 80122, 284591 79941, 285869 79736, 287192 79508, 288645 79241, 291414 78680, 292898 78358, 294678 77955, 296227 77578, 296892 77405, 298273 77010, 299404 76585, 299412 76580, 299607 76507, 300146 76147, 300403 75767, 300449 75372, 300472 74861, 300543 74475, 300621 74281, 300898 73889, 301233 73608, 301383 73524, 302575 73228, 304239 72792, 304833 72791) (261929 231714, 261815 231869, 261491 232138, 261473 232142, 261479 232148, 261464 232161, 261514 232364, 261537 232399, 261527 232412, 261555 232425, 261580 232463, 261557 232499, 261535 232489, 261503 232440, 261527 232412, 261441 232372, 261397 232324, 261324 232296, 261340 232264, 261464 232161, 261460 232145, 261473 232142, 261454 232121, 261434 232040, 261433 231585, 261202 231130, 261143 231064, 260943 230531, 261123 231113, 261372 231789, 261434 232040, 261434 232100, 261454 232121, 261460 232145, 261313 232176, 261267 232173, 261255 231907, 261235 231842, 261235 231735, 261148 231561, 261235 231842, 261234 232171, 260707 232135, 260500 232146, 260195 232032, 260659 232224, 260839 232270, 260514 232266, 260846 232412, 261315 232529, 261207 233099, 260978 233427, 260959 233960, 261147 233615, 261169 233592, 261165 233955, 261254 233874, 261275 233908, 261585 233447, 261797 233294, 261851 233321, 261931 233281, 262078 233066, 262020 233051, 262384 232996, 262385 232995, 262025 233047, 261913 232965, 261724 232680, 261771 232703, 261867 232713, 261926 232855, 262382 232816, 262475 232788, 262557 232782, 262583 232785, 262839 232732, 262385 232995, 262394 233015, 262556 233386, 262910 233532, 262915 233420, 263131 233508, 263126 232977, 263148 232634, 263928 232297, 264009 232272, 264592 231851, 264957 231443, 265357 230738, 265627 229813, 265721 229181, 265913 229104, 266100 228983, 266701 228705, 267340 228435, 268028 228170, 268512 227998, 269299 227742, 270122 227506, 270978 227290, 271873 227097, 272803 226929, 273771 226788, 274774 226679, 275815 226599, 276892 226553, 277816 226542, 278959 226567, 280151 226631, 281382 226730, 282647 226864, 283937 227027, 285258 227221, 286608 227438, 288091 227699, 289400 227941, 291118 228283, 292176 228505, 294154 228941, 295925 229357, 297482 229751, 298179 229946, 299323 230286, 299323 230339, 299442 231105, 299579 231856, 299709 232345, 300025 233088, 300296 233534, 300712 234052, 301305 234598, 301680 234847, 302102 235029, 302808 235463, 303548 235703, 303554 235704, 303748 235767, 304317 235856, 304836 235961, 304392 235839, 304060 235608, 303624 235362, 303007 234909, 302659 234533, 302674 234522, 303082 234345, 303350 234301, 303775 234619, 304101 234785, 304116 234755, 304296 234865, 304455 234488, 304318 234025, 304030 233437, 303593 232824, 303030 232249, 302406 231755, 301776 231353, 301176 231036, 300591 230769, 299507 230343, 299520 229894, 299471 228916, 299441 227799, 299427 226543, 299436 225160, 299463 223659, 299516 222050, 299604 220352, 299661 219447, 299804 217648, 299894 216704, 299999 215734, 300253 213713, 300560 211563, 300930 209263, 301170 207855, 301828 204138, 302909 198139, 303548 194805, 303904 193073, 304289 191305, 304706 189509, 305157 187694, 305632 185874, 306130 184059, 307164 180480, 307431 179607, 307684 178736, 309375 173174, 310066 170803, 310686 168545, 310964 167452, 311218 166379, 311454 165324, 311664 164286, 311854 163268, 312029 162194, 312165 161267, 312308 160063, 312408 159027, 312482 158007, 312535 156998, 312567 155996, 312577 155001, 312568 154000, 312536 152999, 312483 151991, 312407 150970, 312309 149933, 312185 148879, 312031 147803, 311848 146697, 311634 145556, 311385 144375, 311106 143154, 310793 141885, 310443 140566, 310061 139193, 309381 136884, 307711 131444, 306649 127914, 306174 126251, 305681 124470, 305206 122672, 304755 120864, 304339 119061, 303952 117271, 303592 115506, 303236 113668, 302644 110456, 301573 104465, 300985 101076, 300561 98442, 300344 96958, 300091 95041, 299982 94112, 299800 92300, 299659 90526, 299604 89698, 299520 88038, 299487 87131, 299437 84951, 299427 83561, 299440 82287, 299469 81144, 299521 80105, 299508 79655, 299667 79592, 299817 79536, 300221 79375, 300591 79230, 301176 78964, 301782 78641, 302407 78243, 303023 77755, 303592 77174, 304035 76560, 304319 75974, 304456 75509, 304295 75136, 304114 75245, 304100 75216, 303775 75379, 303330 75713, 303268 75705, 302672 75475, 302660 75466, 303011 75089, 303617 74641, 304057 74392, 304390 74161, 304835 74040, 304314 74144, 303758 74230, 303561 74294, 303558 74294, 302800 74539, 302101 74970, 301684 75151, 301309 75399, 300708 75953, 300297 76464, 300025 76908, 299709 77653, 299511 78397, 299386 79390, 299324 79658, 299324 79712, 298179 80053, 296732 80442, 295714 80693, 294020 81087, 292835 81349, 290841 81770, 289400 82057, 287861 82342, 286607 82560, 285258 82777, 283937 82970, 282646 83135, 281382 83270, 280152 83366, 278959 83431, 277848 83458, 276893 83446, 275816 83400, 274775 83322, 273772 83211, 272804 83069, 271874 82902, 270979 82709, 270123 82494, 269300 82258, 268512 82001, 268033 81832, 267341 81565, 266702 81295, 266101 81017, 265914 80894, 265722 80818, 265658 80316, 265520 79737, 265291 79067, 264957 78554, 264588 78147, 264013 77728, 263927 77701, 263124 77354, 263131 76492, 262915 76579, 262910 76468, 262554 76613, 262397 76981, 262387 77004, 262839 77266, 262578 77214, 262555 77216, 262499 77213, 262382 77182, 261924 77144, 261853 77278, 261834 77290, 261769 77297, 261715 77323, 261904 77034, 261869 76995, 261880 76978, 261956 76954, 261904 77034, 261909 77039, 262035 76947, 262281 76986, 262387 77004, 262386 77003, 262281 76986, 262003 76940, 262072 76918, 261930 76715, 261850 76676, 261802 76706, 261586 76552, 261274 76089, 261252 76122, 261164 76044, 261169 76404, 261148 76382, 260961 76066, 260979 76573, 261206 76901, 261316 77469, 260842 77586, 260521 77727, 260763 77740, 260634 77771, 260475 77844, 260970 77874, 261266 77830, 261254 78095, 261150 78432, 261262 78203, 261294 77826, 261300 77825, 261457 77857, 261371 78209, 261121 78884, 260937 79484, 261203 78868, 261202 78777, 261431 78236, 261583 78083, 261594 77947, 261496 77864, 261457 77857, 261462 77836, 261339 77733, 261318 77692, 261397 77673, 261502 77559, 261317 77691, 261307 77671, 261311 77629, 261362 77596, 261532 77512, 261502 77559, 261536 77598, 261512 77634, 261462 77836, 261496 77864, 261600 77885, 261594 77947, 261811 78129, 261928 78287, 261987 78273, 261965 78258, 262027 78264, 261987 78273, 262471 78615, 263191 79238, 263821 79697, 264400 80082, 264448 80111, 264597 80211, 265106 80514, 265254 80631, 265398 80688, 265516 80758, 265530 80850, 265610 81669, 265674 82772, 265715 83889, 265752 85703, 265768 87402, 265780 90850, 265772 94751, 265736 97143, 265702 98213, 265653 99316, 265585 100463, 265489 101662, 265362 102915, 265197 104237, 264970 105638, 264684 107126, 264304 108745, 263853 110392, 263296 112182, 262634 114092, 261875 116100, 261025 118181, 260125 120263, 259217 122286, 258065 124756, 256995 126990, 253465 134224, 252118 137065, 251506 138403, 250948 139681, 250437 140899, 249970 142057, 249559 143157, 249189 144206, 248865 145195, 248575 146164, 248322 147084, 248104 147968, 247915 148836, 247760 149647, 247627 150451, 247518 151237, 247434 152008, 247367 152768, 247321 153516, 247294 154260, 247284 155001, 247293 155738, 247322 156482, 247368 157233, 247434 157991, 247519 158761, 247626 159549, 247761 160354, 247933 161257, 248102 162032, 248221 162511, 247648 162511, 248072 164408, 248073 168087, 250026 168087, 250431 169099, 250941 170318, 251504 171594, 252113 172933, 252767 174325, 254190 177277, 256994 183015, 258309 185769, 259046 187350, 260121 189733, 261019 191813, 261869 193894, 262631 195905, 263274 197756, 263848 199603, 264309 201286, 264683 202870, 264970 204360, 265197 205762, 265362 207083, 265490 208337, 265585 209535, 265653 210682, 265702 211786, 265737 212856, 265770 214883, 265781 216800, 265767 222819, 265753 224298, 265711 226256, 265668 227372, 265595 228581, 265515 229242, 265310 229337, 265286 229354, 265255 229367, 265128 229467, 264596 229789, 264428 229902, 264401 229918, 263818 230302, 263194 230755, 262829 231086, 262433 231417, 261989 231726, 262091 231654))) \ No newline at end of file diff --git a/stress_benchmark/resources/046.settings b/stress_benchmark/resources/046.settings new file mode 100644 index 0000000000..2ebb338bdb --- /dev/null +++ b/stress_benchmark/resources/046.settings @@ -0,0 +1,629 @@ +experimental=0 +infill_pattern=triangles +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=5 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=215 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=False +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=0.6 +material_guid=475a94a5-3ca4-4c3a-8922-f3fce5cd21ab +platform_adhesion=0 +speed_support_interface=25.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0 +support_offset=0.2 +acceleration_layer_0=1500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=all +support_zag_skip_count=8 +retraction_speed=25 +acceleration_roofing=1500 +raft_interface_jerk=5 +support_roof_height=0.8 +acceleration_travel=3000 +acceleration_wall_x_roofing=1500 +support_roof_enable=True +acceleration_travel_layer_0=3000 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=25 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=2 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=5 +date=03-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=5 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=5 +material_flow=100 +material_is_support_material=False +raft_interface_speed=18.75 +skirt_brim_speed=20 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.04 +acceleration_wall_x=1500 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=80 +skirt_gap=5.0 +ooze_shield_angle=60 +bridge_skin_speed_2=12.5 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=1500 +machine_extruder_count=1 +support_roof_line_distance=0.8 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=3000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=5 +acceleration_print_layer_0=1500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=1500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=15.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=8 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=25.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=25 +acceleration_ironing=1500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=300 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_inner +travel_speed=100.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=10 +speed_travel=80 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=105.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=25 +speed_support_bottom=25.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=2000 +resolution=0 +support_angle=60 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=5 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.4 +acceleration_support_roof=1500 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.3 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Sun +blackmagic=0 +travel_avoid_distance=1 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.12 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.8 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.3 +wall_thickness=0.8 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=50 +wipe_retraction_prime_speed=25 +material_brand=empty_brand +initial_bottom_layers=5 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=5 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=1500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=5 +top_skin_preshrink=0.8 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=GamBody +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0.12 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.6 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.3 +jerk_prime_tower=5 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=50 +bridge_wall_speed=12.5 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=25.0 +support_bottom_wall_count=0 +speed_print_layer_0=20 +jerk_support_interface=5 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=60 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=3 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +quality_name=Normal +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=0.8 +min_wall_line_width=0.34 +acceleration_support_infill=1500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=12.5 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=40.0 +bridge_fan_speed_3=0 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=True +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=25.0 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=25 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.24 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=5 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=1500 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=1500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=10 +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +bottom_layers=5 +material_print_temperature_layer_0=220 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.8 +jerk_ironing=5 +machine_depth=210 +acceleration_skirt_brim=1500 +skin_overlap=10 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.8 +wall_extruder_nr=-1 +machine_width=210 +raft_smoothing=5 +acceleration_support_interface=1500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=5 +support_roof_density=50 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=1500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=5 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=60 +material_alternate_walls=False +material_break_preparation_temperature=215 +wipe_hop_amount=0.3 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=45 +support_interface_enable=True +raft_base_acceleration=1500 +wall_line_width_x=0.4 +machine_acceleration=3000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=5 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=0.8 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=4 +acceleration_wall=1500 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.01 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_travel_layer_0=10 +raft_base_speed=18.75 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=5 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.016 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=1500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.05 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=8 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.6 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=25 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=65 +bridge_skin_speed_3=12.5 +infill=0 +prime_tower_position_y=183.0 +jerk_support=5 +speed_wall_x_roofing=50 +speed_layer_0=80 +wall_line_width_0=0.4 +jerk_support_infill=5 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=1500 +material_print_temperature=215 +jerk_print_layer_0=5 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=203.0 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=5 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=1500 +support_roof_wall_count=0 +raft_jerk=5 +support_z_distance=0.12 +machine_height=205 +speed_infill=50 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=25.0 +speed_support=25 +speed_prime_tower=25.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=True +layer_start_x=0.0 +acceleration_support=1500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.6666666666666665 +infill_line_width=0.4 +speed_wall_x=50 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=1500 +infill_sparse_density=20 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=0.8 +retraction_count_max=100 +jerk_infill=5 +speed_ironing=16.666666666666668 +gantry_height=0 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=205 +material_adhesion_tendency=0 +default_material_print_temperature=200.0 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=6.123233995736766e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=0.8 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=5 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=215 diff --git a/stress_benchmark/resources/046.wkt b/stress_benchmark/resources/046.wkt new file mode 100644 index 0000000000..c6e4284486 --- /dev/null +++ b/stress_benchmark/resources/046.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((110044 85277, 110072 85286, 110079 85299, 110063 85329, 110019 85734, 109934 85891, 109885 86013, 109904 86228, 109784 86283, 109721 86258, 109628 86250, 109536 86203, 109391 86107, 109325 86033, 109323 86000, 109285 85941, 109308 85859, 109612 85364, 109753 85277, 109893 85263, 110004 85229))) \ No newline at end of file diff --git a/stress_benchmark/resources/047.settings b/stress_benchmark/resources/047.settings new file mode 100644 index 0000000000..49e632dc16 --- /dev/null +++ b/stress_benchmark/resources/047.settings @@ -0,0 +1,629 @@ +experimental=0 +infill_pattern=zigzag +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=100 +skirt_brim_line_width=0.4 +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=4.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=185 +machine_max_feedrate_x=299792458000 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +top_bottom_thickness=1.2 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=20.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.7 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.1 +support_offset=0.8 +acceleration_layer_0=1800 +support_conical_min_width=5.0 +shell=0 +retraction_combing=all +support_zag_skip_count=2 +retraction_speed=40 +acceleration_roofing=1800 +raft_interface_jerk=8 +support_roof_height=1 +acceleration_travel=3000 +acceleration_wall_x_roofing=1800 +support_roof_enable=True +acceleration_travel_layer_0=3000.0 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=40 +support_use_towers=False +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=03-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=3 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=100 +material_is_support_material=False +raft_interface_speed=18.75 +skirt_brim_speed=40 +retraction_amount=6 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.06 +acceleration_wall_x=1800 +prime_tower_flow=100 +machine_steps_per_mm_x=50 +speed_travel_layer_0=50.0 +skirt_gap=5 +ooze_shield_angle=60 +bridge_skin_speed_2=10 +cross_infill_pocket_size=1.6 +support_bottom_material_flow=100 +skin_material_flow=100 +roofing_material_flow=100 +acceleration_infill=1800 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=9000 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=True +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=1800 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.5 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=1.6800000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=8.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=1800 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=15 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=299792458000 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=100 +raft_surface_speed=25.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=40 +acceleration_ironing=1800 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=210 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +z_seam_corner=z_seam_corner_inner +travel_speed=100 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=10000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=10 +speed_travel=100 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=100 +anti_overhang_mesh=False +z_seam_x=105.0 +support_interface_material_flow=100 +wipe_retraction_retract_speed=40 +speed_support_bottom=20.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=100 +bridge_wall_min_length=2.1 +speed_slowdown_layers=2 +optimize_wall_printing_order=False +machine_max_acceleration_y=9000 +resolution=0 +support_angle=60 +cutting_mesh=False +minimum_interface_area=1.0 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +acceleration_support_roof=1800 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Sun +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.1 +minimum_bottom_area=1.0 +bridge_skin_density=100 +raft_interface_thickness=0.30000000000000004 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=1 +small_hole_max_size=0 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.075 +wall_thickness=1.2 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=100 +wipe_retraction_prime_speed=40 +material_brand=empty_brand +initial_bottom_layers=6 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=1800 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=True +cool_min_layer_time=5 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.2000000000000002 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.2 +material_anti_ooze_retracted_position=-4 +support_enable=True +support_bottom_line_distance=0.4 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=concentric +xy_offset=0 +machine_max_jerk_xy=20.0 +support_bottom_distance=0.1 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=1.2 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.075 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=100 +bridge_wall_coast=100 +support_interface_density=100 +bridge_wall_speed=25.0 +minimum_roof_area=1.0 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=50 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=20.0 +support_bottom_wall_count=0 +speed_print_layer_0=25.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=60 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.02 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.2 +cool_fan_full_layer=3 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=graceful +lightning_infill_overhang_angle=40 +quality_name=Normal +print_temperature=210 +adaptive_layer_height_variation_step=0.01 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +min_wall_line_width=0.34 +acceleration_support_infill=1800 +meshfix=0 +machine_max_feedrate_y=299792458000 +bridge_skin_speed=10 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=40.0 +bridge_fan_speed_3=0 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=20 +adaptive_layer_height_variation=0.1 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=z_overrides_xy +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=50 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.2 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=1800 +inset_direction=inside_out +wall_x_material_flow_roofing=100 +infill_before_walls=True +acceleration_wall_0_roofing=1800 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=triangles +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=8 +raft_surface_line_spacing=0.4 +retraction_retract_speed=40 +bottom_layers=6 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=6 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=210 +acceleration_skirt_brim=1800 +skin_overlap=5 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=1 +wall_extruder_nr=-1 +machine_width=210 +raft_smoothing=5 +acceleration_support_interface=1800 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=100 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=1800 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=10 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=200 +wipe_hop_amount=0.075 +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=30 +support_interface_enable=True +raft_base_acceleration=1800 +wall_line_width_x=0.4 +machine_acceleration=4000 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=sharpest_corner +prime_tower_base_size=4.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=6 +machine_max_jerk_e=5.0 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=1.2000000000000002 +layer_height_0=0.2 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=1800 +wall_material_flow=100 +skirt_height=3 +meshfix_maximum_resolution=0.5 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=1 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_travel_layer_0=10.0 +raft_base_speed=18.75 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=60 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.8 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=1800 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=1.6 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=6 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=1.2 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=50 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=60 +bridge_skin_speed_3=10 +infill=0 +prime_tower_position_y=181.895 +jerk_support=8 +speed_wall_x_roofing=50 +speed_layer_0=25.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=True +wall_x_extruder_nr=-1 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +acceleration_prime_tower=1800 +material_print_temperature=200 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=10 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=100 +prime_tower_position_x=201.895 +wipe_pause=0 +material_standby_temperature=175 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=1800 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.1 +machine_height=205 +speed_infill=50 +raft_surface_thickness=0.2 +infill_randomize_start_location=False +speed_roofing=20 +speed_support=30 +speed_prime_tower=50 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=140 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=1800 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=8.0 +infill_line_width=0.4 +speed_wall_x=50 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=everywhere +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=True +raft_base_thickness=0.24 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=1800 +infill_sparse_density=25 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=1.2000000000000002 +retraction_count_max=90 +jerk_infill=8 +speed_ironing=13.333333333333334 +gantry_height=0 +bottom_skin_expand_distance=1.2000000000000002 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=190 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=7.34788079488412e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=15 +expand_skins_expand_distance=1.2000000000000002 +material_bed_temperature=60 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=False +interlocking_beam_layer_count=2 +cool_min_temperature=200 diff --git a/stress_benchmark/resources/047.wkt b/stress_benchmark/resources/047.wkt new file mode 100644 index 0000000000..b6f942f9a9 --- /dev/null +++ b/stress_benchmark/resources/047.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((106032 105050, 106062 105402, 105490 106002, 105085 106091, 104982 105403, 105068 105298, 105825 104922))) \ No newline at end of file diff --git a/stress_benchmark/resources/048.settings b/stress_benchmark/resources/048.settings new file mode 100644 index 0000000000..73eacc8380 --- /dev/null +++ b/stress_benchmark/resources/048.settings @@ -0,0 +1,627 @@ +experimental=0 +infill_pattern=cubic +dual=0 +slicing_tolerance=middle +skirt_brim_material_flow=95.0 +skirt_brim_line_width=0.4 +minimum_support_area=0 +wall_x_material_flow_layer_0=100 +extruder_prime_pos_y=0 +magic_fuzzy_skin_outside_only=False +wall_transition_angle=10 +coasting_min_volume=0.8 +jerk_print=8 +brim_width=8.0 +material_no_load_move_factor=0.940860215 +material_final_print_temperature=215.0 +machine_max_feedrate_x=500 +top_bottom_pattern=lines +min_infill_area=0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +bridge_skin_material_flow_3=110 +material_print_temp_prepend=True +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.12 +top_bottom_thickness=0.84 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +speed_support_interface=50.0 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +machine_min_cool_heat_time_window=50.0 +speed_equalize_flow_width_factor=100.0 +support_bottom_stair_step_min_slope=10.0 +extruder_prime_pos_abs=False +wipe_brush_pos_x=100 +machine_scale_fan_speed_zero_to_one=False +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wall_0_material_flow_layer_0=100 +support_xy_distance=0.8 +prime_tower_brim_enable=False +gradual_support_infill_steps=0 +wall_line_width=0.4 +machine_heated_bed=True +top_bottom_extruder_nr=-1 +infill_wipe_dist=0.0 +support_offset=0.0 +acceleration_layer_0=500 +support_conical_min_width=5.0 +shell=0 +retraction_combing=noskin +support_zag_skip_count=10 +retraction_speed=52.0 +acceleration_roofing=500 +raft_interface_jerk=8 +support_roof_height=0.96 +acceleration_travel=500 +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_travel_layer_0=500 +support_extruder_nr=0 +brim_outside_only=True +retraction_prime_speed=52.0 +support_use_towers=True +material_surface_energy=100 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +skirt_line_count=3 +machine_nozzle_size=0.4 +wipe_retraction_extra_prime_amount=0 +jerk_support_roof=8 +date=03-12-2023 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +alternate_extra_perimeter=False +support_brim_line_count=10 +build_volume_temperature=28 +raft_base_jerk=8 +cool_fan_speed=100 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +group_outer_walls=True +jerk_roofing=8 +material_flow=95.0 +material_is_support_material=False +raft_interface_speed=15.0 +skirt_brim_speed=20.0 +retraction_amount=5 +support_tree_bp_diameter=7.5 +infill_overlap_mm=0.12 +acceleration_wall_x=500 +prime_tower_flow=95.0 +machine_steps_per_mm_x=50 +speed_travel_layer_0=100.0 +skirt_gap=10.0 +ooze_shield_angle=60 +bridge_skin_speed_2=10 +cross_infill_pocket_size=6.0 +support_bottom_material_flow=95.0 +skin_material_flow=95.0 +roofing_material_flow=95.0 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=True +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +machine_max_acceleration_x=500 +infill_support_angle=40 +support_bottom_extruder_nr=0 +smooth_spiralized_contours=True +acceleration_enabled=False +brim_gap=0 +jerk_topbottom=8 +acceleration_print_layer_0=500 +center_object=False +connect_infill_polygons=False +cool_fan_full_at_height=0.36 +meshfix_union_all_remove_holes=False +retraction_min_travel=1.5 +support_bottom_offset=0.0 +gradual_infill_steps=0 +support_extruder_nr_layer_0=0 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +support_bottom_enable=True +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +skin_monotonic=False +command_line_settings=0 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +ironing_inset=0.38 +infill_overlap=30.0 +support_mesh_drop_down=True +lightning_infill_prune_angle=40 +machine_max_feedrate_z=10 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +material_break_temperature=50 +roofing_line_width=0.4 +material_flow_layer_0=100 +relative_extrusion=False +wall_0_material_flow_roofing=95.0 +raft_surface_speed=20.0 +prime_tower_min_volume=6 +material_end_of_filament_purge_speed=0.5 +wipe_retraction_speed=52.0 +acceleration_ironing=500 +line_width=0.4 +flow_rate_extrusion_offset_factor=100 +machine_settings=0 +raft_base_extruder_nr=0 +z_seam_y=235 +wall_overhang_angle=90 +draft_shield_height=10 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +z_seam_corner=z_seam_corner_weighted +travel_speed=150.0 +max_extrusion_before_wipe=10 +support_meshes_present=False +support_join_distance=2.0 +machine_max_acceleration_e=5000 +cool_min_layer_time_fan_speed_max=10 +meshfix_keep_open_polygons=False +wall_transition_filter_deviation=0.1 +support_tree_top_rate=30 +jerk_travel=8 +speed_travel=150.0 +machine_shape=rectangular +ironing_enabled=False +wipe_move_distance=20 +raft_surface_fan_speed=0 +small_skin_width=0.8 +infill_material_flow=95.0 +anti_overhang_mesh=False +z_seam_x=117.5 +support_interface_material_flow=95.0 +wipe_retraction_retract_speed=52.0 +speed_support_bottom=50.0 +material_id=empty_material +raft_surface_layers=2 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +prime_tower_base_curve_magnitude=4 +infill_mesh_order=0 +support_roof_material_flow=95.0 +bridge_wall_min_length=2.2 +speed_slowdown_layers=2 +optimize_wall_printing_order=True +machine_max_acceleration_y=500 +resolution=0 +support_angle=45.0 +cutting_mesh=False +minimum_interface_area=10 +jerk_layer_0=8 +machine_center_is_zero=False +roofing_monotonic=True +default_material_bed_temperature=50 +support_xy_distance_overhang=0.4 +acceleration_support_roof=500 +retract_at_layer_change=False +support_roof_line_width=0.4 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +support_bottom_stair_step_width=5.0 +day=Sun +blackmagic=0 +travel_avoid_distance=0.625 +cool_min_speed=10 +interlocking_depth=2 +roofing_layer_count=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +support_top_distance=0.24 +minimum_bottom_area=10 +bridge_skin_density=100 +raft_interface_thickness=0.18 +jerk_travel_enabled=True +raft_interface_layers=1 +support_bottom_height=0.96 +small_hole_max_size=0 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +retraction_hop_after_extruder_switch_height=0.2 +wall_thickness=2.3 +top_bottom_pattern_0=lines +support_supported_skin_fan_speed=100 +support_bottom_density=33.333 +wipe_retraction_prime_speed=52.0 +material_brand=empty_brand +initial_bottom_layers=7 +support_material_flow=95.0 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_preparation_retracted_position=-16 +fill_outline_gaps=True +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +wipe_hop_enable=False +cool_min_layer_time=10 +material_shrinkage_percentage_xy=100.0 +support_roof_extruder_nr=0 +interlocking_enable=False +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.6 +minimum_polygon_circumference=1.0 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +acceleration_travel_enabled=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +layer_height=0.12 +material_anti_ooze_retracted_position=-4 +support_enable=False +support_bottom_line_distance=2.4000240002400024 +material_flush_purge_speed=0.5 +meshfix_union_all=True +travel=0 +meshfix_fluid_motion_enabled=True +machine_show_variants=False +machine_always_write_active_tool=False +quality_changes_name=empty +support_interface_pattern=grid +xy_offset=0 +machine_max_jerk_xy=10 +support_bottom_distance=0 +ironing_flow=10.0 +cool_fan_enabled=True +bottom_thickness=0.84 +material_type=empty +material_maximum_park_duration=300 +retraction_hop=0.2 +jerk_prime_tower=8 +material_shrinkage_percentage=100.0 +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +raft_fan_speed=0 +support_infill_extruder_nr=0 +wall_0_material_flow=95.0 +bridge_wall_coast=100 +support_interface_density=33.333 +bridge_wall_speed=10 +minimum_roof_area=10 +machine_buildplate_type=glass +ironing_pattern=zigzag +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=20.0 +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +support_tree_min_height_to_model=3 +speed_support_roof=50.0 +support_bottom_wall_count=0 +speed_print_layer_0=20.0 +jerk_support_interface=8 +raft_surface_line_width=0.4 +initial_extruder_nr=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +support_tree_angle=30.0 +draft_shield_height_limitation=full +conical_overhang_angle=50 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +gradual_infill_step_height=1.5 +support_infill_sparse_thickness=0.12 +cool_fan_full_layer=4 +hole_xy_offset_max_diameter=0 +cool_lift_head=False +support_tree_rest_preference=buildplate +lightning_infill_overhang_angle=40 +print_temperature=210 +adaptive_layer_height_variation_step=0.04 +z_seam_relative=False +top_skin_expand_distance=1.6 +min_wall_line_width=0.34 +acceleration_support_infill=500 +meshfix=0 +machine_max_feedrate_y=500 +bridge_skin_speed=10 +bridge_fan_speed=100 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +material_break_preparation_speed=2 +skin_line_width=0.4 +material_crystallinity=False +material=0 +adaptive_layer_height_threshold=0.2 +support_tree_angle_slow=20.0 +bridge_fan_speed_3=0 +raft_speed=20.0 +support_tree_branch_reach_limit=30 +support_structure=tree +support_bottom_stair_step_height=0 +support_fan_enable=False +z_seam_position=back +support_interface_offset=0.0 +magic_spiralize=False +wall_transition_filter_distance=100 +speed_topbottom=20.0 +adaptive_layer_height_variation=0.04 +material_extrusion_cool_down_speed=0.7 +interlocking_orientation=22.5 +prime_tower_size=20 +machine_nozzle_id=unknown +support_xy_overrides_z=xy_overrides_z +extruders_enabled_count=1 +switch_extruder_extra_prime_amount=0 +meshfix_fluid_motion_angle=15 +speed_wall_0=20.0 +top_bottom=0 +infill_multiplier=1 +infill_sparse_thickness=0.12 +raft_base_line_width=0.8 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +machine_nozzle_heat_up_speed=2.0 +jerk_wall_0=8 +machine_steps_per_mm_z=50 +machine_heat_zone_length=16 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +inset_direction=inside_out +wall_x_material_flow_roofing=95.0 +infill_before_walls=False +acceleration_wall_0_roofing=500 +min_bead_width=0.34 +switch_extruder_retraction_speeds=20 +support_pattern=gyroid +machine_feeder_wheel_diameter=10.0 +bridge_enable_more_layers=True +material_diameter=1.75 +brim_line_count=20 +raft_surface_line_spacing=0.4 +retraction_retract_speed=52.0 +bottom_layers=7 +material_print_temperature_layer_0=215.0 +raft_surface_extruder_nr=0 +material_anti_ooze_retraction_speed=5 +bridge_skin_material_flow_2=100 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_depth=235 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +adaptive_layer_height_enabled=False +support_interface_height=0.96 +wall_extruder_nr=-1 +machine_width=235 +raft_smoothing=5 +acceleration_support_interface=500 +layer_start_y=0.0 +adhesion_extruder_nr=-1 +machine_endstop_positive_direction_z=True +support_interface_wall_count=0 +jerk_skirt_brim=8 +support_roof_density=33.333 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +raft_surface_acceleration=500 +support_brim_enable=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +jerk_wall_x=8 +alternate_carve_order=True +wipe_hop_speed=5 +prime_tower_enable=False +machine_max_acceleration_z=100 +material_alternate_walls=False +material_break_preparation_temperature=215.0 +wipe_hop_amount=0.2 +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +prime_tower_wipe_enabled=True +speed_support_infill=60 +support_interface_enable=True +raft_base_acceleration=500 +wall_line_width_x=0.4 +machine_acceleration=500 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +raft_remove_inside_corners=False +wall_distribution_count=1 +support_roof_offset=0.0 +material_shrinkage_percentage_z=100.0 +support_skip_zag_per_mm=20 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_fluid_motion_shift_distance=0.1 +top_layers=7 +machine_max_jerk_e=5 +wall_overhang_speed_factor=100 +bridge_skin_material_flow=60 +skin_preshrink=1.6 +layer_height_0=0.12 +carve_multiple_volumes=False +support_tower_diameter=3.0 +acceleration_wall=500 +wall_material_flow=95.0 +skirt_height=3 +meshfix_maximum_resolution=0.25 +magic_fuzzy_skin_point_dist=0.8 +machine_nozzle_tip_outer_diameter=1 +mold_roof_height=0.5 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +raft_base_line_spacing=1.6 +support_wall_count=0 +cool_fan_speed_0=100.0 +wall_line_count=4 +jerk_travel_layer_0=8 +raft_base_speed=15.0 +raft_base_fan_speed=0 +max_skin_angle_for_expansion=90 +ooze_shield_enabled=False +print_bed_temperature=64.0 +raft_surface_jerk=8 +support_conical_angle=30 +material_flush_purge_length=60 +meshfix_maximum_travel_resolution=0.25 +support_tree_limit_branch_reach=True +xy_offset_layer_0=0 +remove_empty_first_layers=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +machine_minimum_feedrate=0.0 +acceleration_print=500 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +magic_fuzzy_skin_enabled=False +mold_enabled=False +machine_firmware_retract=False +support=0 +support_mesh=False +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +infill_line_distance=6.0 +lightning_infill_support_angle=40 +print_sequence=all_at_once +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +ironing_monotonic=False +skin_material_flow_layer_0=100 +top_thickness=0.84 +prime_blob_enable=False +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=20.0 +support_tower_roof_angle=65 +material_bed_temp_wait=True +raft_interface_fan_speed=0 +material_bed_temperature_layer_0=64.0 +bridge_skin_speed_3=10 +infill=0 +prime_tower_position_y=203.175 +jerk_support=8 +speed_wall_x_roofing=20.0 +speed_layer_0=20.0 +wall_line_width_0=0.4 +jerk_support_infill=8 +infill_offset_x=0 +skirt_brim_extruder_nr=-1 +machine_endstop_positive_direction_x=False +skirt_brim_minimal_length=250 +cooling=0 +brim_replaces_support=False +wall_x_extruder_nr=-1 +support_interface_skip_height=0.12 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +acceleration_prime_tower=500 +material_print_temperature=215.0 +jerk_print_layer_0=8 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=40.0 +wall_0_inset=0 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +adhesion_type=skirt +min_odd_wall_line_width=0.34 +speed_z_hop=5 +brim_inside_margin=2.5 +infill_mesh=False +wall_x_material_flow=95.0 +prime_tower_position_x=223.175 +wipe_pause=0 +material_standby_temperature=180 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_margin=15 +raft_acceleration=500 +support_roof_wall_count=0 +raft_jerk=8 +support_z_distance=0.24 +machine_height=250 +speed_infill=40.0 +raft_surface_thickness=0.12 +infill_randomize_start_location=False +speed_roofing=20.0 +speed_support=60 +speed_prime_tower=20.0 +machine_steps_per_mm_y=50 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_interface_line_width=0.4 +zig_zaggify_infill=False +layer_start_x=0.0 +acceleration_support=500 +material_name=empty +support_tower_maximum_supported_diameter=3.0 +support_line_distance=2.0 +infill_line_width=0.4 +speed_wall_x=20.0 +ooze_shield_dist=2 +raft_interface_line_width=0.8 +support_type=buildplate +speed=0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +retraction_hop_only_when_collides=False +raft_base_thickness=0.144 +mold_width=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +infill_sparse_density=20.0 +nozzle_disallowed_areas=[] +small_skin_on_surface=False +bottom_skin_preshrink=1.6 +retraction_count_max=100 +jerk_infill=8 +speed_ironing=13.333333333333334 +gantry_height=25 +bottom_skin_expand_distance=1.6 +min_feature_size=0.1 +layer_0_z_overlap=0.15 +material_initial_print_temperature=215.0 +material_adhesion_tendency=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +min_skin_width_for_expansion=5.143516556418883e-17 +cool_fan_speed_min=100 +machine_use_extruder_offset_to_offset_coords=True +infill_support_enabled=False +support_interface_extruder_nr=0 +brim_smart_ordering=True +mesh_position_z=0 +support_infill_rate=20 +expand_skins_expand_distance=1.6 +material_bed_temperature=64.0 +mold_angle=40 +raft_airgap=0.3 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +travel_avoid_supports=True +interlocking_beam_layer_count=2 +cool_min_temperature=215.0 diff --git a/stress_benchmark/resources/048.wkt b/stress_benchmark/resources/048.wkt new file mode 100644 index 0000000000..43558a40ee --- /dev/null +++ b/stress_benchmark/resources/048.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((134260 189842, 134788 191162, 136083 191813, 136689 193182, 134663 194101, 134353 193972, 134066 193721, 134214 191386, 133525 190548, 133455 189673)), ((151951 164738, 151585 166602, 151120 167119, 150266 167129, 150880 167732, 151138 168002, 151077 168451, 151213 168456, 151413 168570, 151780 168929, 151790 169443, 148149 171233, 146304 172747, 145689 173444, 144933 174436, 144692 174950, 144146 177004, 143942 178651, 143902 179598, 143995 180168, 144292 181448, 144704 182221, 145662 183599, 146909 184895, 149006 186636, 150224 187468, 150301 187562, 150080 188002, 149850 188210, 149960 188778, 150285 189906, 150196 190308, 148763 190905, 148689 190874, 147060 188925, 146876 188623, 146310 188676, 146223 188600, 146149 189095, 147162 189971, 147200 189965, 147297 189689, 147470 190452, 147620 190792, 147331 192040, 146971 192347, 145953 192259, 145519 192071, 144963 190770, 144714 190236, 144386 189439, 144753 188875, 144566 188392, 144530 188204, 144449 188052, 144248 187853, 143920 187621, 143713 187564, 143437 187212, 143165 186984, 143109 186875, 142958 187214, 142822 187383, 142474 187851, 141683 187600, 140961 187324, 140487 185840, 139941 185505, 139528 185183, 140075 184823, 139918 184437, 139848 184100, 139816 184065, 140099 183694, 139872 183570, 139324 183235, 139254 183279, 138582 183042, 137548 182065, 137405 181698, 137162 180851, 137427 180362, 137490 180019, 138988 177624, 140139 177691, 140171 176540, 140188 175002, 139833 174913, 137962 174561, 137944 174112, 137835 173498, 137944 173276, 138561 172355, 139739 171777, 140700 171579, 140705 171538, 140858 171533, 141133 171415, 141211 171275, 140416 170506, 140444 170212, 141495 169784, 141400 169218, 142228 167585, 143700 167343, 143809 167488, 144208 168248, 144275 168156, 144194 167515, 145151 166514, 146341 166978, 146464 166923, 146919 167347, 147506 166635, 148307 166502, 149089 166351, 149381 166315, 149468 166256, 149799 165307, 151848 164097) (144399 168763, 143810 169870, 143570 170218, 143488 170513, 143549 170619, 144499 170356, 144786 170302, 144941 169066, 144800 168941, 144603 168886, 144375 168637)), ((140190 163235, 140244 164334, 139810 165623, 138070 167102, 138231 167349, 138932 168076, 138925 168140, 135253 169405, 134378 169803, 132435 170854, 132181 171044, 131159 172124, 131096 172297, 130798 172668, 129655 175435, 129529 175963, 129111 178371, 129168 180278, 129537 181207, 129949 182317, 130095 182572, 131860 184968, 132166 185298, 134525 187424, 134599 187535, 134393 187697, 134090 187904, 134060 188007, 134138 188576, 134053 188809, 133707 188800, 132941 188839, 132339 188895, 131826 188089, 131318 188381, 131406 189351, 131839 190821, 131755 191044, 130749 191693, 130158 191563, 129047 190322, 128936 189933, 128811 190227, 128250 190365, 127819 190068, 127555 189580, 127555 189044, 127391 189369, 126667 189801, 125596 188987, 126834 188035, 127556 189041, 127544 188657, 126846 188009, 126855 187448, 126672 186968, 126659 186403, 126879 186277, 126947 186198, 127442 186027, 127773 186368, 127984 186721, 128478 186112, 127836 185298, 127560 185383, 127350 185587, 126835 186056, 126307 185804, 125334 185276, 125146 184242, 125062 184103, 124796 183889, 124144 183230, 124373 183119, 124258 182683, 123170 181786, 122482 181179, 122174 180377, 122104 179917, 122308 179505, 122446 179318, 122589 179207, 123467 179340, 123833 179246, 124540 179523, 126138 175954, 126424 174323, 126694 172602, 126677 171247, 125534 171036, 124437 170542, 124368 170131, 124297 169954, 124401 169681, 124992 168918, 125295 168809, 126011 168585, 126979 168318, 126777 168069, 127388 167889, 128050 167717, 128044 167518, 129160 165906, 130276 165877, 130744 165874, 130952 166461, 131129 166997, 131030 167376, 130721 168025, 132054 167912, 132147 167721, 131880 167505, 131809 167476, 131626 167207, 131408 166794, 131518 166679, 131468 166399, 131468 166097, 131712 165884, 132338 165387, 132616 165145, 132822 165172, 133856 165749, 134269 165630, 134402 165791, 134619 165588, 134939 165509, 136094 165501, 136440 165137, 137086 163866, 137306 163621, 137513 163448, 139723 162966) (128151 188066, 128342 188274, 128379 188268, 128448 188405, 128215 187618, 128072 187185)), ((144595 191292, 144560 191449, 144511 191468, 144408 191416, 144032 190795, 144441 190410)), ((142894 190693, 142856 190798, 142657 190956, 142304 190753, 142639 190418)), ((143542 188621, 143691 188757, 143941 189122, 144081 189811, 144007 190101, 143573 190362, 143061 190198, 142717 189953, 142523 188683, 142909 188395, 142939 188348, 143142 188196)), ((160542 166051, 161855 166825, 162212 167461, 162144 167844, 161788 168147, 161327 168575, 161380 168697, 161290 168615, 161228 168820, 160884 168990, 160933 169064, 160989 169015, 161553 169160, 161497 168790, 161833 168167, 162319 168244, 162493 168080, 162709 168085, 162969 168070, 163042 168311, 163478 169219, 161733 170819, 159869 172742, 159600 173198, 158915 174436, 158762 174906, 158604 175173, 158336 176286, 158358 176781, 158595 178373, 159483 180068, 159851 180696, 160869 181691, 162672 183113, 164951 184368, 165000 184959, 164749 185584, 164603 185666, 163577 185132, 163568 185196, 164057 185811, 165096 186668, 165365 187457, 165334 188673, 164902 188962, 163002 188572, 162831 188410, 161947 186845, 160810 186855, 160611 186823, 160355 186603, 160079 186657, 160012 186641, 159988 186702, 159656 186915, 158980 186968, 158687 186978, 158284 186924, 158058 187650, 156857 187510, 156588 187463, 155822 186084, 155904 185633, 154825 185249, 154821 185100, 155606 184337, 155431 184078, 155371 183817, 155489 183551, 156419 183586, 155895 183062, 155854 182943, 155681 182555, 155794 182463, 155674 182558, 155447 182898, 155373 182922, 155243 183113, 154811 182970, 154654 182885, 154462 182851, 154238 182412, 154211 182436, 153753 182332, 153652 182188, 153599 182335, 153396 182593, 152952 182610, 152755 182287, 152944 181942, 153094 181925, 153023 181892, 152959 181603, 153007 181476, 152996 181138, 152393 180428, 151673 179260, 151468 178090, 151557 177271, 151713 176247, 152014 175446, 152341 174920, 152520 174655, 152882 174271, 153451 173612, 153814 173641, 153959 173781, 154391 173562, 154768 173286, 154860 173238, 155279 172973, 155170 172889, 155123 172737, 155135 172631, 155286 172538, 155647 172451, 155436 172058, 154877 172297, 154925 172686, 154567 173275, 153864 173383, 153609 173397, 153358 173231, 153272 172791, 153335 172650, 153620 172297, 153259 172021, 153320 171318, 153734 171145, 153674 170533, 154012 170321, 154142 170326, 153723 169646, 153588 169279, 153714 168842, 154461 167907, 155162 167752, 155713 168256, 155857 168978, 155947 169244, 155891 169516, 155777 169916, 155706 170004, 154810 170437, 155426 170806, 155632 170892, 155952 170853, 156112 170858, 156302 170657, 156429 170093, 156351 168670, 156091 168535, 155962 168202, 155900 167615, 156292 167166, 156871 167194, 156949 167259, 157471 166895, 157715 166963, 158226 167176, 158265 167052, 158905 165983) (159084 169291, 159220 169417, 159295 169601, 159620 169849, 160050 169271, 159758 169154, 159022 168770)), ((123806 158287, 124448 159275, 124113 160713, 123585 161383, 123473 161410, 123580 161465, 123909 161335, 124694 161730, 125513 162507, 125679 162694, 125629 162863, 125269 163527, 125151 163678, 125896 163724, 125026 164437, 124336 164748, 123793 164829, 123334 164925, 121425 165424, 120013 165813, 117697 166960, 117170 167309, 116776 167714, 115922 168501, 115560 169080, 114774 170755, 113959 173030, 113775 173912, 113663 175083, 113720 175503, 113799 176325, 113917 176538, 114472 178189, 114619 178432, 114998 179243, 117255 182216, 117610 182650, 117727 182833, 117908 183026, 118301 183541, 118325 183663, 118604 184464, 118632 184620, 118190 184683, 117412 183986, 117111 184258, 116895 184226, 116771 184261, 117107 184658, 116722 186507, 115917 187105, 114566 186686, 114071 185953, 113919 185067, 113784 184563, 113813 184539, 113481 184279, 112959 183945, 112722 183750, 112372 184037, 111629 183861, 111481 183756, 111272 183514, 111043 182881, 111028 182653, 110417 182537, 109722 182429, 109084 182247, 107881 181362, 107276 180933, 106841 180315, 106624 180465, 105831 180947, 105637 181030, 104354 180063, 104193 178937, 104137 178434, 103352 178327, 102728 178213, 102296 177478, 102378 177987, 102137 178403, 100715 179315, 100211 179294, 99949 178851, 100050 177177, 100312 176725, 102078 176120, 102186 176790, 102222 175986, 102264 175888, 102132 175936, 101572 175669, 101173 175343, 101403 174377, 101873 174181, 100917 172405, 100974 172185, 102876 172553, 103080 172557, 103068 172606, 103709 172740, 104731 171594, 106206 169152, 106357 168845, 106806 166457, 106868 165216, 106852 164568, 106754 163839, 106631 163737, 106265 163655, 106151 163969, 105751 163814, 105039 163214, 105119 163024, 104583 162708, 104359 162613, 104386 162506, 104546 162312, 104596 162278, 104786 162086, 106947 161481, 107392 160131, 108263 159681, 109582 160366, 109920 160533, 110558 159343, 112014 159185, 112704 160425, 113133 160088, 113800 159951, 116580 159332, 117519 160168, 117950 161360, 117718 162149, 117616 162398, 118000 162463, 117926 162376, 119159 161490, 119528 161646, 120271 162058, 120313 162152, 119775 162510, 120580 162324, 120723 162439, 120903 162747, 121535 162059, 121668 161875, 121190 161950, 120945 161473, 120658 160962, 120473 160765, 120406 160383, 120471 160183, 121935 158087) (106651 178570, 106683 178839, 107036 178472, 107323 178424, 106690 178489, 106582 178402)), ((171881 166614, 171984 167370, 172340 167245, 172844 167466, 172870 167582, 173039 167453, 173150 167426, 173275 168175, 173121 169321, 173031 169687, 172928 169881, 172499 170367, 171975 171216, 172773 171191, 172402 172240, 172415 172422, 172684 172460, 173057 172632, 173571 173137, 173795 173778, 173773 174488, 173628 174868, 173329 175261, 172995 175426, 173231 175883, 173441 176142, 174291 176765, 173591 177232, 173434 177274, 173481 177532, 173949 177485, 174159 177515, 174905 177783, 175331 177997, 175894 178749, 176327 179266, 176593 179884, 176563 179897, 176201 179790, 176275 180391, 176045 180530, 175607 180774, 175583 180821, 175916 181019, 176105 181025, 176339 181408, 176329 181694, 175424 183173, 174481 183653, 174396 183652, 174150 183703, 173383 183240, 173140 183081, 172673 183619, 172113 183509, 171873 183655, 171555 183743, 171440 183661, 171565 184023, 171349 184508, 170755 184618, 169683 184002, 169551 183835, 169555 183608, 169746 182718, 169592 182772, 169332 182717, 169017 181376, 169096 181275, 169047 181245, 168855 180931, 168840 180679, 168906 180183, 168757 179790, 168460 179308, 168201 178972, 168127 178761, 167945 178733, 167589 178636, 167507 178224, 167837 177887, 168129 177993, 168482 178249, 168976 177932, 168935 177585, 168957 177362, 169186 176994, 168066 177117, 167811 177167, 167855 177323, 167854 177773, 167723 177715, 167608 177881, 167272 178206, 166928 178329, 166012 177922, 165897 177582, 165943 177489, 165874 177354, 165893 177054, 166037 176918, 166288 177093, 166540 177008, 166660 176930, 166563 176382, 166969 175912, 167018 176004, 167141 175864, 167196 175660, 167028 175631, 167013 175466, 167146 175305, 166617 175004, 166417 174955, 166340 174669, 166534 174164, 166621 174121, 166507 173868, 166604 173712, 166883 173427, 166797 173429, 166339 173629, 165391 173110, 165365 173059, 165614 172365, 166370 172397, 166696 172659, 167041 172971, 166998 173280, 167473 173279, 167723 173356, 167908 173494, 167977 173715, 168156 173598, 168131 173405, 167991 173420, 167915 173269, 167709 173070, 167473 172737, 167671 172469, 167661 172430, 167462 172374, 167240 172369, 166558 172168, 166322 171164, 167108 170543, 167187 170422, 167528 170133, 167514 170071, 167483 170117, 166558 170543, 166603 169502, 167096 169707, 167451 169907, 167358 169519, 167303 169226, 167398 168677, 167790 167926, 169699 167191, 170158 167339, 170284 167405, 171321 166382, 171630 166337) (170734 182279, 170332 182481, 170683 182482, 171051 182619, 170902 182238) (173016 180413, 172822 180460, 173195 181440, 173558 180676, 173655 180573, 173069 180286) (174607 179244, 174725 179685, 175283 179382, 174742 179002) (171186 169258, 171886 169346, 172186 168744, 172190 168654)), ((106826 182956, 106268 183987, 105877 184119, 105364 183759, 105089 183143, 105167 182208, 105808 181844, 106010 181668)), ((97555 178676, 97879 180294, 99212 181309, 99610 182991, 97539 183494, 97041 183169, 96617 182629, 97178 180428, 96576 179333, 96684 178332)), ((154126 182797, 154114 182988, 153781 183301, 153622 183350, 153337 183238, 153266 182933, 153328 182793, 153560 182537, 154101 182517)), ((168309 180100, 168358 180244, 168326 180321, 168192 180349, 168054 180265, 168078 180027)), ((108442 154069, 108265 155305, 107703 156320, 105644 157530, 105732 157735, 106296 158577, 103309 158996, 102508 159167, 100911 159658, 99439 160151, 99036 160349, 97982 161111, 97853 161320, 97395 161700, 95818 164090, 95525 164753, 94706 166908, 94432 168663, 94454 169012, 94824 171035, 96271 174000, 98371 176735, 98418 176841, 98206 176916, 97929 177071, 97812 177260, 97798 177574, 97651 177821, 97263 177744, 96627 177656, 95964 177603, 95695 176934, 95049 177160, 94971 177988, 95137 179616, 95067 179731, 93898 180212, 93434 180016, 92461 178417, 92439 178226, 92302 178402, 91674 178435, 91380 178141, 91162 177471, 91228 177118, 91078 177309, 90242 177616, 89278 176558, 90758 175812, 90877 175229, 90777 174686, 90861 174184, 91157 174041, 91649 173874, 91768 174114, 92065 174491, 92083 174562, 92663 174169, 92252 173378, 91841 173443, 91104 173931, 90899 173773, 90649 173597, 89765 172883, 89771 171890, 89710 171729, 89507 171492, 88966 170699, 89171 170644, 89144 170274, 87688 168433, 87609 168258, 87517 167601, 87529 167237, 87897 166761, 88148 166637, 88593 166792, 89350 166743, 90096 167209, 90223 166975, 92316 164028, 93348 161367, 93478 161010, 93774 159467, 93552 159372, 92646 159186, 91955 158544, 91704 158394, 91669 157834, 91833 157563, 92380 157075, 92595 156986, 94395 156811, 94327 156688, 95230 156585, 95616 156557, 95633 156447, 97007 155055, 98625 155258, 98796 156414, 98662 156696, 98325 157152, 99419 157233, 99589 157357, 99725 157235, 99489 156975, 99411 156927, 99190 156219, 99297 156138, 99301 155829, 99348 155585, 99668 155385, 100296 155029, 100740 154819, 100889 154860, 101784 155556, 102251 155499, 102321 155623, 102497 155509, 102871 155508, 103617 155596, 103976 155406, 103958 155569, 104360 155269, 105053 154354, 105477 154017, 105858 153790, 107979 153689) (91263 176860, 91338 176505, 91260 176561, 91148 176347, 90794 175869) (92043 176234, 92107 176231, 92162 176330, 92099 175513)), ((167986 179623, 167846 179893, 167448 180062, 167003 179820, 167124 179353, 167441 179273)), ((149349 176284, 149398 176350, 149696 176645, 150036 177396, 150027 178219, 149704 179032, 149350 179398, 148638 179764, 147683 179815, 146797 179249, 146401 178407, 146588 176853, 147281 176094, 147428 175980, 148672 175914)), ((167109 178864, 167088 179317, 166799 179609, 166645 179608, 166464 179370, 166453 179119, 166875 178740)), ((178260 164385, 178705 164890, 178892 165577, 178889 165705, 178945 165627, 179347 165481, 180774 165643, 181060 165836, 181186 165976, 181335 166948, 180674 167673, 181281 168176, 181342 168122, 181508 167687, 181508 167591, 181639 167505, 182137 167456, 182611 167542, 182951 167841, 182972 168299, 183019 168546, 183033 169103, 183056 169171, 183130 169627, 183522 169975, 183600 170015, 183983 170453, 184055 170551, 184421 170869, 184438 171064, 184323 171330, 184001 171977, 183791 172126, 183379 172003, 183238 172402, 183432 172871, 183485 173174, 183374 173319, 183706 173467, 184023 173579, 184623 173501, 185228 174025, 185135 174278, 185159 174320, 185279 175144, 185302 175425, 184674 175953, 183824 176004, 183766 176278, 182795 176702, 183632 176940, 183811 177234, 183898 178526, 183926 179082, 183784 179331, 183509 179328, 182396 178638, 181996 178216, 182006 177900, 182033 177523, 181951 177422, 181686 177347, 181633 177251, 181261 177676, 180454 176643, 180792 176580, 180689 176538, 180693 176499, 180507 176316, 180258 175864, 179873 176120, 179652 176095, 179029 176175, 178839 176024, 178393 175322, 178488 175100, 178312 174962, 178360 174731, 178578 174797, 178637 174582, 178751 174664, 178923 174543, 178846 174147, 179117 173958, 179107 173805, 179270 173418, 179286 173281, 179204 173086, 179103 173405, 178943 173682, 178380 173851, 178102 173960, 177669 174093, 177263 173518, 177175 173286, 176989 172989, 176979 172493, 177061 172133, 177209 171797, 177814 171609, 177733 171272, 177549 170598, 177943 169849, 178191 169724, 178251 169452, 177352 169678, 177167 169338, 177114 169334, 176708 168906, 176609 169021, 176040 168826, 175873 168365, 176186 167997, 176693 168016, 176763 168131, 176927 167919, 177250 167591, 177439 167634, 178051 168070, 178054 168178, 178295 167919, 178456 167894, 178120 167469, 178198 166611, 177631 167167, 177442 167339, 177292 167198, 177023 167105, 176662 166837, 176242 166058, 176275 165891, 177048 164868, 177915 164338) (180212 172397, 180383 172546, 180465 172912, 180715 172518, 180314 172086)), ((135075 174969, 135232 175100, 135714 175448, 135769 175545, 136029 175878, 136276 176673, 136204 177314, 136157 177570, 135898 178096, 135649 178397, 135128 178796, 134474 178988, 133490 178921, 132650 178213, 132556 177965, 132328 177246, 132670 175904, 132762 175639, 133268 175162, 133508 175022, 134103 174818)), ((161813 175235, 161849 175267, 162185 175487, 162597 176037, 162786 176837, 162607 177683, 162390 178034, 161957 178435, 160978 178732, 160061 178369, 159565 177693, 159458 176223, 160031 175299, 161165 175024)), ((186306 176536, 186360 176911, 186075 177651, 185547 178054, 184724 178230, 184165 178062, 184075 177921, 184598 176142, 185126 175935, 185548 176012, 185611 175933)), ((165238 176727, 165211 176954, 165060 176991, 164958 176964, 164929 176830, 165061 176650)), ((165541 174222, 166037 174451, 166184 174553, 166265 175055, 166078 175208, 166365 175127, 166668 175306, 166659 175648, 166676 175804, 166506 176151, 166433 176202, 165790 176373, 165639 176434, 165545 176414, 165296 175951, 165308 175837, 165542 175432, 165314 175285, 165228 175252, 165165 175115, 165119 174541, 165166 174504, 164870 174456, 164821 173970, 165326 173871)), ((186722 174501, 186888 175144, 186778 175296, 186356 175668, 185594 175567, 185560 175382, 185383 174833, 185952 174343)), ((121167 171759, 121609 171832, 122400 172670, 122641 173704, 122458 174301, 122327 174643, 121999 174900, 121036 175470, 120693 175488, 119689 175116, 119451 174987, 119388 174879, 119205 174670, 119046 174365, 118912 173837, 118872 173309, 119069 172870, 119256 172415, 119581 172154, 120027 171822, 120596 171695)), ((177275 174169, 177416 174285, 177321 174533, 177092 174637, 176740 174516, 176682 174414, 176716 174251, 176936 174111)), ((153258 173597, 153008 173968, 152683 173809, 152709 173669, 152946 173374)), ((164709 173101, 164633 173299, 164442 173239, 164398 173083, 164479 172977, 164627 172975)), ((87659 149905, 87838 150844, 87900 150643, 88181 150168, 89062 149977, 89739 150532, 89782 150722, 90117 150734, 90460 151292, 91174 150987, 91608 150787, 92149 150938, 92657 151108, 93212 151560, 93968 153356, 93910 153799, 93690 154157, 93588 154130, 93219 154154, 93433 154377, 93491 154505, 93793 154631, 93949 154860, 93851 155369, 93657 155797, 92333 155805, 90703 155971, 88983 156251, 88134 156452, 85963 157365, 84586 158486, 83416 160645, 83113 162532, 83058 163003, 83210 164061, 83451 165532, 83666 166336, 85308 169959, 85243 170060, 84958 170271, 84434 170617, 84305 170609, 84207 170441, 84211 170553, 84418 171338, 84347 171733, 83338 173015, 82460 172965, 81598 171994, 81360 171066, 81279 170147, 81321 169756, 81227 169855, 81092 169801, 80723 169174, 79856 170096, 79502 169076, 79727 168775, 79755 168691, 79873 168582, 79859 168505, 79415 168135, 79140 167971, 78862 167784, 78691 167229, 78637 167145, 78451 167324, 78194 167508, 77869 167682, 77094 166947, 76786 166620, 77010 165024, 77209 164838, 76537 163821, 77599 163683, 77618 163409, 77672 163192, 77638 163087, 78084 162866, 78861 163497, 78914 162751, 78690 162503, 78606 162587, 78451 162633, 78269 162483, 78179 162303, 78146 162046, 77965 161721, 77362 161788, 77017 161450, 77135 161310, 77276 161059, 77328 161039, 76931 160765, 76977 160367, 77145 160302, 76918 159309, 76932 158916, 77107 157817, 77916 156167, 78326 155614, 78607 155017, 79741 153812, 79994 153660, 81106 153255, 82052 153079, 82218 152923, 82391 152878, 82852 152916, 82925 153142, 83042 152849, 83220 152756, 82911 152716, 82808 152581, 82781 152367, 82918 152181, 83109 152158, 83375 152354, 83407 152495, 83474 152361, 83838 151955, 83851 151962, 84332 151181, 84965 151228, 85227 150320, 86169 149605, 86684 149468) (84655 153555, 85262 153594, 85275 153488, 84726 153409) (87379 151637, 86847 152026, 86416 152269, 85911 152265, 86043 152545, 86048 152622, 86204 152902, 86267 152917, 86579 153166, 87051 152879, 87746 152037, 88003 151647, 87691 151360)), ((176311 172505, 176290 172816, 176014 172963, 175901 172799, 175982 172597, 176211 172475)), ((80664 171473, 80167 172305, 79412 172061, 79037 171624, 79055 171206, 80242 170463)), ((187933 161034, 188036 161336, 187993 161722, 187725 161915, 188341 162067, 188973 162507, 189098 162671, 189128 162895, 189187 162902, 189520 162778, 189918 162451, 190168 162656, 190260 162616, 190598 162794, 190697 163133, 191085 163559, 191488 164276, 191871 164523, 192120 165106, 191900 165380, 191979 165987, 191995 166263, 191940 166643, 192337 167225, 191651 168828, 191724 168864, 191674 168823, 192363 168258, 192719 168200, 192825 167645, 193114 167522, 193584 167559, 193876 167862, 193815 168190, 193378 168534, 194170 169184, 194202 169289, 194151 169349, 193904 169408, 192262 169201, 192588 169883, 192438 170312, 191469 171153, 190645 171319, 190170 171223, 189540 170470, 189473 170050, 189536 169736, 189804 169596, 190077 169411, 189592 169064, 189349 168984, 189247 168824, 189144 168877, 189419 169514, 189461 169712, 188806 170339, 188751 170338, 188754 170383, 188629 170637, 188064 170766, 187613 170388, 187669 169644, 187704 169571, 187621 169311, 188130 168685, 188079 168472, 188240 168464, 188231 168438, 187825 168279, 187763 168130, 187551 167805, 187552 167548, 187606 167490, 187015 167271, 187536 167653, 187347 169030, 186795 169174, 186190 169032, 185578 168432, 185433 168219, 185377 167928, 185391 167589, 186451 167005, 186263 166919, 185788 165929, 186034 165138, 186409 164950, 186406 164575, 186887 164381, 187289 164665, 187188 165061, 188251 165387, 188669 166201, 188519 167202, 188583 167252, 188797 167790, 188913 167738, 189094 167768, 189324 167961, 189660 167165, 189458 167009, 189380 166896, 189436 166685, 189491 166359, 188839 165835, 188302 165366, 187585 164999, 188218 164302, 186642 164006, 186558 164122, 186393 164137, 186308 164002, 186418 163858, 186625 163935, 186614 163116, 186674 162743, 186637 162689, 187036 162213, 186451 162678, 186322 162571, 186204 162134, 186791 161313, 187330 160985, 187783 160955)), ((78254 168869, 78014 169931, 77916 170047, 77869 170052, 77792 169979, 77666 169358, 78026 168855, 78233 168814)), ((101228 164615, 101381 164796, 101816 165213, 101843 165301, 102043 165701, 102139 166503, 101896 167310, 101498 167847, 101192 168098, 100690 168354, 99914 168450, 98964 168188, 98279 167360, 98233 167097, 98141 166357, 98721 165117, 98867 164872, 99447 164498, 99718 164401, 100371 164302)), ((168226 167199, 168080 167562, 167866 167584, 167739 167349, 167660 166194)), ((173068 165832, 173151 165966, 173104 166184, 172693 166426, 172536 166053, 172861 165808)), ((134593 165161, 134445 165231, 134116 165268, 134111 164846, 134527 164591)), ((170746 164740, 170794 164800, 170791 164994, 170632 165121, 170085 165057, 170229 164829, 170426 164704, 170598 164683)), ((77719 143344, 77721 143872, 76825 145101, 76680 145168, 75468 144686, 75680 145695, 76029 145989, 76032 146090, 76233 146029, 76458 146031, 76852 145806, 78066 144556, 78015 144382, 78126 144156, 78398 143849, 78811 143837, 79071 144147, 79073 144197, 79908 144380, 80227 145203, 80372 145145, 81097 144984, 81578 145197, 82461 146241, 82726 147480, 82539 148058, 81876 148480, 81288 148424, 81175 148478, 80497 148185, 80328 148307, 80490 148508, 80539 148855, 80610 149190, 80998 149206, 81263 148684, 81675 148578, 81831 148817, 82374 148858, 82781 149308, 82585 149675, 82379 150007, 82287 150003, 82105 150327, 81810 150627, 79005 150393, 76909 150545, 75844 150772, 75055 151134, 74527 151244, 73854 151626, 73293 152192, 72612 153038, 71978 154806, 71711 155659, 71690 156409, 71928 159571, 72355 161303, 71764 161947, 71391 162096, 71146 162021, 71071 161946, 70958 161443, 70876 160906, 70647 161254, 70428 161258, 70384 161533, 70471 163013, 69736 164361, 69197 164831, 68902 164758, 68220 163620, 67962 162771, 68457 161263, 68081 160905, 67568 160356, 67456 160173, 67443 159659, 67356 159592, 67264 159420, 67083 159480, 66933 159450, 66700 159333, 66236 158936, 66046 158735, 65873 158498, 65131 158870, 64295 157730, 64790 156242, 65268 155936, 64890 155039, 65147 154767, 66112 154825, 66169 154590, 66147 154423, 66571 154283, 66963 154746, 66985 154221, 67089 154034, 67206 153760, 67590 153819, 67537 154146, 67659 154321, 67857 154269, 68077 153723, 67670 153635, 67208 153722, 67179 153744, 66801 153826, 66613 153717, 66271 153148, 66507 152488, 66409 152480, 66165 152120, 66326 151673, 66107 151582, 66076 151856, 65644 151928, 65341 151621, 65446 151245, 65827 151174, 66036 151359, 65994 151218, 66090 151080, 66453 150935, 66616 151299, 66813 151153, 67045 151055, 67075 150637, 67042 150149, 67129 149917, 67175 149592, 67204 149517, 67333 149038, 67596 148589, 68044 148127, 68246 147782, 68682 147461, 69023 147228, 70562 146606, 70648 146590, 70942 146120, 71597 146243, 71717 146581, 71749 146355, 71841 146202, 72122 146084, 72400 146149, 72519 146299, 72492 146621, 72372 146733, 72522 146756, 72538 146838, 72656 146781, 73761 146870, 73949 147348, 74005 147211, 73980 146931, 74178 146748, 74275 146777, 74524 146962, 74772 146930, 74787 146497, 74174 146185, 74112 146281, 73845 146534, 73283 146657, 72927 146356, 72505 145945, 72489 145818, 72733 145382, 72841 145333, 72964 145346, 73398 145319, 73396 144740, 73691 144509, 73962 144377, 74446 144574, 74494 144726, 74936 144234, 75184 144300, 75308 144443, 75377 144285, 75692 143175, 77303 143054) (73188 148727, 73265 148673, 73508 148695, 73849 148649, 73830 148472, 73305 148461, 72960 148357) (79059 147339, 79058 147513, 79168 147561, 79280 147980, 79926 147905, 80062 147919, 79993 147601, 79949 147318, 79740 146543)), ((185075 163636, 185117 163808, 184918 163939, 184762 163807, 184897 163569)), ((88213 159493, 88616 160061, 88764 160522, 88755 161347, 88429 161998, 88032 162399, 87728 162589, 87222 162776, 86544 162763, 85756 162433, 85227 161578, 85236 160704, 86046 159432, 87099 159019)), ((193569 162119, 193474 162468, 193157 162559, 193033 162250, 193254 162011)), ((194075 155047, 194631 155139, 194984 155287, 195198 155524, 195345 155936, 195306 156096, 195219 156216, 195377 156139, 195677 155830, 195938 155520, 196192 155565, 196583 155788, 196913 156033, 197298 156290, 198034 157116, 198113 157410, 198114 157929, 198008 158060, 198079 158072, 198561 157984, 198710 158155, 198809 158472, 198960 159103, 198967 159296, 198809 159962, 198396 160066, 198436 160126, 198370 160733, 197960 161314, 197132 161761, 197035 161730, 196731 161360, 196869 160771, 197237 159902, 197112 159576, 197082 159377, 196791 158958, 196522 159066, 195599 158553, 195289 158408, 194502 158176, 194864 157592, 194806 156933, 194739 156994, 194168 156992, 193781 156967, 193298 157079, 193200 156485, 193192 156299, 192955 156044, 193332 155386, 193395 155077, 193581 155012)), ((195710 161231, 195731 161391, 195566 161458, 195430 161350, 195321 161329, 195575 161130)), ((195336 160912, 195110 161286, 194594 161323, 194377 160957, 194598 160603, 195030 160499)), ((194394 159185, 194607 159472, 194625 159902, 194391 160055, 193732 159944, 193465 159561, 193489 159228, 193772 159072)), ((113743 157076, 113809 157713, 113576 158381, 112517 158788, 112447 158533, 112033 157737, 112196 157278, 112729 156697, 113303 156619)), ((76631 152936, 76723 153620, 76610 154298, 76160 154945, 75504 155372, 74643 155481, 73584 154889, 73244 153996, 73398 153203, 74395 152142, 75437 151939)), ((102833 155210, 102314 155221, 102042 155241, 102061 154959, 102138 154520, 102923 154200)), ((100833 153494, 100861 153535, 100829 153689, 100095 154703, 99827 154773, 99621 154179, 99891 153904, 100748 153490)), ((67346 137182, 67266 137778, 67142 138267, 67361 138135, 67476 137912, 67689 137934, 68184 137723, 68474 137698, 68822 137482, 69186 136954, 69529 136721, 70724 136478, 71330 136371, 71751 136557, 71823 137007, 71491 137739, 71066 138638, 70632 138977, 69871 138960, 70599 139601, 70579 140034, 70812 140053, 71120 140148, 71213 140208, 71503 140334, 71950 141104, 71733 141472, 71523 141970, 72000 142082, 71851 141804, 72314 141202, 73199 141374, 73401 142086, 73062 142554, 72715 142612, 72552 142574, 72337 142780, 71420 143397, 71013 143279, 70489 143160, 69353 143026, 67652 142788, 67597 142843, 67474 142805, 67483 142849, 67287 142807, 65883 143046, 65573 143048, 65884 143051, 66804 144212, 66775 144881, 66564 145412, 65979 146006, 65195 146295, 64811 146274, 64137 146017, 63578 145466, 63422 144559, 63722 143851, 64525 143284, 63697 143841, 63545 144091, 63373 144607, 62766 145479, 62288 146581, 62225 146854, 62123 147122, 61661 150931, 60548 151721, 60305 151486, 60314 150909, 60339 150518, 59788 150092, 59783 150127, 59995 150705, 59808 150959, 59502 151271, 59322 151238, 57777 151130, 58946 151863, 58897 152198, 58252 152968, 57412 153269, 57266 151715, 57571 151090, 56925 150165, 56660 149723, 56813 148699, 56657 148678, 56365 148553, 56349 148471, 55977 148179, 55656 147756, 55574 147579, 55215 147703, 54735 147678, 54150 146730, 54174 146546, 54825 145399, 55568 145114, 55448 144487, 56141 144010, 56807 144194, 56861 143902, 57197 143827, 57314 144040, 57208 143806, 57524 143430, 57718 143539, 57800 143876, 57896 143832, 58612 143131, 58913 142728, 58696 142655, 58445 142868, 58131 142981, 57743 143268, 57358 143261, 56975 142694, 57344 142137, 57351 141846, 57302 141833, 57084 141466, 57394 140952, 57904 140717, 58476 140918, 58865 141112, 58932 140880, 58973 140625, 58992 140228, 59313 140009, 59386 140016, 59509 139849, 59751 139698, 59781 139627, 60080 139380, 60141 139440, 60488 139603, 60356 139946, 60065 140088, 60291 140247, 60503 139914, 60611 139683, 60243 139303, 60236 139258, 59977 139411, 59622 139215, 59528 139088, 59491 138760, 59508 138628, 59963 138438, 60059 138455, 60433 138735, 60436 138800, 60501 138721, 60583 138699, 60478 138654, 60398 138499, 60465 138112, 60535 138065, 60911 138099, 60922 138339, 61190 138475, 61570 138261, 61638 138299, 62047 138396, 62444 138270, 62023 138007, 62012 137956, 62226 137619, 62318 137534, 62654 137622, 62803 138077, 62587 138280, 62556 138346, 62438 138394, 62099 138424, 62148 138670, 62217 138918, 62157 138983, 62312 139020, 62382 138914, 62397 138721, 62763 138603, 62935 138785, 62982 138895, 62909 138995, 63128 139005, 62869 138570, 62910 138062, 62908 137661, 62991 137572, 62512 137503, 62496 137276, 62410 136939, 62796 136519, 63321 136647, 63465 137183, 63228 137471, 63349 137520, 63901 137553, 64280 138010, 64924 137707, 65023 137734, 64875 138281, 64636 138489, 64632 138545, 64420 138868, 64350 138841, 64077 139342, 64194 139668, 64743 139801, 64988 139639, 64963 139229, 64908 139082, 64937 138826, 64908 138681, 65036 138461, 65083 138419, 65266 138197, 65497 138035, 65699 138025, 66060 138235, 66935 138392, 67128 138276, 66784 138271, 66298 137847, 65839 137420, 65715 137341, 65860 137181, 65881 137015, 67241 136032, 67358 135990) (59066 147937, 59377 147992, 59281 147849, 59442 147596)), ((65755 152230, 65921 152438, 65716 152616, 65469 152620, 65185 152453, 65150 152362, 65206 152280, 65513 152178)), ((200587 148457, 201394 148832, 201726 148973, 202121 149289, 202364 149733, 202428 150030, 202185 150498, 202411 150487, 203200 150202, 203888 151425, 203894 151584, 203786 152014, 203532 152137, 202987 152338, 202640 152333, 202498 152098, 201725 151367, 202010 151075, 202121 150596, 201887 150940, 201350 151374, 200948 151260, 199958 151149, 199506 151036, 199323 151021, 199469 150607, 199376 150248, 199025 149582, 199385 149250, 199421 149230, 199559 149006, 199892 148389, 200336 148374)), ((199174 148285, 199239 148396, 199219 149069, 199020 149521, 198749 149542, 197795 149983, 197678 149586, 197191 149242, 197293 148921, 197353 148159, 198764 147989)), ((206352 143153, 206381 143494, 205794 144050, 205128 143807, 204738 143583, 204734 143146, 204832 142741, 205735 142456)), ((203891 141343, 204076 141424, 204509 141909, 204567 142026, 204297 142913, 204199 143166, 203984 143434, 203659 143425, 202797 143530, 202078 143647, 202114 143385, 202011 143213, 201375 142511, 201554 142255, 201836 141219, 202446 141055)), ((200799 141193, 201101 141962, 200740 142371, 200214 142787, 200190 142741, 199659 142527, 199472 142387, 199561 141390, 200461 141087)), ((56785 140318, 57002 140633, 56855 141002, 56452 140990, 56223 140645, 56400 140310)), ((58278 140135, 58419 140128, 58775 140608, 58705 140670, 58610 140927, 57942 140722, 57703 140309, 57986 140050)), ((72263 137832, 73157 138469, 73546 139176, 73555 139925, 73380 140236, 72537 140556, 71711 140080, 71476 139232, 71465 138578, 71480 138070, 71883 137766)), ((58676 127906, 58782 128652, 58575 129030, 58319 129439, 58028 129452, 58115 129902, 58068 130222, 57837 130392, 57818 130491, 57903 130611, 58045 130566, 58017 130478, 58169 130275, 58294 130189, 58616 129809, 58934 129962, 58975 129943, 58987 129630, 59048 128835, 59170 128748, 59981 128392, 60724 129045, 60890 129115, 61217 129381, 61240 129371, 60600 128468, 61683 128318, 61566 128864, 61420 129312, 61753 129121, 62058 129009, 62574 128972, 63433 129233, 64523 131004, 64462 131444, 64409 131609, 65564 132416, 65692 132753, 65447 133073, 64757 133295, 64932 133602, 64857 133960, 64841 134140, 64739 134184, 64913 134343, 64953 134437, 64186 134716, 62947 134776, 62648 134760, 62480 134705, 61819 134307, 60948 133968, 61110 134715, 59981 134536, 59833 134577, 59845 134890, 59723 135338, 59316 135919, 58765 136230, 58191 136347, 57535 136234, 57066 135920, 56908 135693, 56827 135759, 55850 137199, 55654 137029, 55286 136644, 55226 136516, 55010 136596, 55124 136989, 55133 137230, 54978 138151, 54872 138510, 54200 139234, 53784 139735, 53168 140144, 53189 139697, 52658 139861, 52164 139272, 52113 139256, 51981 139609, 52010 139811, 51649 140136, 51400 140173, 49752 139536, 49152 138748, 49134 138644, 49018 138359, 49444 137259, 48838 136910, 48846 136342, 48659 136126, 48510 135817, 48566 135696, 48259 135884, 47707 135743, 47496 135167, 47895 134036, 48066 133841, 48337 133798, 49186 133826, 49107 133693, 49113 133411, 50368 132871, 50508 132944, 50532 132879, 50780 132654, 51048 132589, 51523 132564, 51862 132406, 51933 132285, 52441 131834, 52628 131647, 52785 131557, 52717 130980, 53275 130804, 53621 131088, 53573 131386, 53496 131493, 53380 131799, 53753 132198, 53929 132204, 54346 132108, 54588 132206, 54749 132244, 54353 130943, 54197 131018, 53723 131133, 53761 130956, 53259 130715, 53202 130591, 53017 130280, 53250 129302, 53573 129130, 53680 129161, 53887 129003, 54054 128986, 54268 129143, 54144 129461, 54349 129759, 54840 129571, 55078 129696, 55375 129873, 55302 129928, 55428 130019, 55660 130120, 55693 130001, 55863 129829, 56039 129931, 56226 129381, 56241 129163, 56522 129031, 57073 129133, 57118 129224, 57378 129040, 57834 129350, 57813 129252, 57535 128833, 57834 127958, 57862 127827, 57932 127777) (53082 138202, 53463 138683, 53633 138357, 53212 138149) (51103 137014, 51886 137214, 52020 137303, 52197 136682, 52066 136651, 51988 136470) (49620 134754, 49556 135103, 49874 134909, 49796 134732, 49554 134408) (62760 133505, 63337 133669, 63420 133660, 62725 132884)), ((59103 139236, 59417 139747, 59406 139846, 59226 140020, 58985 140162, 58478 139954, 58529 139395, 58739 139150)), ((65191 136608, 65536 137034, 65504 137273, 65195 137509, 64852 137481, 64397 136829, 64709 136536)), ((66233 135818, 66263 136090, 65964 136366, 65644 136147, 65801 135782, 66074 135713)), ((204568 133765, 205115 134114, 205153 134965, 205113 135392, 203401 136067, 203392 135955, 202476 135285, 202527 134397, 202631 134019, 203259 133740)), ((69763 135230, 69817 135286, 69801 135366, 69586 135564, 68010 135845, 69509 135198)), ((201061 134317, 201155 134462, 201019 134700, 200842 134618, 200818 134410, 200988 134310)), ((66450 133845, 66466 134074, 66338 134190, 66092 134181, 65751 133788, 66120 133543)), ((51539 131953, 51390 132037, 51297 132018, 51238 131872, 51310 131699, 51576 131679)), ((66915 131046, 67097 131240, 67154 131427, 67121 131604, 67064 131669, 66847 131707, 66704 131561, 66629 130929)), ((52625 130299, 52546 130568, 52073 130638, 52194 130937, 51946 131585, 51643 131490, 51394 131111, 51552 130595, 52043 130626, 51701 130386, 51677 130229, 51893 129996, 52150 129935)), ((64276 129587, 63820 129497, 63751 129251, 64002 129051, 65282 128730)), ((56960 127442, 57138 127900, 56844 128160, 56778 128134, 56814 128165, 56679 128698, 56599 128875, 56126 129040, 55958 128897, 56076 129144, 55953 129478, 55624 129529, 55423 129573, 55094 129474, 55026 129406, 54747 128814, 54655 128669, 54658 128568, 55070 128240, 55189 128230, 55623 128385, 55736 128059, 55869 127966, 56422 127817, 56482 127871, 56463 127559, 56922 127423)), ((203915 126975, 204087 127786, 203074 128572, 202336 128030, 202429 127162, 202775 126934, 203557 126821)), ((54373 128134, 54327 128343, 54071 128355, 54000 128199, 54010 128084, 54151 128026)), ((51152 111683, 51417 111718, 51589 112027, 51799 112523, 51944 112496, 52297 112355, 53147 112700, 53391 113240, 53312 113740, 53390 113742, 53670 114279, 53605 114428, 53725 114340, 53899 114326, 53780 114255, 53877 113784, 53877 113538, 54122 113330, 54702 112959, 55409 113368, 55370 113796, 55716 113971, 55863 114379, 56114 114236, 56511 114414, 56552 114403, 56219 113590, 56630 113346, 56065 113441, 55446 112600, 56238 111958, 57040 112297, 57144 112842, 56988 113066, 57378 112939, 57617 113055, 58026 113204, 58214 113636, 57784 114325, 57482 114536, 57253 114631, 57442 114757, 57565 114982, 58056 115192, 58527 115785, 59279 116960, 59350 117163, 58951 118151, 58671 118440, 58290 118653, 58462 118826, 58186 118947, 58515 119008, 58640 118852, 59119 119672, 58967 119841, 59170 119719, 59363 119675, 59165 119381, 58666 118709, 58719 118459, 58830 118384, 59667 118140, 59737 118186, 59689 118442, 60184 118431, 60572 118751, 60585 119148, 60064 119689, 59949 119636, 59951 119691, 60828 119749, 61275 120107, 62517 120965, 62758 121317, 62728 121862, 62303 122490, 61551 122869, 61284 122810, 60776 122783, 60817 123313, 60832 123760, 60645 124359, 60406 124472, 60586 124753, 60783 125022, 60006 125234, 59407 125305, 58785 124785, 56256 123246, 55760 123060, 54267 122833, 54717 123249, 55018 123931, 54763 124786, 54215 125305, 53530 125467, 52442 124867, 52242 123757, 52348 123422, 52611 123155, 52272 123286, 51585 123719, 51020 124011, 50908 124028, 50741 124259, 50629 124354, 50253 124854, 49035 126539, 48602 127384, 47751 127693, 47397 127711, 47128 127695, 47077 127646, 46339 127787, 46701 125546, 46567 125593, 46010 125020, 45955 124914, 46174 123986, 46460 123793, 46667 123703, 46427 123541, 46425 123482, 46347 123443, 46532 122616, 46858 122570, 47108 122521, 47045 122464, 47064 122341, 46316 122472, 45690 121886, 45889 121332, 45457 120107, 45466 119986, 45974 119089, 46476 118852, 46265 118621, 46284 118399, 46403 118049, 46386 118023, 46245 118094, 45180 118393, 44675 118156, 44579 117705, 45045 116923, 45014 116932, 44655 116014, 44746 115751, 45290 115177, 45452 115075, 44820 114214, 45202 113070, 46501 112733, 46852 113161, 46906 113107, 46970 113154, 47579 113351, 47911 113446, 47965 113842, 48166 113374, 48326 113175, 48000 113228, 47718 112983, 47451 112622, 47747 111963, 48489 111875, 48743 112225, 48972 111824, 49083 111716, 49743 111869, 49969 111583) (48409 122600, 48324 122624, 47654 122748, 47338 122777, 47502 123168, 47804 122864, 48364 122686, 48744 122696, 48722 122569) (57951 122695, 57903 122751, 58112 122882, 58067 122534, 58034 122352) (48493 121301, 48417 121465, 48415 121933, 48553 121976, 48928 121728, 49147 121436, 48729 121124) (54925 118138, 54898 118285, 54460 118942, 54509 119258, 54884 119573, 55618 119311, 56326 119377, 56609 119307, 56945 119345, 57331 119293, 57548 119318, 57886 119012, 57384 119031, 57260 119161, 57095 118981, 56465 118759, 56139 118532, 55772 118872, 55682 118520, 55561 118503, 55319 118349, 54972 118094) (47758 118280, 47674 118233, 47822 118480, 47464 118893, 47649 119069, 48018 119340, 48258 119023, 48383 118578, 48704 118568, 48430 118459, 48173 118264, 48176 118157) (47443 115224, 47197 115404, 47115 115407, 46384 115117, 46104 115131, 46521 115254, 46591 116556, 46500 116654, 46146 116837, 46405 116838, 46436 117009, 46432 117814, 46496 117790, 46755 117326, 47019 117278, 46805 116686, 46858 116485, 47038 116290, 46914 116125, 47288 115356, 48033 115210, 48239 115203, 48358 115275, 48563 115559, 48479 115258, 48648 115157, 48108 114884, 48024 114597) (50998 115762, 51078 115727, 51707 115703, 51027 115617)), ((57869 126896, 57900 127057, 57780 127172, 57549 127127, 57577 126908, 57738 126828)), ((46488 125644, 46093 125968, 45969 125787, 46102 125552, 46429 125461)), ((45087 122615, 45140 122739, 45024 122944, 44727 122934, 44568 122742, 44645 122374, 45112 122153)), ((201341 120196, 201688 120940, 200883 121922, 200051 121567, 199946 120704, 200230 120409, 200963 120126)), ((60320 116035, 60348 116286, 60151 116446, 59779 116447, 59549 116012, 60012 115846)), ((197744 115003, 197353 115911, 196659 115820, 196402 115199, 196554 114920, 197037 114558, 197336 114532)), ((55148 110708, 55264 111219, 54792 111618, 55012 112115, 54702 112627, 54000 112714, 53812 112588, 53484 111970, 54141 111391, 54669 111536, 54242 111110, 54360 110689, 54754 110497)), ((192929 110244, 192730 111200, 192042 111253, 191667 110704, 191756 110402, 192152 109954, 192436 109866)), ((44842 110127, 45126 110772, 44655 111238, 44241 111219, 43944 110815, 44005 110438, 44152 110124)), ((49428 102630, 49804 102853, 49992 103032, 49981 103345, 49994 103879, 50069 103820, 51123 103865, 51715 104465, 51740 104737, 52199 105018, 52208 105191, 52339 104908, 52911 104872, 53269 105376, 53060 105650, 53428 105874, 53473 105744, 53708 105642, 54070 105506, 55047 105914, 55106 106028, 55166 106772, 55189 107283, 54764 108233, 54569 108391, 54444 108447, 53727 108335, 53332 108070, 53165 107784, 52325 108203, 52265 108190, 52249 108233, 52445 108598, 52426 108814, 52503 108844, 52596 109140, 52539 109304, 52173 109591, 51675 109886, 51547 109860, 51013 109546, 50796 109589, 50064 109595, 49504 110162, 49408 110211, 49006 110128, 48742 110053, 48247 109620, 48428 109363, 48359 109239, 48093 109134, 47666 108814, 47094 108878, 46932 108858, 46591 108436, 46633 108699, 46342 109023, 46379 109052, 46311 109402, 46235 109874, 45589 110280, 45040 109860, 44922 109886, 44219 109766, 44015 109274, 44268 108287, 43960 108147, 43850 108029, 43738 107546, 43613 106423, 43649 106401, 43550 106015, 43694 105801, 43976 105749, 44450 105179, 44652 105072, 45411 104923, 45262 104403, 45354 103903, 45470 103472, 45771 103350, 46379 103184, 46807 103576, 47056 103740, 47002 103783, 47037 103892, 46992 103942, 47322 103909, 47350 104080, 47514 104466, 47832 104544, 48028 104672, 48420 104647, 48558 104712, 47926 104269, 47736 104083, 47736 103708, 47719 103275, 47778 103037, 47983 102852, 48316 102749, 49103 102577) (48511 105872, 47892 105814, 47842 105898, 48349 106520, 48790 106286, 49064 106185, 49396 106434, 49191 106170, 48642 105789) (51347 106336, 51685 105895, 51549 105964, 51141 105787)), ((43434 109166, 43146 109805, 42726 110067, 42524 110033, 42209 109774, 42071 109431, 42113 108978, 42359 108626)), ((187470 106675, 187464 107206, 187100 107308, 186841 107052, 186856 106882, 187021 106600, 187164 106524)), ((43562 106464, 43192 107023, 41725 106917, 43050 106280)), ((56179 104758, 56627 105384, 56775 105976, 56685 106165, 56317 106328, 55689 106304, 54954 105308, 54683 104776, 55108 104206, 55158 104189)), ((53778 103300, 53696 103532, 53404 103598, 53747 104091, 53892 104364, 53826 104482, 53420 104785, 53126 104718, 53001 104673, 52616 104680, 52675 104307, 52761 104262, 52725 104066, 52790 103922, 53397 103595, 53241 103345, 53414 103110, 53651 103102)), ((159727 97323, 161091 99112, 161138 99300, 160980 99455, 160047 101472, 159871 101425, 157595 101654, 156772 100525, 156618 98721, 156938 97976, 157189 97448, 159607 97275)), ((152469 97104, 153905 97767, 153870 97873, 154075 100203, 152879 100955, 152368 100991, 151002 100877, 149984 100230, 149887 98302, 151514 96867)), ((145896 97388, 146431 99647, 144920 100151, 143349 99951, 142614 99482, 142499 98236, 143586 97174)), ((46501 92984, 46428 93160, 47013 93156, 47086 93426, 47224 94049, 47437 94147, 47831 93905, 48128 93988, 48379 94008, 48490 94085, 48529 94265, 49053 93974, 49680 93566, 50799 93809, 51257 94482, 51123 95098, 51199 95163, 51126 95423, 50879 95495, 50738 95291, 50371 95544, 49708 96024, 48852 95846, 48155 95103, 47606 94945, 47563 95126, 47505 95180, 46960 95291, 46914 95348, 47367 96169, 47782 96063, 48163 96570, 48820 96423, 49186 96328, 49633 96253, 49775 96179, 50399 95896, 50544 96752, 50666 96869, 51773 95903, 51843 95802, 52514 96335, 52700 96529, 52844 96541, 53077 97662, 52450 98149, 52230 98288, 51645 98503, 51450 98483, 51109 98289, 51009 98465, 50985 99173, 50910 99220, 50297 99344, 49680 99426, 48341 99277, 48200 99323, 47944 99288, 47693 99275, 47605 99091, 47575 98828, 47451 98984, 46942 98680, 46629 98463, 46413 98230, 46327 98071, 45855 97910, 44948 96670, 44933 96547, 45024 96317, 44792 96475, 44400 96611, 43657 96442, 43480 96163, 43434 95220, 43930 94229, 44166 94039, 44863 94015, 45021 94101, 45378 94399, 45298 95277, 45679 95170, 46150 94855, 46520 94892, 46704 95047, 46550 94833, 46632 94526, 46552 94575, 45764 94182, 45697 93501, 45854 93315, 45692 93206, 45616 93046, 45771 92720, 46132 92645)), ((44760 98565, 44523 98822, 44370 98837, 44291 98745, 44290 98543, 44521 98376)), ((53409 97651, 53497 97946, 53474 98137, 53350 98271, 53173 98158, 53187 97852, 53227 97573)), ((48971 92063, 49555 92376, 49613 92782, 49475 93614, 48350 93934, 47934 93508, 47637 92913, 47926 92315, 48122 92155, 48440 92040)), ((46911 85788, 47013 85995, 47348 87219, 47704 87412, 47844 87548, 48381 87711, 48514 87464, 49659 87271, 49913 87192, 50290 87032, 50649 86894, 50722 87543, 51121 87994, 51206 88053, 51225 87971, 51638 87652, 51956 87428, 52283 87023, 52700 87395, 52766 87485, 53245 87556, 53302 88332, 53453 88632, 53341 88808, 52950 89073, 52436 89358, 52091 89462, 51770 89408, 51416 89187, 51330 89003, 51321 88821, 51229 89028, 51193 89427, 51179 89850, 50945 89977, 50376 90059, 49400 90081, 48646 89922, 48302 89720, 47989 89321, 47990 89133, 47919 89172, 47586 89554, 47352 89511, 47088 89332, 46564 88915, 46446 88778, 46213 88280, 46182 88137, 46460 87778, 46377 87753, 46085 87292, 46053 86660, 46386 85883, 46743 85752)), ((50548 85205, 50713 85448, 50604 85706, 50117 85968, 49815 85886, 49568 85601, 49643 85368, 50160 85084)), ((49008 84641, 49053 85013, 48805 85326, 48364 85206, 48310 84816, 48653 84504)), ((49211 82755, 49191 83006, 48952 83090, 48843 82833, 48987 82629)), ((48523 77969, 48895 78220, 49015 78364, 49563 78596, 49729 78365, 50554 78321, 51175 78241, 51548 78125, 51905 78031, 51906 78674, 52273 79186, 52351 79254, 52382 79177, 52801 78919, 53143 78733, 53526 78348, 53904 78779, 54007 78926, 54373 79022, 54401 79735, 54525 80065, 54387 80238, 53984 80453, 53427 80686, 53084 80747, 52760 80656, 52443 80402, 52371 80190, 52383 79989, 52261 80197, 52182 80592, 52120 81024, 51863 81129, 51302 81144, 50312 81060, 49819 80893, 49512 80801, 49274 80582, 49005 80160, 49031 79954, 48949 79988, 48567 80337, 48332 80264, 48097 80067, 47608 79584, 47510 79436, 47339 78936, 47321 78776, 47665 78416, 47582 78378, 47363 77929, 47398 77348, 47774 76674, 48294 76555)), ((51956 76355, 52079 76589, 51950 76813, 51495 76997, 51230 76893, 51037 76612, 51128 76411, 51619 76207)), ((50509 75601, 50512 75943, 50260 76206, 49865 76049, 49861 75691, 50202 75443)), ((50306 69871, 51206 70401, 50984 70773, 50982 71165, 51103 70854, 51546 70292, 51909 70307, 52807 70204, 53416 70207, 53626 70174, 53571 70620, 53761 70994, 54231 71532, 53947 71951, 53916 71977, 53823 72242, 53644 72904, 53226 73014, 52867 72975, 51707 72731, 51229 72506, 50917 72145, 50788 71855, 50908 71368, 50703 71424, 50005 71872, 49073 70847, 49020 70656, 49028 70231, 49286 70023, 49725 69736, 50095 69655)), ((55556 71177, 56131 71416, 56068 71801, 56179 72534, 54895 72996, 54786 73002, 54365 72821, 54264 72717, 54138 72085, 54240 71557, 54576 71445, 55339 70858)), ((58257 63274, 58858 63668, 58786 63867, 58748 64771, 57674 64941, 57335 64985, 56907 64705, 56900 63842, 56998 63592, 57147 63573, 58181 63048)), ((54996 61855, 56569 61979, 56455 62334, 56538 62591, 56845 63098, 56964 63343, 56682 63619, 56630 63652, 56193 64551, 55688 64587, 55092 64384, 54320 64065, 53961 63811, 53676 63328, 53621 63100, 53858 62584, 54150 62118, 54568 61754)), ((53188 60896, 54066 61658, 53893 61852, 53763 62528, 53617 62540, 52739 62895, 52467 62453, 52002 61658, 52053 61148, 52927 60783, 53108 60777)), ((59912 56093, 59895 56134, 60427 57196, 59584 58121, 58985 58086, 57987 57545, 57703 57058, 58198 55975, 58704 55962)), ((72187 50456, 73380 52070, 73664 53098, 73791 53592, 73615 54190, 73475 54586, 72909 55356, 71768 55782, 70993 56504, 70166 56607, 69369 56374, 69050 55037, 68908 54569, 68538 54097, 68002 53279, 68431 52727, 68723 52377, 69154 50967, 69319 50325, 71192 50004)), ((63590 50632, 62993 52613, 62509 52671, 62140 52800, 61340 52119, 61218 51845, 60976 51445, 61527 50604, 61738 50533, 63606 50455)), ((72012 49394, 72042 49663, 71905 49790, 71641 49703, 71727 49364)), ((66693 47247, 66268 49233, 66099 49389, 65183 49338, 64609 48821, 64521 48606, 64453 47562, 66455 47192)), ((65433 42590, 64278 43177, 63534 42833, 63723 43261, 63805 43400, 63821 43970, 63810 45111, 62144 45902, 61273 46927, 59816 46319, 58710 46288, 57977 46244, 57683 45699, 57549 45508, 57464 44721, 57903 44023, 58071 42886, 58183 42534, 58821 41820, 59562 41411, 61145 41368, 63011 42136, 63454 42713, 63295 42175, 63778 41344, 65060 41269)), ((69531 44365, 69737 44420, 69578 45755, 69331 45981, 68632 46320, 68227 45773, 67773 45569, 67678 45292, 67794 44443, 69436 44057)), ((71756 41595, 72451 41761, 72403 42192, 72161 42318, 71695 42718, 71374 42386, 71224 41822, 71310 41586, 71650 41513)), ((62426 39835, 62518 39966, 61621 41300, 61426 41292, 59976 40081, 59886 39819, 59966 39640, 60468 39374, 61893 39297))) \ No newline at end of file diff --git a/stress_benchmark/resources/049.settings b/stress_benchmark/resources/049.settings new file mode 100644 index 0000000000..8a534c14c4 --- /dev/null +++ b/stress_benchmark/resources/049.settings @@ -0,0 +1,626 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=15.0 +machine_acceleration=500 +bridge_sparse_infill_max_density=0 +support_line_width=0.3 +bottom_skin_preshrink=0.8999999999999999 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.8 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=180 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=250 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=0.8999999999999999 +machine_shape=rectangular +speed_travel_layer_0=100 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=205.0 +raft_jerk=8 +support_xy_distance=0.6 +bridge_skin_speed_2=10 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.075 +bottom_skin_expand_distance=0.8999999999999999 +speed_prime_tower=15.0 +speed_support=50 +speed_roofing=15.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=tetrahedral +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.3 +raft_surface_jerk=8 +print_bed_temperature=60 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +jerk_support_roof=8 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=205.0 +layer_0_z_overlap=0.15 +support_roof_enable=True +acceleration_wall_x_roofing=500 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.12 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.12 +support_bottom_pattern=grid +bottom_thickness=0.8 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=500 +skin_material_flow=100 +default_material_bed_temperature=50 +support_xy_distance_overhang=0.3 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=5 +wall_thickness=0.6 +top_bottom_pattern_0=lines +resolution=0 +support_angle=51 +retraction_min_travel=1.5 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=50 +wipe_retraction_amount=0.8 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.2 +machine_feeder_wheel_diameter=10.0 +infill_overlap=30.0 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.03 +sub_div_rad_add=0.3 +roofing_line_width=0.3 +material_flow_layer_0=100 +support_roof_pattern=grid +cool_fan_speed_min=100 +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=8 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.25 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=11.25 +speed_ironing=10.0 +gantry_height=25 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=1.5 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=8 +support_roof_density=33.333 +support_bottom_line_width=0.3 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.12 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=True +infill_support_angle=40 +support_interface_height=0.48 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=15.0 +raft_acceleration=500 +bridge_fan_speed_3=0 +support_tree_angle_slow=34.0 +raft_speed=15.0 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_max_jerk_xy=10 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=1.800018000180002 +zig_zaggify_support=True +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +speed_print_layer_0=15 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=40 +initial_bottom_layers=4 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=10 +bridge_wall_speed=10 +support_interface_density=33.333 +line_width=0.3 +acceleration_ironing=500 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=223.475 +speed_slowdown_layers=2 +bridge_wall_min_length=2.0 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=True +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=15.0 +speed_layer_0=15 +infill=0 +bridge_skin_speed_3=10 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=3.0 +jerk_layer_0=8 +minimum_interface_area=10 +wall_0_material_flow_layer_0=100 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=1.800018000180002 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=40 +material_anti_ooze_retracted_position=-4 +layer_height=0.12 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.2 +jerk_print_layer_0=8 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.3 +retraction_retract_speed=40 +brim_line_count=27 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.6 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=8 +support_tree_tip_diameter=0.6 +bridge_skin_speed=10 +bridge_fan_speed=100 +support_xy_overrides_z=xy_overrides_z +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=skirt +min_odd_wall_line_width=0.34 +skirt_line_count=3 +support_tree_angle=51 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=False +acceleration_wall_0=500 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=True +cool_min_temperature=205.0 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.3 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.0 +support_bottom_height=0.48 +machine_depth=235 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=15.0 +z_seam_x=117.5 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=235 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=235 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=3.0 +infill_sparse_thickness=0.12 +prime_tower_brim_enable=False +ironing_monotonic=False +small_skin_width=0.6 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=500 +center_object=False +skirt_height=3 +cool_fan_speed_0=20.0 +wall_line_count=3 +jerk_wall_0=8 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=20 +support_bottom_stair_step_height=0 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=500 +machine_max_acceleration_x=500 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=8 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=500 +draft_shield_dist=10 +raft_surface_acceleration=500 +switch_extruder_retraction_speeds=20 +support_pattern=cross +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=8 +retraction_hop=0.2 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=15.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=True +min_skin_width_for_expansion=2.9391523179536474e-17 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.04 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.24 +support_bottom_distance=0 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=buildplate +cool_lift_head=False +raft_interface_line_width=0.6 +support_type=buildplate +support_zag_skip_count=13 +retraction_combing=all +raft_interface_line_spacing=0.8 +draft_shield_enabled=False +material_break_preparation_temperature=205.0 +material_alternate_walls=False +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=50.0 +raft_surface_thickness=0.12 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=4 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=15.0 +infill_line_width=0.3 +wall_line_width_0=0.3 +support_extruder_nr_layer_0=0 +retraction_count_max=100 +jerk_infill=8 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.3 +material_print_temperature=205.0 +acceleration_prime_tower=500 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=8 +support_brim_enable=True +support_bottom_density=33.333 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.3 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=500 +wall_line_width_x=0.3 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.44 +travel_retract_before_outer_wall=True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=True +jerk_enabled=False +speed_wall_0_roofing=15.0 +skin_preshrink=0.8999999999999999 +layer_height_0=0.2 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=10 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=150.0 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=8 +jerk_travel_enabled=True +jerk_wall_x=8 +machine_always_write_active_tool=False +retraction_amount=0.8 +machine_minimum_feedrate=0.0 +acceleration_print=500 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=40 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=500 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=8 +infill_offset_x=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=15.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=15.0 +support_offset=0.0 +wall_overhang_speed_factor=100 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=0.8 +machine_max_feedrate_y=500 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=30.0 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=5 +raft_interface_thickness=0.18 +retraction_prime_speed=40 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=10 +raft_surface_line_width=0.3 +jerk_support_interface=8 +support_tree_bp_diameter=7.5 +support_interface_pattern=grid +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=500 +material_no_load_move_factor=0.940860215 +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +machine_max_feedrate_z=10 +speed=0 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=8 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.3 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=1.5 +support_z_distance=0.24 +raft_base_speed=11.25 +jerk_travel_layer_0=8 +speed_support_interface=15.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.28500000000000003 +material_flush_purge_speed=0.5 +acceleration_travel=500 +support_roof_height=0.48 +wall_0_inset=0.05000000000000002 +interlocking_depth=2 +prime_tower_position_y=203.475 +jerk_support=8 +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=0.8999999999999999 +acceleration_wall_0_roofing=500 +machine_max_feedrate_x=500 +material_final_print_temperature=205.0 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=40 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.09 +wall_0_material_flow_roofing=100 +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=15.0 +support_roof_wall_count=0 +skirt_gap=10.0 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=0.8999999999999999 +support_infill_rate=20 +meshfix_maximum_resolution=0.25 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=500 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=30 +jerk_travel=8 +retract_at_layer_change=True +support_roof_line_width=0.3 +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=True +skirt_brim_line_width=0.3 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.04 +acceleration_support_roof=500 +support_brim_line_count=13 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=50 +wall_0_extruder_nr=-1 +retraction_hop_enabled=True +prime_tower_wipe_enabled=True +acceleration_support_bottom=500 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=500 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/049.wkt b/stress_benchmark/resources/049.wkt new file mode 100644 index 0000000000..325b9054ab --- /dev/null +++ b/stress_benchmark/resources/049.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((117969 83306, 118266 83540, 118465 83841, 118650 84265, 118676 84997, 118624 85323, 118493 85579, 118125 86063, 117970 86152, 117516 86283, 117283 86263, 117053 86172, 116697 85881, 116522 85610, 116327 85193, 116343 84382, 116448 84020, 116614 83691, 117008 83299, 117252 83184, 117540 83126))) \ No newline at end of file diff --git a/stress_benchmark/resources/050.settings b/stress_benchmark/resources/050.settings new file mode 100644 index 0000000000..bee0e8f4ce --- /dev/null +++ b/stress_benchmark/resources/050.settings @@ -0,0 +1,628 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=45 +machine_acceleration=4000 +bridge_sparse_infill_max_density=0 +support_line_width=0.8 +bottom_skin_preshrink=2.4000000000000004 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=concentric +material_standby_temperature=175 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=265 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=2.4000000000000004 +machine_shape=rectangular +speed_travel_layer_0=60.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=230 +raft_jerk=20 +support_xy_distance=0.7 +bridge_skin_speed_2=20.0 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.2 +bottom_skin_expand_distance=2.4000000000000004 +speed_prime_tower=80 +speed_support=80 +speed_roofing=40.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=concentric +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.8 +raft_surface_jerk=20 +print_bed_temperature=60 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +jerk_support_roof=20 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=220 +layer_0_z_overlap=0.15 +support_roof_enable=False +acceleration_wall_x_roofing=1000 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.2 +support_bottom_pattern=concentric +bottom_thickness=0 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=1000 +skin_material_flow=100 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=0.8 +top_bottom_pattern_0=lines +resolution=0 +support_angle=50 +retraction_min_travel=1.6 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=8 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=2 +machine_feeder_wheel_diameter=10.0 +infill_overlap=0 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.8 +roofing_line_width=0.8 +material_flow_layer_0=100 +support_roof_pattern=concentric +cool_fan_speed_min=100 +retraction_combing_max_distance=0 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=20 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.75 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=30.0 +speed_ironing=26.666666666666668 +gantry_height=0 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=5.333333333333333 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=20 +support_roof_density=100 +support_bottom_line_width=0.8 +initial_layer_line_width_factor=130 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.2 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=1000 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=True +infill_support_angle=40 +support_interface_height=1 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=40.0 +raft_acceleration=1000 +bridge_fan_speed_3=0 +support_tree_angle_slow=33.333333333333336 +raft_speed=40.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=20.0 +roofing_material_flow=100 +acceleration_infill=1000 +machine_extruder_count=1 +support_roof_line_distance=0.8 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +speed_print_layer_0=40 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=50 +initial_bottom_layers=0 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=1.0 +bridge_wall_speed=22.5 +support_interface_density=100 +line_width=0.8 +acceleration_ironing=1000 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=244.135 +speed_slowdown_layers=2 +bridge_wall_min_length=2.1 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=160 +speed_layer_0=40.0 +infill=0 +bridge_skin_speed_3=20.0 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=0 +jerk_layer_0=20 +minimum_interface_area=1.0 +wall_0_material_flow_layer_0=100 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.8 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=50 +material_anti_ooze_retracted_position=-4 +layer_height=0.2 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=2 +jerk_print_layer_0=20 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.8 +retraction_retract_speed=50 +brim_line_count=8 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=1.6 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=20 +support_tree_tip_diameter=1.6 +bridge_skin_speed=20.0 +bridge_fan_speed=100 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=skirt +min_odd_wall_line_width=0.34 +skirt_line_count=1 +support_tree_angle=50 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=1000 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=True +cool_min_temperature=230 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.8 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.2 +support_bottom_height=1 +machine_depth=255 +acceleration_skirt_brim=1000 +skin_overlap=5 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=53.333333333333336 +z_seam_x=130 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=250 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=0 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=0 +infill_sparse_thickness=0.2 +prime_tower_brim_enable=False +ironing_monotonic=False +small_skin_width=1.6 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=True +acceleration_print_layer_0=1000 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_wall_0=20 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=0 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=5000.0 +machine_max_acceleration_x=9000 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=20 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=1000 +draft_shield_dist=10 +raft_surface_acceleration=1000 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=20 +retraction_hop=2 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=53.333333333333336 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=0.0 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.1 +support_bottom_distance=0.1 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=graceful +cool_lift_head=False +raft_interface_line_width=1.6 +support_type=everywhere +support_zag_skip_count=4 +retraction_combing=no_outer_surfaces +raft_interface_line_spacing=1.8 +draft_shield_enabled=False +material_break_preparation_temperature=230 +material_alternate_walls=False +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=80 +raft_surface_thickness=0.2 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=0 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=160 +infill_line_width=0.8 +wall_line_width_0=0.8 +support_extruder_nr_layer_0=0 +retraction_count_max=90 +jerk_infill=20 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.8 +material_print_temperature=230 +acceleration_prime_tower=1000 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=20 +support_brim_enable=True +support_bottom_density=100 +brim_width=8.0 +ironing_only_highest_layer=True +wall_transition_length=0.8 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=1000 +wall_line_width_x=0.8 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.2 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=45 +skin_preshrink=2.4000000000000004 +layer_height_0=0.2 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=5 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=120 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=20 +jerk_travel_enabled=True +jerk_wall_x=20 +machine_always_write_active_tool=False +retraction_amount=8 +machine_minimum_feedrate=0.0 +acceleration_print=1000 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=50 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=1000 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=back +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=20 +infill_offset_x=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=40.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=80 +quality_name=Fine +support_offset=1.2000000000000002 +wall_overhang_speed_factor=100 +top_layers=0 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5.0 +raft_base_line_width=0.8 +machine_max_feedrate_y=299792458000 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=80 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.30000000000000004 +retraction_prime_speed=50 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=1.0 +raft_surface_line_width=0.8 +jerk_support_interface=20 +support_tree_bp_diameter=7.5 +support_interface_pattern=concentric +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=1000 +material_no_load_move_factor=0.940860215 +travel_speed=120 +z_seam_corner=z_seam_corner_inner +machine_max_feedrate_z=299792458000 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.8 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=3.12 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=5.333333333333333 +support_z_distance=0.1 +raft_base_speed=30.0 +jerk_travel_layer_0=30.0 +speed_support_interface=53.333333333333336 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.05999999999999994 +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=1 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=229.135 +jerk_support=20 +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=2.4000000000000004 +acceleration_wall_0_roofing=1000 +machine_max_feedrate_x=299792458000 +material_final_print_temperature=215 +acceleration_roofing=1000 +raft_interface_jerk=20 +retraction_speed=50 +prime_tower_flow=100 +acceleration_wall_x=1000 +infill_overlap_mm=0 +wall_0_material_flow_roofing=100 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=40.0 +support_roof_wall_count=0 +skirt_gap=3 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=8 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=2.4000000000000004 +support_infill_rate=15 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=1000 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=10 +jerk_travel=30 +retract_at_layer_change=False +support_roof_line_width=0.8 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.8 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=1000 +support_brim_line_count=3 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=80 +wall_0_extruder_nr=-1 +retraction_hop_enabled=True +prime_tower_wipe_enabled=True +acceleration_support_bottom=1000 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=1000 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/050.wkt b/stress_benchmark/resources/050.wkt new file mode 100644 index 0000000000..627bcdec01 --- /dev/null +++ b/stress_benchmark/resources/050.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((71733 150298, 71941 150653, 71944 151277, 71703 151857, 71377 152111, 71223 152111, 70730 151719, 70575 151264, 70692 150684, 71081 150281, 71517 150214)), ((74068 132097, 76884 132875, 79516 134287, 81338 135740, 82072 136518, 82654 137208, 83350 138173, 84021 139298, 84573 140346, 85012 141235, 85750 142918, 86335 144785, 86567 146606, 86555 148197, 86485 149260, 86349 150728, 86045 152292, 85485 153850, 84781 155382, 84237 156492, 83040 158241, 81051 160435, 78859 162178, 77305 163039, 76276 163332, 74820 163616, 72636 163894, 70621 163995, 69527 163958, 68876 163800, 67782 163395, 65854 162592, 63956 161700, 63003 161200, 62234 160651, 60723 159402, 59157 157694, 57897 155680, 57023 153783, 56646 152808, 56290 151816, 56036 150769, 55937 149535, 55921 148094, 55921 147198, 55941 146002, 56014 144787, 56156 143861, 56316 143259, 56596 142450, 57385 140631, 58608 138509, 60062 136694, 61758 135183, 63706 133964, 65919 133032, 68403 132375, 70476 132050, 71888 131929) (70185 133335, 69314 133491, 68649 133668, 67529 134020, 66279 134466, 65005 134964, 63805 135471, 62786 135948, 61775 136501, 61633 136752, 61210 137298, 60306 138396, 59841 138934, 58640 140715, 57558 143204, 57016 146018, 56927 148490, 56987 149665, 57069 150730, 57260 151750, 57653 152773, 58177 153851, 58811 155108, 60601 157597, 63510 160215, 67038 162035, 70106 162891, 71536 163074, 73509 163027, 75531 162588, 76264 162329, 77190 161915, 78343 161218, 79527 160257, 80544 159274, 81193 158590, 82095 157491, 83155 155983, 83899 154634, 84182 153912, 84182 153615, 84373 153031, 84582 152479, 84929 151621, 85173 150938, 85366 150098, 85452 149072, 85473 147972, 85473 147087, 85385 145530, 85052 143770, 84362 141941, 83511 140223, 82985 139254, 82245 138066, 81236 136833, 79975 135760, 78699 134907, 77806 134370, 76347 133703, 74366 133207, 72152 133129)), ((118943 15475, 120025 15601, 120991 15889, 121532 16348, 121701 16833, 121675 17234, 121579 17448, 121382 17656, 121055 17875, 120567 18124, 119861 18429, 118966 18785, 116792 19609, 114025 20685, 111301 21871, 109036 23081, 107176 24237, 105653 25245, 102888 27218, 99289 30020, 95895 32956, 93553 35178, 92422 36342, 91304 37554, 90053 39098, 88783 40945, 87595 42843, 85814 45767, 86646 47345, 87632 49097, 88342 50324, 89785 52762, 90396 53768, 91029 54774, 91141 54900, 91513 54807, 92370 54048, 93817 52426, 95476 50430, 96827 48780, 98698 46590, 101380 43537, 102316 42449, 103582 40934, 105075 39292, 106675 37856, 107880 37215, 108550 37266, 108709 37435, 108923 37967, 109397 39281, 110034 41191, 111017 44298, 111851 46827, 112646 48804, 113272 49597, 113774 49611, 113969 49512, 114660 49264, 116444 48691, 119708 47684, 125353 45970, 127922 45243, 130836 44526, 133128 44099, 134302 43971, 136196 44061, 136282 44993, 136252 45386, 136095 46023, 135779 46814, 135283 47799, 134584 49015, 133665 50502, 132468 52353, 131426 53926, 130037 55986, 126837 60570, 123092 65630, 119661 69858, 117215 72610, 116093 73773, 115365 74545, 114608 75366, 113905 76173, 113951 76219, 114711 76347, 116463 76587, 116985 76647, 118547 76885, 121241 77363, 124564 78021, 127267 78586, 128810 78924, 130746 79491, 133715 80540, 136930 81865, 140261 83402, 143579 85088, 146751 86858, 149644 88650, 151526 89940, 153225 91229, 153875 90558, 154099 90250, 154334 89667, 154533 88750, 154691 87693, 154860 86391, 155464 83531, 156710 79047, 158375 74199, 159834 70494, 161138 67513, 163693 62319, 167168 56301, 170835 51158, 173699 47836, 174965 46589, 175663 45930, 176380 45378, 177091 45027, 177933 44755, 178849 44548, 179420 44467, 179767 44501, 179971 44601, 180135 44740, 180333 45176, 180384 45974, 180189 46957, 179882 47783, 179099 49349, 180281 51676, 180808 52569, 181682 53768, 182993 55273, 184507 56882, 186503 58963, 187689 60221, 188618 61229, 189410 62128, 190008 62854, 190515 63528, 190950 64175, 191260 64680, 191680 65403, 192514 67168, 193510 69829, 194286 72659, 194700 74779, 194819 75758, 194887 76785, 194987 78870, 195074 81459, 195121 83584, 195147 85302, 195206 88033, 195319 90386, 195513 91966, 195749 93073, 195968 93935, 196408 95463, 197035 97261, 197796 98929, 198760 100582, 200004 102334, 201598 104300, 203620 106593, 205528 108674, 207171 110440, 210056 113958, 212936 118385, 214970 122963, 216086 126755, 216352 128051, 216887 130519, 217252 132122, 217350 132513, 217469 133069, 217669 134101, 217873 135272, 218014 136161, 218183 137323, 218698 139933, 219487 142597, 220412 144422, 221158 145240, 221577 145442, 222408 145777, 222781 145777, 223834 146201, 224547 146546, 224853 146813, 225000 147264, 225000 148896, 223427 149128, 221724 149191, 218487 149206, 215042 149122, 212945 149014, 211285 148841, 208309 148383, 204068 147531, 200006 146499, 197412 145703, 195783 145093, 193463 144120, 189913 142497, 186230 140671, 183565 139257, 181547 138122, 178043 136056, 174349 133639, 171183 131214, 168840 129166, 167807 128195, 167053 127523, 166136 126756, 165169 126041, 164842 126060, 164666 126145, 164494 126339, 164302 126689, 164070 127240, 163777 128038, 163390 129163, 162642 131395, 161872 133599, 160848 136301, 159800 138749, 158679 141042, 157440 143272, 156031 145533, 154408 147921, 152981 149904, 148920 155415, 148312 156158, 147217 157407, 145901 158827, 144436 160340, 142903 161870, 141373 163338, 139924 164669, 138950 165518, 138381 165990, 137607 166599, 136384 167514, 135211 168353, 134453 168876, 133296 169626, 132583 170116, 131933 170606, 131933 170712, 132667 171422, 133489 172179, 134840 173364, 136008 174441, 137806 176161, 139761 178101, 141799 180184, 143848 182333, 145830 184472, 147715 186573, 148915 187951, 149760 188960, 151109 190618, 152400 192314, 153349 193740, 153951 194794, 154666 196222, 155033 197051, 155216 197663, 155203 198097, 154979 198389, 154535 198576, 153857 198698, 152642 198815, 151430 198850, 148904 198880, 145617 198877, 143039 198853, 133590 198718, 133754 200211, 133810 201115, 133917 203200, 134036 205812, 134185 209802, 134241 213090, 134244 217826, 134172 222649, 134034 227296, 133838 231505, 133595 235013, 133313 237554, 133156 238579, 132937 239008, 132576 239432, 132076 239574, 131789 239574, 131432 239484, 130857 239137, 130040 238424, 129125 237527, 128322 236709, 126822 235077, 124480 232393, 121897 229291, 119151 225871, 116327 222236, 113507 218489, 110771 214733, 108815 211962, 105833 207656, 105077 206592, 104530 205852, 104150 205381, 103894 205123, 103705 205004, 103518 204978, 103174 205361, 102830 205797, 102400 206373, 101897 207069, 100734 208738, 99429 210675, 97601 213328, 95539 216164, 93708 218459, 92350 220002, 91563 220837, 90553 221789, 89444 222616, 88591 222962, 88118 222901, 87959 222743, 87775 221928, 87636 221093, 87545 220408, 87429 219348, 87371 216827, 87605 212596, 88239 207200, 89021 202000, 89902 196742, 90419 193803, 90802 191730, 90972 190890, 91222 190117, 89129 190117, 88366 190095, 87623 189953, 86871 189584, 85557 188721, 84882 188224, 84107 187560, 83425 186840, 82942 186235, 82118 185108, 81601 184442, 81148 183928, 80742 183558, 80345 183305, 79917 183141, 79316 183010, 77125 182772, 72063 181944, 65631 180404, 59515 178324, 55120 176421, 52462 175055, 51432 174494, 50430 173911, 49422 173274, 48333 172538, 47091 171657, 45579 170546, 43367 168898, 41981 167661, 39643 165393, 37354 162983, 36032 161483, 35488 160777, 35079 160191, 34515 159333, 33944 158404, 33570 157755, 32939 156583, 32533 155869, 32168 155295, 31825 154847, 31472 154488, 31079 154180, 30601 153880, 29878 153485, 29391 153187, 28688 152700, 27971 152146, 27250 151532, 26606 150930, 26062 150368, 25458 149648, 25223 149198, 25058 148573, 25000 147602, 25138 146571, 25362 145812, 25775 145023, 26157 144592, 26736 144195, 27414 143837, 29003 143112, 29762 142799, 30141 142704, 30871 141626, 31944 138713, 33031 134099, 33875 129414, 34749 123655, 32967 122002, 31605 120355, 29887 117708, 28445 114747, 27600 112452, 27300 111346, 27077 110359, 26907 108877, 26832 106568, 26810 103692, 26811 100222, 26839 98334, 26912 96760, 27050 95414, 27274 94142, 27607 92795, 28085 91166, 28826 88802, 29239 87561, 29765 86101, 30354 84639, 31024 83146, 31814 81542, 32763 79744, 33942 77610, 35821 74313, 37342 71463, 39289 67505, 41092 63463, 42712 59432, 44118 55506, 45271 51775, 46139 48335, 46584 46048, 46755 44718, 46835 43017, 46814 40310, 46638 37585, 46430 35821, 46225 34800, 45866 33413, 45276 31524, 44618 29796, 44139 28742, 43830 28202, 43418 27257, 43287 26480, 43362 25908, 43490 25671, 43752 25587, 44352 25604, 44724 25696, 45230 25975, 45857 26516, 46509 27182, 47034 27734, 47921 28817, 48928 30395, 49842 32338, 50568 34239, 50892 35182, 51205 36179, 51432 37304, 51520 38728, 51535 40443, 51535 41906, 51387 44793, 50904 48476, 50024 52308, 49049 55544, 48257 57866, 47867 58950, 47452 60011, 46917 61266, 46182 62892, 45237 64919, 39641 76637, 38761 78515, 38050 80080, 37453 81462, 36883 82855, 35183 87223, 34421 89254, 33556 91688, 32866 93817, 32337 95709, 31948 97425, 31683 99031, 31527 100590, 31466 101787, 31456 102669, 31518 103987, 31703 105612, 31980 106830, 32196 107357, 32362 107461, 32578 107442, 33015 107295, 33570 107026, 34191 106662, 34828 106241, 35427 105793, 36130 105182, 38244 102320, 39719 100414, 41028 98854, 42118 97649, 43718 95959, 47710 92261, 53183 88094, 59207 84563, 64348 82158, 66321 81372, 66913 81126, 67576 80834, 68211 80518, 68283 80403, 68446 79287, 68587 78141, 68795 76201, 69143 73298, 69503 70574, 69664 69512, 69927 67572, 70020 65865, 69830 64609, 69481 63670, 69238 63150, 67036 58188, 66354 56549, 65769 54890, 65534 53722, 65668 53018, 66193 52749, 67126 52888, 68486 53403, 69862 54050, 73390 55854, 74436 53418, 75202 51752, 76357 49388, 77612 46965, 78922 44562, 80242 42259, 81527 40137, 82733 38276, 83543 37114, 84947 35265, 88618 31008, 93658 26107, 98973 22029, 103144 19474, 105424 18333, 108015 17295, 111644 16227, 115245 15597, 117779 15426) (130143 171932, 129342 172334, 128882 172586, 128293 172933, 127356 173508, 126385 174131, 125303 174855, 124692 175233, 123648 175841, 122464 176494, 121241 177142, 120072 177733, 119057 178219, 118012 178667, 117802 178667, 116080 179263, 114558 179827, 113070 180341, 110879 181032, 108582 181689, 106288 182286, 104100 182795, 102130 183190, 100481 183449, 99568 183539, 99042 183539, 98380 183613, 97691 183928, 97000 184619, 96331 185522, 95988 186029, 95566 186606, 94946 187374, 94341 188047, 93963 188422, 93677 188656, 92984 189391, 92526 190087, 92409 190446, 92228 191232, 91880 192928, 91470 195144, 91017 197744, 90550 200589, 90087 203546, 89654 206476, 89364 208552, 89147 210211, 88787 213116, 88511 215735, 88410 217513, 88421 218529, 88536 219947, 88627 220727, 88751 221215, 88938 221418, 89219 221346, 89623 221004, 90183 220402, 91170 219273, 91881 218440, 92791 217337, 93706 216180, 94670 214905, 95730 213450, 96933 211755, 98322 209755, 101496 205142, 102769 203316, 103796 201877, 104604 200787, 105221 200006, 105679 199495, 106004 199217, 106172 199132, 106301 199132, 106519 199224, 106528 199567, 106236 200273, 105779 201156, 105242 202162, 104932 202796, 104646 203476, 104652 203590, 104936 204152, 105339 204801, 112862 215160, 115122 218257, 118582 223081, 118957 223619, 120137 225198, 122043 227626, 124140 230176, 126265 232665, 128256 234905, 129952 236714, 131192 237900, 131699 238319, 131841 238271, 132072 238036, 132447 237400, 132492 236852, 132589 235360, 132665 233188, 132719 230443, 132753 227233, 132766 223670, 132762 219861, 132740 215916, 132700 211942, 132646 208051, 132576 204347, 132491 200947, 132393 197951, 132282 195475, 132161 193623, 132083 192782, 132012 192408, 132005 192018, 132097 191823, 132162 191823, 132269 192012, 132463 192523, 132683 193283, 132907 194210, 133113 195155, 133315 195986, 133549 196830, 133687 197074, 134305 197278, 136185 197503, 139616 197642, 143629 197709, 146093 197731, 149470 197738, 152182 197668, 153507 197484, 153860 197241, 153860 197043, 153696 196696, 153230 195919, 152497 194866, 151532 193582, 150371 192106, 149048 190480, 147600 188743, 146060 186939, 144465 185108, 142852 183290, 141254 181525, 139706 179858, 138246 178327, 136906 176973, 135724 175840, 134987 175175, 133850 174215, 133048 173518, 132180 172741, 131910 172435, 131432 171982, 130861 171764) (84619 84690, 82464 84923, 80882 85217, 78763 85912, 77858 86231, 77281 86448, 75484 87160, 75277 91989, 75124 94707, 74850 97688, 74429 100529, 73971 102930, 73569 104840, 72775 108161, 71649 112049, 70346 115632, 69201 118282, 68635 119465, 68150 120393, 67419 121469, 66324 122719, 65031 124048, 64247 124832, 63181 125849, 61773 127121, 60503 128184, 59762 128750, 58458 129599, 57711 129981, 57055 130149, 56216 130200, 55144 130121, 54303 129889, 53629 129435, 53140 128894, 52868 128517, 52439 127695, 52266 126968, 52266 126408, 52431 125452, 53110 124253, 54579 122778, 56471 121195, 58036 119955, 60521 117411, 63363 113496, 65528 109125, 66669 105664, 67005 103977, 67221 102061, 67529 98437, 67764 94515, 67858 92032, 67858 89693, 66972 89920, 66312 90188, 65066 90788, 63553 91610, 61871 92597, 60112 93689, 58374 94829, 56749 95961, 55682 96751, 54772 97471, 53105 98834, 50978 100641, 49006 102401, 47235 104064, 45715 105587, 44495 106918, 43625 108011, 43239 108605, 43126 108897, 43097 109151, 43154 109562, 43338 110100, 43578 110640, 43833 111154, 44293 112187, 44798 113594, 45249 115258, 45604 116859, 45820 117939, 46035 119596, 46123 121939, 45970 124720, 45683 127359, 45391 129567, 44772 133545, 43910 137771, 42901 141224, 42016 143488, 41524 144514, 41063 145388, 40480 146304, 39797 147134, 39123 147823, 38703 148221, 38116 148730, 37288 149387, 36506 149938, 36034 150230, 35699 150400, 34646 151016, 33616 151680, 32288 152622, 33622 155237, 34813 157321, 36573 159887, 38693 162422, 40650 164466, 42161 165931, 44736 168289, 47737 170723, 50669 172676, 53058 174002, 55003 174960, 58441 176529, 62678 178241, 66635 179550, 69426 180280, 70662 180531, 71548 180693, 73299 180993, 77741 181704, 80045 182056, 82149 182364, 83861 182602, 84703 182709, 85255 182761, 86057 182923, 86270 183157, 85670 183380, 84647 183518, 82403 183662, 83922 185496, 84752 186332, 85975 187353, 87256 188192, 88192 188661, 88702 188846, 89267 189024, 89842 189095, 90412 188983, 90968 188764, 91555 188497, 92667 187706, 94173 186186, 95642 184166, 97050 181695, 98374 178818, 99590 175587, 100674 172044, 101395 169197, 101936 166701, 102798 162054, 103875 155206, 104728 148431, 105162 143959, 105255 142463, 105427 140004, 102579 139671, 101500 139495, 100140 139155, 98807 138664, 97446 137991, 96004 137106, 94424 135980, 92653 134586, 91136 133318, 90073 132397, 88360 130943, 86288 129250, 84327 127727, 82868 126641, 82089 126082, 81238 125444, 80499 124789, 80011 124171, 79712 123624, 79454 123071, 79079 121771, 78560 119480, 78214 117341, 78127 116292, 78221 116046, 78507 115874, 78916 116322, 79356 117375, 79686 118537, 79837 119235, 80050 120146, 80334 121137, 80669 121971, 81106 122718, 81691 123447, 82471 124226, 83497 125125, 84483 125945, 90398 130722, 92660 132529, 94581 134044, 96166 135275, 97425 136229, 98365 136909, 98832 137229, 100504 138225, 127259 138579, 133504 138630, 139210 138653, 144297 138645, 148684 138608, 152293 138541, 155045 138446, 156404 138369, 157046 138301, 157616 138225, 157973 138131, 157997 138004, 157552 137667, 156856 137349, 155535 136900, 153893 136492, 152499 136225, 151651 136100, 150500 135987, 148268 135834, 145308 135693, 141598 135564, 137114 135445, 131832 135339, 125727 135242, 110057 135048, 107293 134996, 105341 134936, 104013 134857, 103126 134750, 102489 134609, 101204 134184, 99181 133123, 96065 130873, 92372 127517, 89000 124077, 87573 122536, 86575 121432, 85529 120217, 84736 119194, 84162 118298, 83775 117470, 83537 116642, 83415 115752, 83378 114993, 83383 113609, 83465 112860, 83662 112290, 84017 111662, 84469 111086, 85071 110455, 85886 109748, 86983 108918, 88431 107919, 90301 106694, 92661 105201, 95898 103192, 96844 102616, 97755 102020, 98337 101499, 98608 100958, 98586 100304, 98292 99436, 97749 98262, 96751 96235, 96020 94910, 94876 93038, 93607 91162, 92284 89371, 90977 87757, 89753 86408, 88682 85416, 88063 84964, 87567 84761, 86555 84665) (110240 167948, 108953 168099, 107818 168256, 105360 168633, 104300 168811, 103245 169008, 103160 169062, 102892 169709, 102677 170359, 102505 170944, 102314 171667, 101839 173238, 101031 175710, 100154 178187, 99552 179777, 99262 180469, 99059 180984, 98860 181569, 98732 182176, 98829 182280, 99439 182290, 100952 182103, 103174 181659, 105286 181162, 106584 180827, 108376 180348, 110269 179807, 111753 179316, 112914 178832, 113842 178315, 114623 177721, 115346 177008, 115914 176358, 116337 175845, 116989 174921, 117540 173873, 117734 173036, 117649 172561, 117399 172265, 116237 171412, 115152 170676, 113947 169899, 112743 169162, 111665 168539, 110523 167948) (129680 140055, 125913 140065, 123118 140084, 121060 140117, 119626 140162, 118702 140227, 118018 140337, 117643 140680, 117295 141056, 116913 141505, 116529 141983, 116175 142450, 115882 142864, 115609 143319, 115609 143449, 115771 143700, 116291 144271, 116579 144722, 117146 145725, 117808 147025, 118509 148497, 119186 150011, 119780 151439, 120232 152653, 120440 153303, 120649 154415, 120655 155038, 120465 155667, 120152 156347, 119818 157033, 118988 158405, 117394 160815, 115589 163326, 114343 164944, 112491 167167, 113355 167807, 114296 168463, 115918 169562, 116473 169956, 117251 170530, 117968 171085, 118396 171433, 119126 172096, 119406 172442, 119427 172699, 118838 173536, 118490 174124, 118333 174441, 117729 175285, 117181 175991, 116584 176718, 115122 178398, 116699 177852, 117665 177464, 118423 177090, 118600 176973, 119678 176371, 121329 175506, 122102 175116, 123644 174271, 125935 172920, 128367 171383, 130857 169717, 133323 167980, 135683 166227, 137854 164518, 139288 163318, 141682 161181, 143165 159828, 144275 158769, 145083 157920, 145659 157202, 146077 156536, 146408 155840, 146647 155239, 147003 154279, 147770 151977, 148569 149085, 149164 146183, 149508 143871, 149730 141901, 149845 141021, 149986 140052) (109923 143804, 108894 143896, 107755 144014, 106655 144158, 106559 144219, 106419 144633, 106352 145235, 106352 145696, 106299 146477, 106154 148097, 105935 150161, 105654 152526, 105331 155056, 104985 157612, 104629 160055, 104372 161701, 103496 167049, 103428 167556, 103589 167626, 103909 167619, 104370 167535, 105014 167438, 107234 167153, 108784 166923, 110149 166587, 111127 166089, 111816 165525, 112289 165065, 113034 164266, 114147 162978, 115300 161545, 116428 160054, 117467 158596, 118349 157259, 119010 156132, 119317 155517, 119451 155095, 119424 154400, 119159 153110, 118644 151555, 117936 149854, 117090 148137, 116165 146523, 115214 145134, 114547 144332, 113660 143511) (155876 139525, 153993 139650, 152685 139775, 151252 139979, 150498 144680, 150134 146690, 149736 148685, 149345 150441, 149106 151405, 148551 153376, 148379 154060, 148427 154060, 148885 153500, 149365 152889, 150175 151826, 150857 150868, 152040 149141, 153366 147141, 154718 145057, 155976 143070, 157021 141369, 157736 140137, 158001 139708, 158001 139545, 157383 139487) (36659 107665, 36029 107814, 35526 107948, 34658 108248, 33802 108710, 33152 109335, 32724 109980, 32432 110529, 32140 111617, 32079 113146, 32397 114534, 32847 115336, 33289 115647, 33473 115607, 33659 115371, 33990 114721, 34402 114220, 35039 113905, 35797 113965, 36471 114263, 37059 114658, 37961 115821, 38809 118111, 39240 121363, 39313 124601, 39255 126505, 39092 128984, 38723 131954, 38139 134802, 37537 137012, 37108 138352, 36338 140142, 35108 141783, 33340 142912, 31411 143604, 30413 143871, 29400 144174, 28464 144520, 27800 144880, 27392 145196, 26993 145580, 26333 146555, 26039 147848, 26386 149179, 27080 150230, 27559 150727, 28188 151270, 29173 152024, 30069 152608, 30491 152842, 30690 152842, 30862 152606, 31119 152149, 31246 151845, 31582 151309, 32227 150684, 33182 150110, 34188 149661, 35132 149289, 36810 148236, 38842 146325, 40525 143903, 41526 141805, 42088 140108, 42875 137144, 43742 132807, 44339 128238, 44604 124766, 44668 122673, 44659 119865, 44425 116992, 43883 114631, 43244 112958, 42767 111988, 42021 110727, 41003 109443, 39886 108529, 38951 108048, 38431 107874, 37852 107694, 37267 107605) (178893 45646, 178348 45863, 177360 46464, 176179 47391, 174872 48575, 173506 49955, 172147 51463, 170863 53037, 169991 54209, 169035 55633, 167131 58796, 164626 63451, 162281 68378, 160178 73377, 158393 78252, 157005 82802, 156093 86828, 155751 89306, 155687 92617, 157233 94086, 157755 94642, 158440 95437, 159072 96246, 159618 97018, 160044 97706, 160316 98258, 160402 98624, 160301 98757, 160224 98757, 159721 98347, 159208 97905, 158610 97368, 157691 96504, 154759 94098, 150208 90768, 145477 87738, 142215 85895, 138461 84111, 136853 83375, 136050 83045, 135831 83017, 135831 83072, 135966 83233, 136338 83752, 137391 85161, 138216 86240, 140050 88921, 142180 92670, 144169 97061, 145748 101155, 146844 104269, 147328 105686, 147720 106907, 148051 108058, 148357 109260, 148670 110640, 149023 112319, 149667 115491, 150270 118705, 150807 122279, 151135 125763, 151293 128769, 151349 130483, 151436 132620, 151547 134142, 151720 134763, 151931 134901, 155080 135442, 155819 135595, 156801 135838, 157664 136097, 158143 136273, 159438 136933, 160438 133718, 162375 127630, 162985 125418, 163784 122127, 164414 119046, 164701 117315, 164772 116463, 164874 115642, 165038 114965, 165253 114660, 165475 114658, 165614 114745, 165725 115556, 165797 117416, 165741 119655, 165628 121162, 165335 123218, 166454 124685, 166836 125126, 167451 125788, 168097 126431, 168543 126840, 170201 128242, 172744 130441, 175495 132462, 180229 135527, 185726 138675, 190131 140968, 193386 142534, 198862 144706, 206105 146819, 213295 148010, 218606 148318, 220606 148254, 222172 148173, 223074 148107, 223349 148046, 223647 147900, 223584 147663, 223464 147512, 223124 147332, 222133 147048, 220224 146676, 217849 146272, 216375 146032, 214341 145652, 211593 145051, 208526 144269, 205767 143506, 203462 142842, 197243 140573, 192024 137952, 191135 137372, 190283 136839, 185921 134175, 183977 132946, 181809 131404, 179597 129569, 177535 127700, 176474 126713, 175352 125619, 173758 123991, 172163 122277, 170650 120577, 169305 118989, 168210 117608, 167451 116532, 167153 116038, 167072 115670, 166741 114822, 166413 114061, 165795 112736, 165127 111151, 164259 108804, 163496 106397, 163030 104692, 162707 103251, 162170 100642, 161759 97953, 161575 95209, 161534 92479, 161534 90643, 161591 87860, 161811 84934, 162263 82159, 162817 79712, 163169 78311, 163757 76577, 164979 73365, 166536 69597, 168282 65602, 170069 61709, 171749 58246, 173176 55542, 173902 54298, 174439 53633, 175123 52720, 176060 51381, 176960 50003, 177772 48673, 178440 47484, 178916 46523, 179146 45880, 179093 45646) (169208 116463, 169582 117028, 170607 118345, 172132 120077, 174014 122070, 176102 124171, 178253 126227, 180316 128088, 181677 129237, 182643 129989, 184178 131106, 186704 132838, 189616 134730, 192011 136226, 193315 137019, 194913 137827, 197847 139172, 201072 140515, 203296 141360, 204772 141859, 206968 142533, 210260 143454, 213440 144253, 215382 144686, 217899 145133, 218729 145258, 219032 145233, 219110 145162, 219098 145044, 218817 144375, 218235 142843, 217604 140798, 217084 138520, 216721 136473, 216496 135011, 216090 132687, 215495 129653, 214895 126988, 214508 125488, 213768 123095, 211770 123315, 210936 123361, 209306 123422, 207343 123459, 205784 123465, 203889 123457, 199764 123279, 194460 122718, 188772 121701, 183775 120565, 176535 118727, 174633 118225, 173200 117825, 172140 117498, 171358 117218, 170762 116957, 170110 116602, 169512 116316, 169208 116273) (109542 139727, 108355 139759, 107781 139790, 106596 139954, 106596 142684, 110292 142524, 111296 142465, 112487 142369, 113750 142218, 114229 141977, 114655 141676, 115292 141160, 116706 139809, 112275 139727, 111041 139715) (35360 128458, 34735 132197, 34335 134199, 33662 137183, 32965 139885, 32544 141313, 32319 141955, 32382 142035, 32643 141946, 33294 141618, 33988 141166, 34560 140692, 34829 140394, 35291 139472, 36026 137515, 36755 134971, 37262 132793, 37693 130603, 37925 129348, 38135 128083, 38135 127831, 37929 127420, 37527 126836, 37337 126616, 36840 125956, 36430 125331, 36041 124533) (119874 88611, 119167 89039, 117361 90214, 116413 90848, 114958 91850, 113494 92888, 111852 94095, 110797 94856, 109044 96093, 107162 97388, 105827 98291, 103776 99642, 102392 100582, 101375 101297, 100937 101619, 100802 101747, 100130 102218, 99225 102735, 99043 102825, 97559 103648, 96689 104155, 90350 107996, 88783 109006, 87147 110177, 85995 111176, 85470 111762, 85251 112254, 85417 112381, 85994 112391, 88247 112210, 91595 111844, 95784 111186, 100347 110204, 104544 109145, 106203 108698, 107000 108494, 107882 108287, 108923 108082, 109351 108097, 109422 108181, 109268 108339, 108684 108681, 107298 109156, 105960 109578, 104378 110052, 102645 110551, 100854 111045, 99095 111510, 97089 112003, 95966 112227, 94060 112556, 91991 112862, 90501 113052, 88218 113309, 86694 113499, 85199 113716, 84981 113804, 84715 114024, 84720 114383, 85108 114853, 85893 115440, 87086 116152, 88700 116999, 90749 117988, 92617 118846, 93695 119325, 95061 119890, 97111 120686, 99296 121481, 101524 122243, 103701 122941, 105732 123545, 107523 124020, 108832 124322, 110373 124531, 115286 125160, 121965 125995, 132050 127230, 134528 127519, 134613 127706, 134613 127803, 134344 127892, 133577 127931, 132370 127899, 130785 127802, 128878 127647, 126711 127440, 124342 127191, 121828 126903, 119230 126585, 116609 126243, 114022 125887, 111527 125519, 109186 125149, 107057 124784, 105199 124430, 104051 124186, 102779 123881, 100122 123152, 96947 122072, 93681 120683, 90805 119291, 89420 118587, 88102 117941, 86688 117282, 85743 116893, 85400 116834, 85546 117282, 85874 118028, 86288 118594, 87099 119616, 88176 120892, 89425 122313, 90749 123775, 92052 125171, 93241 126392, 93968 127105, 96232 129159, 97820 130560, 99071 131601, 100078 132344, 100929 132851, 101714 133183, 102526 133403, 103617 133601, 105482 133692, 107430 133759, 112788 133897, 119553 134026, 139231 134327, 143384 134400, 145134 134470, 148378 134570, 145571 133067, 143989 132132, 141702 130646, 139452 129026, 137928 127828, 137087 127108, 136053 126186, 134488 124729, 132818 123114, 131119 121418, 129467 119718, 127939 118093, 126607 116618, 125808 115689, 125108 114817, 123833 113109, 122571 111113, 121555 109011, 120805 107082, 120441 106035, 120053 104834, 119766 103559, 119630 102015, 119570 100211, 119541 98987, 119525 97118, 119611 95267, 119872 93443, 120232 91635, 120415 90778, 120573 89636, 120560 88848, 120456 88613, 120359 88521, 120211 88504) (96982 76766, 94112 77174, 91138 77728, 88466 78251, 85125 78878, 84798 78931, 84243 79067, 83858 79260, 83847 79464, 84129 79626, 84373 79695, 84945 80089, 85433 80479, 85936 80923, 87105 82019, 90516 81295, 93070 80884, 95614 80607, 98970 80436, 101870 82140, 102735 82684, 103961 83511, 105109 84348, 105811 84897, 107887 86672, 107642 95541, 109525 94250, 111772 92651, 115001 90253, 115674 89777, 116428 89265, 117169 88785, 117641 88494, 120249 86980, 120654 86865, 120988 86893, 121508 87080, 121794 87246, 122077 87517, 122257 87872, 122340 88336, 122323 88930, 122210 89677, 122002 90597, 121779 91438, 121583 92128, 121252 93370, 121030 94695, 120973 96376, 121032 99781, 121089 101829, 121219 103505, 121504 104809, 121902 106027, 122140 106719, 122461 107580, 122918 108712, 123357 109703, 123624 110251, 124031 110980, 125122 112552, 127186 115117, 129893 118102, 132379 120654, 133809 122061, 135576 123774, 137594 125673, 139360 127251, 140959 128574, 142476 129709, 143995 130720, 145601 131678, 146931 132409, 149596 133815, 149968 132497, 150079 131956, 150142 131072, 150108 129817, 150020 128448, 149902 126959, 149609 123864, 149172 120342, 148612 117023, 148066 114375, 147634 112488, 146902 109473, 146019 106270, 145056 103317, 144158 100862, 143483 99110, 142356 96311, 141136 93558, 139961 91322, 138959 89672, 138148 88438, 136686 86402, 134838 84112, 133181 82402, 132202 81596, 131353 81166, 129832 80586, 127187 79802, 123980 79071, 120290 78407, 116200 77825, 111789 77334, 107140 76949, 103534 76733, 101619 76657, 99479 76628) (115805 16248, 114337 16415, 113257 16624, 111487 17096, 109019 17942, 106605 18985, 104936 19841, 103252 20847, 102023 21562, 100157 22618, 99427 23011, 98021 23955, 95866 25634, 93554 27679, 91189 29984, 88869 32445, 86699 34958, 84777 37420, 83574 39133, 82543 40799, 80661 44084, 78112 48852, 75850 53461, 74551 56356, 73925 57949, 73284 59982, 72231 63729, 71215 67797, 70610 70492, 70401 71604, 70301 72227, 70174 73255, 70049 74588, 69919 76335, 69778 78602, 69615 81501, 69121 91094, 68857 95506, 68497 100481, 68128 104387, 67881 106401, 67638 107710, 66551 110923, 64818 114124, 63990 115314, 62717 116886, 60604 119250, 58427 121434, 57066 122661, 56283 123241, 55411 123913, 54509 124664, 53857 125305, 53438 125864, 53235 126369, 53230 126850, 53409 127332, 53926 128071, 54593 128638, 55551 128934, 56688 128740, 57808 128230, 58699 127653, 59346 127218, 60116 126677, 63205 124149, 65567 121707, 67493 118875, 68335 117263, 69551 114229, 71192 109139, 72592 103543, 73390 99413, 73648 97559, 73771 96146, 73934 93348, 74073 89564, 74168 85934, 74274 80903, 74356 77990, 74461 75762, 74618 73996, 74854 72467, 75193 70955, 75661 69235, 76758 65500, 78289 60782, 80387 54989, 82475 49983, 83907 46995, 84773 45465, 85756 43758, 86887 41859, 87900 40259, 88849 38876, 89796 37632, 90797 36446, 91911 35238, 92872 34252, 94103 33014, 99198 28576, 105060 24273, 107032 22978, 109149 21739, 112327 20067, 115457 18620, 117442 17821, 118418 17509, 119312 17207, 119998 16928, 120267 16713, 120244 16544, 120123 16392, 119402 16248, 117792 16161) (35218 115010, 35026 115461, 34968 116071, 34968 116649, 35060 117775, 35364 119251, 35914 120830, 36524 122190, 38014 125191, 38097 123016, 38098 122331, 38065 121295, 38001 120264, 37896 119140, 37614 117817, 37194 116557, 36680 115631, 36260 115176, 35967 115016, 35564 114893) (190497 67748, 190137 67886, 188917 68742, 187784 69603, 186499 70625, 185154 71735, 183836 72863, 182632 73935, 181878 74640, 181105 75409, 179595 77066, 177318 79748, 175072 82604, 173594 84619, 172838 85741, 171943 87236, 170322 90087, 168546 93363, 167296 95758, 166619 97109, 165900 98796, 165152 100992, 164714 102923, 164605 104009, 164683 104567, 164929 105534, 165155 106338, 165407 107162, 166020 109032, 166638 110973, 166845 111506, 167152 112203, 167581 113030, 167934 113451, 168606 114028, 169857 114903, 171368 115770, 172590 116368, 173232 116633, 173921 116871, 175289 117305, 177004 117816, 178959 118372, 181042 118944, 183149 119499, 185169 120008, 186536 120336, 188496 120777, 193068 121513, 199722 122209, 206213 122472, 210407 122383, 212019 122218, 212765 122054, 213061 121831, 213061 121496, 212716 120711, 211839 118992, 210666 117014, 209759 115641, 209202 114906, 208488 114040, 207159 112479, 205621 110728, 204445 109419, 203322 108205, 201181 105821, 199190 103420, 197841 101490, 197114 100185, 196721 99316, 196184 98059, 195601 96522, 195141 95004, 194782 93386, 194504 91548, 194284 89371, 194102 86738, 193795 80815, 193658 78583, 193513 76738, 193345 75192, 193143 73848, 192895 72615, 192586 71399, 192113 69786, 191771 68841, 191349 68072, 190897 67743) (44248 26155, 44245 26344, 44425 26855, 44754 27615, 45085 28313, 45637 29391, 46651 32082, 47597 36031, 48027 40305, 48018 43695, 47893 45281, 47594 47750, 47222 49818, 46853 51206, 45865 54556, 44385 58920, 42649 63336, 41130 66815, 40076 69081, 39596 70083, 39110 71061, 38571 72104, 37930 73303, 37139 74747, 34480 79509, 33216 81874, 31910 84587, 30896 87094, 30257 88985, 29864 90340, 29350 92529, 28781 95660, 28371 98898, 28125 102134, 28049 105252, 28148 108138, 28431 110682, 28743 112258, 29065 113304, 29684 114884, 30708 117026, 31845 118964, 32719 120201, 34348 121902, 34394 121902, 34423 121566, 34359 120915, 34279 120361, 33793 118689, 32989 117371, 32436 116798, 31613 115548, 30893 113694, 30659 111756, 30806 110336, 31007 109696, 31166 109106, 31228 108505, 31126 107819, 30852 106772, 30699 106252, 30396 104647, 30169 102284, 30179 99893, 30335 98230, 30575 96948, 31159 94767, 32316 91213, 33825 87252, 35137 84141, 36494 81139, 37221 79492, 37711 78347, 37892 77994, 37892 77788, 38313 76736, 38792 75599, 39405 74187, 40902 70834, 42337 67722, 43323 65629, 45565 60632, 47776 55190, 49266 50726, 49966 47949, 50157 46774, 50229 46032, 50319 44645, 50379 43033, 50394 41795, 50391 40621, 50301 38338, 49960 35913, 49269 33653, 48434 31727, 47903 30649, 47131 29342, 46014 27751, 44982 26600, 44433 26155) (56360 88409, 55723 88449, 55148 88562, 54550 88787, 53850 89159, 52964 89718, 51815 90501, 49836 91878, 48471 92984, 46425 94836, 44316 96948, 42282 99163, 40461 101323, 38989 103273, 38006 104858, 37648 105654, 37648 106010, 37991 106285, 38739 106596, 39110 106705, 40038 107071, 40834 107461, 41668 108015, 46262 103469, 47648 102135, 49607 100310, 51451 98660, 52567 97701, 53304 97110, 54397 96286, 56114 95045, 57888 93826, 59093 93038, 59847 92571, 60876 91910, 61999 91159, 63035 90417, 63028 90316, 62740 90078, 61838 89602, 61069 89231, 60036 88818, 59179 88565, 58293 88443, 57426 88406) (177809 51172, 177141 52167, 176158 53688, 175069 55409, 173987 57152, 173046 58698, 172382 59832, 172131 60210, 172131 60374, 171818 60957, 171276 61837, 171011 62341, 170571 63267, 170115 64329, 169794 65135, 169572 65741, 168499 68529, 167118 72002, 166554 73384, 165530 76084, 164406 79420, 163549 82470, 163088 84521, 162908 85569, 162793 86659, 162683 88491, 162635 90560, 162649 92721, 162717 94824, 162842 96723, 163016 98270, 163157 99065, 163532 100159, 163846 100706, 163903 100706, 164217 100100, 164492 99442, 164724 98838, 165102 97801, 165370 97106, 165643 96464, 165961 95790, 166369 95002, 166908 94010, 169018 90255, 170456 87787, 172134 85108, 173836 82675, 175306 80750, 176511 79245, 178708 76697, 181705 73518, 184650 70739, 186673 69041, 187678 68306, 188553 67636, 189514 66863, 190404 66064, 190404 65721, 189914 64921, 188611 63096, 186734 60822, 185098 59000, 184171 58041, 183110 56908, 181724 55370, 180530 53982, 179887 53199, 178102 50811) (101418 99341, 100686 99658, 100333 99860, 100283 100150, 100428 100195, 100805 100057, 101612 99665, 102454 99193, 102454 99121, 102132 99118) (95691 81798, 94841 81894, 93929 82020, 93059 82164, 92521 82268, 89688 82946, 88518 83213, 91369 86130, 94943 90534, 98104 95523, 98962 97150, 99210 97544, 99472 97808, 99798 97955, 100238 97999, 100842 97953, 101662 97827, 102967 97595, 103627 97449, 104421 97234, 105263 96943, 105504 96749, 105687 96346, 105955 95446, 106188 94249, 106376 92880, 106503 91457, 106559 90104, 106530 88939, 106458 88293, 106310 87799, 105700 87046, 104198 85722, 101970 84182, 99821 82886, 98864 82359, 98174 82003, 97495 81767, 96762 81719) (67620 82190, 66459 82588, 65344 83017, 64067 83543, 62734 84118, 61450 84699, 60322 85239, 59666 85577, 58679 86130, 58009 86490, 57280 86859, 57357 86915, 58240 87204, 59216 87495, 59892 87709, 60906 88050, 61905 88407, 64707 89489, 65294 89277, 66494 88768, 68102 88036, 68102 84762, 68087 83702, 68034 82802, 67938 82329, 67824 82190) (77844 79325, 76382 79486, 75648 79663, 75447 79831, 75306 80041, 75204 80509, 75193 81361, 75242 82421, 75341 83834, 75419 84721, 75522 85579, 75567 85647, 75897 85624, 76910 85331, 78011 84968, 80067 84389, 82378 83835, 83954 83499, 84921 83275, 85836 83044, 85874 83006, 85755 82813, 85314 82421, 84625 81905, 83778 81319, 82863 80727, 81971 80188, 80894 79607, 80320 79414, 79411 79324) (76163 74393, 75939 74650, 75624 75311, 75354 76213, 75214 76949, 75024 78761, 76559 78397, 77079 78256, 77493 78075, 77707 77846, 77808 77447, 77630 76819, 77421 76312, 77164 75771, 76890 75252, 76496 74597, 76278 74393) (107931 38580, 107567 38965, 106465 40070, 104931 41700, 103090 43716, 101080 45961, 99043 48283, 97115 50527, 95851 52033, 94246 53995, 93193 55235, 92391 56135, 92026 56511, 91659 56725, 91364 56742, 91025 56554, 90591 56098, 90018 55319, 89257 54155, 88261 52551, 85083 47327, 84258 48789, 83639 50090, 82579 52551, 81394 55541, 80164 58845, 78966 62248, 77882 65532, 76986 68484, 76497 70281, 76069 72128, 77424 74146, 78375 75503, 79312 76703, 80051 77436, 80544 77773, 81333 78141, 81665 78253, 81934 78214, 82512 77991, 83807 77707, 85044 77467, 86816 77154, 89394 76678, 91380 76293, 92483 76062, 95147 75742, 99652 75454, 104522 75403, 107998 75520, 110200 75692, 111001 75724, 111638 75670, 112193 75497, 112744 75165, 113374 74640, 114164 73883, 115503 72553, 116401 71606, 117741 70120, 119189 68438, 120715 66600, 122294 64641, 123893 62602, 125488 60519, 127051 58430, 128552 56375, 129962 54389, 131256 52512, 132404 50782, 133378 49236, 134150 47912, 134692 46850, 134930 46281, 135046 45721, 135014 45515, 134854 45423, 134160 45402, 133018 45574, 130550 46106, 127050 47017, 123583 47990, 119714 49118, 117518 49747, 115784 50229, 114459 50576, 113482 50805, 112797 50926, 112346 50956, 112028 50890, 111753 50516, 111504 49885, 111391 49427, 111139 48497, 110677 46876, 110138 45042, 109026 41411, 108559 39950, 108097 38580) (67112 54469, 67230 55169, 67404 55732, 67808 56873, 68347 58252, 68957 59716, 69573 61116, 70129 62302, 70724 63431, 70865 63431, 71217 62591, 71542 61684, 71816 60857, 72566 58469, 72912 57402, 72740 57228, 72235 56857, 71458 56380, 70734 55979, 68431 54788, 67819 54495, 67429 54347, 67215 54332))) \ No newline at end of file diff --git a/stress_benchmark/resources/051.settings b/stress_benchmark/resources/051.settings new file mode 100644 index 0000000000..fd55479c67 --- /dev/null +++ b/stress_benchmark/resources/051.settings @@ -0,0 +1,629 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=20.0 +machine_acceleration=500 +bridge_sparse_infill_max_density=0 +support_line_width=0.36 +bottom_skin_preshrink=1.3 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.96 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=175.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=400 +support_interface_material_flow=97.0 +z_seam_relative=False +top_skin_expand_distance=1.3 +machine_shape=rectangular +speed_travel_layer_0=120 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=210.0 +raft_jerk=6.0 +support_xy_distance=0.4 +bridge_skin_speed_2=10 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.105 +bottom_skin_expand_distance=1.3 +speed_prime_tower=40.0 +speed_support=40.0 +speed_roofing=20.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=lines +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.44 +raft_surface_jerk=6.0 +print_bed_temperature=60.0 +support_bottom_material_flow=97.0 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +jerk_support_roof=6.0 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100.0 +material_adhesion_tendency=0 +material_initial_print_temperature=210.0 +layer_0_z_overlap=0.15 +support_roof_enable=True +acceleration_wall_x_roofing=400.0 +raft_margin=0 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.12 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.12 +support_bottom_pattern=lines +bottom_thickness=0.96 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=400.0 +skin_material_flow=97.0 +default_material_bed_temperature=65.0 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=97.0 +machine_name=SV03 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=30.0 +travel_avoid_other_parts=False +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=1.2 +top_bottom_pattern_0=lines +resolution=0 +support_angle=75 +retraction_min_travel=0.88 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=50 +wipe_retraction_amount=1.6 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.24 +machine_feeder_wheel_diameter=10.0 +infill_overlap=30.0 +support_mesh_drop_down=True +small_feature_speed_factor=30.0 +skin_overlap_mm=0.043 +sub_div_rad_add=0.44 +roofing_line_width=0.42 +material_flow_layer_0=100.0 +support_roof_pattern=lines +cool_fan_speed_min=50.0 +retraction_combing_max_distance=30.0 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=50.0 +raft_base_jerk=6.0 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.88 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=15.0 +speed_ironing=13.333333333333334 +gantry_height=400 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=0 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=6.0 +support_roof_density=80 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=120.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.12 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=400.0 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=True +infill_support_angle=40 +support_interface_height=0.6 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=20.0 +raft_acceleration=400.0 +bridge_fan_speed_3=0 +support_tree_angle_slow=30.0 +raft_speed=20.0 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_max_jerk_xy=10 +roofing_material_flow=97.0 +acceleration_infill=400.0 +machine_extruder_count=1 +support_roof_line_distance=0.5 +zig_zaggify_support=True +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +speed_print_layer_0=20.0 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=20.0 +initial_bottom_layers=8 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=210.0 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=2.0 +bridge_wall_speed=10 +support_interface_density=80 +line_width=0.44 +acceleration_ironing=400.0 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=97.0 +prime_tower_position_x=341.0 +speed_slowdown_layers=2 +bridge_wall_min_length=1.8 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=40.0 +speed_layer_0=20.0 +infill=0 +bridge_skin_speed_3=10 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=2.0 +jerk_layer_0=6.0 +minimum_interface_area=2.0 +wall_0_material_flow_layer_0=97.0 +support_wall_count=1 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.5 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=20.0 +material_anti_ooze_retracted_position=-4 +layer_height=0.12 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.24 +jerk_print_layer_0=6.0 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.44 +retraction_retract_speed=20.0 +brim_line_count=6 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.84 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=6.0 +support_tree_tip_diameter=0.72 +bridge_skin_speed=10 +bridge_fan_speed=70.0 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=brim +min_odd_wall_line_width=0.34 +skirt_line_count=3 +support_tree_angle=45.0 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=400.0 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=True +cool_min_temperature=210.0 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=50.0 +magic_mesh_surface_mode=normal +zig_zaggify_infill=True +support_interface_line_width=0.4 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.0 +support_bottom_height=0.6 +machine_depth=350 +acceleration_skirt_brim=400.0 +skin_overlap=10.0 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=30 +z_seam_x=175.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60.0 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=350 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=350 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=2.0 +infill_sparse_thickness=0.2 +prime_tower_brim_enable=True +ironing_monotonic=False +small_skin_width=0.84 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=True +acceleration_print_layer_0=400.0 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_wall_0=6.0 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.96 +material_guid=a4695965-1c53-430b-84fb-5b6bb49ba646 +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=20.0 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=800.0 +machine_max_acceleration_x=500 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=True +raft_base_thickness=0.336 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=6.0 +brim_gap=0.1 +acceleration_enabled=True +wall_material_flow=97.0 +acceleration_wall=400.0 +draft_shield_dist=10 +raft_surface_acceleration=400.0 +switch_extruder_retraction_speeds=20 +support_pattern=lines +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=97.0 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=6.0 +retraction_hop=0.24 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=97.0 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=30 +support_material_flow=97.0 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=6.0 +material_break_retracted_position=-50 +small_feature_max_length=12.566370614359172 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=5.878304635907295e-17 +experimental=0 +skin_material_flow_layer_0=100.0 +material_bed_temperature_layer_0=65.0 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.36 +support_bottom_distance=0 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=buildplate +cool_lift_head=False +raft_interface_line_width=0.88 +support_type=buildplate +support_zag_skip_count=0 +retraction_combing=noskin +raft_interface_line_spacing=1.08 +draft_shield_enabled=False +material_break_preparation_temperature=210.0 +material_alternate_walls=False +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=40.0 +raft_surface_thickness=0.12 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=8 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=40.0 +infill_line_width=0.4 +wall_line_width_0=0.42 +support_extruder_nr_layer_0=0 +retraction_count_max=90 +jerk_infill=8.0 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.44 +material_print_temperature=210.0 +acceleration_prime_tower=400.0 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=97.0 +extruder_prime_pos_y=0 +jerk_print=6.0 +support_brim_enable=True +support_bottom_density=80 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.44 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=400.0 +wall_line_width_x=0.44 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.28 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=True +jerk_enabled=False +speed_wall_0_roofing=20.0 +skin_preshrink=1.3 +layer_height_0=0.28 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=5 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=120 +group_outer_walls=True +material_is_support_material=False +material_flow=97.0 +jerk_roofing=6.0 +jerk_travel_enabled=True +jerk_wall_x=6.0 +machine_always_write_active_tool=False +retraction_amount=1.6 +machine_minimum_feedrate=0.0 +acceleration_print=400.0 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=20.0 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=400.0 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=back +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=6.0 +infill_offset_x=0 +jerk_wall=6.0 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=20.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=20.0 +quality_name=Draft +support_offset=0.0 +wall_overhang_speed_factor=100 +top_layers=8 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=0.8 +machine_max_feedrate_y=500 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=40.0 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.18 +retraction_prime_speed=20.0 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=2.0 +raft_surface_line_width=0.44 +jerk_support_interface=6.0 +support_tree_bp_diameter=7.5 +support_interface_pattern=lines +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=400.0 +material_no_load_move_factor=0.940860215 +travel_speed=120 +z_seam_corner=z_seam_corner_weighted +machine_max_feedrate_z=10 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=6.0 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.42 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=1.584 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=0 +support_z_distance=0.24 +raft_base_speed=15.0 +jerk_travel_layer_0=10 +speed_support_interface=30 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.399 +material_flush_purge_speed=0.5 +acceleration_travel=800.0 +support_roof_height=0.6 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=321.0 +jerk_support=6.0 +roofing_pattern=lines +jerk_wall_x_roofing=6.0 +top_skin_preshrink=1.3 +acceleration_wall_0_roofing=400.0 +machine_max_feedrate_x=500 +material_final_print_temperature=210.0 +acceleration_roofing=400.0 +raft_interface_jerk=6.0 +retraction_speed=20.0 +prime_tower_flow=97.0 +acceleration_wall_x=400.0 +infill_overlap_mm=0.126 +wall_0_material_flow_roofing=97.0 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=20.0 +support_roof_wall_count=0 +skirt_gap=5.0 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=1.6 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=1.3 +support_infill_rate=0 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=400.0 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=30 +jerk_travel=10 +retract_at_layer_change=False +support_roof_line_width=0.4 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=True +skirt_brim_line_width=0.44 +skirt_brim_material_flow=97.0 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=400.0 +support_brim_line_count=3 +build_volume_temperature=28 +small_hole_max_size=4.0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=40.0 +wall_0_extruder_nr=-1 +retraction_hop_enabled=True +prime_tower_wipe_enabled=True +acceleration_support_bottom=400.0 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=400.0 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/051.wkt b/stress_benchmark/resources/051.wkt new file mode 100644 index 0000000000..ab7d7e5a2c --- /dev/null +++ b/stress_benchmark/resources/051.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((176710 110618, 178664 110709, 180381 110834, 181547 110937, 183639 111186, 185334 111428, 186649 111665, 187395 111817, 187970 111982, 188399 112046, 189525 112331, 189710 112622, 189924 112626, 189992 112740, 190425 112975, 190744 113499, 191416 113698, 192007 114025, 191936 114546, 192005 115423, 191992 115665, 192100 116841, 192117 117406, 192194 117757, 192382 118858, 192571 119535, 192873 120515, 192924 120589, 193157 121136, 193345 121353, 193529 121803, 193796 122038, 193880 122185, 194077 122215, 194212 122563, 194454 122145, 194220 121869, 194014 121763, 193969 121245, 193817 120997, 193647 120375, 193430 119872, 193198 118362, 193167 117831, 193169 116505, 193254 115316, 193411 114343, 193716 113427, 194183 113538, 194805 113753, 195123 113824, 197308 114591, 198309 114977, 199575 115484, 200429 115844, 202078 116577, 202929 116981, 203957 117484, 205474 118281, 207238 119251, 208856 120224, 209655 120726, 211387 121864, 213095 123082, 214696 124293, 215897 125255, 217674 126774, 218788 127789, 219811 128759, 220452 129384, 221418 130359, 222729 131771, 223957 133167, 224394 133708, 224840 134356, 224820 134633, 225185 134760, 225458 135086, 226081 135779, 226373 136341, 225987 136465, 225527 136124, 224972 135359, 224621 134786, 223968 134890, 223468 135254, 222714 135884, 221854 136460, 221477 136806, 220419 137462, 219807 137727, 219096 138136, 218932 138189, 218294 138445, 218103 138732, 218119 139073, 217657 139582, 217787 139533, 218428 139153, 218900 138995, 219689 138592, 220045 138490, 220724 138202, 221169 137948, 221724 137673, 222571 137195, 223008 137008, 223289 137084, 223450 137188, 224302 138073, 225438 138709, 226195 139062, 226004 139648, 225214 140439, 224847 140944, 224352 141522, 223790 142206, 223440 142652, 222865 143437, 222672 143760, 221992 144708, 221929 145017, 221801 145285, 221823 145434, 222527 144523, 222953 144190, 223828 143234, 225502 141662, 226812 140506, 227743 139750, 228172 139472, 228487 139304, 229188 140214, 230383 142142, 230726 142806, 231000 143273, 231143 143495, 231217 143793, 231469 144270, 231185 144589, 230841 145167, 230393 145665, 230262 145905, 229992 146235, 229363 147172, 229456 147228, 228996 147840, 228834 148312, 229680 147336, 230368 146811, 230500 146594, 230753 146353, 231103 145963, 231221 145918, 231409 145720, 231705 145510, 231861 145338, 232135 145412, 232247 145652, 232599 146236, 232949 147011, 233256 147593, 233343 147888, 233635 148394, 233731 148755, 233835 148949, 233905 149435, 233660 149622, 233401 150052, 233240 150206, 232942 150641, 232816 150788, 232291 151469, 231841 152255, 231587 152730, 231363 153191, 231123 153655, 231035 154057, 230793 154514, 230735 154899, 230619 155246, 230657 155289, 230567 155404, 230468 155693, 230488 156066, 230441 156318, 230526 156410, 230359 156773, 230346 157216, 230494 157710, 230452 157972, 230693 158125, 230648 158227, 230804 158186, 230777 157635, 230815 157433, 230742 157051, 230462 156832, 230996 156666, 231087 156224, 231089 155862, 231276 155436, 231493 154718, 231489 154628, 231754 154164, 231910 153732, 232365 152999, 232787 152469, 232924 152326, 233523 151611, 233707 151441, 234177 150954, 234627 150955, 234946 151543, 235337 152513, 235743 153632, 236488 155879, 236793 156897, 236931 157393, 237078 158172, 237365 159009, 237559 159929, 237799 161196, 238022 161857, 238023 162426, 238248 163070, 238414 163818, 238441 164564, 238531 165058, 238657 165549, 238808 166403, 238825 166672, 238922 167533, 239008 168002, 239068 168560, 239255 170781, 239336 172289, 239385 174204, 239371 175287, 239374 176359, 239333 177731, 239278 178760, 239114 180903, 239017 181898, 238851 182982, 238837 183245, 238740 183786, 238675 183919, 238692 184026, 237194 184974, 236152 185408, 235004 185737, 234597 185904, 233463 186195, 233102 186240, 232971 186298, 231999 186447, 230968 186644, 230086 186753, 229320 186802, 228863 186953, 228853 187025, 229223 187165, 230009 187183, 230163 187238, 230667 187209, 231311 187245, 231992 187190, 232577 187168, 233304 187126, 233965 187046, 234673 187016, 235795 186869, 237264 186638, 238140 186815, 238113 187684, 237956 188210, 237877 188826, 237655 189463, 237247 189466, 236960 189608, 236800 189793, 236599 189899, 236731 190085, 236838 190467, 237320 190847, 237128 191919, 237008 192205, 236938 192573, 236226 194935, 235445 197201, 234750 199005, 234037 200710, 233751 201138, 233552 201739, 233292 202211, 233217 202467, 232847 203065, 232627 203022, 232141 202559, 231717 202271, 231318 201872, 230220 201005, 229509 200505, 229251 200355, 228811 200047, 228533 199901, 227887 199485, 227379 199187, 226648 198818, 225174 198187, 226073 198954, 226086 198999, 227219 199710, 227625 200113, 228460 200767, 229163 201465, 229366 201653, 230245 202643, 230772 203472, 231543 204861, 231520 205235, 231555 205652, 231382 205876, 231105 206519, 230800 207091, 230694 207239, 230434 207743, 230174 208195, 229271 209651, 228611 210653, 228080 211415, 227535 212229, 227005 212969, 225793 214564, 224847 215763, 222958 217974, 221221 219822, 220391 220667, 219470 221562, 218565 222404, 217856 223048, 215921 224715, 214678 225709, 213412 226669, 212693 227200, 212048 227659, 210633 228628, 210043 229016, 208025 230276, 205517 231694, 204047 232460, 203162 232896, 201452 233713, 199881 234390, 199338 234532, 198820 234796, 198668 234847, 198164 235063, 197662 235071, 197524 235025, 196631 235185, 196304 235262, 195503 235028, 195036 234980, 194668 234753, 194346 234634, 193871 234361, 193333 233979, 192544 233265, 192023 232686, 191658 232248, 191339 231818, 190618 230719, 190018 229546, 189805 229222, 189656 228890, 189592 229441, 189812 230041, 190070 230883, 190796 232548, 191097 233082, 191357 233570, 191464 233709, 192289 234966, 192747 235445, 193186 235984, 193422 236616, 192620 236906, 191580 237223, 189165 237805, 188021 238064, 185756 238485, 183779 238784, 181965 239007, 180126 239180, 178157 239308, 176289 239371, 175583 239383, 174798 239375, 174426 239343, 173618 239341, 172626 239296, 172370 238974, 172125 238977, 172053 238898, 171766 238831, 171590 238727, 171194 238323, 170915 238308, 170238 238216, 170063 238012, 170038 237813, 169935 237654, 169817 236930, 169619 236329, 169494 235668, 169316 235243, 169251 234906, 168839 233783, 168333 232624, 168283 232562, 167901 231876, 167729 231728, 167608 231508, 167316 231159, 167154 231074, 166973 230764, 166836 230643, 166575 230531, 166442 230363, 166263 230432, 166035 229957, 165668 229819, 165143 229770, 165082 229728, 164507 229682, 165093 229829, 165238 229941, 165706 230142, 165988 230002, 166009 230592, 166200 230742, 166437 230843, 166673 231402, 166983 231654, 167151 232148, 167308 232376, 167549 232837, 167952 234132, 168109 234597, 168326 235441, 168497 236715, 168563 237625, 168448 238276, 168446 238703, 168276 239014, 167138 238884, 166876 238870, 165802 238721, 164466 238516, 163551 238358, 162346 238130, 160328 237692, 157830 237061, 155560 236385, 153430 235671, 151282 234861, 150270 234448, 149515 234126, 148079 233486, 147283 233119, 146784 232878, 144635 231781, 142712 230707, 141756 230142, 139842 228942, 138701 228177, 137673 227469, 135102 225550, 134040 224628, 133955 224428, 133739 224237, 132570 223422, 132048 222921, 132315 222599, 132921 222900, 133800 223742, 133867 223851, 133957 223857, 134205 224060, 134708 223811, 134895 223538, 135141 223362, 135527 222823, 136463 221679, 137007 221073, 137636 220519, 138091 220169, 139753 218953, 139757 218893, 139477 218327, 139549 218195, 138827 218899, 138166 219253, 136602 220355, 135594 221230, 134941 221518, 133728 220693, 131977 220153, 131676 219970, 131604 219870, 131797 219468, 132043 219141, 132326 218528, 132688 217914, 132818 217750, 132872 217526, 133332 216698, 133453 216524, 133477 216401, 133987 215467, 134342 214601, 134637 213954, 134842 213312, 134926 212867, 134633 213328, 134357 213591, 134092 214027, 133856 214438, 133651 214653, 133255 215284, 133120 215530, 132998 215658, 132394 216610, 131797 217479, 131644 217640, 131282 218238, 130942 218635, 130765 218858, 130479 219116, 130302 219385, 129871 219718, 129738 219915, 129560 220064, 129246 220174, 128633 219675, 127672 218656, 126844 217745, 126583 217380, 125921 216685, 125776 216195, 125621 215951, 125737 215717, 125850 215281, 125986 215051, 126173 214548, 126514 213814, 126531 213756, 126842 213180, 127072 212660, 127165 212398, 127416 211850, 127756 211067, 128038 210354, 128062 210272, 127947 210471, 127660 211029, 127542 211230, 127318 211724, 127116 211971, 126945 212470, 126511 212758, 126167 213297, 125751 213768, 125302 214409, 124927 214714, 124759 214950, 124563 214884, 124496 214770, 124209 214549, 123641 213764, 123168 213198, 123008 212875, 122517 212278, 122473 212187, 122169 211669, 122100 211632, 122303 211164, 122316 211035, 122620 210535, 122673 210351, 122924 209882, 122991 209703, 123252 209100, 123319 208876, 123666 207985, 123837 207460, 123894 207013, 124038 206515, 124070 206200, 124043 206107, 124119 205948, 124183 205621, 124132 205253, 124240 204736, 124206 204220, 124127 204076, 124161 203740, 124055 203729, 124167 203510, 124151 203281, 123983 202844, 123896 202484, 123764 202373, 123751 202207, 123464 202215, 123487 202479, 123653 202865, 123621 203351, 123762 203505, 123570 203749, 123517 203979, 123572 204115, 123586 204661, 123639 204749, 123473 205242, 123486 205636, 123343 206125, 123279 206572, 123074 207108, 122934 207613, 122665 208247, 121917 209475, 121274 210028, 121223 210105, 120846 209777, 120079 208616, 118901 206609, 118809 206430, 118204 205352, 118070 205028, 117815 204525, 117698 204323, 117480 203862, 117466 203794, 117071 202977, 116878 202671, 116502 201794, 116152 200903, 115903 200343, 115643 199822, 115369 199163, 114920 198194, 114683 197157, 114174 196119, 113383 193711, 112775 191570, 112209 189276, 112126 188848, 111835 187520, 111604 186291, 111314 184522, 111190 183649, 111072 182681, 110874 180860, 110873 180385, 110816 179814, 110770 179175, 110788 178576, 110774 178544, 111283 177894, 111308 177837, 111762 177471, 112932 176618, 113314 176392, 113906 176002, 114589 175663, 115444 175263, 116078 175035, 117360 174494, 118247 174181, 119050 173922, 119599 173697, 119438 173592, 118603 173659, 118554 173937, 117922 173840, 117376 173876, 116596 174079, 116183 174137, 115653 174288, 114881 174488, 114225 174675, 112516 175217, 112067 175443, 111702 175484, 110907 175384, 111034 175697, 110689 175700, 110784 175360, 110622 175020, 110657 174311, 110647 173304, 110677 172740, 111127 172695, 111709 172398, 111545 172023, 111126 171675, 110808 171627, 110774 171487, 110799 171197, 110758 170878, 110846 169659, 110859 169298, 111056 167418, 111336 165341, 111463 164544, 111827 162519, 112020 161576, 112141 161047, 112277 160696, 112369 160142, 112569 159616, 112575 159270, 112682 158873, 112868 158601, 113183 158757, 113447 158745, 113697 158943, 114309 159326, 114517 159381, 115165 159770, 115636 160112, 116003 160216, 116550 160454, 116899 160678, 118687 161278, 120154 161681, 120727 161746, 121043 161627, 120526 161444, 120310 161345, 119728 161142, 119420 161048, 119167 160815, 118539 160532, 117951 160251, 117442 159903, 116821 159577, 116282 159167, 115835 158865, 114947 158010, 114141 157060, 113780 156293, 113645 156127, 113711 155872, 113711 155593, 113842 154944, 113999 154495, 114155 153959, 114349 153431, 114677 152459, 115404 150603, 115652 150012, 116006 149232, 116099 148978, 116549 147979, 116920 147191, 117622 145770, 118287 144500, 118905 143376, 119684 142029, 120429 140794, 121895 138580, 122556 137641, 123730 136035, 124856 134599, 125786 133455, 127159 131896, 127874 131116, 128490 130464, 129781 129160, 130681 128278, 132346 126742, 133969 125361, 135117 124431, 136981 123024, 137469 122671, 139101 121531, 139581 121289, 140055 120929, 140319 120776, 140770 120478, 140887 120486, 140961 120440, 141174 120496, 142123 120160, 142174 120048, 143013 120048, 143598 120022, 144057 120212, 144532 120228, 145106 120450, 145757 120793, 146247 121065, 146790 121396, 147673 122162, 148195 122646, 148639 123104, 149369 123914, 150052 124824, 150150 124465, 149471 123283, 148977 122464, 148023 121172, 146888 119920, 146188 119398, 146135 119330, 145166 118500, 144937 118146, 145748 117665, 145912 117552, 146794 117114, 148105 116493, 148896 116137, 150429 115475, 151447 115068, 152577 114633, 154616 113914, 156781 113233, 158916 112638, 160083 112355, 162456 111834, 164783 111411, 167092 111089, 169246 110860, 171322 110705, 172640 110648, 174617 110604) (160937 228872, 161003 229587, 161107 229822, 161203 229764, 161583 229725, 161478 229219, 161303 228933, 161188 228446, 161126 228338) (161978 229488, 162157 229375, 162312 229342, 162857 229428, 163541 229507, 163051 229406, 162885 229284, 161950 229123) (173793 127868, 172229 127929, 170529 128061, 169069 128225, 167819 128406, 166375 128657, 165358 128849, 163800 129199, 162888 129433, 161364 129866, 160391 130178, 158845 130702, 157305 131298, 155437 132097, 153711 132930, 151908 133887, 150312 134831, 148927 135716, 147645 136598, 146362 137545, 145493 138216, 144062 139419, 142670 140692, 141577 141746, 140406 142963, 139994 143416, 138887 144682, 137857 145958, 136869 147271, 135761 148848, 134883 150227, 134087 151570, 133733 152191, 133173 153245, 132389 154838, 131694 156363, 131072 157883, 130435 159610, 130022 160868, 129666 162063, 129414 162971, 129061 164393, 128774 165734, 128587 166727, 128424 167708, 128196 169315, 128074 170570, 128020 171030, 127922 172499, 127854 174330, 127875 176407, 127950 177915, 127997 178672, 128157 180264, 128274 181278, 128516 182851, 128783 184302, 129080 185661, 129451 187148, 130005 189072, 130667 191055, 131280 192629, 131827 193937, 132405 195185, 132888 196186, 133526 197427, 133880 198058, 134821 199664, 135342 200485, 135796 201159, 136172 201741, 137365 203394, 138309 204599, 138840 205238, 139933 206508, 140990 207644, 141699 208376, 142654 209293, 143867 210403, 144919 211282, 145243 211563, 146547 212585, 148388 213913, 149787 214829, 150794 215449, 151853 216063, 153317 216859, 154777 217582, 156196 218223, 157941 218946, 159647 219571, 161241 220085, 163086 220612, 164414 220932, 165510 221164, 165775 221228, 168011 221623, 169712 221841, 170929 221960, 172459 222072, 174485 222137, 176147 222123, 177489 222075, 179008 221967, 180179 221849, 181732 221659, 183641 221340, 185401 220979, 186888 220615, 188388 220195, 189323 219908, 190949 219360, 192613 218727, 193725 218259, 195543 217433, 197389 216481, 198783 215698, 200168 214863, 201579 213921, 202394 213365, 203649 212431, 204616 211663, 205607 210849, 206646 209928, 208389 208274, 209324 207297, 210193 206365, 211463 204867, 212420 203669, 213356 202404, 214251 201111, 215054 199857, 215781 198616, 216042 198189, 216964 196459, 217743 194887, 218498 193172, 219104 191640, 219560 190386, 220150 188563, 220557 187120, 220866 185883, 221185 184446, 221407 183270, 221601 182107, 221866 180127, 222013 178474, 222066 177489, 222096 177121, 222136 175821, 222140 174522, 222121 173554, 222099 173007, 222016 171508, 221860 169820, 221604 167879, 221448 166948, 221102 165144, 220785 163773, 220394 162276, 219889 160591, 219378 159113, 218797 157562, 218056 155789, 217357 154299, 216756 153118, 216132 151955, 215452 150810, 215282 150507, 214473 149218, 213711 148092, 213192 147361, 212426 146331, 211238 144840, 210013 143427, 209141 142496, 208180 141521, 207176 140539, 205814 139316, 204438 138172, 203677 137575, 202668 136834, 201484 135995, 200650 135437, 199525 134735, 198146 133928, 196510 133045, 195309 132451, 193989 131845, 192301 131136, 190438 130452, 189168 130037, 187660 129584, 186320 129231, 185288 128988, 184040 128725, 182756 128490, 181376 128285, 180300 128151, 178613 127989, 176932 127890, 175228 127847) (123359 200683, 123667 201269, 123659 201306, 123729 201317, 123422 200631, 123290 200430) (230447 159418, 230653 160069, 230693 160145, 230538 159385, 230547 159320, 230389 159051) (196981 123831, 197179 123983, 198193 124391, 198620 123956, 198546 124329, 198711 124527, 198867 124947, 198971 124938, 198999 124729, 199139 124378, 199189 124109, 199025 123868, 198643 123854, 198154 124197, 198054 124008, 197802 124024, 197309 123862, 197034 123798, 196376 123567) (194344 122776, 194643 122994, 195735 123317, 194938 122907, 194680 122512, 194556 122484))) \ No newline at end of file diff --git a/stress_benchmark/resources/052.settings b/stress_benchmark/resources/052.settings new file mode 100644 index 0000000000..629a0a2715 --- /dev/null +++ b/stress_benchmark/resources/052.settings @@ -0,0 +1,627 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=60 +machine_acceleration=500 +bridge_sparse_infill_max_density=0 +support_line_width=0.48 +bottom_skin_preshrink=1.92 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=1.4000000000000001 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=concentric +material_standby_temperature=175 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=250 +support_interface_material_flow=96 +z_seam_relative=False +top_skin_expand_distance=1.92 +machine_shape=rectangular +speed_travel_layer_0=240 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=200 +raft_jerk=8 +support_xy_distance=0.96 +bridge_skin_speed_2=30.0 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.12 +bottom_skin_expand_distance=1.92 +speed_prime_tower=60 +speed_support=60 +speed_roofing=60 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=lightning +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.48 +raft_surface_jerk=8 +print_bed_temperature=60 +support_bottom_material_flow=96 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +jerk_support_roof=8 +date=04-12-2023 +support_use_towers=True +minimum_support_area=2 +wall_x_material_flow_layer_0=96 +material_adhesion_tendency=0 +material_initial_print_temperature=200 +layer_0_z_overlap=0.15 +support_roof_enable=False +acceleration_wall_x_roofing=500 +raft_margin=5 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.28 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.28 +support_bottom_pattern=grid +bottom_thickness=1.4000000000000001 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=500 +skin_material_flow=96 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.48 +anti_overhang_mesh=False +infill_material_flow=96 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=5 +wall_thickness=1.44 +top_bottom_pattern_0=lines +resolution=0 +support_angle=68 +retraction_min_travel=1.5 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0.09 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=50 +wipe_retraction_amount=0.4 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.6 +machine_feeder_wheel_diameter=10.0 +infill_overlap=30.0 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.048 +sub_div_rad_add=0.48 +roofing_line_width=0.48 +material_flow_layer_0=96 +support_roof_pattern=grid +cool_fan_speed_min=75 +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=75 +raft_base_jerk=8 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.25 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=22.5 +speed_ironing=40.0 +gantry_height=25 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=0 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=8 +support_roof_density=33.333 +support_bottom_line_width=0.48 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.28 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +wipe_move_distance=20 +ironing_enabled=True +infill_support_angle=40 +support_interface_height=1.6800000000000002 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=45 +raft_acceleration=500 +bridge_fan_speed_3=0 +support_tree_angle_slow=45.333333333333336 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=10 +roofing_material_flow=102 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.8800288002880032 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +speed_print_layer_0=45 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=45 +initial_bottom_layers=3 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=1 +minimum_roof_area=10 +bridge_wall_speed=30.0 +support_interface_density=33.333 +line_width=0.48 +acceleration_ironing=500 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=96 +prime_tower_position_x=228.495 +speed_slowdown_layers=2 +bridge_wall_min_length=2.36 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=60 +speed_layer_0=45 +infill=0 +bridge_skin_speed_3=30.0 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=2.5600000000000005 +jerk_layer_0=8 +minimum_interface_area=10 +wall_0_material_flow_layer_0=96 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=2.8800288002880032 +support_enable=True +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.28 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.6 +jerk_print_layer_0=8 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.48 +retraction_retract_speed=45 +brim_line_count=17 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.96 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=8 +support_tree_tip_diameter=0.96 +bridge_skin_speed=30.0 +bridge_fan_speed=100 +support_xy_overrides_z=xy_overrides_z +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.32 +support_tree_max_diameter=13.0 +infill_mesh=False +adhesion_type=none +min_odd_wall_line_width=0.32 +skirt_line_count=3 +support_tree_angle=68 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=500 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=200 +material_print_temp_prepend=False +infill_offset_y=0 +cool_fan_speed_max=75 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.48 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.0 +support_bottom_height=1.6800000000000002 +machine_depth=230 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=60 +z_seam_x=115.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=230 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=230 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=2.5600000000000005 +infill_sparse_thickness=0.24 +prime_tower_brim_enable=False +ironing_monotonic=True +small_skin_width=0.96 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=500 +center_object=False +skirt_height=3 +cool_fan_speed_0=30 +wall_line_count=4 +jerk_wall_0=8 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=1.4000000000000001 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=30 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=500 +machine_max_acceleration_x=500 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=True +raft_base_thickness=0.2 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=8 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=96 +acceleration_wall=500 +draft_shield_dist=10 +raft_surface_acceleration=500 +switch_extruder_retraction_speeds=20 +support_pattern=lines +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=96 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=8 +retraction_hop=0.6 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=96 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=60 +support_material_flow=96 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=True +min_skin_width_for_expansion=5.143516556418884e-17 +experimental=0 +skin_material_flow_layer_0=96 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.04 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.12 +support_bottom_distance=0.12 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=graceful +cool_lift_head=False +raft_interface_line_width=0.96 +support_type=everywhere +support_zag_skip_count=0 +retraction_combing=no_outer_surfaces +raft_interface_line_spacing=1.16 +draft_shield_enabled=False +material_break_preparation_temperature=200 +material_alternate_walls=False +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=60 +raft_surface_thickness=0.28 +machine_center_is_zero=False +roofing_monotonic=False +bottom_layers=3 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=60 +infill_line_width=0.48 +wall_line_width_0=0.48 +support_extruder_nr_layer_0=0 +retraction_count_max=50 +jerk_infill=8 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.48 +material_print_temperature=200 +acceleration_prime_tower=500 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=96 +extruder_prime_pos_y=0 +jerk_print=8 +support_brim_enable=False +support_bottom_density=33.333 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.48 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=500 +wall_line_width_x=0.48 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.8400000000000001 +travel_retract_before_outer_wall=True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=60 +skin_preshrink=1.92 +layer_height_0=0.28 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=10 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=240 +group_outer_walls=True +material_is_support_material=False +material_flow=96 +jerk_roofing=8 +jerk_travel_enabled=True +jerk_wall_x=8 +machine_always_write_active_tool=False +retraction_amount=0.4 +machine_minimum_feedrate=0.0 +acceleration_print=500 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=500 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=back +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=8 +infill_offset_x=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=30.0 +min_bead_width=0.32 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=60 +support_offset=0.88 +wall_overhang_speed_factor=100 +top_layers=3 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=0.8 +machine_max_feedrate_y=500 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=5 +raft_interface_thickness=0.2 +retraction_prime_speed=45 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=10 +raft_surface_line_width=0.48 +jerk_support_interface=8 +support_tree_bp_diameter=7.5 +support_interface_pattern=grid +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=500 +material_no_load_move_factor=0.940860215 +travel_speed=150.0 +z_seam_corner=z_seam_corner_none +machine_max_feedrate_z=10 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.48 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=0 +support_z_distance=0.12 +raft_base_speed=22.5 +jerk_travel_layer_0=8 +speed_support_interface=60 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.07599999999999998 +material_flush_purge_speed=0.5 +acceleration_travel=500 +support_roof_height=1.6800000000000002 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=208.495 +jerk_support=8 +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.92 +acceleration_wall_0_roofing=500 +machine_max_feedrate_x=500 +material_final_print_temperature=200 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=45 +prime_tower_flow=96 +acceleration_wall_x=500 +infill_overlap_mm=0.144 +wall_0_material_flow_roofing=96 +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=60 +support_roof_wall_count=0 +skirt_gap=10.0 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=2 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0.09 +expand_skins_expand_distance=1.92 +support_infill_rate=0 +meshfix_maximum_resolution=0.25 +support_tree_min_height_to_model=3 +min_wall_line_width=0.32 +acceleration_support_infill=500 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=10 +jerk_travel=8 +retract_at_layer_change=False +support_roof_line_width=0.48 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.48 +skirt_brim_material_flow=96 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.04 +acceleration_support_roof=500 +support_brim_line_count=8 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=60 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=500 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=500 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/052.wkt b/stress_benchmark/resources/052.wkt new file mode 100644 index 0000000000..f450090e1b --- /dev/null +++ b/stress_benchmark/resources/052.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((109686 134536, 110121 134814, 110298 135133, 110200 135485, 110046 135493, 109381 134967, 109147 134698, 109303 134480)), ((120122 134632, 120345 134758, 120510 134935, 120548 135030, 120509 135169, 119847 135094, 119796 135068, 119486 135018, 119099 134934, 119177 134715, 119344 134639, 119746 134569)), ((100620 129691, 100943 129932, 101187 130371, 101216 130615, 101170 130827, 100902 130979, 100786 130956, 100302 129995, 100240 129702, 100359 129629)), ((129246 129822, 129409 129941, 129444 130214, 128289 130485, 128125 130464, 128095 130254, 128342 130035, 128585 129866, 128933 129788)), ((95134 121371, 95310 121876, 95325 122158, 95174 122609, 94896 122722, 94706 122567, 94658 122101, 94649 121537, 94706 121335, 94858 121231)), ((134942 121391, 135047 121583, 134511 122036, 134133 122480, 134012 122494, 133981 122130, 134176 121632, 134669 121339)), ((135939 111231, 136020 111393, 136015 111732, 135790 112410, 135661 112592, 135439 112519, 135364 112406, 135292 112050, 135402 111476, 135714 111197)), ((94025 111307, 94132 111642, 93957 112231, 93671 112538, 93573 112583, 93391 112589, 93193 112351, 93223 112052, 93382 111679, 93669 111305, 93920 111234)), ((132189 101709, 132349 101945, 132537 102911, 132475 103105, 132390 103133, 132141 103099, 132018 103012, 131743 102506, 131681 102019, 131986 101678, 132059 101647)), ((97784 101951, 97823 102204, 97533 102675, 97221 102899, 96920 102942, 96780 102887, 96589 102635, 96684 102462, 96895 102195, 97331 101927, 97653 101854)), ((124763 95326, 125080 95729, 125243 95968, 125187 96177, 124878 96244, 124543 96174, 124273 95957, 124021 95528, 124016 95219, 124128 95099, 124409 95051)), ((105426 95274, 105542 95448, 105508 95702, 105341 95875, 105153 95990, 104872 96059, 104486 96084, 104239 95944, 104087 95679, 104183 95492, 104464 95310, 104881 95222, 105322 95222)), ((114616 92779, 114903 92893, 115025 92959, 115297 93068, 115410 93207, 115430 93451, 115302 93573, 114903 93688, 114352 93557, 114071 93247, 114038 92946, 114340 92758))) \ No newline at end of file diff --git a/stress_benchmark/resources/053.settings b/stress_benchmark/resources/053.settings new file mode 100644 index 0000000000..5f59343201 --- /dev/null +++ b/stress_benchmark/resources/053.settings @@ -0,0 +1,631 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +machine_acceleration=3000 +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +bottom_skin_preshrink=0.8 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=95.0 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.8 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=100 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=205 +support_interface_material_flow=95.0 +z_seam_relative=False +top_skin_expand_distance=0.8 +machine_shape=rectangular +speed_travel_layer_0=120 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=200 +raft_jerk=20 +support_xy_distance=0.7 +bridge_skin_speed_2=20 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.1 +bottom_skin_expand_distance=0.8 +speed_prime_tower=50 +speed_support=30.0 +speed_roofing=20 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=grid +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +raft_surface_jerk=20 +print_bed_temperature=60 +support_bottom_material_flow=95.0 +bridge_skin_material_flow_3=95.0 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +jerk_support_roof=20 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=95.0 +material_adhesion_tendency=0 +material_initial_print_temperature=190 +layer_0_z_overlap=0.15 +support_roof_enable=False +acceleration_wall_x_roofing=3000 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +machine_nozzle_head_distance=5 +support_interface_skip_height=0.1 +support_bottom_pattern=zigzag +bottom_thickness=0.8 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=3000 +skin_material_flow=95.0 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=0.8 +top_bottom_pattern_0=lines +resolution=0 +support_angle=50 +retraction_min_travel=0.8 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=20 +machine_max_feedrate_e=45 +wipe_retraction_amount=6.5 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=False +retraction_hop_after_extruder_switch_height=1 +machine_feeder_wheel_diameter=10.0 +infill_overlap=10 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.08 +sub_div_rad_add=0.4 +roofing_line_width=0.4 +material_flow_layer_0=100 +support_roof_pattern=zigzag +cool_fan_speed_min=100 +retraction_combing_max_distance=15 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=20 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.8 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=17.5 +speed_ironing=13.333333333333334 +gantry_height=52 +material_break_temperature=60 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=2.6666666666666665 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=False +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=20 +support_roof_density=100 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=10.0 +support_infill_sparse_thickness=0.1 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=0.2 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=30 +raft_acceleration=3000 +bridge_fan_speed_3=100 +support_tree_angle_slow=33.333333333333336 +raft_speed=15 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=20.0 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=True +roofing_angles=[] +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +speed_print_layer_0=30 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=25 +initial_bottom_layers=8 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=1 +minimum_roof_area=1.0 +bridge_wall_speed=20 +support_interface_density=100 +line_width=0.4 +acceleration_ironing=3000 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=213.54375 +speed_slowdown_layers=2 +bridge_wall_min_length=2.1 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=-0.09 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=40.0 +speed_layer_0=30 +infill=0 +bridge_skin_speed_3=20 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=0 +jerk_layer_0=20 +minimum_interface_area=1.0 +wall_0_material_flow_layer_0=110.00000000000001 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=True +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.4 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=25 +material_anti_ooze_retracted_position=-4 +layer_height=0.1 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=1 +jerk_print_layer_0=20 +lightning_infill_prune_angle=40 +material_diameter=2.85 +bridge_enable_more_layers=False +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +brim_line_count=20 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=20 +support_tree_tip_diameter=0.8 +bridge_skin_speed=20 +bridge_fan_speed=100 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=True +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=brim +min_odd_wall_line_width=0.34 +skirt_line_count=1 +support_tree_angle=50 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=3000 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=190 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.4 +bridge_wall_coast=0 +slicing_tolerance=middle +infill_wipe_dist=0.1 +support_bottom_height=0.2 +machine_depth=223 +acceleration_skirt_brim=3000 +skin_overlap=20 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +quality_changes_name=empty +support_bottom_wall_count=1 +speed_support_roof=20.0 +z_seam_x=111.5 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=50.0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=223 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=223 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=0.4 +cross_infill_pocket_size=0 +infill_sparse_thickness=0.1 +prime_tower_brim_enable=True +ironing_monotonic=False +small_skin_width=0.8 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=3000 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_wall_0=20 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.8 +material_guid=506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 +platform_adhesion=0 +bridge_skin_density=80 +infill_sparse_density=0 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=5000.0 +machine_max_acceleration_x=9000 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.3 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=20 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=3000 +draft_shield_dist=10 +raft_surface_acceleration=3000 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=True +inset_direction=outside_in +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=110.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=20 +retraction_hop=1 +support_meshes_present=False +material_anti_ooze_retraction_speed=50 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=95.0 +infill_mesh_order=0 +raft_surface_fan_speed=100 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=20.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=4.898587196589413e-17 +experimental=0 +skin_material_flow_layer_0=95 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=100 +support_connect_zigzags=True +support_top_distance=0.1 +support_bottom_distance=0.1 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=graceful +cool_lift_head=False +raft_interface_line_width=0.6000000000000001 +support_type=everywhere +support_zag_skip_count=8 +retraction_combing=no_outer_surfaces +raft_interface_line_spacing=0.8 +draft_shield_enabled=False +material_break_preparation_temperature=210 +material_alternate_walls=False +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=50 +raft_surface_thickness=0.1 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=8 +alternate_extra_perimeter=False +support_bottom_offset=0.8 +speed_wall_x=40.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +support_extruder_nr_layer_0=0 +retraction_count_max=25 +jerk_infill=20 +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.4 +material_print_temperature=200 +acceleration_prime_tower=3000 +travel_avoid_distance=0.65625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=20 +support_brim_enable=True +support_bottom_density=100 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=95.0 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1.05 +raft_base_acceleration=3000 +wall_line_width_x=0.4 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.27 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=True +jerk_enabled=False +speed_wall_0_roofing=30.0 +skin_preshrink=0.8 +layer_height_0=0.27 +z_seam_position=back +support_interface_offset=0.8 +cool_min_layer_time=5 +bridge_wall_material_flow=100 +lightning_infill_straightening_angle=40 +speed_travel=120 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=20 +jerk_travel_enabled=False +jerk_wall_x=20 +machine_always_write_active_tool=False +retraction_amount=6.5 +machine_minimum_feedrate=0.0 +acceleration_print=3000 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=20 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=25 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=3000 +material_maximum_park_duration=7200 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=20 +infill_offset_x=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=20 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=40.0 +quality_name=Fine +support_offset=0.8 +machine_gcode_flavor=UltiGCode +wall_overhang_speed_factor=100 +top_layers=8 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5.0 +raft_base_line_width=0.8 +machine_max_feedrate_y=300 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.2 +retraction_prime_speed=25 +acceleration_travel_enabled=False +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=1.0 +raft_surface_line_width=0.4 +jerk_support_interface=20 +skin_angles=[] +support_tree_bp_diameter=7.5 +support_interface_pattern=zigzag +xy_offset=-0.010000000000000002 +support_roof_offset=0.8 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=3000 +material_no_load_move_factor=0.91 +travel_speed=120 +z_seam_corner=z_seam_corner_none +machine_max_feedrate_z=40 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=50 +skin_line_width=0.4 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.6666666666666665 +support_z_distance=0.1 +raft_base_speed=15 +jerk_travel_layer_0=20.0 +speed_support_interface=20.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.38 +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=0.2 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=193.54375 +jerk_support=20 +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +acceleration_wall_0_roofing=3000 +machine_max_feedrate_x=300 +material_final_print_temperature=185 +acceleration_roofing=3000 +raft_interface_jerk=20 +retraction_speed=25 +prime_tower_flow=100 +acceleration_wall_x=3000 +infill_overlap_mm=0.04 +wall_0_material_flow_roofing=100 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=20 +support_roof_wall_count=1 +skirt_gap=3 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=100 +retraction_extrusion_window=1 +skin_edge_support_thickness=0.4 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=0.8 +support_infill_rate=15 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=3000 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=1 +support_tree_top_rate=10 +jerk_travel=20 +retract_at_layer_change=False +support_roof_line_width=0.4 +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=3000 +support_brim_line_count=3 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=30.0 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=3000 +bridge_skin_density_2=100 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=3000 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/053.wkt b/stress_benchmark/resources/053.wkt new file mode 100644 index 0000000000..011e7091b9 --- /dev/null +++ b/stress_benchmark/resources/053.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((112612 86866, 113832 86959, 113832 86958, 114807 87070, 115782 87222, 116744 87411, 116744 87412, 117704 87641, 118647 87906, 119586 88211, 119586 88210, 120505 88550, 121413 88928, 122309 89343, 123184 89791, 124248 90392, 124248 90393, 125506 91206, 126484 91925, 127251 92534, 127994 93178, 128714 93853, 129584 94737, 130386 95654, 131001 96418, 131587 97208, 132141 98020, 132662 98854, 133149 99708, 133604 100584, 134020 101471, 134499 102605, 134907 103764, 135197 104703, 135516 105903, 135756 107095, 135913 108067, 136031 109043, 136030 109043, 136107 110025, 136147 111006, 136147 112231, 136057 113735, 135913 114930, 135757 115901, 135516 117096, 135198 118294, 134908 119233, 134498 120396, 134020 121530, 133604 122417, 133151 123289, 132664 124143, 132143 124977, 131589 125789, 131001 126582, 130386 127346, 129739 128086, 129063 128800, 128152 129686, 127251 130466, 126484 131076, 125491 131805, 124246 132609, 124246 132610, 123184 133209, 122309 133657, 121413 134072, 120505 134450, 119586 134790, 119586 134789, 118647 135094, 117704 135359, 116744 135588, 116744 135589, 115782 135778, 114554 135969, 113340 136083, 112358 136138, 111377 136153, 110395 136128, 109413 136064, 108431 135961, 107214 135784, 105753 135480, 104585 135163, 103646 134869, 102720 134537, 101812 134169, 100912 133764, 100035 133325, 99175 132851, 98330 132341, 97509 131799, 96511 131081, 95557 130305, 94630 129487, 93763 128624, 93095 127903, 92301 126976, 91553 125990, 90995 125184, 90462 124353, 89837 123282, 89183 121991, 88688 120848, 88332 119930, 88014 119000, 87734 118057, 87491 117104, 87287 116142, 87122 115173, 86995 114201, 86907 113218, 86858 112237, 86846 111014, 86907 109781, 86995 108798, 87122 107827, 87287 106858, 87491 105896, 87734 104943, 88014 104000, 88333 103069, 88688 102152, 89183 101009, 89837 99718, 90579 98445, 91420 97186, 92298 96027, 93095 95096, 93765 94376, 94645 93499, 95558 92695, 96509 91920, 97509 91201, 98330 90659, 99175 90148, 100035 89674, 100912 89235, 101812 88830, 102720 88463, 103646 88131, 104585 87837, 105533 87580, 106496 87361, 106496 87360, 107459 87180, 108431 87039, 109413 86936, 110395 86872, 111377 86847))) \ No newline at end of file diff --git a/stress_benchmark/resources/054.settings b/stress_benchmark/resources/054.settings new file mode 100644 index 0000000000..41766d28d4 --- /dev/null +++ b/stress_benchmark/resources/054.settings @@ -0,0 +1,629 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +machine_acceleration=4000 +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +bottom_skin_preshrink=1.2000000000000002 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=1.2 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=120 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=240.0 +support_interface_material_flow=98 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +machine_shape=rectangular +speed_travel_layer_0=75.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=235.0 +raft_jerk=8 +support_xy_distance=0.5 +bridge_skin_speed_2=10 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.1 +bottom_skin_expand_distance=1.2000000000000002 +speed_prime_tower=35.0 +speed_support=30 +speed_roofing=14 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=zigzag +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +raft_surface_jerk=8 +print_bed_temperature=70 +support_bottom_material_flow=98 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=4.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +jerk_support_roof=8 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=10 +material_initial_print_temperature=225.0 +layer_0_z_overlap=0.15 +support_roof_enable=False +acceleration_wall_x_roofing=1800 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.2 +support_bottom_pattern=concentric +bottom_thickness=1.2 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=1800 +skin_material_flow=98 +default_material_bed_temperature=70 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=98 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=1.2 +top_bottom_pattern_0=lines +resolution=0 +support_angle=60 +retraction_min_travel=1.5 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=6 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.075 +machine_feeder_wheel_diameter=10.0 +infill_overlap=15 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.02 +sub_div_rad_add=0.4 +roofing_line_width=0.4 +material_flow_layer_0=100 +support_roof_pattern=concentric +cool_fan_speed_min=40.0 +retraction_combing_max_distance=0 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=40.0 +raft_base_jerk=8 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.8 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=13.125 +speed_ironing=9.333333333333334 +gantry_height=0 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=0 +infill_enable_travel_optimization=True +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=8 +support_roof_density=100 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=140 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.2 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=1800 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=1 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=40 +raft_acceleration=1800 +bridge_fan_speed_3=0 +support_tree_angle_slow=40.0 +raft_speed=17.5 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_max_jerk_xy=20.0 +roofing_material_flow=98 +acceleration_infill=1800 +machine_extruder_count=1 +support_roof_line_distance=0.4 +zig_zaggify_support=True +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=3 +speed_print_layer_0=17.5 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=25 +initial_bottom_layers=6 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=215 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=1.0 +bridge_wall_speed=12.5 +support_interface_density=100 +line_width=0.4 +acceleration_ironing=1800 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=98 +prime_tower_position_x=215.0 +speed_slowdown_layers=2 +bridge_wall_min_length=1.9 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=True +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=True +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=35.0 +speed_layer_0=17.5 +infill=0 +bridge_skin_speed_3=10 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=1.6 +jerk_layer_0=8 +minimum_interface_area=1.0 +wall_0_material_flow_layer_0=100 +support_wall_count=1 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.4 +support_enable=True +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=25 +material_anti_ooze_retracted_position=-4 +layer_height=0.2 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.075 +jerk_print_layer_0=8 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.4 +retraction_retract_speed=25 +brim_line_count=9 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=8 +support_tree_tip_diameter=0.8 +bridge_skin_speed=10 +bridge_fan_speed=100 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=brim +min_odd_wall_line_width=0.34 +skirt_line_count=3 +support_tree_angle=60 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=1800 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=True +cool_min_temperature=235.0 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.4 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.1 +support_bottom_height=1 +machine_depth=220.0 +acceleration_skirt_brim=1800 +skin_overlap=5 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +quality_changes_name=empty +support_bottom_wall_count=0 +speed_support_roof=20.0 +z_seam_x=110.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=70 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=220.0 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=220.0 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=1.6 +infill_sparse_thickness=0.2 +prime_tower_brim_enable=True +ironing_monotonic=False +small_skin_width=0.8 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=1800 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_wall_0=8 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=1.2 +material_guid=69386c85-5b6c-421a-bec5-aeb1fb33f060 +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=25 +support_bottom_stair_step_height=0 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=3000.0 +machine_max_acceleration_x=9000 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=8 +brim_gap=0 +acceleration_enabled=True +wall_material_flow=98 +acceleration_wall=1800 +draft_shield_dist=10 +raft_surface_acceleration=1800 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=98 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=8 +retraction_hop=0.075 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=98 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=20.0 +support_material_flow=98 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=7.34788079488412e-17 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=70 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.3 +support_bottom_distance=0 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=buildplate +cool_lift_head=False +raft_interface_line_width=0.8 +support_type=buildplate +support_zag_skip_count=0 +retraction_combing=noskin +raft_interface_line_spacing=1.0 +draft_shield_enabled=False +material_break_preparation_temperature=235.0 +material_alternate_walls=False +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=35.0 +raft_surface_thickness=0.2 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=6 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=35.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +support_extruder_nr_layer_0=0 +retraction_count_max=90 +jerk_infill=8 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.4 +material_print_temperature=235.0 +acceleration_prime_tower=1800 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=98 +extruder_prime_pos_y=0 +jerk_print=8 +support_brim_enable=True +support_bottom_density=100 +brim_width=5 +ironing_only_highest_layer=False +wall_transition_length=0.4 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=1800 +wall_line_width_x=0.4 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.5 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=True +speed_wall_0_roofing=25.0 +skin_preshrink=1.2000000000000002 +layer_height_0=0.2 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=5 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=150.0 +group_outer_walls=True +material_is_support_material=False +material_flow=98 +jerk_roofing=8 +jerk_travel_enabled=True +jerk_wall_x=8 +machine_always_write_active_tool=False +retraction_amount=6 +machine_minimum_feedrate=0.0 +acceleration_print=1800 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=25 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=1800 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=8 +infill_offset_x=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=17.5 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=35.0 +quality_name=Normal +support_offset=0.0 +wall_overhang_speed_factor=100 +top_layers=6 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5.0 +raft_base_line_width=0.8 +machine_max_feedrate_y=299792458000 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=35.0 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.30000000000000004 +retraction_prime_speed=25 +acceleration_travel_enabled=True +brim_outside_only=False +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=1.0 +raft_surface_line_width=0.4 +jerk_support_interface=8 +support_tree_bp_diameter=7.5 +support_interface_pattern=concentric +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=1800 +material_no_load_move_factor=0.940860215 +travel_speed=100 +z_seam_corner=z_seam_corner_inner +machine_max_feedrate_z=299792458000 +speed=0 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=8 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.4 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=1.6800000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=0 +support_z_distance=0.15 +raft_base_speed=13.125 +jerk_travel_layer_0=10.0 +speed_support_interface=20.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.38 +material_flush_purge_speed=0.5 +acceleration_travel=3000 +support_roof_height=1 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=195.0 +jerk_support=8 +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.2000000000000002 +acceleration_wall_0_roofing=1800 +machine_max_feedrate_x=299792458000 +material_final_print_temperature=220.0 +acceleration_roofing=1800 +raft_interface_jerk=8 +retraction_speed=25 +prime_tower_flow=98 +acceleration_wall_x=1800 +infill_overlap_mm=0.06 +wall_0_material_flow_roofing=98 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=14 +support_roof_wall_count=0 +skirt_gap=5 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=6 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=1.2000000000000002 +support_infill_rate=0 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=1800 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=10 +jerk_travel=10 +retract_at_layer_change=False +support_roof_line_width=0.4 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.4 +skirt_brim_material_flow=98 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=1800 +support_brim_line_count=3 +build_volume_temperature=0 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=30 +wall_0_extruder_nr=-1 +retraction_hop_enabled=True +prime_tower_wipe_enabled=True +acceleration_support_bottom=1800 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=1800 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/054.wkt b/stress_benchmark/resources/054.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/054.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/resources/055.settings b/stress_benchmark/resources/055.settings new file mode 100644 index 0000000000..d4d7856ea3 --- /dev/null +++ b/stress_benchmark/resources/055.settings @@ -0,0 +1,630 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +machine_acceleration=3000 +bridge_sparse_infill_max_density=0 +support_line_width=0.35 +bottom_skin_preshrink=1.0499999999999998 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.8 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=175 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=455 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=1.0499999999999998 +machine_shape=elliptic +speed_travel_layer_0=60.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=205 +raft_jerk=20 +support_xy_distance=0.7 +bridge_skin_speed_2=15.0 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.0875 +bottom_skin_expand_distance=1.0499999999999998 +speed_prime_tower=60 +speed_support=60 +speed_roofing=30.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=grid +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.35 +raft_surface_jerk=20 +print_bed_temperature=60 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +jerk_support_roof=20 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=190 +layer_0_z_overlap=0.15 +support_roof_enable=False +acceleration_wall_x_roofing=3000 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.2 +support_bottom_pattern=concentric +bottom_thickness=0.8 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=3000 +skin_material_flow=100 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=100 +machine_name=Unknown +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=0.8 +top_bottom_pattern_0=lines +resolution=0 +support_angle=50 +retraction_min_travel=0.7 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=50 +wipe_retraction_amount=4 +machine_max_acceleration_y=800 +optimize_wall_printing_order=False +retraction_hop_after_extruder_switch_height=1 +machine_feeder_wheel_diameter=10.0 +infill_overlap=10 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.0175 +sub_div_rad_add=0.35 +roofing_line_width=0.35 +material_flow_layer_0=100 +support_roof_pattern=concentric +cool_fan_speed_min=100 +retraction_combing_max_distance=0 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=20 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.7 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=20 +raft_interface_speed=22.5 +speed_ironing=20.0 +gantry_height=455 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=2.3333333333333335 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=20 +support_roof_density=100 +support_bottom_line_width=0.35 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.2 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=1 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=30.0 +raft_acceleration=3000 +bridge_fan_speed_3=0 +support_tree_angle_slow=33.333333333333336 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=20 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.35 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +speed_print_layer_0=30.0 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=50 +initial_bottom_layers=4 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=1.0 +bridge_wall_speed=15.0 +support_interface_density=100 +line_width=0.35 +acceleration_ironing=3000 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=195.0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.05 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=800 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=60.0 +speed_layer_0=30.0 +infill=0 +bridge_skin_speed_3=15.0 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=7.0 +jerk_layer_0=20 +minimum_interface_area=1.0 +wall_0_material_flow_layer_0=100 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.35 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=50 +material_anti_ooze_retracted_position=-4 +layer_height=0.2 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=1 +jerk_print_layer_0=20 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.35 +retraction_retract_speed=50 +brim_line_count=23 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.7 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=20 +support_tree_tip_diameter=0.7 +bridge_skin_speed=15.0 +bridge_fan_speed=100 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=brim +min_odd_wall_line_width=0.34 +skirt_line_count=1 +support_tree_angle=50 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=3000 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=200 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.35 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.0875 +support_bottom_height=1 +machine_depth=370 +acceleration_skirt_brim=3000 +skin_overlap=5 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +quality_changes_name=empty +support_bottom_wall_count=0 +speed_support_roof=40.0 +z_seam_x=0.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=370 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=185.0 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=7.0 +infill_sparse_thickness=0.2 +prime_tower_brim_enable=True +ironing_monotonic=False +small_skin_width=0.7 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=3000 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_wall_0=20 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=10 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=5000.0 +machine_max_acceleration_x=800 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.3 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=20 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=3000 +draft_shield_dist=10 +raft_surface_acceleration=3000 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=20 +retraction_hop=1 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=40.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=4.898587196589413e-17 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=65 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.1 +support_bottom_distance=0.1 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=graceful +cool_lift_head=False +raft_interface_line_width=0.7 +support_type=everywhere +support_zag_skip_count=9 +retraction_combing=all +raft_interface_line_spacing=0.8999999999999999 +draft_shield_enabled=False +material_break_preparation_temperature=200 +material_alternate_walls=False +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=60 +raft_surface_thickness=0.2 +machine_center_is_zero=True +roofing_monotonic=True +bottom_layers=4 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=60.0 +infill_line_width=0.35 +wall_line_width_0=0.35 +support_extruder_nr_layer_0=0 +retraction_count_max=90 +jerk_infill=20 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.35 +material_print_temperature=200 +acceleration_prime_tower=3000 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=20 +support_brim_enable=True +support_bottom_density=100 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.35 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=3000 +wall_line_width_x=0.35 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.25 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=30.0 +skin_preshrink=1.0499999999999998 +layer_height_0=0.25 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=5 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=120 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=20 +jerk_travel_enabled=True +jerk_wall_x=20 +machine_always_write_active_tool=False +retraction_amount=4 +machine_minimum_feedrate=0.0 +acceleration_print=3000 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=50 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=3000 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=20 +infill_offset_x=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=30.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=30.0 +quality_name=Normal +support_offset=0.75 +wall_overhang_speed_factor=100 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=0.8 +machine_max_feedrate_y=150 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.30000000000000004 +retraction_prime_speed=50 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=1.0 +raft_surface_line_width=0.35 +jerk_support_interface=20 +support_tree_bp_diameter=7.5 +support_interface_pattern=concentric +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=3000 +material_no_load_move_factor=0.940860215 +travel_speed=120 +z_seam_corner=z_seam_corner_inner +machine_max_feedrate_z=150 +speed=0 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=20 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.35 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=1.0499999999999998 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.3333333333333335 +support_z_distance=0.1 +raft_base_speed=22.5 +jerk_travel_layer_0=30.0 +speed_support_interface=40.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.3325 +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=1 +wall_0_inset=0.025000000000000022 +interlocking_depth=2 +prime_tower_position_y=155.625 +jerk_support=20 +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=1.0499999999999998 +acceleration_wall_0_roofing=3000 +machine_max_feedrate_x=150 +material_final_print_temperature=185 +acceleration_roofing=3000 +raft_interface_jerk=20 +retraction_speed=50 +prime_tower_flow=100 +acceleration_wall_x=3000 +infill_overlap_mm=0.035 +wall_0_material_flow_roofing=100 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=30.0 +support_roof_wall_count=0 +skirt_gap=3 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=4 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=1.0499999999999998 +support_infill_rate=15 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=3000 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=10 +jerk_travel=30 +retract_at_layer_change=True +support_roof_line_width=0.35 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.35 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=3000 +support_brim_line_count=3 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=60 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=3000 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=3000 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/055.wkt b/stress_benchmark/resources/055.wkt new file mode 100644 index 0000000000..521eb670b4 --- /dev/null +++ b/stress_benchmark/resources/055.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((1536 -3019, 1607 -2843, 1801 -2796, 2138 -2394, 2179 -2003, 2330 -1927, 2384 -1793, 2151 -1361, 1550 -1273, 1528 -1498, 1222 -1686, 1202 -1789, 1065 -1927, 1240 -2309, 1383 -2780, 1248 -3220, 1506 -3507)), ((-161 -2857, -136 -2927, -2 -2639, 123 -2650, 244 -2812, 365 -2732, 554 -2793, 686 -2662, 777 -2898, 612 -1891, 459 -1852, 355 -1932, 333 -2108, 270 -2093, 136 -2160, 113 -2072, -10 -2292, -74 -2211, -182 -2318, -293 -2784, -283 -2953)), ((851 -2133, 762 -2062, 1018 -2719)), ((1156 -4291, 1222 -4049, 1158 -3801, 1119 -3279, 967 -3206, 963 -3493, 719 -3539, 521 -3831, 271 -3964, 165 -4229, 332 -4224, 924 -4613, 1002 -4616))) \ No newline at end of file diff --git a/stress_benchmark/resources/056.settings b/stress_benchmark/resources/056.settings new file mode 100644 index 0000000000..ae77715c21 --- /dev/null +++ b/stress_benchmark/resources/056.settings @@ -0,0 +1,628 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +machine_acceleration=4000 +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +bottom_skin_preshrink=0.8 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.8 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=175 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=265 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=0.8 +machine_shape=rectangular +speed_travel_layer_0=75.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=190 +raft_jerk=20 +support_xy_distance=0.8 +bridge_skin_speed_2=15.0 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.1 +bottom_skin_expand_distance=0.8 +speed_prime_tower=60 +speed_support=60 +speed_roofing=30.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=grid +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +raft_surface_jerk=20 +print_bed_temperature=60 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=15 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +jerk_support_roof=20 +date=04-12-2023 +support_use_towers=True +minimum_support_area=0.0 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=180 +layer_0_z_overlap=0.15 +support_roof_enable=True +acceleration_wall_x_roofing=3000 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.1 +support_bottom_pattern=concentric +bottom_thickness=0.8 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=3000 +skin_material_flow=100 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.2 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=10 +wall_thickness=0.8 +top_bottom_pattern_0=lines +resolution=0 +support_angle=45 +retraction_min_travel=0.8 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=5.5 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.075 +machine_feeder_wheel_diameter=10.0 +infill_overlap=10 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.02 +sub_div_rad_add=0.4 +roofing_line_width=0.4 +material_flow_layer_0=100 +support_roof_pattern=concentric +cool_fan_speed_min=100 +retraction_combing_max_distance=0 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=20 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.8 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=22.5 +speed_ironing=20.0 +gantry_height=0 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=4.0 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=20 +support_roof_density=80 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.1 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=1 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=30.0 +raft_acceleration=3000 +bridge_fan_speed_3=0 +support_tree_angle_slow=30.0 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_max_jerk_xy=20.0 +roofing_material_flow=100 +acceleration_infill=3000 +machine_extruder_count=1 +support_roof_line_distance=0.5 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=1 +speed_print_layer_0=30.0 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=60 +initial_bottom_layers=8 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=1.0 +bridge_wall_speed=15.0 +support_interface_density=100 +line_width=0.4 +acceleration_ironing=3000 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=234 +speed_slowdown_layers=2 +bridge_wall_min_length=2.2 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=False +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=60.0 +speed_layer_0=30.0 +infill=0 +bridge_skin_speed_3=15.0 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=5.333333333333333 +jerk_layer_0=20 +minimum_interface_area=1.0 +wall_0_material_flow_layer_0=100 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=0.4 +support_enable=False +adhesion_extruder_nr=0 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=60 +material_anti_ooze_retracted_position=-4 +layer_height=0.1 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.075 +jerk_print_layer_0=20 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.4 +retraction_retract_speed=60 +brim_line_count=20 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=20 +support_tree_tip_diameter=0.8 +bridge_skin_speed=15.0 +bridge_fan_speed=100 +support_xy_overrides_z=z_overrides_xy +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=raft +min_odd_wall_line_width=0.34 +skirt_line_count=10 +support_tree_angle=45 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=True +acceleration_wall_0=3000 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=190 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.4 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.1 +support_bottom_height=1 +machine_depth=255 +acceleration_skirt_brim=3000 +skin_overlap=5 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=40.0 +z_seam_x=125.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=250 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=255 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=5.333333333333333 +infill_sparse_thickness=0.1 +prime_tower_brim_enable=True +ironing_monotonic=False +small_skin_width=0.8 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=3000 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_wall_0=20 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=15 +support_bottom_stair_step_height=0.3 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=5000.0 +machine_max_acceleration_x=9000 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.36 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=20 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=3000 +draft_shield_dist=10 +raft_surface_acceleration=3000 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=20 +retraction_hop=0.075 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=40.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=20 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=False +min_skin_width_for_expansion=4.898587196589413e-17 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.1 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.2 +support_bottom_distance=0 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=buildplate +cool_lift_head=False +raft_interface_line_width=0.8 +support_type=buildplate +support_zag_skip_count=5 +retraction_combing=no_outer_surfaces +raft_interface_line_spacing=1.0 +draft_shield_enabled=False +material_break_preparation_temperature=190 +material_alternate_walls=False +wall_0_wipe_dist=0.3 +switch_extruder_prime_speed=20 +speed_infill=60 +raft_surface_thickness=0.1 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=8 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=60.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +support_extruder_nr_layer_0=0 +retraction_count_max=90 +jerk_infill=20 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.4 +material_print_temperature=190 +acceleration_prime_tower=3000 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=20 +support_brim_enable=True +support_bottom_density=100 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=3000 +wall_line_width_x=0.4 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=30.0 +skin_preshrink=0.8 +layer_height_0=0.3 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=5 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=150 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=20 +jerk_travel_enabled=True +jerk_wall_x=20 +machine_always_write_active_tool=False +retraction_amount=5.5 +machine_minimum_feedrate=0.0 +acceleration_print=3000 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=60 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=3000 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=20 +infill_offset_x=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=30.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=30.0 +quality_name=Fine +support_offset=0.0 +wall_overhang_speed_factor=100 +top_layers=8 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5.0 +raft_base_line_width=0.8 +machine_max_feedrate_y=299792458000 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=60 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=10 +raft_interface_thickness=0.15000000000000002 +retraction_prime_speed=60 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=1.0 +raft_surface_line_width=0.4 +jerk_support_interface=20 +support_tree_bp_diameter=7.5 +support_interface_pattern=concentric +xy_offset=0 +support_roof_offset=0.0 +print_sequence=one_at_a_time +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=3000 +material_no_load_move_factor=0.940860215 +travel_speed=120 +z_seam_corner=z_seam_corner_inner +machine_max_feedrate_z=299792458000 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=20 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.4 +skirt_brim_extruder_nr=0 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=1.2000000000000002 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=4.0 +support_z_distance=0.2 +raft_base_speed=22.5 +jerk_travel_layer_0=30.0 +speed_support_interface=40.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.38 +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=1 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=219 +jerk_support=20 +roofing_pattern=lines +jerk_wall_x_roofing=20 +top_skin_preshrink=0.8 +acceleration_wall_0_roofing=3000 +machine_max_feedrate_x=299792458000 +material_final_print_temperature=180 +acceleration_roofing=3000 +raft_interface_jerk=20 +retraction_speed=60 +prime_tower_flow=100 +acceleration_wall_x=3000 +infill_overlap_mm=0.04 +wall_0_material_flow_roofing=100 +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=30.0 +support_roof_wall_count=0 +skirt_gap=3 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=5.5 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=0.8 +support_infill_rate=10 +meshfix_maximum_resolution=0.5 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=3000 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=30 +jerk_travel=30 +retract_at_layer_change=True +support_roof_line_width=0.4 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=False +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.01 +acceleration_support_roof=3000 +support_brim_line_count=3 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=60 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=3000 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=3000 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/056.wkt b/stress_benchmark/resources/056.wkt new file mode 100644 index 0000000000..b3f5ea60ac --- /dev/null +++ b/stress_benchmark/resources/056.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((186009 58534, 186103 58577, 186419 59548, 186633 59803, 186788 59503, 187003 58586, 187107 58533, 188081 58531, 188150 58622, 188407 59325, 188561 59555, 188656 59485, 188805 59118, 188990 58549, 189156 58551, 189524 59270, 189721 59554, 189777 59536, 189865 59369, 190044 58565, 190155 58532, 191302 58532, 191764 59135, 191763 60033, 191419 60283, 191762 60538, 191764 61896, 191726 62023, 190842 62302, 190710 62425, 190810 62524, 191728 62843, 191764 62948, 191765 63973, 191369 64217, 191761 64515, 191761 64892, 191135 65609, 190943 65590, 190772 65345, 190745 65705, 189895 65890, 189760 65964, 189760 66085, 189849 66223, 190717 66765, 190770 66856, 190768 67640, 190640 67671, 189870 67693, 189695 67785, 189659 67868, 189872 68104, 190770 68800, 190770 69445, 190696 69546, 190076 69785, 189806 69972, 189803 70066, 190052 70238, 190717 70491, 190765 70563, 190770 70900, 190728 71011, 190384 71383, 190259 71502, 190054 71826, 190143 71886, 190698 71904, 190772 71970, 190770 72281, 191872 72282, 192228 72741, 192228 74042, 192186 74161, 191404 74298, 191253 74392, 191283 74493, 191531 74701, 192197 75058, 192228 75168, 192228 76245, 192179 76377, 191496 76431, 191114 76508, 190978 76592, 191022 76735, 191982 77262, 192199 77415, 192228 77532, 192211 77929, 191437 78378, 190904 78578, 189993 78581, 189703 78715, 189605 78897, 189845 79096, 190701 79358, 190768 79450, 190769 80538, 190720 80673, 190156 80957, 190073 81107, 190670 81435, 190773 81529, 190767 83988, 190677 84097, 189802 84433, 189581 84639, 189707 84806, 190395 85088, 190612 85161, 190773 85271, 190777 87386, 190749 87728, 190610 87811, 189910 88060, 189591 88220, 189512 88329, 189582 88450, 189930 88623, 190735 88885, 190772 89025, 190772 89427, 191536 89294, 192038 89185, 194076 88814, 195111 88487, 196049 88331, 196574 88443, 197192 88699, 197371 89009, 197571 89484, 197641 90786, 197708 91649, 197958 91647, 197915 91388, 197885 90860, 197904 90481, 198046 90076, 198370 89519, 198698 89382, 199169 89253, 200495 89323, 201737 89367, 202620 89362, 203493 89296, 204386 89305, 204929 89355, 205342 89589, 205413 89728, 205535 90506, 205473 91456, 205413 91936, 205354 92879, 205284 93685, 205302 94391, 205350 95013, 205397 96013, 205389 96558, 205324 97215, 205270 97912, 205352 98268, 205482 98927, 205489 99494, 205421 100067, 205247 100792, 204862 101314, 204465 101324, 203954 101298, 203404 101225, 202442 101011, 201838 101083, 201423 101092, 200988 101029, 200988 101411, 201479 101469, 202180 101380, 202774 101415, 203072 101541, 203204 101678, 203511 102419, 203632 103158, 203609 103579, 203449 104452, 203315 104655, 203241 105302, 203268 105460, 203264 106351, 203311 106643, 203342 107239, 203586 107407, 203779 107189, 203968 107186, 204181 107354, 204389 107162, 205325 107193, 205659 107186, 206043 107592, 205987 107823, 206041 107953, 206067 108676, 205741 108928, 206096 109183, 206111 109923, 205863 110136, 205903 110236, 206090 110385, 206084 110889, 205807 111055, 205697 111168, 206084 111408, 206093 111706, 205590 111946, 205842 112165, 206081 112297, 206076 112782, 205746 113069, 205233 113059, 205058 112859, 204838 113061, 204425 113058, 204250 112946, 204103 113073, 203504 113059, 203312 113377, 202696 113612, 202492 113650, 200988 113575, 200988 113886, 202011 114051, 202752 114073, 203350 114200, 203742 114406, 203951 114607, 204106 114893, 204133 115093, 203976 117137, 203934 117268, 203980 117787, 203859 118602, 203644 119593, 203568 120092, 203559 120465, 203321 121332, 203097 121571, 202407 121620, 201991 121567, 201435 121518, 200988 121517, 200988 121732, 201843 121720, 202409 121803, 202720 121951, 202846 122099, 203099 122560, 203217 123394, 203097 123982, 203132 125013, 203103 125357, 203137 125592, 203190 126187, 203065 127326, 203103 127550, 203128 128315, 203097 129090, 203231 130454, 203194 131231, 203108 132388, 203022 132638, 202758 132750, 201886 132859, 200988 132837, 200988 133341, 201680 133319, 201879 133349, 202182 133475, 202314 133616, 202621 134364, 202742 135108, 202719 135461, 202765 135393, 203443 135417, 203647 135616, 203854 135437, 204473 135448, 204752 135721, 204971 135451, 206040 135387, 206320 135600, 206296 135819, 205952 136183, 205887 136314, 206310 136424, 206321 137032, 205856 137287, 205945 137399, 206277 137585, 206248 138146, 205882 138408, 205894 138502, 206286 138757, 206306 139423, 206011 139669, 206290 139900, 206291 140194, 206168 140385, 206295 140553, 206320 140919, 206159 141241, 205666 141226, 205330 140792, 205103 141213, 204521 141217, 204356 141241, 204138 141067, 203939 141233, 203327 141210, 203198 141191, 202586 141161, 202665 142321, 202871 143391, 202905 144017, 202888 144416, 202746 144841, 202420 145427, 202092 145570, 201629 145704, 200988 145673, 200988 145762, 201298 145762, 201792 145875, 202074 146014, 202335 146350, 202409 146550, 202458 147001, 202383 147351, 202369 147898, 202305 148468, 202406 148771, 202465 149541, 202460 150545, 202382 151006, 202350 152558, 202042 153121, 201763 153269, 201336 153397, 200988 153374, 200988 153709, 201260 153778, 201925 154157, 202403 154616, 202434 154696, 202425 155078, 202285 155925, 202235 156620, 202243 157174, 202284 157824, 202154 159503, 201791 159956, 201692 159999, 200988 160048, 200988 160249, 201483 160356, 202264 160728, 202421 160848, 202569 161308, 202685 161819, 202786 163215, 202852 163753, 202958 163475, 203064 163449, 203384 163482, 203573 163628, 203756 163536, 204436 163557, 204605 163773, 204787 163577, 204969 163577, 205183 163741, 205307 163555, 205772 163499, 205932 163629, 206056 163905, 206038 164160, 205750 164411, 206030 164633, 206020 165305, 205850 165488, 206002 165684, 205996 166035, 205729 166285, 206009 166530, 206012 166652, 205853 166885, 206053 167076, 206061 167257, 205876 167487, 206085 167701, 206051 168661, 206060 168952, 205655 169339, 205430 169282, 205301 169334, 204566 169362, 204318 169053, 204071 169389, 203326 169406, 203118 169154, 203010 169218, 202873 169386, 202788 169385, 202846 169888, 202852 170566, 202735 171347, 202792 171740, 202716 172408, 202462 173363, 202288 173734, 201537 173961, 200988 174002, 200988 174161, 201622 174152, 202001 174313, 202134 174452, 202440 175201, 202560 175946, 202541 176356, 202378 177254, 202237 177508, 202171 178112, 202196 178271, 202198 178879, 202238 179433, 202300 180576, 202351 181082, 202481 183135, 202692 184239, 202725 184855, 202708 185255, 202564 185678, 202240 186263, 201489 186528, 200988 186521, 200988 186583, 201527 186575, 202098 186646, 202821 186818, 203344 187204, 203367 187516, 203311 188357, 203044 189623, 203114 190228, 203122 190644, 203061 191012, 203035 191652, 202994 191824, 203084 192565, 203052 193151, 202932 193456, 202798 193589, 202084 193897, 201375 194015, 200984 193996, 200130 193833, 199888 193694, 199312 193628, 199161 193653, 198300 193646, 198051 193693, 196964 193757, 196224 193823, 194516 193939, 193499 194144, 192891 194182, 192526 194168, 192106 194019, 191548 193697, 191323 193081, 191287 192877, 191362 191310, 191272 191503, 191153 191633, 190431 191797, 189879 191829, 189132 191681, 188722 191560, 188395 191608, 187908 191763, 187626 191810, 186317 191797, 185845 191649, 185125 191616, 184723 191639, 184602 191698, 184132 191644, 183698 191188, 183635 190602, 183532 191433, 183122 191817, 182845 191867, 181881 191819, 180926 191861, 180491 191906, 180123 191810, 179983 191719, 179833 191484, 179598 190820, 179529 189467, 179448 189467, 179484 190641, 179437 191517, 179350 191891, 179081 192574, 178837 192880, 178666 192969, 178248 193082, 177347 193150, 176632 193142, 175910 193204, 175139 193340, 174091 193314, 173577 193333, 173070 193301, 172927 193280, 172261 193234, 172118 193215, 171606 193262, 170899 193345, 170361 193275, 169411 193244, 169275 193280, 168702 193220, 168400 192928, 167914 192736, 167516 192938, 167177 192939, 167077 193032, 166402 192853, 166262 192833, 166119 192689, 165763 191802, 165618 191164, 165542 190424, 165565 189859, 165608 189467, 165469 189467, 165490 190349, 165342 191221, 165291 192180, 165117 192386, 165299 192562, 165329 193022, 165187 193194, 165338 193340, 165377 194112, 165299 194261, 165151 194412, 164628 194372, 164430 194185, 164303 194265, 164243 194358, 163855 194368, 163761 194324, 163629 194176, 163557 194249, 163436 194290, 163282 194280, 163231 194397, 162517 194409, 162239 193891, 162197 193910, 161894 194344, 161600 194304, 161382 194043, 161155 194295, 160548 194282, 160308 193936, 160004 194320, 159882 194329, 159670 194215, 159490 193962, 159507 193122, 159589 192946, 159518 192805, 159564 192163, 160030 191985, 160005 191867, 159550 191625, 159541 191485, 159390 191253, 159388 190940, 159251 191481, 159175 191619, 158869 191882, 158689 191954, 158277 192004, 157961 191930, 157463 191913, 156943 191850, 156708 191928, 155970 192009, 155056 192005, 154636 191927, 153224 191895, 152716 191588, 152580 191309, 152464 190881, 152505 190138, 152454 189467, 151856 189467, 151800 189903, 151887 190611, 151852 191205, 151734 191502, 151600 191637, 150895 191941, 150179 192063, 149787 192043, 148933 191881, 148692 191739, 148115 191674, 147965 191701, 147091 191698, 146851 191741, 146200 191776, 145025 191871, 143315 191987, 142286 192192, 141694 192228, 141329 192216, 140910 192066, 140352 191743, 140215 191413, 140088 190946, 140160 189467, 139600 189467, 139545 189892, 139631 190611, 139598 191205, 139478 191503, 139346 191637, 138643 191941, 137925 192063, 137532 192043, 136678 191881, 136436 191739, 135860 191674, 135707 191701, 135128 191702, 133512 191805, 132769 191872, 131061 191987, 130029 192192, 129149 192243, 128655 192068, 128098 191743, 127871 191129, 127828 190886, 127906 189467, 127452 189467, 127467 190692, 127117 191541, 126957 191741, 126818 191766, 126816 191838, 126300 192118, 126319 192162, 126754 192463, 126713 192759, 126450 192973, 126704 193201, 126690 193812, 126326 194046, 126734 194352, 126746 194518, 126673 194661, 126378 194870, 125505 194851, 125340 194769, 125205 194840, 124560 194799, 124384 194369, 124253 194377, 123997 194809, 123506 194830, 123226 194394, 123105 194309, 122887 194906, 122260 194894, 122029 194416, 121920 194492, 121673 194889, 121282 194913, 120962 194528, 120962 194326, 121258 194002, 120941 193816, 120908 193194, 121381 192928, 121334 192826, 120883 192591, 120882 191842, 119592 191859, 119259 191643, 119131 191646, 118826 191884, 118254 191800, 118050 191715, 117920 191557, 117753 191203, 117738 191021, 117941 190114, 117982 190000, 118106 189467, 117285 189467, 117210 190847, 117044 191697, 116845 192256, 116721 192491, 116442 192770, 116297 192813, 115562 192774, 115012 192489, 114457 192362, 113844 192312, 113770 192443, 113739 192392, 113657 192561, 112459 192625, 112065 192676, 111393 192669, 110723 192557, 110117 192398, 109659 192392, 109318 192450, 108552 192528, 107965 192525, 106725 192412, 105945 192271, 104956 191937, 104653 191740, 103842 191012, 103606 188967, 103728 188223, 103708 187477, 103669 187070, 103738 186219, 103817 185770, 104029 185144, 104344 184506, 104474 184340, 104941 184201, 105522 184091, 106859 184061, 107313 184012, 107837 184052, 108461 184148, 109188 184380, 109362 184406, 109506 184563, 109619 184583, 109736 184781, 109887 184690, 110394 184639, 110465 184583, 110530 184411, 111315 184317, 112212 184437, 113777 184321, 114351 184395, 114977 184534, 115372 184491, 116036 184612, 116975 184940, 117311 185135, 117414 185467, 117521 185984, 117526 186704, 117482 187171, 118132 187171, 118007 186608, 117834 186229, 117732 185838, 117714 185566, 117752 185266, 117985 184939, 118199 184749, 118618 184662, 121112 184640, 120931 184530, 120932 184324, 121180 184085, 121888 184103, 122167 184584, 122266 184549, 122509 184093, 123116 184072, 123321 184245, 123486 184086, 124602 184143, 124818 184329, 124997 184134, 125447 184108, 125619 184249, 125773 184089, 126563 184070, 126813 184310, 126789 184606, 127196 184739, 127298 184812, 127502 185096, 127553 185294, 127561 185908, 127589 186004, 127568 186634, 127525 186963, 127541 187171, 127916 187171, 127874 186620, 127884 185727, 127932 185185, 128166 184773, 128307 184700, 128906 184606, 129314 184591, 130035 184638, 130513 184701, 131457 184760, 132272 184831, 132968 184813, 134039 184728, 134243 184750, 134896 184710, 136338 184846, 136576 184835, 136847 184761, 137506 184633, 138073 184623, 138646 184694, 139375 184867, 139891 185251, 139914 185563, 139855 186428, 139699 187171, 140171 187171, 140130 186620, 140138 185728, 140188 185185, 140420 184773, 140563 184700, 141161 184606, 141570 184591, 142291 184638, 142768 184701, 143713 184760, 144527 184831, 145224 184813, 146294 184728, 146497 184750, 147232 184708, 148735 184861, 149102 184762, 149762 184633, 150329 184623, 150900 184694, 151627 184866, 152147 185252, 152170 185562, 152112 186419, 151955 187171, 152396 187171, 152418 186573, 152374 185991, 152433 185418, 152583 185031, 152744 184817, 152987 184643, 153168 184599, 155018 184548, 155167 184568, 155765 184489, 156365 184518, 157085 184600, 157137 184623, 157740 184644, 158079 184619, 158886 184759, 159122 184942, 159231 185585, 159220 185980, 159229 186505, 159257 186664, 159254 186172, 159327 185681, 159731 184969, 160183 184504, 160263 184473, 160645 184481, 161655 184647, 162187 184672, 162740 184663, 163389 184623, 165071 184753, 165523 185116, 165566 185214, 165622 185710, 165569 187171, 165710 187171, 165673 186674, 165771 186031, 166048 185270, 166189 184990, 166347 184810, 166733 184596, 167032 184512, 168041 184377, 169983 184399, 170501 184378, 171226 184402, 172272 184660, 172812 184680, 173529 184788, 173961 184874, 174917 184954, 174963 184911, 175724 184755, 177037 184746, 177741 184726, 178152 184763, 178664 184918, 178831 185046, 179016 185750, 179157 186501, 179259 187171, 179626 187171, 179614 186407, 179626 185902, 179645 185643, 179604 185280, 179631 185009, 179690 184856, 179866 184647, 180149 184527, 180618 184515, 181660 184623, 182078 184609, 182894 184462, 183078 184483, 183608 184762, 183652 185065, 183794 184874, 184152 184718, 184580 184655, 186086 184606, 187222 184733, 187911 184827, 187971 184863, 188682 185021, 188997 184982, 189071 185061, 189252 185065, 189462 184899, 189989 184685, 190593 184670, 190899 184784, 191050 184925, 191401 185432, 191464 185709, 191525 186297, 191563 186819, 191618 186725, 191760 186654, 192537 186530, 193488 186592, 193967 186653, 194910 186713, 195725 186783, 196422 186765, 197042 186715, 198008 186668, 198692 186688, 198692 186420, 197966 186428, 197119 186497, 196225 186489, 195681 186435, 195269 186190, 195159 185965, 195090 184987, 195137 184228, 195196 183726, 195256 182735, 195327 181888, 195308 181147, 195260 180494, 195213 179492, 195221 178873, 195286 178181, 195340 177452, 195259 177077, 195110 176288, 195122 175786, 195189 175188, 195366 174420, 195748 173880, 196147 173868, 196904 173911, 198168 174195, 198692 174130, 198692 173905, 197376 173904, 196522 173844, 195810 173609, 195591 173498, 195327 173231, 195283 173091, 195282 172359, 195541 171730, 195629 170956, 195620 170615, 195495 170547, 195543 170514, 195366 170433, 195323 169697, 195251 169131, 195142 169261, 194866 169289, 194695 169161, 194536 169311, 194052 169353, 193682 169145, 193732 168655, 194347 168354, 194457 168264, 194482 168147, 193726 167939, 193719 167327, 194478 167067, 194582 166958, 194477 166853, 193724 166560, 193699 166457, 193732 166135, 193884 165946, 193790 165764, 193814 165092, 194041 164921, 193828 164729, 193827 164535, 193970 164333, 193824 164237, 193754 163772, 193916 163575, 194153 163470, 194436 163479, 194686 163727, 194901 163484, 195200 163491, 195290 162724, 195547 161719, 195684 161460, 196333 160560, 197949 160262, 198375 160243, 198692 160283, 198692 159963, 198209 159922, 197550 159900, 196551 159925, 195620 159759, 195051 159418, 194967 158799, 194921 158031, 195015 156858, 194932 155252, 195013 154725, 195239 154169, 195481 153921, 195654 153825, 196174 153795, 196908 153829, 197381 153711, 197476 153725, 197994 153730, 198692 153700, 198692 153532, 197155 153444, 196446 153493, 195873 153432, 195486 153264, 195271 153088, 195098 152819, 195054 152623, 195003 150574, 195028 150438, 194937 149923, 194971 149106, 195099 147795, 195074 147208, 195212 146331, 195398 146071, 196041 145953, 196434 145964, 196959 145954, 197199 145907, 197721 145896, 198692 145906, 198692 145586, 197995 145603, 197297 145659, 196405 145650, 195862 145599, 195450 145354, 195377 145207, 195258 144390, 195318 143392, 195378 142888, 195437 141897, 195497 141176, 195302 140931, 195101 141193, 194738 141218, 194525 141015, 194300 141224, 193954 141219, 193535 140898, 193505 140837, 193510 140494, 193718 140348, 193743 140262, 193561 140045, 193665 139587, 194141 139406, 194300 139309, 193976 138925, 193978 138883, 193699 138680, 193627 138219, 194066 137917, 194012 137841, 193529 137636, 193528 137057, 194050 136730, 194033 136620, 193490 136411, 193453 135516, 193768 135338, 194390 135339, 194587 135545, 194630 135543, 194800 135335, 195119 135352, 195343 135737, 195273 135191, 195371 134350, 195545 133588, 195906 133044, 196241 133018, 197083 133076, 198350 133359, 198692 133317, 198692 132757, 198274 132755, 197264 132823, 196234 132722, 195893 132536, 195520 132165, 195379 131604, 195462 130427, 195554 129855, 195546 129451, 195589 128604, 195626 128183, 195556 127303, 195548 127072, 195341 125182, 195410 124360, 195426 123761, 195353 122846, 195526 122272, 195610 122107, 196288 121873, 197264 121673, 198692 121771, 198692 121342, 198211 121346, 197621 121312, 196836 121238, 196234 121040, 196046 120904, 195803 120540, 195746 120326, 195764 119750, 195856 119543, 195928 118997, 196053 118432, 195997 118170, 195987 117463, 196098 116368, 196253 115730, 196424 114363, 196806 113837, 197116 113722, 197580 113638, 198287 113763, 198692 113780, 198692 113569, 198187 113607, 197296 113599, 196752 113547, 196340 113307, 196221 112922, 196091 113040, 195612 113082, 195245 112866, 195293 112381, 196007 112033, 196042 111873, 195290 111667, 195282 111055, 196038 110794, 196143 110687, 196030 110579, 195284 110290, 195259 110190, 195294 109865, 195446 109675, 195353 109490, 195378 108826, 195607 108653, 195389 108453, 195389 108253, 195520 108059, 195393 107975, 195317 107508, 195490 107297, 195712 107199, 196008 107206, 196247 107446, 196338 107336, 196277 106308, 196412 104650, 196330 104277, 196200 103592, 196192 103000, 196261 102408, 196435 101647, 196820 101108, 196959 101074, 197981 101144, 198692 101300, 198692 100940, 198476 100767, 198171 100055, 198050 99346, 198069 98954, 198232 98099, 198373 97857, 198439 97282, 198412 97128, 198412 96550, 198372 96024, 198310 94935, 198259 94447, 198224 93943, 198034 93943, 198109 94648, 198119 95193, 197923 95631, 197786 95721, 197169 95885, 196748 95949, 195991 95989, 195482 95986, 194493 96041, 194143 96050, 193559 96082, 193015 96155, 192265 96298, 191715 96388, 191589 96389, 190913 96506, 189235 96568, 188870 96693, 188098 96930, 187286 96986, 186454 96937, 186163 96861, 185639 96576, 185589 96443, 185541 95407, 185674 94137, 185631 93943, 185236 93943, 185213 94534, 185260 95117, 185198 95690, 185031 96077, 184855 96291, 184584 96465, 184388 96507, 182341 96558, 182205 96532, 182065 96577, 181529 96619, 180871 96590, 180079 96508, 180021 96484, 179358 96464, 178977 96489, 178097 96347, 177816 96151, 177718 95523, 177729 95128, 177721 94603, 177672 94364, 177671 93943, 177386 93943, 177426 94488, 177418 95381, 177366 95923, 177123 96335, 176978 96408, 176354 96501, 175932 96515, 175179 96467, 174680 96407, 173700 96348, 172854 96277, 172128 96295, 171481 96345, 170928 96371, 170805 96358, 170041 96397, 169190 96319, 168962 96280, 168377 96273, 168094 96346, 167411 96475, 166818 96483, 166225 96414, 165466 96240, 164927 95855, 164907 95627, 164626 96131, 164171 96602, 164093 96635, 163709 96625, 162692 96458, 162168 96436, 161613 96444, 160963 96485, 159280 96352, 158831 95992, 158786 95893, 158732 95398, 158785 93943, 158457 93943, 158384 94887, 158198 95746, 157774 96601, 157645 96766, 157183 96904, 156601 97016, 155261 97047, 154807 97095, 154283 97055, 153659 96958, 152933 96726, 152758 96700, 152614 96545, 152501 96525, 152384 96327, 152233 96416, 151726 96469, 151654 96524, 151590 96697, 150813 96790, 149907 96671, 148594 96768, 147915 96739, 147141 96572, 146748 96615, 146084 96495, 145145 96167, 144809 95973, 144706 95641, 144599 95124, 144594 94402, 144636 93943, 143991 93943, 144114 94498, 144288 94875, 144388 95269, 144406 95542, 144368 95842, 144136 96169, 143921 96358, 143502 96446, 142795 96445, 141078 96470, 140262 96441, 139868 96362, 139641 96058, 139177 96034, 139026 95956, 138875 95756, 138625 95679, 138295 95650, 138189 95760, 137772 95961, 137361 95899, 137290 95977, 136623 96270, 136481 96413, 135590 96547, 135060 96427, 134822 96296, 134620 96011, 134567 95814, 134559 95198, 134531 95103, 134550 94474, 134579 93943, 134204 93943, 134246 94488, 134236 95379, 134188 95923, 133954 96335, 133813 96408, 133029 96528, 132226 96480, 131607 96407, 130663 96348, 129848 96277, 129152 96295, 128530 96345, 127997 96371, 127877 96358, 127133 96398, 126326 96319, 125631 96263, 125274 96346, 124614 96475, 124045 96483, 123474 96414, 122747 96241, 122229 95856, 122206 95544, 122261 94708, 122418 93943, 121948 93943, 121990 94488, 121982 95380, 121932 95923, 121698 96335, 121557 96408, 120959 96500, 120552 96515, 119829 96467, 119352 96407, 118407 96348, 117593 96277, 116559 96304, 116418 97075, 116435 97645, 116490 97821, 116593 98337, 116374 98685, 115787 98830, 114742 98766, 114205 98874, 113858 98890, 113782 98928, 112692 99213, 112039 99270, 111075 98988, 110627 98937, 109469 98970, 109006 98954, 108322 99024, 107549 98907, 107220 98918, 106989 98779, 106917 98677, 106857 98290, 106900 98049, 106839 97608, 106862 97363, 106672 96862, 106610 96473, 106649 95613, 106799 94863, 107516 94863, 107516 94843, 110504 93831, 110504 90791, 107516 89779, 107514 89759, 106996 89759, 106905 89137, 106989 88349, 106965 86995, 106932 86653, 106978 86135, 107045 85982, 107225 85840, 107387 85792, 107903 85826, 108351 85902, 108865 85864, 109463 85838, 109847 85777, 110404 85841, 110628 85900, 111055 85903, 111439 85961, 111939 85956, 112041 85944, 112619 86022, 113261 85938, 113682 85812, 114532 85725, 114692 85763, 115249 85772, 115804 85853, 116325 85975, 116583 86243, 116620 86358, 116498 86984, 116525 87767, 116625 89267, 118799 89122, 119818 88916, 120426 88880, 120791 88892, 121210 89040, 121768 89365, 121905 89694, 122032 90158, 121958 91647, 122520 91649, 122574 91201, 122488 90495, 122522 89903, 122641 89604, 122774 89471, 123487 89163, 124195 89045, 124590 89064, 125442 89227, 125637 89360, 126260 89434, 126413 89407, 126992 89406, 128608 89303, 129349 89236, 131051 89122, 132089 88916, 132682 88880, 133046 88892, 133466 89040, 134024 89365, 134249 89979, 134285 90183, 134214 91647, 134670 91647, 134650 90418, 135007 89559, 135163 89367, 135665 89272, 136355 89268, 136879 89295, 138316 89531, 139834 89428, 140017 89471, 140127 89547, 140300 89391, 140960 89270, 142527 89247, 142861 89465, 142988 89461, 143293 89224, 143868 89308, 144069 89393, 144167 89493, 144367 89904, 144381 90085, 144179 90994, 144138 91107, 144012 91647, 144836 91647, 144907 90275, 145076 89410, 145274 88849, 145401 88617, 145678 88336, 145823 88295, 146555 88332, 147108 88619, 147847 88787, 148276 88793, 148349 88662, 148379 88713, 148472 88523, 148758 88530, 149662 88481, 150055 88432, 150720 88437, 151397 88551, 151755 88670, 152461 88716, 152802 88656, 153569 88580, 154158 88583, 155396 88695, 156178 88838, 157138 89151, 157413 89333, 158177 90001, 158283 90137, 158460 91648, 158885 91649, 158861 90753, 159021 89837, 159371 89252, 160098 89152, 160990 89141, 161778 89203, 162386 89199, 163350 89116, 164064 89216, 164616 89440, 164866 89682, 164962 89853, 164991 90375, 164959 91072, 165066 91648, 165232 91648, 165289 91198, 165197 90496, 165234 89901, 165358 89603, 165497 89471, 166236 89164, 166975 89043, 167391 89065, 168271 89227, 168475 89361, 169121 89434, 169280 89407, 170170 89411, 170430 89367, 171562 89303, 172068 89252, 174119 89121, 175163 88916, 175800 88880, 176180 88892, 176616 89040, 177196 89365, 177431 89979, 177468 90173, 177395 91649, 177573 91647, 177534 91006, 177529 90264, 177644 89769, 177780 89487, 178115 89227, 178317 89152, 178768 89104, 179116 89178, 179664 89194, 180233 89258, 180534 89159, 181306 89096, 182308 89102, 182947 89185, 184330 89213, 184886 89519, 185035 89799, 185163 90227, 185118 90970, 185173 91647, 185385 91648, 185292 91219, 185260 90625, 185350 90314, 185446 90188, 186175 89778, 187007 89542, 188105 89593, 187391 89296, 187344 89186, 187349 88221, 187423 88145, 187973 87974, 188225 87843, 188255 87715, 187952 87495, 187346 87197, 187342 86379, 187377 86244, 188145 86052, 188295 85903, 188074 85677, 187423 85308, 187352 85204, 187380 85077, 188062 84739, 188109 84631, 188024 84520, 187347 84195, 187342 83376, 187398 83219, 188273 82918, 188590 82691, 188501 82564, 188317 82445, 187402 82126, 187345 82020, 187346 81783, 187612 81295, 187558 81201, 187342 81086, 187637 80670, 187344 80374, 187344 79711, 187381 79586, 188126 79251, 188279 79077, 188115 78915, 187396 78581, 186709 78581, 186017 78285, 186057 78063, 186895 77771, 187123 77584, 187174 77478, 187065 77372, 186816 77295, 186115 77199, 186051 77157, 186018 77060, 186018 76474, 186054 76357, 186855 76144, 187045 75984, 187038 75932, 186857 75775, 186052 75465, 186020 75303, 186049 75224, 186494 74890, 186758 74528, 186756 74426, 186638 74367, 186060 74345, 186018 74234, 186018 73269, 186085 73131, 186316 72941, 186533 72646, 187619 72281, 187848 72281, 188292 71788, 188325 71658, 188121 71590, 187376 71662, 187343 71568, 187342 69585, 187409 69513, 188060 69189, 188116 69063, 187943 68921, 187344 68628, 187347 67493, 187905 67152, 187928 67075, 187892 67001, 187349 66658, 187363 66228, 187807 65763, 187826 65681, 187678 65609, 187192 65579, 186981 64640, 186807 64313, 186641 64466, 186269 65556, 186188 65604, 185498 65610, 185075 65230, 184931 65121, 184697 64431, 184691 64299, 184622 64190, 184585 63964, 184616 63905, 185283 63597, 185446 63479, 185418 63397, 185324 63321, 184865 63172, 184715 63614, 184618 63761, 183706 63754, 183458 62918, 183316 62828, 183208 62978, 182905 63647, 182809 63755, 182127 63756, 182036 63725, 181916 63172, 181815 62867, 181731 62816, 181560 62997, 181226 63680, 181111 63753, 181023 63734, 180715 63013, 180571 63009, 180228 63753, 179578 63759, 179421 63708, 179164 62881, 179004 62549, 178908 62527, 178710 62870, 178458 63721, 178156 63755, 178104 63725, 178002 64266, 177827 64760, 177632 65082, 177253 65177, 176297 65175, 176220 65073, 175987 64339, 175838 64237, 175672 64470, 175474 65101, 175393 65175, 174513 65177, 174426 65132, 174254 64415, 174115 64213, 173901 64361, 173502 65148, 173065 65159, 172481 64586, 172481 64494, 172069 63760, 171627 63759, 171543 63723, 171268 63031, 171155 62856, 171087 62868, 170969 63065, 170774 63579, 170667 63754, 170453 63759, 170330 63702, 169715 62979, 169528 62809, 169402 62771, 169346 62999, 169413 63728, 169288 63758, 167573 63758, 167279 63063, 167175 62987, 167040 63139, 166786 63755, 165815 63753, 165467 63152, 165370 63213, 165060 63755, 164719 63750, 164373 63376, 164225 63266, 164081 63719, 163970 63755, 163970 64828, 163529 65167, 162124 65169, 162036 65098, 161932 64458, 161858 64200, 161783 64145, 161724 64154, 161484 64427, 161147 65135, 161043 65167, 159928 65167, 159801 65127, 159749 64370, 159668 64003, 159560 63881, 159394 64099, 158898 64951, 158746 65137, 158642 65168, 158314 65151, 157859 64417, 157706 64005, 157682 63759, 157505 63755, 157429 63575, 157294 62815, 157207 62727, 157142 62740, 156980 62896, 156514 63760, 155769 63755, 155729 62812, 155619 62650, 155337 62910, 155220 63109, 154893 63611, 154740 63755, 154227 63755, 154132 63670, 153872 62916, 153713 62778, 153569 62986, 153308 63712, 153213 63759, 152932 63744, 152519 63324, 152171 63050, 152110 63105, 152105 63669, 152052 63754, 151282 63758, 151177 63697, 150908 62845, 150777 62548, 150669 62485, 150564 62584, 150426 62890, 150169 63711, 150056 63759, 149032 63757, 148962 63602, 148818 63021, 148816 64726, 148533 65096, 148436 65165, 148346 65131, 148181 64545, 147982 64159, 147812 64046, 147711 64145, 147488 64922, 147351 65148, 146892 65166, 146808 65130, 146573 64210, 146404 63959, 146223 64124, 145854 65142, 145757 65176, 144978 65175, 144852 65129, 144672 64471, 144676 65218, 144590 65256, 144530 65092, 144531 64469, 144610 64383, 144668 64458, 144509 64089, 144407 64026, 144242 64199, 143946 65143, 143841 65175, 143479 65159, 143394 64827, 143330 64774, 143017 64848, 142931 64832, 142664 64329, 142518 63759, 141687 63759, 141571 63725, 141231 62782, 141098 62574, 141015 62595, 140896 62764, 140684 63379, 140619 63605, 140525 63749, 138412 63758, 138329 63609, 138025 62648, 137882 62511, 137790 62545, 137645 62838, 137400 63685, 137320 63754, 136629 63759, 136533 63707, 136300 63177, 136188 63092, 136075 63215, 135822 63755, 135174 63749, 135170 63715, 134853 63953, 135296 64214, 135302 64762, 134531 65610, 133867 65609, 133780 65559, 133461 64595, 133274 64326, 133138 64507, 132872 65572, 132765 65609, 131867 65608, 131755 65565, 131453 64757, 131310 64588, 131183 64732, 130960 65413, 130867 65600, 130726 65594, 130281 64721, 130132 64594, 129981 64910, 129840 65611, 128581 65608, 128122 65010, 128128 64103, 128446 63878, 128360 63752, 128127 63605, 128120 62240, 128150 62134, 128965 61870, 129180 61706, 128946 61557, 128250 61335, 128127 61260, 128122 60163, 128376 60033, 128513 59913, 128139 59652, 128124 59251, 128756 58531, 128958 58563, 129302 59103, 129521 59330, 129615 59193, 129742 58533, 130441 58532, 130793 59299, 130912 59421, 131042 59222, 131248 58532, 132686 58532, 132937 59607, 133019 59767, 133120 59826, 133298 59496, 133615 58580, 133689 58538, 134386 58532, 134963 59042, 135111 59448, 135200 59839, 135263 59952, 135289 60219, 134587 60541, 134414 60695, 134454 60764, 135118 61000, 135143 60329, 136062 60327, 136187 60370, 136431 61117, 136539 61302, 136637 61350, 136688 61299, 137022 60423, 137107 60330, 138012 60329, 138240 61100, 138351 61256, 138498 61120, 138818 60415, 138909 60329, 139582 60328, 139673 60357, 139834 61065, 139943 61271, 140112 61168, 140505 60387, 140606 60329, 140691 60358, 140989 61074, 141110 61074, 141186 60981, 141454 60333, 142204 60329, 142302 60399, 142518 61119, 142518 60428, 142625 59871, 142799 59376, 142991 59073, 143379 58965, 144331 58968, 144404 59052, 144564 59610, 144660 59810, 144766 59903, 144848 59847, 144960 59659, 145137 59067, 145250 58967, 146187 58968, 146379 59781, 146514 59924, 146674 59831, 147118 58998, 147207 58967, 147586 59003, 148149 59554, 148138 59626, 148630 60534, 148829 60327, 150073 60326, 150186 60357, 150409 60988, 150531 61207, 150637 61217, 150790 60910, 150974 60415, 151058 60333, 151353 60352, 152088 61224, 152304 61327, 152361 61063, 152312 60382, 152363 60328, 154084 60327, 154164 60403, 154424 61003, 154517 61094, 154593 61073, 154701 60878, 154907 60364, 154986 60329, 155929 60328, 156228 60905, 156324 60908, 156618 60357, 156991 60333, 157388 60763, 157521 60810, 157633 60329, 157670 60329, 157672 59626, 157953 58961, 158198 58991, 158327 59413, 158522 59900, 158749 60157, 158845 60063, 158924 59866, 158998 59238, 159091 58961, 159808 58963, 159891 58999, 160128 59888, 160271 60070, 160344 60044, 160483 59876, 160804 58990, 161016 58983, 161390 59545, 161639 59752, 161796 59800, 161863 59692, 161894 59183, 161963 58966, 162949 58961, 163079 59010, 163293 59245, 163592 59425, 163899 60327, 164228 60346, 164274 60428, 164399 61217, 164482 61346, 164614 61321, 164792 61088, 165031 60599, 165213 60331, 165839 60327, 165943 60376, 165978 61233, 166061 61414, 166198 61378, 166442 61062, 166890 60375, 167052 60327, 167479 60329, 167566 60394, 167809 61065, 167955 61318, 168109 61192, 168395 60388, 168460 60336, 168754 60333, 168840 60372, 169350 60926, 169517 61023, 169593 61026, 169607 60421, 169663 60327, 170400 60327, 170532 60367, 170773 61170, 170928 61529, 171023 61606, 171112 61547, 171283 61222, 171517 60433, 171571 60353, 171810 60327, 171810 59418, 172117 59026, 172249 58977, 172295 59047, 172465 59654, 172671 60005, 172810 60095, 172921 59983, 173131 59269, 173257 59005, 173342 58967, 173813 58996, 173950 59549, 173947 58971, 173982 58832, 174140 58664, 174237 58643, 174393 58782, 174451 58908, 174453 59603, 174386 59686, 174015 59691, 173970 59630, 174100 60038, 174210 60171, 174352 60087, 174504 59755, 174774 59003, 174869 58967, 175655 58967, 175771 59007, 176022 59891, 176187 60115, 176270 60085, 176400 59866, 176683 59000, 176784 58967, 177149 58982, 177228 59310, 177295 59370, 177606 59295, 177701 59312, 177947 59763, 178123 60329, 180015 60327, 180142 60364, 180526 61420, 180678 61504, 180873 61186, 180929 60996, 181145 60360, 181246 60327, 183300 60327, 183381 60471, 183617 61246, 183769 61541, 183872 61567, 184016 61415, 184319 60384, 184409 60329, 184878 60327, 185037 60201, 184584 59944, 184585 59364, 185353 58529) (134522 62416, 134259 62575, 134363 62683, 135128 62931, 135122 62204)), ((97620 189481, 98105 189484, 98402 189880, 98682 189506, 99133 189521, 99353 189904, 99488 190052, 99540 190011, 99773 189535, 100163 189528, 100376 189655, 100554 189537, 100854 189538, 101149 189934, 101106 190665, 100816 190880, 100783 191000, 101119 191255, 101128 191724, 100890 191986, 101148 192215, 101177 192747, 100878 192978, 100918 193081, 101189 193251, 101183 193525, 100895 193807, 101076 193895, 101193 194005, 101173 194469, 100968 194762, 100526 194774, 100347 194705, 100248 194778, 99908 194791, 99743 194631, 99590 194728, 99023 194731, 98879 194546, 98826 194535, 98614 194743, 98399 194740, 98200 194532, 98025 194721, 97550 194724, 97310 194305, 97216 194327, 97017 194752, 96489 194711, 96408 194766, 96068 194771, 95847 194601, 95895 194054, 96197 193802, 95917 193543, 95921 192959, 96176 192732, 95913 192503, 95878 191901, 96343 191670, 96544 191528, 96451 191422, 95828 191193, 95845 190514, 95972 190369, 95841 190222, 95820 189796, 96005 189459, 96540 189443, 96614 189520, 96819 189420)), ((78409 85926, 79170 86070, 79497 86153, 80092 86140, 81112 86055, 81408 86248, 81455 86364, 81440 86451, 81496 87114, 81472 87500, 81531 88107, 81737 89051, 81809 89759, 81022 89759, 81016 89779, 78028 90791, 78028 93831, 81016 94843, 81016 94863, 81683 94863, 81614 95675, 81585 95794, 81573 96378, 81457 96934, 81447 98258, 81249 98659, 81186 98704, 80655 98710, 80286 98680, 79616 98706, 78875 98832, 78365 98932, 77941 98931, 77158 98992, 76469 98945, 75813 98846, 75016 98889, 74483 98879, 73245 98829, 73005 98883, 72366 98914, 72116 98854, 71862 98708, 71548 98227, 71547 97582, 71531 97460, 71556 96933, 71502 96426, 71115 96245, 70719 95676, 70656 95399, 70594 94811, 70559 94281, 70502 94382, 70127 94505, 69356 94563, 68633 94514, 68154 94455, 67210 94395, 66395 94324, 65698 94343, 65077 94393, 64546 94417, 64426 94404, 63828 94441, 63828 94704, 65001 94611, 65894 94619, 66438 94671, 66851 94917, 66923 95063, 67015 95694, 67032 96121, 66984 96879, 66922 97382, 66864 98372, 66793 99226, 66810 99959, 66860 100613, 66886 101171, 66873 101296, 66912 102082, 66777 103497, 66790 103747, 66862 104031, 66990 104724, 66999 105320, 66931 105920, 66756 106678, 66397 107222, 65975 107239, 65229 107198, 63952 106913, 63828 106930, 63828 107202, 65003 107205, 65421 107250, 66003 107388, 66529 107610, 66793 107875, 66838 108017, 66838 108749, 66581 109372, 66491 110150, 66500 110492, 66623 110561, 66578 110592, 66754 110676, 66766 111034, 66848 111859, 66913 112251, 66938 112906, 66866 113597, 66750 114211, 66766 114668, 66834 115005, 66941 115766, 66966 116355, 66920 117598, 66830 118384, 66573 119389, 66437 119646, 65789 120547, 64171 120846, 63828 120866, 63828 121182, 64570 121206, 65557 121183, 66482 121339, 67070 121691, 67172 122504, 67180 123310, 67105 124249, 67188 125855, 67109 126383, 66881 126935, 66639 127186, 66410 127291, 65946 127311, 65214 127278, 64740 127396, 64584 127373, 63828 127384, 63828 127596, 64953 127663, 65674 127611, 66247 127675, 66636 127842, 66850 128018, 67020 128289, 67065 128485, 67117 130532, 67090 130669, 67183 131180, 67149 132000, 67019 133313, 67045 133906, 66906 134776, 66707 135057, 66080 135154, 65685 135144, 65159 135152, 64921 135201, 64400 135210, 63828 135205, 63828 135528, 64823 135447, 65714 135455, 66258 135509, 66670 135753, 66741 135901, 66835 136530, 66850 136957, 66801 137715, 66742 138218, 66682 139209, 66612 140065, 66630 140797, 66680 141450, 66727 142454, 66717 143071, 66598 144492, 66680 144867, 66810 145560, 66818 146156, 66749 146756, 66574 147524, 66190 148064, 65793 148076, 65048 148033, 63828 147763, 63828 148354, 64846 148282, 65886 148386, 66227 148571, 66600 148941, 66741 149503, 66659 150678, 66566 151253, 66574 151657, 66530 152523, 66491 152921, 66564 153804, 66572 154036, 66780 155918, 66709 156746, 66694 157347, 66766 158262, 66594 158836, 66510 159000, 65827 159237, 64859 159434, 63828 159367, 63828 159763, 64500 159794, 65282 159870, 65940 160107, 66075 160203, 66317 160566, 66374 160782, 66356 161358, 66264 161565, 66193 162108, 66067 162676, 66124 162935, 66133 163645, 66021 164751, 65868 165378, 65696 166745, 65314 167269, 65004 167386, 64540 167468, 63828 167351, 63828 167498, 64825 167507, 65368 167559, 65780 167801, 65851 167947, 65975 168760, 65913 169745, 65852 170243, 65792 171225, 65722 172074, 65740 172798, 65790 173444, 65837 174436, 65829 175051, 65762 175737, 65708 176458, 65790 176829, 65920 177516, 65927 178106, 65859 178700, 65687 179455, 65300 179996, 64903 180008, 64396 179979, 63828 179894, 63828 180752, 63951 181065, 64070 181762, 64049 182155, 63887 183009, 63828 183107, 63828 186367, 63898 187171, 64087 187171, 64012 186459, 64000 185913, 64198 185475, 64334 185387, 65141 185172, 66129 185117, 66638 185121, 67627 185065, 67975 185058, 68561 185026, 69210 184934, 70322 184721, 70531 184719, 71300 184588, 72154 184568, 72885 184539, 73248 184415, 73921 184205, 74512 184128, 75115 184127, 75896 184214, 76472 184508, 76531 184665, 76579 185701, 76446 186971, 76490 187171, 76884 187171, 76907 186573, 76860 185991, 76922 185418, 77089 185031, 77265 184817, 77534 184643, 77733 184599, 79779 184548, 79916 184575, 79751 184409, 79719 183942, 79862 183773, 79712 183631, 79641 182911, 79781 182649, 79886 182543, 80410 182579, 80604 182780, 80731 182700, 80797 182598, 81172 182589, 81253 182627, 81438 182837, 81745 182857, 81884 182552, 82527 182548, 82818 183085, 83147 182613, 83446 182658, 83659 182931, 83882 182664, 84497 182677, 84728 183040, 85037 182633, 85197 182621, 85351 182706, 85552 182991, 85537 183849, 85453 184020, 85527 184159, 85479 184804, 85023 184978, 85044 185098, 85494 185343, 85520 185859, 85080 186139, 85022 186267, 85614 185978, 86147 185818, 86504 185650, 87571 185333, 87811 185231, 88526 185006, 89376 184753, 89521 184697, 90341 184668, 90755 185169, 90909 185452, 90957 185831, 90938 185994, 90889 186719, 92208 186868, 92617 186870, 93313 187086, 93999 187255, 94482 187551, 94566 187654, 94659 188455, 94578 188929, 94498 189074, 94364 189636, 94259 189949, 94127 190785, 93999 191189, 93775 191601, 93496 192440, 93348 193272, 93063 194083, 92471 194350, 92092 194380, 91740 194349, 90117 193952, 89801 193817, 89237 193115, 89186 192958, 89256 192555, 89484 191957, 89675 191634, 89664 191472, 89702 191349, 89583 190912, 89505 190282, 89554 189909, 89713 189637, 89620 189575, 87632 190309, 86893 190596, 85591 190918, 85143 190836, 84986 190998, 85592 191209, 85581 191841, 85098 192074, 85170 192179, 85580 192435, 85597 192858, 85236 193135, 85015 193144, 84697 192828, 84653 192836, 84474 193164, 83877 193198, 83616 192727, 83515 192771, 83276 193224, 82525 193224, 82244 192838, 81983 193215, 81591 193208, 81274 192657, 81190 192630, 80928 193206, 80609 193200, 80386 192873, 80302 192903, 80132 193181, 79931 193181, 79681 192916, 79700 192232, 80092 192008, 79824 192007, 79346 191927, 77793 191895, 77234 191589, 77086 191309, 76957 190881, 77003 190138, 76948 189467, 76737 189467, 76828 189889, 76860 190483, 76770 190792, 76675 190920, 75985 191316, 75215 191538, 74804 191564, 73892 191506, 73625 191397, 73018 191401, 72862 191444, 72257 191516, 71699 191622, 70584 191813, 70082 191923, 69033 192109, 67955 192318, 67008 192618, 66383 192727, 65985 192757, 65545 192663, 64928 192407, 64558 191651, 64479 190321, 64409 189467, 64165 189467, 64216 189856, 64216 190627, 64074 191032, 63750 191589, 63134 191814, 62864 191857, 61625 191784, 60383 191738, 59522 191739, 58711 191812, 57734 191803, 57190 191752, 56778 191519, 56707 191379, 56585 190602, 56647 189650, 56707 189171, 56766 188228, 56836 187428, 56824 186816, 56770 186095, 56723 185124, 56731 184549, 56850 183196, 56768 182840, 56638 182181, 56630 181610, 56701 181041, 56873 180311, 57258 179793, 57655 179782, 58400 179823, 59678 180095, 60282 180023, 60697 180015, 61066 180076, 61534 180092, 61534 179713, 60853 179677, 60690 179633, 59940 179727, 59353 179693, 59048 179567, 58916 179430, 58607 178683, 58490 177950, 58509 177541, 58672 176654, 58811 176403, 58877 175805, 58852 175648, 58855 174756, 58810 174492, 58748 173363, 58697 172857, 58583 171073, 58508 170507, 58359 169747, 58323 169125, 58337 168746, 58486 168310, 58808 167731, 59424 167494, 59678 167449, 60933 167526, 61534 167546, 61534 167275, 60995 167203, 60148 167060, 59645 167025, 59368 167031, 58770 166908, 58378 166699, 58168 166501, 58016 166215, 57987 166013, 58144 163971, 58184 163838, 58140 163320, 58261 162506, 58470 161557, 58552 161016, 58564 160630, 58802 159775, 59023 159533, 59714 159486, 60129 159541, 60684 159589, 60939 159566, 61534 159619, 61534 159353, 60816 159387, 60273 159387, 59712 159305, 59398 159157, 59274 159009, 59024 158554, 58903 157715, 59024 157120, 58988 156095, 59018 155910, 58930 154895, 59055 153781, 59017 153558, 58992 152791, 59022 152017, 58887 150654, 58926 149876, 59016 148670, 59097 148470, 59362 148358, 60224 148247, 61534 148282, 61534 147717, 60830 147793, 60243 147759, 59938 147631, 59826 147521, 59498 146745, 59380 145998, 59399 145588, 59562 144690, 59701 144437, 59769 143831, 59742 143674, 59745 142757, 59702 142508, 59638 141369, 59587 140857, 59456 138788, 59249 137719, 59214 137022, 59232 136688, 59375 136266, 59698 135681, 60026 135538, 60509 135397, 61534 135460, 61534 135339, 60821 135344, 60328 135230, 60046 135093, 59785 134757, 59711 134558, 59662 134107, 59737 133757, 59753 133210, 59815 132640, 59714 132329, 59655 131567, 59659 130565, 59744 129926, 59770 128548, 60078 127987, 60358 127838, 60784 127711, 61534 127765, 61534 127417, 60882 127344, 60189 126945, 59717 126492, 59686 126412, 59695 126030, 59835 125181, 59885 124488, 59877 123933, 59836 123283, 59966 121605, 60329 121151, 60923 121053, 61534 121071, 61534 120901, 61028 120842, 60450 120663, 59856 120380, 59698 120259, 59551 119800, 59435 119286, 59333 117890, 59268 117442, 59280 116916, 59339 116286, 59514 115550, 59532 115374, 59666 115223, 59676 115108, 59854 114979, 59764 114835, 59694 114330, 59639 114263, 59480 114207, 59357 113432, 59422 112581, 59276 111218, 59269 110541, 59386 109760, 59328 109367, 59405 108699, 59659 107743, 59833 107369, 60696 107111, 61534 107115, 61534 106891, 61009 106957, 60421 106921, 60119 106795, 59988 106654, 59682 105910, 59558 105162, 59580 104746, 59742 103854, 59882 103600, 59949 102995, 59922 102835, 59923 102228, 59882 101672, 59818 100531, 59769 100038, 59638 97970, 59431 96889, 59395 96252, 59413 95852, 59555 95429, 59880 94845, 60208 94700, 60678 94564, 61534 94615, 61534 94455, 60841 94560, 60024 94462, 59293 94285, 58776 93903, 58765 93506, 58807 92750, 59076 91483, 59006 90879, 58998 90463, 59059 90095, 59103 89094, 59035 88543, 59070 87947, 59188 87650, 59323 87517, 60036 87212, 60745 87091, 61155 87114, 61990 87275, 62233 87414, 62808 87480, 62959 87455, 63820 87462, 64071 87413, 65155 87351, 65897 87283, 67591 87169, 68629 86962, 69229 86926, 69594 86937, 70014 87087, 70570 87411, 70797 88027, 70842 88280, 70765 89537, 70759 89796, 70849 89600, 70969 89472, 71569 89337, 71620 87736, 71621 87050, 71597 86595, 71763 86063, 71875 86010, 72281 85959, 74150 85927, 74579 85971, 74724 85942, 75288 85962, 75774 86015, 76166 86001, 76666 86013, 77070 85953, 77967 85908)), ((97565 183305, 97783 183586, 98019 183365, 98383 183398, 98687 183854, 98762 183779, 98917 183418, 99111 183376, 99632 183344, 99840 183568, 100035 183318, 100423 183323, 100645 183614, 100749 183543, 100886 183313, 101216 183316, 101412 183511, 101561 183347, 101962 183323, 102135 183644, 102134 183878, 101898 184189, 102150 184354, 102115 185209, 101766 185374, 101759 185412, 102097 185630, 102025 186362, 101532 186586, 101478 186687, 102022 186970, 102029 187730, 101781 187942, 102064 188166, 102079 188449, 101910 188701, 101546 188667, 101205 188688, 100982 188608, 100849 188680, 100301 188659, 100065 188337, 99827 188624, 99292 188617, 99064 188253, 98985 188269, 98814 188644, 98141 188606, 97904 188183, 97849 188218, 97629 188610, 97023 188605, 96807 188236, 96812 188090, 96779 187572, 97059 187339, 96817 187134, 96820 186700, 97034 186492, 97035 186435, 96801 186228, 96826 185834, 97160 185582, 96805 185407, 96786 184618, 97216 184403, 97287 184311, 96761 184068, 96751 183577, 96933 183342, 97111 183268)), ((57963 141999, 58423 142303, 58842 142721, 58945 142922, 59033 143496, 59083 143635, 59023 143742, 58896 143787, 58445 144036, 57673 144116, 57126 144116, 56714 143978, 56568 143771, 56514 143408, 56673 142711, 57110 142098, 57350 141976)), ((186677 76038, 185935 76030, 186676 75992))) \ No newline at end of file diff --git a/stress_benchmark/resources/057.settings b/stress_benchmark/resources/057.settings new file mode 100644 index 0000000000..e69a30998b --- /dev/null +++ b/stress_benchmark/resources/057.settings @@ -0,0 +1,628 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=30.0 +machine_acceleration=500 +bridge_sparse_infill_max_density=0 +support_line_width=0.8 +bottom_skin_preshrink=0.6 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=1.7 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=180 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=270 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=1.0 +machine_shape=rectangular +speed_travel_layer_0=100.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=185 +raft_jerk=8 +support_xy_distance=2 +bridge_skin_speed_2=15.0 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.2 +bottom_skin_expand_distance=1.0 +speed_prime_tower=30.0 +speed_support=30.0 +speed_roofing=30.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=gyroid +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.8 +raft_surface_jerk=8 +print_bed_temperature=56 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +jerk_support_roof=8 +date=04-12-2023 +support_use_towers=True +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=183 +layer_0_z_overlap=0.15 +support_roof_enable=True +acceleration_wall_x_roofing=500 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.5 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.2 +support_bottom_pattern=grid +bottom_thickness=1.7 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=500 +skin_material_flow=100 +default_material_bed_temperature=60 +support_xy_distance_overhang=0.8 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=5 +wall_thickness=1.6 +top_bottom_pattern_0=zigzag +resolution=0 +support_angle=75 +retraction_min_travel=1.5 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=75 +wipe_retraction_amount=2 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.2 +machine_feeder_wheel_diameter=10.0 +infill_overlap=700 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.522 +sub_div_rad_add=0.94 +roofing_line_width=0.8 +material_flow_layer_0=100 +support_roof_pattern=grid +cool_fan_speed_min=70 +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=70 +raft_base_jerk=8 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.25 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=22.5 +speed_ironing=20.0 +gantry_height=250 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=10 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=8 +support_roof_density=30 +support_bottom_line_width=0.8 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.5 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=3.2 +material_bed_temp_prepend=False +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=2.0 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=20.0 +raft_acceleration=500 +bridge_fan_speed_3=0 +support_tree_angle_slow=50.0 +raft_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=10 +roofing_material_flow=94 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=5.333333333333333 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +speed_print_layer_0=20.0 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=70 +initial_bottom_layers=4 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=180 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=2 +minimum_roof_area=10 +bridge_wall_speed=15.0 +support_interface_density=30 +line_width=0.8 +acceleration_ironing=500 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=233.175 +speed_slowdown_layers=2 +bridge_wall_min_length=3.4 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=True +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=-0.3 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=30.0 +speed_layer_0=20.0 +infill=0 +bridge_skin_speed_3=15.0 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=12.0 +jerk_layer_0=8 +minimum_interface_area=10 +wall_0_material_flow_layer_0=100 +support_wall_count=1 +raft_base_line_spacing=3.2 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=5.333333333333333 +support_enable=True +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=70 +material_anti_ooze_retracted_position=-4 +layer_height=0.5 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.2 +jerk_print_layer_0=8 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.8 +retraction_retract_speed=70 +brim_line_count=10 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=1.6 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=8 +support_tree_tip_diameter=1.6 +bridge_skin_speed=15.0 +bridge_fan_speed=100 +support_xy_overrides_z=xy_overrides_z +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.68 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=none +min_odd_wall_line_width=0.68 +skirt_line_count=3 +support_tree_angle=75 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=False +acceleration_wall_0=500 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=183 +material_print_temp_prepend=False +infill_offset_y=0 +cool_fan_speed_max=70 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.8 +bridge_wall_coast=100 +slicing_tolerance=exclusive +infill_wipe_dist=0.0 +support_bottom_height=2.0 +machine_depth=235 +acceleration_skirt_brim=500 +skin_overlap=60 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=30.0 +z_seam_x=117.5 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=56 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=235 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=235 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=12.0 +infill_sparse_thickness=0.5 +prime_tower_brim_enable=False +ironing_monotonic=False +small_skin_width=1.6 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=500 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=2 +jerk_wall_0=8 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=1.7 +material_guid=2a3155ed-2199-44c8-8630-c6ea31f60df4 +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=8 +support_bottom_stair_step_height=0.5 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=500 +machine_max_acceleration_x=500 +wall_transition_filter_deviation=0.2 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.24 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=8 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=500 +draft_shield_dist=10 +raft_surface_acceleration=500 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=8 +retraction_hop=0.2 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=30.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_retracted_position=-50 +small_feature_max_length=43.982297150257104 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=True +min_skin_width_for_expansion=1.2246467991473532e-16 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=56 +adaptive_layer_height_variation=0.04 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.5 +support_bottom_distance=0 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=buildplate +cool_lift_head=False +raft_interface_line_width=1.6 +support_type=buildplate +support_zag_skip_count=2 +retraction_combing=infill +support_infill_angles=[45] +raft_interface_line_spacing=1.8 +draft_shield_enabled=False +material_break_preparation_temperature=183 +material_alternate_walls=False +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=60 +raft_surface_thickness=0.5 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=4 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=30.0 +infill_line_width=0.96 +wall_line_width_0=0.8 +support_extruder_nr_layer_0=0 +retraction_count_max=100 +jerk_infill=8 +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.8 +material_print_temperature=183 +acceleration_prime_tower=500 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=8 +support_brim_enable=True +support_bottom_density=30 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.8 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=500 +wall_line_width_x=0.94 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=1.2 +travel_retract_before_outer_wall=False +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=30.0 +skin_preshrink=0.6 +layer_height_0=0.2 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=10 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=120 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=8 +jerk_travel_enabled=True +jerk_wall_x=8 +machine_always_write_active_tool=False +retraction_amount=2 +machine_minimum_feedrate=0.0 +acceleration_print=500 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=70 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=500 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=sharpest_corner +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=8 +infill_offset_x=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=30.0 +min_bead_width=0.68 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=30.0 +support_offset=1.2000000000000002 +wall_overhang_speed_factor=100 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=1.6 +machine_max_feedrate_y=500 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0.14 +infill_wall_line_count=0 +speed_print=60 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=5 +raft_interface_thickness=0.75 +retraction_prime_speed=70 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=10 +raft_surface_line_width=0.8 +jerk_support_interface=8 +support_tree_bp_diameter=7.5 +support_interface_pattern=grid +xy_offset=0.14 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=500 +material_no_load_move_factor=0.940860215 +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +machine_max_feedrate_z=10 +speed=0 +coasting_enable=True +retraction_enable=True +jerk_support_bottom=8 +max_extrusion_before_wipe=10 +top_bottom_pattern=zigzag +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.8 +material_break_preparation_speed=2 +skin_line_width=0.8 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=10 +support_z_distance=0.5 +raft_base_speed=22.5 +jerk_travel_layer_0=8 +speed_support_interface=30.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.76 +material_flush_purge_speed=0.5 +acceleration_travel=500 +support_roof_height=2.0 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=213.175 +jerk_support=8 +roofing_pattern=zigzag +jerk_wall_x_roofing=8 +top_skin_preshrink=0.6 +acceleration_wall_0_roofing=500 +machine_max_feedrate_x=500 +material_final_print_temperature=183 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=70 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.5 +wall_0_material_flow_roofing=100 +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=30.0 +support_roof_wall_count=0 +skirt_gap=10.0 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=1.0 +support_infill_rate=10 +meshfix_maximum_resolution=0.25 +support_tree_min_height_to_model=3 +min_wall_line_width=0.68 +acceleration_support_infill=500 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=30 +jerk_travel=8 +retract_at_layer_change=False +support_roof_line_width=0.8 +machine_disallowed_areas=[] +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=True +skirt_brim_line_width=0.8 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.04 +acceleration_support_roof=500 +support_brim_line_count=5 +build_volume_temperature=28 +small_hole_max_size=14 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=30.0 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=500 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=500 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/057.wkt b/stress_benchmark/resources/057.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/057.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/resources/058.settings b/stress_benchmark/resources/058.settings new file mode 100644 index 0000000000..146ed80f11 --- /dev/null +++ b/stress_benchmark/resources/058.settings @@ -0,0 +1,626 @@ +adaptive_layer_height_enabled=False +meshfix_fluid_motion_angle=15 +speed_wall_0=25.0 +machine_acceleration=500 +bridge_sparse_infill_max_density=0 +support_line_width=0.4 +bottom_skin_preshrink=1.2000000000000002 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bridge_skin_material_flow_2=100 +machine_nozzle_heat_up_speed=2.0 +top_thickness=0.84 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +top_bottom_extruder_nr=-1 +machine_buildplate_type=glass +ironing_pattern=zigzag +material_standby_temperature=180 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +support_bottom_stair_step_min_slope=10.0 +machine_scale_fan_speed_zero_to_one=False +adaptive_layer_height_threshold=0.2 +machine_height=250 +support_interface_material_flow=100 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +machine_shape=rectangular +speed_travel_layer_0=100.0 +raft_surface_extruder_nr=0 +material_print_temperature_layer_0=200 +raft_jerk=8 +support_xy_distance=0.8 +bridge_skin_speed_2=12.5 +ooze_shield_angle=60 +machine_extruders_share_nozzle=False +min_feature_size=0.1 +bottom_skin_expand_distance=1.2000000000000002 +speed_prime_tower=25.0 +speed_support=25.0 +speed_roofing=25.0 +raft_fan_speed=0 +wall_transition_filter_distance=100 +magic_spiralize=False +support_skip_zag_per_mm=20 +infill_pattern=cubic +extruders_enabled_count=1 +machine_heated_bed=True +gradual_support_infill_steps=0 +wall_line_width=0.4 +raft_surface_jerk=8 +print_bed_temperature=60 +support_bottom_material_flow=100 +bridge_skin_material_flow_3=110 +command_line_settings=0 +prime_tower_base_size=8.0 +material_print_temp_wait=True +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +jerk_support_roof=8 +date=04-12-2023 +support_use_towers=True +minimum_support_area=2 +wall_x_material_flow_layer_0=100 +material_adhesion_tendency=0 +material_initial_print_temperature=200 +layer_0_z_overlap=0.15 +support_roof_enable=True +acceleration_wall_x_roofing=500 +raft_margin=15 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.12 +machine_nozzle_head_distance=3 +support_interface_skip_height=0.12 +support_bottom_pattern=grid +bottom_thickness=0.96 +cool_fan_enabled=True +ironing_flow=10.0 +support_fan_enable=False +layer_start_y=0.0 +acceleration_support_interface=500 +skin_material_flow=100 +default_material_bed_temperature=50 +support_xy_distance_overhang=0.4 +anti_overhang_mesh=False +infill_material_flow=100 +prime_tower_size=20 +machine_nozzle_id=unknown +small_feature_speed_factor_0=50 +travel_avoid_other_parts=True +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +brim_inside_margin=2.5 +speed_z_hop=5 +wall_thickness=1.2000000000000002 +top_bottom_pattern_0=lines +resolution=0 +support_angle=59 +retraction_min_travel=1.5 +prime_blob_enable=False +wipe_retraction_extra_prime_amount=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +machine_max_feedrate_e=50 +wipe_retraction_amount=6 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +retraction_hop_after_extruder_switch_height=0.2 +machine_feeder_wheel_diameter=10.0 +infill_overlap=30.0 +support_mesh_drop_down=True +small_feature_speed_factor=50 +skin_overlap_mm=0.04 +sub_div_rad_add=0.4 +roofing_line_width=0.4 +material_flow_layer_0=100 +support_roof_pattern=grid +cool_fan_speed_min=100 +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +cool_fan_speed=100 +raft_base_jerk=8 +min_infill_area=0 +meshfix_maximum_travel_resolution=0.25 +switch_extruder_retraction_speed=20 +machine_max_jerk_z=0.4 +raft_interface_speed=18.75 +speed_ironing=16.666666666666668 +gantry_height=25 +material_break_temperature=50 +machine_endstop_positive_direction_z=True +dual=0 +raft_interface_layers=1 +ooze_shield_dist=2 +support_line_distance=2.0 +infill_enable_travel_optimization=False +machine_nozzle_temp_enabled=True +machine_min_cool_heat_time_window=50.0 +jerk_skirt_brim=8 +support_roof_density=33.333 +support_bottom_line_width=0.4 +initial_layer_line_width_factor=100.0 +support_skip_some_zags=False +meshfix_maximum_deviation=0.025 +support_infill_sparse_thickness=0.12 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +machine_steps_per_mm_z=50 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +wipe_move_distance=20 +ironing_enabled=False +infill_support_angle=40 +support_interface_height=0.96 +wall_extruder_nr=-1 +mold_enabled=False +magic_fuzzy_skin_enabled=False +skirt_brim_speed=20.0 +raft_acceleration=500 +bridge_fan_speed_3=0 +support_tree_angle_slow=39.333333333333336 +raft_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_max_jerk_xy=10 +roofing_material_flow=100 +acceleration_infill=500 +machine_extruder_count=1 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +speed_print_layer_0=20.0 +alternate_carve_order=True +support_infill_extruder_nr=0 +wipe_retraction_prime_speed=45 +initial_bottom_layers=8 +material_brand=empty_brand +skin_monotonic=False +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +roofing_layer_count=0 +minimum_roof_area=10 +bridge_wall_speed=12.5 +support_interface_density=33.333 +line_width=0.4 +acceleration_ironing=500 +magic_fuzzy_skin_point_dist=0.8 +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +infill_randomize_start_location=False +wall_x_material_flow=100 +prime_tower_position_x=208.175 +speed_slowdown_layers=2 +bridge_wall_min_length=2.2 +wipe_pause=0 +lightning_infill_overhang_angle=40 +support_bottom_enable=True +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +machine_max_acceleration_z=100 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +speed_wall_x_roofing=25.0 +speed_layer_0=20.0 +infill=0 +bridge_skin_speed_3=12.5 +machine_steps_per_mm_x=50 +lightning_infill_support_angle=40 +infill_line_distance=4.0 +jerk_layer_0=8 +minimum_interface_area=10 +wall_0_material_flow_layer_0=100 +support_wall_count=0 +raft_base_line_spacing=1.6 +support_supported_skin_fan_speed=100 +machine_firmware_retract=False +support_mesh=False +support=0 +machine_heated_build_volume=False +extruder_prime_pos_z=0 +support_bottom_line_distance=2.4000240002400024 +support_enable=False +adhesion_extruder_nr=-1 +print_temperature=210 +raft_remove_inside_corners=False +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.12 +material_shrinkage_percentage_xy=100.0 +wipe_hop_amount=0.2 +jerk_print_layer_0=8 +lightning_infill_prune_angle=40 +material_diameter=1.75 +bridge_enable_more_layers=True +raft_surface_line_spacing=0.4 +retraction_retract_speed=45 +brim_line_count=20 +raft_interface_extruder_nr=0 +interlocking_orientation=22.5 +interlocking_beam_width=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +jerk_ironing=8 +support_tree_tip_diameter=0.8 +bridge_skin_speed=12.5 +bridge_fan_speed=100 +support_xy_overrides_z=xy_overrides_z +machine_show_variants=False +meshfix_fluid_motion_enabled=True +blackmagic=0 +min_even_wall_line_width=0.34 +support_tree_max_diameter=25 +infill_mesh=False +adhesion_type=skirt +min_odd_wall_line_width=0.34 +skirt_line_count=3 +support_tree_angle=59 +support_interface_priority=interface_area_overwrite_support_area +fill_outline_gaps=False +acceleration_wall_0=500 +day=Mon +support_bottom_stair_step_width=5.0 +wipe_hop_enable=False +cool_min_temperature=200 +material_print_temp_prepend=True +infill_offset_y=0 +cool_fan_speed_max=100 +magic_mesh_surface_mode=normal +zig_zaggify_infill=False +support_interface_line_width=0.4 +bridge_wall_coast=100 +slicing_tolerance=middle +infill_wipe_dist=0.0 +support_bottom_height=0.96 +machine_depth=220 +acceleration_skirt_brim=500 +skin_overlap=10.0 +material_break_speed=25 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +mesh_position_z=0 +support_bottom_wall_count=0 +speed_support_roof=25.0 +z_seam_x=110.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +material_bed_temperature=60 +coasting_volume=0.064 +interlocking_boundary_avoidance=2 +raft_smoothing=5 +machine_width=220 +raft_airgap=0.3 +mold_angle=40 +raft_base_extruder_nr=0 +z_seam_y=220 +wall_overhang_angle=90 +machine_steps_per_mm_e=1600 +gradual_support_infill_step_height=1 +cross_infill_pocket_size=4.0 +infill_sparse_thickness=0.12 +prime_tower_brim_enable=False +ironing_monotonic=False +small_skin_width=0.8 +support_join_distance=2.0 +material_type=empty +initial_extruder_nr=0 +connect_infill_polygons=False +acceleration_print_layer_0=500 +center_object=False +skirt_height=3 +cool_fan_speed_0=0 +wall_line_count=3 +jerk_wall_0=8 +material_surface_energy=100 +material=0 +material_crystallinity=False +top_bottom_thickness=0.84 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +bridge_skin_density=100 +infill_sparse_density=30 +support_bottom_stair_step_height=0 +machine_steps_per_mm_y=50 +acceleration_travel_layer_0=500 +machine_max_acceleration_x=500 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +mold_width=5 +retraction_hop_only_when_collides=False +raft_base_thickness=0.144 +shell=0 +support_conical_min_width=5.0 +conical_overhang_angle=50 +draft_shield_height_limitation=full +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +smooth_spiralized_contours=True +jerk_topbottom=8 +brim_gap=0 +acceleration_enabled=False +wall_material_flow=100 +acceleration_wall=500 +draft_shield_dist=10 +raft_surface_acceleration=500 +switch_extruder_retraction_speeds=20 +support_pattern=zigzag +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +speed_equalize_flow_width_factor=100.0 +material_flush_purge_length=60 +support_conical_angle=30 +jerk_prime_tower=8 +retraction_hop=0.2 +support_meshes_present=False +material_anti_ooze_retraction_speed=5 +raft_base_wall_count=1 +prime_tower_base_curve_magnitude=4 +support_roof_material_flow=100 +infill_mesh_order=0 +raft_surface_fan_speed=0 +material_id=empty_material +raft_surface_layers=2 +speed_support_bottom=25.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +jerk_wall_0_roofing=8 +material_break_retracted_position=-50 +small_feature_max_length=0.0 +support_roof_extruder_nr=0 +interlocking_enable=False +interlocking_beam_layer_count=2 +travel_avoid_supports=True +min_skin_width_for_expansion=5.143516556418883e-17 +experimental=0 +skin_material_flow_layer_0=100 +material_bed_temperature_layer_0=60 +adaptive_layer_height_variation=0.04 +meshfix_union_all=True +travel=0 +bridge_skin_density_3=80 +support_connect_zigzags=True +support_top_distance=0.24 +support_bottom_distance=0.24 +wall_x_extruder_nr=-1 +support_bottom_extruder_nr=0 +support_tree_rest_preference=graceful +cool_lift_head=False +raft_interface_line_width=0.8 +support_type=everywhere +support_zag_skip_count=10 +retraction_combing=all +raft_interface_line_spacing=1.0 +draft_shield_enabled=False +material_break_preparation_temperature=200 +material_alternate_walls=False +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=50.0 +raft_surface_thickness=0.12 +machine_center_is_zero=False +roofing_monotonic=True +bottom_layers=8 +alternate_extra_perimeter=False +support_bottom_offset=0.0 +speed_wall_x=25.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +support_extruder_nr_layer_0=0 +retraction_count_max=100 +jerk_infill=8 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +meshfix_fluid_motion_small_distance=0.01 +prime_tower_line_width=0.4 +material_print_temperature=200 +acceleration_prime_tower=500 +travel_avoid_distance=0.625 +cool_min_speed=10 +wall_0_material_flow=100 +extruder_prime_pos_y=0 +jerk_print=8 +support_brim_enable=True +support_bottom_density=33.333 +brim_width=8.0 +ironing_only_highest_layer=False +wall_transition_length=0.4 +wall_distribution_count=1 +material_shrinkage_percentage=100.0 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +raft_base_acceleration=500 +wall_line_width_x=0.4 +meshfix_union_all_remove_holes=False +cool_fan_full_at_height=0.36 +travel_retract_before_outer_wall=True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +bridge_settings_enabled=False +jerk_enabled=False +speed_wall_0_roofing=25.0 +skin_preshrink=1.2000000000000002 +layer_height_0=0.12 +z_seam_position=back +support_interface_offset=0.0 +cool_min_layer_time=10 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +speed_travel=150.0 +group_outer_walls=True +material_is_support_material=False +material_flow=100 +jerk_roofing=8 +jerk_travel_enabled=True +jerk_wall_x=8 +machine_always_write_active_tool=False +retraction_amount=6 +machine_minimum_feedrate=0.0 +acceleration_print=500 +retraction_hop_after_extruder_switch=True +mesh_position_y=0 +machine_heat_zone_length=16 +switch_extruder_extra_prime_amount=0 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +material_end_of_filament_purge_speed=0.5 +extruder_prime_pos_x=0 +acceleration_topbottom=500 +material_maximum_park_duration=300 +wipe_repeat_count=5 +infill_extruder_nr=-1 +skin_no_small_gaps_heuristic=False +z_seam_type=back +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +minimum_polygon_circumference=1.0 +machine_extruders_share_heater=False +jerk_support_infill=8 +infill_offset_x=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +raft_surface_speed=25.0 +min_bead_width=0.34 +meshfix_extensive_stitching=False +mesh_position_x=0 +speed_wall=25.0 +support_offset=0 +wall_overhang_speed_factor=100 +top_layers=7 +meshfix_fluid_motion_shift_distance=0.1 +machine_max_jerk_e=5 +raft_base_line_width=0.8 +machine_max_feedrate_y=500 +meshfix=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +raft_base_fan_speed=0 +magic_fuzzy_skin_point_density=1.25 +hole_xy_offset=0 +infill_wall_line_count=0 +speed_print=50.0 +machine_endstop_positive_direction_x=False +prime_tower_enable=False +wipe_hop_speed=5 +raft_interface_thickness=0.18 +retraction_prime_speed=45 +acceleration_travel_enabled=True +brim_outside_only=True +relative_extrusion=False +magic_fuzzy_skin_outside_only=False +minimum_bottom_area=10 +raft_surface_line_width=0.4 +jerk_support_interface=8 +support_tree_bp_diameter=7.5 +support_interface_pattern=grid +xy_offset=0 +support_roof_offset=0.0 +print_sequence=all_at_once +material_extrusion_cool_down_speed=0.7 +gradual_infill_step_height=1.5 +cutting_mesh=False +acceleration_layer_0=500 +material_no_load_move_factor=0.940860215 +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +machine_max_feedrate_z=10 +speed=0 +coasting_enable=False +retraction_enable=True +jerk_support_bottom=8 +max_extrusion_before_wipe=10 +top_bottom_pattern=lines +material_shrinkage_percentage_z=100.0 +top_bottom=0 +infill_multiplier=1 +machine_nozzle_size=0.4 +material_break_preparation_speed=2 +skin_line_width=0.4 +skirt_brim_extruder_nr=-1 +multiple_mesh_overlap=0.15 +machine_nozzle_expansion_angle=45 +gradual_infill_steps=0 +support_brim_width=4 +support_tree_branch_diameter=5 +support_initial_layer_line_distance=2.0 +support_z_distance=0.24 +raft_base_speed=18.75 +jerk_travel_layer_0=8 +speed_support_interface=25.0 +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +clean_between_layers=False +ironing_inset=0.38 +material_flush_purge_speed=0.5 +acceleration_travel=500 +support_roof_height=0.96 +wall_0_inset=0 +interlocking_depth=2 +prime_tower_position_y=188.175 +jerk_support=8 +roofing_pattern=lines +jerk_wall_x_roofing=8 +top_skin_preshrink=1.2000000000000002 +acceleration_wall_0_roofing=500 +machine_max_feedrate_x=500 +material_final_print_temperature=200 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=45 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.12 +wall_0_material_flow_roofing=100 +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +speed_topbottom=25.0 +support_roof_wall_count=0 +skirt_gap=10.0 +support_extruder_nr=0 +machine_endstop_positive_direction_y=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +skin_edge_support_thickness=0 +retraction_extra_prime_amount=0 +expand_skins_expand_distance=1.2000000000000002 +support_infill_rate=20 +meshfix_maximum_resolution=0.25 +support_tree_min_height_to_model=3 +min_wall_line_width=0.34 +acceleration_support_infill=500 +material_break_preparation_retracted_position=-16 +support_interface_wall_count=0 +support_tree_top_rate=30 +jerk_travel=8 +retract_at_layer_change=False +support_roof_line_width=0.4 +coasting_min_volume=0.8 +wall_transition_angle=10 +support_tower_diameter=3.0 +carve_multiple_volumes=False +support_interface_enable=True +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +draft_shield_height=10 +adaptive_layer_height_variation_step=0.04 +acceleration_support_roof=500 +support_brim_line_count=10 +build_volume_temperature=28 +small_hole_max_size=0 +connect_skin_polygons=False +flow_rate_max_extrusion_offset=0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +speed_support_infill=25.0 +wall_0_extruder_nr=-1 +retraction_hop_enabled=False +prime_tower_wipe_enabled=True +acceleration_support_bottom=500 +bridge_skin_density_2=75 +support_tower_maximum_supported_diameter=3.0 +acceleration_support=500 +layer_start_x=0.0 +material_name=empty diff --git a/stress_benchmark/resources/058.wkt b/stress_benchmark/resources/058.wkt new file mode 100644 index 0000000000..a98e540d04 --- /dev/null +++ b/stress_benchmark/resources/058.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((91317 121314, 90263 123129, 89646 123124, 89562 123156, 89223 123187, 89257 123154, 88871 123236, 88861 123093, 87422 123266, 87172 123070, 86120 123132, 85755 122947, 85416 122823, 85100 122761, 84807 122761, 84542 122822, 84307 122944, 84103 123127, 83190 123076, 82531 123090, 82061 123117, 79799 123129, 78743 121312))) \ No newline at end of file diff --git a/stress_benchmark/resources/059.settings b/stress_benchmark/resources/059.settings new file mode 100644 index 0000000000..878cc7f8b5 --- /dev/null +++ b/stress_benchmark/resources/059.settings @@ -0,0 +1,628 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=10 +retraction_combing=noskin +material_bed_temperature=60 +ironing_inset=0.38 +speed_support_roof=30.0 +support_bottom_wall_count=0 +machine_max_feedrate_z=10 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=15.0 +ooze_shield_angle=60 +expand_skins_expand_distance=0.8 +support_infill_rate=20 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=10 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=xy_overrides_z +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=8 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=500 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=8 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=True +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=4.898587196589413e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=False +bridge_settings_enabled=False +material_final_print_temperature=200 +machine_max_feedrate_x=500 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=30.0 +wall_0_material_flow_roofing=100 +speed_travel=120.0 +machine_max_acceleration_z=100 +layer_height_0=0.2 +skin_preshrink=0.8 +machine_depth=220 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=0.8 +skirt_line_count=3 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.2 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.8 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=8 +retraction_enable=True +jerk_support_bottom=8 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +infill_randomize_start_location=False +jerk_wall_x=8 +cool_min_layer_time=10 +speed_layer_0=25 +speed_wall_x_roofing=30.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.24 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=500 +material_print_temperature=200 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=2000 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=110.0 +support_interface_material_flow=100 +support_enable=False +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=2.4000240002400024 +initial_layer_line_width_factor=125.0 +conical_overhang_angle=50 +acceleration_support_infill=500 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=4 +wipe_retraction_retract_speed=40 +material_anti_ooze_retracted_position=-4 +layer_height=0.2 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30.0 +support_bottom_distance=0.2 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=8 +minimum_interface_area=10 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +cool_fan_full_at_height=0.6000000000000001 +meshfix_union_all_remove_holes=False +raft_interface_speed=22.5 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=500 +layer_start_x=0.0 +support_infill_sparse_thickness=0.2 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=8 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=30.0 +speed_support_infill=30.0 +support_offset=0.0 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=10.0 +material_break_speed=25 +machine_width=220 +raft_smoothing=5 +material_break_preparation_temperature=200 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=30.0 +wall_x_material_flow=100 +prime_tower_position_x=211.0 +acceleration_layer_0=500 +retraction_amount=0.8 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=191.0 +jerk_support=8 +jerk_skirt_brim=8 +support_roof_density=33.333 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=10 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=grid +xy_offset=0 +prime_tower_brim_enable=True +support_xy_distance=0.8 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=40 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=0.8 +infill_wipe_dist=0.0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=0 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=5 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +raft_margin=15 +speed_print_layer_0=25 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=2.0 +zig_zaggify_infill=False +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=8 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=2.0 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=220 +acceleration_skirt_brim=500 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=60 +raft_surface_jerk=8 +machine_max_feedrate_y=500 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +support_interface_height=0.8 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.2 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +support_z_distance=0.2 +support_bottom_enable=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=270 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +coasting_enable=False +retraction_hop=0.2 +jerk_prime_tower=8 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=4 +wipe_retraction_prime_speed=40 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=30.0 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.25 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=False +adhesion_extruder_nr=-1 +skirt_gap=10.0 +quality_changes_name=empty +bridge_fan_speed=100 +bridge_skin_speed=15.0 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=8 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=0 +raft_base_line_spacing=1.6 +jerk_wall_0=8 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=2 +material_print_temperature_layer_0=200 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_max_feedrate_e=50 +wipe_retraction_amount=0.8 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=30.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=500 +brim_gap=0 +jerk_topbottom=8 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=2000 +support_roof_height=0.8 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=33.333 +print_temperature=210 +acceleration_wall=500 +wall_material_flow=100 +raft_acceleration=500 +raft_interface_thickness=0.30000000000000004 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=0.8 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=8 +raft_surface_speed=30.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.04 +small_feature_speed_factor=50 +wipe_hop_enable=False +support_xy_distance_overhang=0.4 +default_material_bed_temperature=60 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.12 +support_tree_branch_diameter=5 +support_brim_width=4 +gradual_infill_steps=0 +top_skin_preshrink=0.8 +jerk_wall_x_roofing=8 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=500 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=200 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=200 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +speed_travel_layer_0=35 +speed_ironing=20.0 +gantry_height=25 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=1.5 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=1 +raft_jerk=8 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.8 +skirt_brim_extruder_nr=-1 +support_brim_line_count=8 +build_volume_temperature=28 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=60.0 +raft_surface_thickness=0.2 +retraction_hop_after_extruder_switch_height=0.2 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +support_top_distance=0.2 +infill=0 +bridge_skin_speed_3=15.0 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60 +machine_acceleration=500 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=16 +retraction_retract_speed=40 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=40 +line_width=0.4 +acceleration_ironing=500 +bridge_wall_speed=15.0 +support_interface_density=33.333 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=10 +machine_extruder_count=1 +acceleration_infill=500 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.04 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=8 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=brim +speed_z_hop=5 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=24.0 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=500 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=500 +wall_line_width_x=0.4 +acceleration_support_interface=500 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=1.5 +speed_wall_0=30.0 +meshfix_fluid_motion_angle=15 +speed_support_bottom=30.0 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=45 +top_bottom_pattern_0=lines +wall_thickness=0.8 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=500 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=60.0 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=30.0 +raft_speed=30.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +small_skin_width=0.8 +speed_roofing=30.0 +speed_prime_tower=30.0 +speed_support=30.0 +small_hole_max_size=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=24.0 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.25 +min_bead_width=0.34 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=8 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=22.5 +jerk_travel_layer_0=8 +bridge_skin_material_flow_3=110 +wipe_hop_speed=5 +prime_tower_enable=False +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_wall_0_roofing=500 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=45 +support_tree_bp_diameter=7.5 +skirt_brim_speed=25 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=100 +jerk_infill=8 +infill_pattern=cubic +adaptive_layer_height_variation_step=0.04 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=40 +extruder_prime_pos_y=0 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/059.wkt b/stress_benchmark/resources/059.wkt new file mode 100644 index 0000000000..c5700df863 --- /dev/null +++ b/stress_benchmark/resources/059.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((84002 36515, 83870 36674, 84000 36783, 83990 38101, 83956 38164, 82287 38370, 78936 38594, 76367 38680, 74287 38697, 71540 38700, 67910 38681, 64513 38625, 62501 38703, 62637 38729, 62389 38851, 64083 38916, 64432 38948, 68107 38937, 69081 38891, 74645 38882, 77180 38945, 79276 38930, 81273 38800, 83408 38611, 83518 38587, 83834 38569, 84071 38598, 83995 39612, 80864 39809, 80928 39827, 80879 39934, 83822 40000, 84029 40044, 84110 40294, 84107 40462, 83799 40587, 79357 40554, 59468 40547, 59459 41106, 62742 41115, 77106 41122, 82193 41084, 100117 41126, 111401 41123, 111562 41820, 111240 41972, 109670 41959, 108712 41941, 107106 41961, 106395 42045, 107192 42138, 109526 42169, 110763 42151, 111388 42192, 111500 42282, 111463 43882, 111617 44000, 111263 43986, 106901 43550, 106654 43505, 106169 43392, 105650 43232, 104125 43182, 101526 43363, 101480 43460, 99825 43707, 97130 44045, 95146 44269, 92962 44346, 88955 44378, 88388 44374, 87835 44386, 85325 44476, 80723 44493, 79521 44508, 74572 44504, 73216 44489, 70920 44434, 69370 44366, 68816 44313, 66917 44444, 66682 44453, 66151 44645, 65924 44648, 65521 44747, 65700 44802, 65510 44865, 67886 44772, 68632 44709, 71448 44648, 78276 44612, 77886 44584, 79960 44578, 80946 44611, 85577 44655, 86532 44651, 88093 44696, 92467 44673, 92754 44665, 95250 44708, 98126 44614, 101310 44602, 101885 44575, 101513 44521, 98824 44500, 96363 44353, 96318 44268, 99786 43831, 102566 43550, 104993 43459, 106432 43552, 111195 44075, 111633 44139, 111544 44201, 111416 44426, 111205 44591, 111492 44837, 111417 45202, 111462 46486, 111012 46569, 102459 46585, 62084 46593, 59414 46583, 59413 47106, 66021 47095, 74553 47101, 73384 48341, 71963 48250, 70106 48187, 67701 48137, 62362 48140, 60033 48127, 59411 48165, 59409 48353, 59870 48382, 65641 48405, 66989 48347, 68767 48363, 70063 48354, 72516 48449, 73232 48502, 71364 50481, 68716 50472, 67397 50504, 63029 50519, 61601 50579, 61135 50660, 62321 50751, 68719 50781, 69279 50792, 71073 50790, 69382 52577, 59399 52571, 59392 53096, 61902 53083, 67688 53091, 68177 53303, 68518 53421, 68885 53393, 69105 53329, 69105 53858, 64849 53832, 59270 53857, 59269 53868, 62043 53909, 63485 53893, 64137 53897, 69105 53865, 69105 55359, 68659 55408, 66656 55365, 65716 55390, 64768 55469, 64495 55529, 65113 55599, 66743 55637, 67064 55625, 69105 55478, 69105 57214, 60970 57222, 59409 57184, 59332 57378, 61035 57336, 69105 57348, 69105 58586, 59323 58600, 59340 59089, 69105 59091, 69105 64525, 68695 64518, 59113 64556, 59113 63270, 59616 63250, 59113 63252, 59113 61679, 61680 61681, 65921 61626, 62894 61570, 59113 61571, 59040 61678, 59055 62113, 59023 62702, 58979 63079, 58978 63576, 58653 63984, 58650 64748, 58539 65085, 58471 65701, 58480 66565, 58014 67192, 57968 67927, 57954 68516, 58585 68879, 58871 68995, 58905 69387, 59067 69569, 59194 71078, 69105 71080, 69105 71542, 64022 71551, 59934 71481, 59504 71284, 59405 71286, 59504 71292, 59885 71545, 65791 71665, 69105 71672, 69105 73461, 67975 73310, 66908 73239, 66541 73278, 66938 73347, 67749 73448, 69105 73591, 69105 73949, 69054 74659, 69097 74795, 69072 75094, 68669 75051, 68232 75164, 67862 75244, 67583 75547, 67423 75876, 67478 75970, 67074 76282, 67042 76388, 66795 76495, 66180 76573, 65963 76544, 61840 76546, 61800 77099, 69105 77098, 69105 82559, 62256 82551, 62263 83081, 69105 83070, 69105 84786, 62231 84775, 62243 84906, 69105 84884, 69105 86551, 68472 86546, 67829 86527, 64216 86480, 62262 86519, 62262 86660, 63186 86666, 66592 86741, 69105 86770, 69105 88553, 62260 88549, 62259 89073, 69105 89087, 69105 90270, 67921 90267, 63819 90154, 62251 90089, 62124 90449, 61771 90174, 61482 90282, 61437 90543, 62245 90489, 64823 90456, 69105 90442, 69105 93051, 67943 93171, 66058 93192, 65171 93232, 61802 93249, 61875 93381, 64402 93378, 66857 93402, 67576 93465, 67820 93499, 68791 93445, 69105 93409, 69105 94521, 64740 94543, 62281 94546, 62281 95101, 69105 95099, 69105 96639, 68813 96630, 68074 96579, 63750 96529, 62279 96466, 62279 96686, 62621 96762, 63717 96820, 64784 96815, 67321 96826, 69105 96759, 69105 97424, 66616 97372, 65560 97423, 67856 97531, 69105 97607, 69105 98687, 67788 98678, 64510 98623, 62500 98703, 62636 98730, 62393 98850, 64083 98914, 64429 98946, 68001 98936, 69105 98885, 69105 100549, 62055 100547, 61996 100703, 62016 101115, 69105 101119, 69105 102022, 68548 102017, 68149 102049, 69105 102081, 69105 104352, 68691 104311, 66435 104443, 66101 104452, 65458 104647, 65187 104648, 64693 104749, 64915 104803, 64686 104864, 67634 104773, 68421 104710, 69105 104691, 69105 106591, 62052 106591, 62021 107096, 69407 107103, 70541 108339, 69041 108248, 67188 108187, 64553 108138, 62047 108140, 62065 108403, 62580 108406, 64060 108347, 65981 108361, 67423 108353, 69913 108449, 70690 108502, 72501 110479, 69596 110472, 68105 110505, 62595 110518, 62252 110529, 62252 110752, 70246 110783, 70929 110794, 72781 110790, 74419 112578, 62256 112574, 62260 113085, 67473 113091, 68094 113303, 68553 113422, 69018 113395, 69552 113235, 70043 113199, 70359 113210, 70520 113086, 74383 113086, 78440 113130, 80415 113120, 85895 113065, 109057 113122, 111516 113165, 111617 114378, 111246 114633, 98580 114589, 97684 114618, 93654 114818, 92306 114929, 89190 115153, 88363 115254, 85510 115263, 85696 115331, 88462 115279, 91830 115086, 94697 114905, 97936 114674, 111239 114643, 111584 114812, 111607 115453, 111604 115855, 111578 116375, 111460 116504, 111557 116715, 111575 118330, 111413 118513, 111174 118580, 95388 118596, 93255 118528, 92938 118563, 92946 118600, 76809 118581, 62279 118593, 62279 119085, 66370 119084, 75934 119109, 79546 119063, 83780 119109, 83988 119232, 84012 119407, 83792 119551, 83127 119574, 79721 119647, 78166 119728, 77903 119765, 77242 119830, 77673 119897, 78926 119903, 83788 119634, 83994 119802, 83972 121045, 84022 121532, 83766 121705, 82810 121694, 80127 121739, 79774 121824, 80965 121862, 83712 121878, 83956 121996, 83607 122295, 83625 122797, 83597 122895, 83507 123431, 83774 123526, 83750 123685, 83991 123971, 84008 124360, 83934 124479, 83732 124547, 71064 124556, 68907 124517, 62286 124540, 62282 124882, 62577 124887, 62755 124950, 63106 124875, 63377 125039, 63545 124889, 65096 124899, 65265 125025, 65161 125377, 65213 125673, 65506 125758, 65604 125708, 65626 125100, 65684 124987, 65741 125002, 66041 124875, 66304 124874, 66370 124954, 66392 125438, 66541 125205, 66572 124952, 66633 124869, 67928 124873, 69205 124931, 69513 125093, 70510 125093, 70514 124958, 71413 124882, 71571 124952, 71566 125094, 71871 125094, 71872 125068, 72020 125094, 72816 125093, 73014 124979, 73398 124905, 76771 124872, 79039 124875, 79060 125096, 79313 125083, 79938 124984, 80152 124988, 80190 124934, 81361 124931, 81519 124965, 81550 124916, 81926 124911, 82145 124994, 82179 124963, 82365 125095, 111454 125102, 111660 125250, 111699 125400, 111455 125668, 111351 125675, 111455 125680, 111718 125879, 111677 126386, 111554 126757, 111258 126784, 110703 126853, 108768 126850, 106450 126929, 110532 127006, 110902 127071, 111525 127107, 111606 127290, 111398 127418, 110650 127638, 110534 127708, 110268 127805, 109950 127858, 109436 127923, 109173 127889, 108764 127910, 108487 128061, 108501 128280, 108304 128375, 108036 128398, 108248 128448, 108866 128505, 109730 128497, 110199 128590, 110372 128709, 111091 128756, 111680 128770, 112043 128499, 112166 128360, 112481 128352, 112487 127566, 112519 127504, 114089 127307, 114504 127272, 116621 127135, 116787 126764, 115223 126866, 113067 127056, 112958 127081, 112642 127099, 112405 127070, 112481 126057, 115610 125860, 115548 125842, 115597 125734, 112654 125668, 112447 125623, 112366 125374, 112369 125206, 112675 125083, 117485 125114, 117770 125099, 117940 125003, 118160 124982, 118705 125035, 118915 124824, 120513 124944, 120682 125115, 124106 125116, 124132 125066, 126672 125087, 126662 125119, 136882 125123, 136878 125100, 137173 125058, 137387 125123, 138822 125121, 139460 125054, 139523 125124, 146725 125117, 146818 125061, 148375 125061, 148420 125114, 148981 125113, 149011 125072, 151019 125085, 151191 125108, 152449 125104, 152622 125060, 154093 125072, 154084 125101, 154161 125103, 154160 124894, 159221 124887, 159564 124950, 160235 124875, 160769 125044, 161075 124889, 164082 124899, 164379 125028, 164353 125106, 165081 125106, 165170 124987, 165279 125002, 165855 124875, 166358 124874, 166484 124954, 166500 125104, 166837 125105, 166873 124952, 166966 124875, 169468 124873, 171913 124931, 172514 125098, 173832 125098, 174305 125381, 174395 125802, 174551 125741, 174411 125116, 174421 124958, 176146 124882, 176449 124952, 176438 125064, 178929 125063, 179211 124979, 179945 124905, 187160 124872, 192014 124875, 192024 125096, 192237 125096, 192237 184077, 144094 184077, 144089 183978, 143597 183967, 143595 184077, 84967 184077, 84925 183841, 85236 183698, 87764 183728, 89370 183708, 90081 183624, 89284 183532, 86950 183499, 85713 183518, 85089 183478, 84978 183388, 85013 181785, 84858 181667, 85212 181680, 89575 182118, 89822 182164, 90307 182276, 90826 182438, 92351 182486, 94952 182307, 94997 182208, 96652 181960, 99346 181625, 101330 181401, 103514 181322, 107521 181288, 108088 181293, 111154 181194, 116132 181172, 116134 181080, 115540 181059, 110899 181015, 109944 181017, 108383 180970, 103722 181003, 101226 180961, 98350 181054, 95166 181067, 94591 181095, 94963 181149, 97652 181170, 100113 181316, 100158 181402, 96690 181836, 93910 182116, 91483 182207, 90044 182116, 85281 181591, 84841 181529, 84930 181469, 85060 181240, 85271 181078, 84984 180832, 85059 180467, 85015 179181, 85464 179101, 94016 179084, 116232 179079, 116232 178583, 104400 178598, 102267 178526, 101950 178562, 101958 178598, 83709 178582, 83705 179101, 83758 179102, 83959 179353, 84032 180592, 83898 180732, 83897 180891, 84046 180975, 83990 181811, 83801 181887, 83600 181883, 83424 182115, 83803 182108, 84005 182176, 84003 182427, 84047 182787, 83837 182990, 83967 183139, 84006 184077, 52457 184077, 51410 184112, 51165 184037, 51135 184159, 50135 184106, 49715 184059, 49376 184166, 49126 184130, 48821 184072, 48410 184032, 48005 184022, 47844 184150, 47717 184177, 47284 184149, 47062 184231, 46983 184210, 46675 184230, 46568 184186, 46421 183664, 46412 183517, 46127 183051, 46239 182724, 46240 166827, 46346 166844, 46444 166290, 46478 165953, 46491 165486, 46319 165268, 46352 164778, 46305 164645, 46218 164560, 46139 164175, 46244 163941, 47004 163900, 47310 163710, 47492 163702, 47794 163809, 47954 163815, 47948 162974, 14721 162990, 14257 162935, 14197 161777, 14314 161698, 14998 161745, 15471 161743, 16818 161765, 18231 161737, 22531 161690, 24039 161689, 24687 161742, 26116 161670, 27712 161482, 29604 161139, 31068 160839, 33422 160598, 47944 160655, 47944 160592, 43563 160502, 40976 160470, 37111 160493, 33491 160586, 33763 160517, 32250 160521, 31409 160575, 30776 160672, 29422 160840, 28798 160954, 25886 161329, 24657 161421, 24147 161495, 19954 161512, 18123 161484, 15956 161488, 14369 161470, 14276 161342, 14195 158762, 14357 158699, 15586 158768, 16986 158800, 22607 158737, 27544 158927, 30347 159080, 31910 159262, 34420 159418, 34916 159438, 38248 159461, 39624 159347, 40314 159311, 44981 159230, 46706 159165, 45010 159125, 38018 159162, 34839 159085, 33556 158992, 31331 158981, 28376 158837, 20392 158568, 16515 158550, 15834 158524, 14407 158498, 14286 158326, 14356 157533, 21940 157501, 47958 157504, 47941 157203, 48069 156736, 26202 156725, 27363 155564, 28103 155551, 27387 155541, 28308 154620, 30348 154651, 30875 154619, 31062 154578, 29687 154555, 28347 154581, 31694 151234, 48047 151238, 48011 150955, 31191 150954, 31191 147771, 31543 147745, 33870 147650, 41024 147635, 42153 147625, 39430 147525, 32674 147497, 31191 147539, 31191 146364, 32766 146256, 33003 146255, 34007 146185, 34421 146011, 34183 145694, 34113 145490, 34153 145444, 39619 145446, 42886 145486, 47946 145481, 47956 144963, 44954 144978, 31191 144985, 31191 143038, 32887 143044, 35929 143009, 36306 142894, 34489 142853, 31191 142841, 31191 142033, 34366 142053, 36911 141979, 37365 141983, 41945 141925, 42732 141903, 48210 141839, 48210 141822, 48734 141640, 48757 141597, 46125 141545, 42483 141546, 39886 141614, 38845 141658, 35155 141754, 32938 141760, 31191 141734, 31191 139493, 47984 139492, 47965 138960, 31191 138961, 31191 136811, 33389 136585, 48173 136640, 48180 136578, 44134 136488, 41621 136456, 37404 136479, 33491 136572, 33763 136503, 32250 136507, 31191 136576, 31191 135164, 31909 135248, 34420 135404, 34930 135424, 38483 135447, 39880 135333, 40569 135297, 45064 135216, 46701 135157, 46463 135142, 45222 135111, 38205 135148, 34839 135071, 33556 134978, 31191 134961, 31191 133488, 47962 133490, 47960 132959, 37902 132985, 31191 132983, 31191 131677, 37951 131859, 41421 131919, 47957 131933, 47955 131687, 37134 131749, 31191 131556, 31191 129376, 32859 129154, 34088 129067, 34599 128993, 41715 128975, 45033 129003, 47944 128998, 47942 128720, 45512 128747, 37378 128796, 34707 128797, 34059 128742, 32629 128816, 31191 128984, 31191 127507, 47937 127497, 47935 126984, 31191 126977, 31191 123628, 32161 123609, 31191 123592, 31191 121484, 47932 121492, 47933 121003, 39606 120974, 34043 120973, 33573 120864, 33289 120860, 32643 120910, 31191 120899, 31191 118794, 31946 118859, 34169 119138, 36374 119212, 36664 119242, 37528 119257, 37795 119228, 37758 119190, 38015 119118, 35122 118979, 32366 118791, 31482 118718, 31191 118704, 31191 115485, 31603 115492, 32325 115521, 33582 115539, 35015 115655, 36706 115651, 37784 115613, 38123 115659, 41105 115664, 42845 115612, 43766 115555, 44869 115644, 45502 115648, 46435 115435, 47942 115466, 47942 114962, 31191 114981, 31191 113519, 34314 113532, 35148 113615, 34903 113497, 35351 113431, 33974 113234, 31191 113223, 31191 112632, 32475 112552, 32391 112543, 47948 112548, 47949 112470, 31883 112433, 31191 112438, 31191 111613, 36305 111597, 42818 111603, 46429 111632, 47949 111666, 47949 111433, 45405 111386, 42272 111416, 34247 111456, 31191 111444, 31191 109486, 47955 109487, 47956 109023, 47985 108957, 47667 108879, 48011 108837, 48022 108804, 46960 108848, 45422 108784, 40522 108839, 36730 108635, 34307 108417, 31910 108268, 31191 108163, 31191 106949, 33077 107044, 34889 107199, 48053 107612, 48043 107516, 38502 107212, 36756 107087, 34455 106972, 33407 106804, 31191 106616, 31191 103515, 47931 103513, 47931 102948, 31191 102935, 31191 97567, 31520 97515, 31837 97518, 33898 97583, 34762 97467, 35161 97456, 36246 97478, 48986 97467, 49088 97259, 48953 96963, 37966 96990, 31191 96986, 31191 95678, 38013 95861, 41484 95922, 47989 95937, 47980 95690, 37197 95751, 32251 95586, 31191 95558, 31191 93387, 32922 93159, 34187 93069, 34869 92995, 42468 92970, 46578 93006, 48171 93003, 48189 92724, 45576 92753, 37690 92800, 35019 92801, 34122 92748, 32695 92819, 31191 92996, 31191 91510, 48161 91501, 48033 90957, 31191 90955, 31191 87769, 31543 87744, 33870 87649, 42153 87625, 39428 87526, 32674 87496, 31191 87538, 31191 86362, 32766 86258, 33003 86256, 34007 86183, 34421 86011, 34183 85693, 34113 85490, 34153 85444, 39619 85446, 42886 85484, 47944 85480, 47942 84962, 44954 84976, 31191 84984, 31191 83040, 32887 83043, 35928 83009, 36306 82895, 34489 82853, 31191 82842, 31191 82031, 34366 82055, 36911 81981, 37365 81985, 41945 81926, 42732 81905, 47931 81844, 47930 81580, 46125 81545, 42483 81545, 39886 81613, 38845 81656, 35155 81753, 32938 81760, 31191 81733, 31191 79495, 47933 79492, 47932 78961, 31191 78963, 31191 76811, 33389 76587, 48730 76642, 48727 76592, 44137 76486, 41621 76454, 37404 76477, 33491 76574, 33763 76501, 32250 76505, 31191 76574, 31191 75162, 31909 75247, 34420 75403, 34930 75424, 38483 75447, 39880 75333, 40569 75297, 45079 75217, 46774 75156, 45222 75112, 38205 75147, 34839 75070, 33556 74978, 31191 74959, 31191 73490, 49908 73490, 50609 72961, 51515 72977, 51507 71735, 51373 71788, 50142 71718, 48044 71686, 37134 71749, 32189 71584, 31191 71558, 31191 69374, 32859 69156, 34088 69065, 34599 68991, 41715 68974, 45033 69002, 48621 68998, 51358 69016, 51451 69145, 51500 70699, 51499 68731, 51414 68789, 50729 68741, 48053 68721, 45513 68749, 37378 68796, 34707 68797, 34059 68744, 32629 68815, 31191 68986, 31191 67509, 51005 67495, 51468 67552, 51499 68128, 51510 64125, 51461 62134, 51461 62599, 50828 62634, 41275 62603, 34320 62618, 31377 62657, 33545 62701, 35190 62720, 42676 62716, 50915 62682, 51461 62713, 51461 63537, 47822 63565, 50810 63648, 51461 63641, 51461 65963, 49693 65967, 51461 65972, 51461 66983, 31191 66978, 31191 63629, 31696 63610, 31191 63593, 31191 61482, 51461 61494, 51469 60917, 51157 61003, 50329 61011, 38922 60973, 34043 60973, 33573 60863, 33289 60860, 32643 60909, 31191 60899, 31191 58793, 31946 58859, 34169 59138, 36374 59210, 36664 59240, 37528 59255, 37795 59226, 37758 59188, 38015 59118, 35122 58981, 32366 58791, 31482 58717, 31191 58704, 31191 55483, 32325 55522, 33582 55538, 35015 55655, 36706 55650, 37784 55611, 38123 55658, 41105 55666, 42845 55614, 43766 55556, 44869 55645, 45502 55648, 46435 55434, 48532 55477, 51447 55501, 51510 55549, 51542 54251, 51469 51294, 51552 48055, 51530 46822, 51425 47469, 51164 47563, 50124 47579, 38502 47211, 36756 47087, 34455 46971, 33407 46803, 31191 46615, 31191 43517, 51227 43515, 51465 43649, 51451 42951, 31191 42937, 31191 37566, 31520 37516, 31837 37519, 33893 37585, 34825 37456, 34987 37477, 48393 37466, 48381 37276, 48584 37089, 48574 36962, 37966 36989, 31191 36987, 31191 35677, 38013 35860, 41484 35920, 48980 35938, 51384 35990, 51452 36084, 52397 36119, 52397 35295, 84007 35295) (115138 183433, 114051 183518, 112864 183593, 111696 183682, 110614 183720, 102788 183724, 101179 183788, 102187 183903, 102902 183930, 105142 183923, 108014 183940, 109837 183995, 110561 184029, 112607 183998, 114790 183854, 115735 183805, 118094 183712, 117688 183595, 117546 183427) (140403 183731, 141284 183731, 141906 183718, 141854 183564, 140346 183531) (119101 183680, 120059 183678, 120050 183504, 119277 183469) (152086 183189, 152064 183287, 153087 183287, 153046 183226, 152661 183161, 152318 183138) (189370 182688, 189080 182681, 188142 182734, 190965 182771, 190776 182721, 190539 182718, 189682 182655) (90699 177110, 89982 177131, 85049 177198, 83725 177204, 83724 177352, 88341 177384, 89540 177339, 91146 177260, 94355 177060, 97202 177001, 103816 176969, 106142 176933, 103853 176899, 96055 176879) (106462 176429, 113537 176473, 116230 176588, 116230 176372, 113815 176358) (83721 175341, 84245 175340, 83721 175320) (106695 174616, 102664 174816, 101316 174928, 98202 175152, 97375 175252, 94523 175262, 94706 175332, 97474 175278, 100840 175085, 103707 174903, 106946 174672, 116236 174653, 116235 174624, 107591 174587) (91718 173813, 91308 173850, 88345 173825, 86377 173826, 83892 173848, 83891 173883, 88334 173923, 92385 174029, 95019 174279, 96785 174536, 97164 174616, 97663 174621, 98830 174667, 101281 174646, 101544 174623, 102191 174523, 101710 174464, 101743 174438, 98365 174359, 97733 174327, 96529 174175, 95437 173988, 93415 173746, 92063 173693) (107621 172548, 102538 172604, 83891 172559, 83891 173092, 87454 173130, 89429 173121, 94907 173065, 116122 173120, 116115 172891, 116501 172581, 113659 172581, 109596 172538) (95768 171022, 95504 171046, 94859 171146, 95337 171206, 95301 171234, 98682 171310, 99313 171341, 100517 171494, 101609 171681, 103632 171923, 104983 171977, 105329 171856, 105740 171818, 108703 171845, 110670 171844, 114913 171802, 108714 171747, 104663 171639, 102029 171389, 100263 171133, 99884 171054, 99386 171048, 98218 171003) (115766 171765, 116526 171645, 116872 171683, 116873 171611, 116412 171591) (99574 170389, 96206 170585, 93339 170767, 90100 170998, 83884 171009, 83884 171057, 89456 171083, 90351 171054, 94382 170852, 95730 170742, 98844 170515, 99673 170414, 102525 170405, 102340 170337) (112785 170328, 113695 170363, 116129 170369, 116129 170323) (83869 169307, 90586 169240, 83867 169204) (107508 168331, 105900 168410, 102692 168608, 99844 168668, 93231 168701, 90906 168737, 93193 168770, 100993 168789, 106349 168560, 107066 168539, 111975 168470, 117637 168457, 117618 168320, 113204 168315, 108708 168285) (46395 168049, 46435 167285, 46351 167027) (83040 166590, 83062 166772, 83695 166858, 83658 167081, 92648 167072, 94781 167140, 95098 167105, 95090 167068, 111227 167091, 116363 167084, 116366 166736, 116290 166579) (112642 163363, 112595 163461, 110941 163707, 108246 164045, 106261 164269, 104077 164348, 100071 164379, 99504 164374, 98951 164386, 96440 164476, 91839 164494, 90635 164507, 85686 164505, 83640 164472, 83623 164642, 89399 164609, 89003 164583, 91077 164576, 92063 164609, 96691 164653, 97648 164651, 99211 164698, 103872 164665, 106364 164709, 109240 164616, 112424 164602, 112999 164573, 112627 164519, 109939 164499, 107478 164352, 107434 164268, 110901 163830, 113680 163552, 116149 163462, 116181 163397, 116714 163227, 115240 163185) (94987 161671, 92800 161814, 91857 161864, 88793 161986, 83893 162007, 83893 162132, 87197 162147, 89111 162245, 92481 162235, 93610 162147, 94762 162074, 95895 161987, 96977 161950, 104803 161944, 106413 161882, 105406 161767, 104691 161738, 102450 161744, 99578 161730, 97755 161673, 97031 161639) (83892 160859, 83812 160931, 83328 160955, 83554 161120, 88262 161122, 93310 161084, 111233 161125, 117965 161123, 117999 161057, 118015 160658, 117944 160574, 83886 160572) (97343 157297, 96214 157340, 94893 157456, 93407 157504, 93888 157570, 95575 157523, 97160 157433, 98020 157357, 98163 157294) (105481 155765, 99918 156171, 94391 156486, 93609 156522, 88900 156656, 87279 156747, 87245 156835, 88424 156886, 90677 156831, 94926 156584, 101523 156123, 105432 155798, 113951 155447) (94674 154109, 94181 154558, 88633 154565, 83873 154535, 83875 155110, 91990 155083, 98646 155086, 99235 155213, 99493 155347, 101300 155341, 101562 155274, 102306 155134, 102784 155078, 116224 155074, 116126 154854, 116124 154534, 113134 154507, 104031 154568, 100235 154560, 98718 154329, 98731 154262, 98136 154137, 97245 154124, 96168 154054) (44056 154197, 43410 154269, 35027 154305, 34765 154298, 35005 154310, 41750 154409, 45263 154414, 47949 154485, 47950 154171) (97177 152599, 97985 152694, 99977 152704, 103065 152693, 105445 152855, 108197 153105, 108748 153142, 109860 153307, 111539 153488, 111841 153507, 113005 153617, 114107 153643, 114433 153586, 115106 153506, 115952 153456, 115950 153254, 115241 153274, 113831 153295, 112906 153221, 112229 153154, 110220 152996, 109410 152998, 108948 152936, 106272 152828, 103396 152630, 101050 152512, 99145 152501) (86252 152194, 86028 152213, 83658 152332, 83591 152597, 83415 152671, 84559 152485, 87537 152314, 91885 152283, 93826 152284, 94750 152238, 91228 152185) (41483 152435, 47973 152652, 48026 152464, 42942 152374) (103435 152252, 104921 152313, 107259 152311, 110774 152270, 108855 152222, 106266 152215) (113605 152266, 115947 152279, 115946 152222) (83701 150259, 83703 150441, 87925 150470, 90881 150480, 92283 150531, 93640 150622, 95661 150818, 98165 150880, 100698 150809, 101999 150783, 103413 150781, 108935 150704, 108831 150682, 108140 150687, 99327 150609, 96985 150549, 94918 150473, 94725 150443, 92874 150322, 91651 150265, 89315 150232) (82903 148601, 82836 148860, 82735 149087, 115952 149091, 115957 148573, 111113 148575, 105842 148595, 99317 148573, 95681 148588, 83619 148591, 83588 148736, 83112 148546) (45879 148717, 45396 148782, 46277 148834, 47929 148848, 47929 148698) (104462 148131, 103165 148184, 101382 148193, 97832 148231, 101174 148283, 103370 148293, 106284 148361, 108221 148346, 108915 148297, 109202 148301, 109621 148233, 108452 148128) (81811 147312, 82216 147310, 83716 147237, 82596 147189, 81814 147186) (95528 147166, 95753 147226, 96086 147240, 97579 147235, 99614 147171, 98071 147115, 95905 147101) (82198 146434, 84381 146516, 87356 146572, 87062 146498, 84557 146466, 82358 146334) (98241 145415, 99095 145521, 104401 145555, 106291 145603, 104490 145537, 102513 145370, 99692 145345) (88231 144698, 87186 144748, 85700 144836, 84830 144868, 82804 144912, 82830 145004, 84788 145022, 88771 144927, 90354 144874, 91355 144760, 90159 144676) (111283 144490, 111044 144521, 111295 144561, 113661 144552, 114202 144510, 112236 144479) (98072 143582, 97128 143591, 92467 143683, 99212 143771, 100672 143823, 103531 143819, 106060 143701, 105136 143542, 100300 143538) (93753 142570, 82618 142559, 82524 143106, 87044 143107, 98765 143087, 102275 143165, 103380 143167, 105438 143098, 116827 143108, 117089 142861, 116831 142560, 116479 142560, 116050 142615, 116020 142562, 100387 142581, 96876 142503, 95771 142501) (95623 141853, 93092 141967, 94017 142126, 98852 142130, 101080 142086, 102024 142077, 106684 141985, 99941 141899, 98480 141846) (85488 141116, 84947 141158, 86916 141191, 87870 141178, 88108 141147, 87857 141107) (110381 140741, 108798 140795, 107797 140911, 108993 140992, 110921 140971, 113452 140833, 114323 140801, 116183 140761, 116194 140660, 114364 140646) (43662 140745, 44708 140835, 47433 140921, 47967 140930, 49087 140929, 48952 140636, 46355 140635) (94662 140131, 96639 140298, 99458 140325, 100912 140253, 100059 140148, 94751 140113, 92861 140065) (112090 139170, 114595 139202, 115968 139284, 115971 139199, 114771 139152, 111796 139100) (101573 138433, 99536 138497, 101082 138553, 103247 138567, 103624 138503, 103399 138442, 103066 138428) (115436 138431, 115958 138454, 115959 138404) (90931 137322, 90236 137371, 89948 137367, 89530 137436, 90698 137541, 94690 137537, 95987 137485, 97770 137476, 101320 137439, 97978 137386, 95782 137377, 92868 137307) (48053 137433, 48694 137447, 48603 137411) (83829 134522, 83858 134826, 84070 134917, 83897 135073, 83898 135957, 83724 136273, 83180 136987, 83558 137095, 88001 137094, 93308 137073, 99834 137097, 103471 137080, 115823 137077, 115945 137105, 115941 136581, 85172 136581, 84957 136438, 84933 136252, 84987 136031, 84954 134619, 84719 134479) (106893 134859, 105594 134885, 104179 134887, 98655 134967, 98759 134989, 99450 134985, 108266 135059, 110608 135119, 112672 135195, 112867 135225, 114718 135348, 115935 135403, 115934 135160, 115272 135135, 113954 135046, 111933 134850, 109425 134788) (85986 130416, 85681 130719, 85497 131092, 85421 131525, 85470 131937, 85640 132304, 85930 132590, 86296 132772, 86691 132816, 87097 132759, 87495 132561, 87723 132334, 87689 132334, 87879 131962, 87945 131557, 87871 131107, 87965 131106, 87781 130721, 87491 130442, 87131 130268, 86663 130196) (35304 122616, 31377 122657, 34286 122701, 36647 122719, 44134 122713, 47932 122699, 47933 122620, 42755 122602) (62288 121655, 65235 121624, 62286 121581) (77266 120920, 74274 121018, 72174 121039, 74983 121073, 77764 121137, 80935 121099, 81501 120999, 80452 120939, 78958 120914) (42252 119874, 42350 119945, 45935 120038, 47954 120047, 47955 119863, 43532 119803) (81686 117108, 80970 117129, 76059 117198, 71458 117213, 62276 117215, 62279 117341, 74832 117353, 79327 117383, 80526 117339, 82135 117259, 85344 117061, 88192 117000, 94805 116967, 97130 116934, 94843 116898, 87043 116879) (44319 116671, 44315 116682, 39135 116754, 45051 116796, 46642 116797, 47944 116851, 47943 116568, 47592 116561) (97450 116428, 104501 116470, 107972 116619, 109431 116599, 110926 116505, 109718 116424, 108188 116381, 104805 116358) (70867 115328, 69027 115365, 68714 115409, 66151 115365, 64959 115389, 63776 115468, 63437 115527, 64203 115598, 66262 115635, 66954 115610, 69215 115480, 69471 115453, 70101 115435, 71734 115348, 75250 115342, 74341 115306, 71754 115298) (82707 113813, 82296 113850, 79333 113823, 77365 113824, 73121 113866, 79322 113921, 83373 114029, 86006 114281, 87772 114537, 88152 114616, 88650 114622, 89818 114669, 92267 114648, 92530 114624, 93177 114524, 92698 114464, 92733 114439, 89354 114358, 88723 114327, 87519 114174, 86427 113988, 84403 113745, 83052 113693) (71309 114065, 71624 114079, 72268 113903, 71510 114025, 70106 113867) (62264 113834, 62264 113895, 69903 113861, 63888 113833) (62255 111629, 68952 111609, 70706 111566, 62254 111529) (62198 109180, 63373 109165, 64582 109108, 64789 109077, 62188 109051) (45260 106425, 47933 106455, 47931 106372, 45986 106370) (41161 104890, 39726 104877, 34783 104917, 35147 104980, 36190 105024, 44910 105069, 47929 105056, 47929 104876) (62739 102284, 62192 102513, 62238 102620, 63044 102396, 64100 102161, 63365 102058) (62270 97356, 62271 97393, 62810 97390, 62498 97356) (45879 88716, 45396 88783, 46277 88836, 47958 88848, 47957 88698) (43662 80746, 44708 80837, 47433 80920, 47933 80927, 47932 80638, 46355 80634) (67726 74836, 65975 74926, 65054 75048, 61703 75405, 61691 75528, 62936 75447, 66296 75034, 66620 75020, 67710 74895, 67933 75012, 68472 75010, 68507 74817) (59259 72057, 59383 72489, 60257 72555, 61989 72571, 64285 72489, 63755 72400, 61708 72370, 60104 72397, 59415 72388, 59373 72127, 59241 71516, 59222 71494) (42252 59874, 42350 59944, 45935 60036, 50151 60057, 51407 60075, 51474 60140, 51476 59882, 51332 59958, 47980 59864, 43532 59803) (44319 56671, 44315 56682, 39135 56753, 45051 56794, 46643 56795, 49933 56930, 50748 56899, 51315 56923, 51491 56988, 51491 56685, 51434 56728, 50235 56645, 49784 56602, 47593 56562) (59056 54750, 59113 55059, 59113 54534) (59403 51528, 59403 51638, 66696 51607, 68158 51566, 61849 51528) (60698 49042, 59407 49102, 59408 49245, 65332 49164, 66594 49109, 66798 49078, 62757 49031) (51492 45161, 51505 46377, 51326 46537, 49728 46398, 48741 46373, 45978 46370, 45253 46423, 48343 46459, 51327 46540, 51529 46796, 51499 45130) (51387 44866, 41161 44890, 39726 44878, 34783 44918, 35147 44982, 36190 45026, 44910 45069, 51301 45034, 51499 45099, 51487 44578) (54807 42335, 54447 42520, 54159 42805, 53975 43167, 53911 43569, 53974 43964, 54159 44329, 54447 44615, 54807 44799, 55209 44863, 55609 44799, 55969 44615, 56257 44329, 56441 43967, 56505 43569, 56441 43167, 56472 43000, 56295 42884, 56257 42805, 55969 42518, 55609 42335, 55209 42273) (59419 43537, 59681 43520, 60398 43519, 61189 43503, 60664 43438, 60439 43432, 59418 43370) (63930 42283, 63490 42513, 63526 42618, 64177 42394, 65031 42162, 64437 42057) (83870 41672, 81685 41815, 80741 41864, 77677 41984, 69346 42023, 68701 42018, 68371 42051, 70099 42093, 70430 42119, 76079 42149, 77995 42246, 81348 42238, 82493 42146, 83627 42074, 84779 41986, 85862 41948, 93688 41945, 95297 41882, 94289 41766, 93574 41738, 91334 41745, 88462 41729, 86639 41674, 85903 41641) (59430 41939, 59421 42149, 60625 42114, 60816 42043, 60759 41938) (51461 40732, 51485 41779, 51654 41555, 51604 40723) (65577 37422, 69032 37592, 71940 37776, 75014 37820, 75835 37742, 75264 37652, 72293 37509, 70829 37479, 69086 37417, 66671 37371) (61791 37372, 61791 37391, 62829 37389, 62646 37369) (75855 36625, 73095 36700, 73432 36717, 77272 36800, 78592 36838, 81427 36833, 83375 36783, 83647 36675, 82520 36562, 77812 36544) (61710 36590, 61927 36611, 62630 36763, 63717 36819, 64802 36815, 67397 36826, 69848 36738, 71926 36709, 68934 36630, 68174 36579, 63758 36531, 62535 36481, 61686 36436)), ((205778 119109, 205987 119234, 206013 119407, 205792 119551, 205127 119574, 201722 119647, 200168 119728, 199904 119765, 199243 119830, 199674 119897, 200927 119903, 205788 119634, 205993 119798, 205974 121057, 206022 121532, 205765 121705, 204810 121694, 202128 121739, 201775 121824, 202965 121862, 205712 121878, 205956 121996, 205607 122295, 205625 122797, 205598 122895, 205532 123295, 192237 123295, 192237 124540, 190905 124517, 178876 124558, 159393 124539, 158209 124574, 157063 124555, 156135 124515, 155319 124503, 153735 124370, 153171 124373, 152319 124434, 152058 124362, 150765 124355, 149679 124416, 149111 124485, 148316 124362, 147658 124621, 146550 124582, 144196 124557, 144140 124515, 144074 123740, 144067 123452, 144198 123357, 145263 123428, 145781 123478, 147239 123524, 149051 123409, 150294 123401, 154169 123313, 148637 123253, 147409 123252, 145707 123133, 144979 123162, 144332 123134, 144087 123027, 144093 120274, 144194 120184, 144328 120135, 145938 120218, 148580 120288, 149334 120206, 149218 120126, 147074 120020, 145100 120000, 144226 119975, 144067 119824, 144169 119166, 144505 119077, 144828 119070, 150787 119109, 154567 119111, 155054 119223, 155306 119225, 155885 119182, 157452 119193, 158182 119268, 158708 119181, 159547 119114, 159983 119109, 160851 119231, 161347 119159, 161742 119163, 163483 119218, 163875 119207, 164592 119111, 165320 119090, 166137 119105, 188291 119084, 197834 119110, 201545 119063) (176385 123260, 172711 123299, 176669 123323, 177543 123316, 179351 123250) (166823 121584, 171268 121591, 170324 121661, 174090 121680, 181957 121679, 187229 121624, 183469 121569) (151227 120838, 151342 120949, 155977 121273, 157233 121377, 159906 121496, 157527 121260, 156573 121176, 154595 120927, 152809 120863, 152361 120818, 151418 120794) (199267 120920, 196274 121018, 194175 121039, 196983 121073, 199763 121137, 202937 121099, 203503 120999, 202453 120939, 200958 120914)), ((143148 119097, 143547 119179, 143631 121509, 143591 121842, 143466 121931, 138992 122147, 138105 122149, 137126 122164, 137772 122230, 138051 122236, 139577 122311, 140471 122298, 141116 122254, 143489 122175, 143627 122202, 143623 123411, 143398 123583, 142565 123578, 139555 123513, 137831 123555, 137589 123625, 137661 123730, 141281 123730, 143392 123682, 143600 123826, 143597 124086, 143569 124473, 143360 124553, 139988 124563, 119514 124545, 114283 124584, 96359 124543, 85074 124545, 84915 123847, 85236 123697, 87764 123728, 89370 123707, 90081 123625, 89284 123532, 86950 123498, 85713 123516, 85089 123476, 84978 123386, 85013 121785, 84858 121668, 85212 121681, 89575 122119, 89822 122165, 90307 122276, 90826 122438, 92351 122488, 94952 122305, 94997 122208, 96652 121961, 99346 121623, 101330 121399, 103514 121324, 107521 121290, 108088 121294, 108641 121282, 111154 121192, 115754 121176, 116955 121162, 121904 121166, 123260 121181, 125557 121234, 127108 121304, 127660 121357, 129989 121226, 130331 121217, 130990 121023, 131270 121021, 131770 120921, 131547 120867, 131781 120805, 128759 120897, 127945 120960, 124988 121022, 118194 121058, 118590 121086, 116516 121092, 115530 121059, 110899 121015, 109944 121017, 108383 120970, 103722 121005, 101226 120960, 98350 121056, 95166 121068, 94591 121095, 94963 121149, 97652 121169, 100113 121317, 100158 121400, 96690 121838, 93910 122117, 91483 122208, 90044 122118, 85281 121593, 84841 121530, 84930 121469, 85060 121242, 85271 121078, 84984 120832, 85059 120467, 85014 119180, 85464 119099, 94016 119083, 134996 119075) (115136 123432, 114052 123516, 112864 123592, 111696 123683, 110614 123720, 102788 123724, 101179 123786, 102187 123903, 102902 123932, 105142 123925, 108014 123939, 109837 123995, 110561 124029, 112606 123998, 114791 123853, 115734 123804, 118799 123684, 127130 123645, 127814 123650, 128226 123617, 126750 123577, 126379 123551, 120397 123521, 118480 123423) (133432 123274, 132376 123508, 133110 123612, 133737 123386, 134282 123156, 134236 123049)), ((173969 113113, 174262 113216, 174263 114309, 174171 114437, 173569 114421, 171766 114337, 167935 114209, 164202 114215, 163813 114251, 160147 114268, 167252 114296, 170212 114483, 171734 114568, 172845 114579, 174129 114547, 174126 114654, 174280 114714, 174347 116125, 174157 116235, 173167 116107, 171485 116026, 168940 116051, 168504 116117, 164275 116147, 161175 116056, 164061 116212, 166553 116282, 169745 116291, 171465 116377, 172899 116356, 174150 116409, 174275 116478, 174219 117563, 174260 118146, 174092 118529, 173753 118587, 142657 118563, 135927 118572, 123063 118564, 118366 118615, 112463 118546, 112332 118099, 112301 117870, 112561 117761, 116313 117730, 118248 117747, 119806 117737, 120742 117667, 121240 117515, 115240 117534, 112673 117598, 112315 117502, 112262 116423, 112459 116370, 113078 116340, 115070 116360, 116056 116413, 121295 116786, 121946 116842, 125105 117168, 126308 117271, 128660 117418, 130467 117481, 133024 117532, 139049 117529, 141689 117541, 143185 117461, 147279 117486, 154045 117466, 157454 117433, 158145 117415, 157720 117386, 155443 117353, 152223 117329, 146215 117335, 143003 117361, 141721 117287, 135149 117265, 133665 117323, 131786 117306, 130373 117314, 127965 117218, 127234 117166, 122785 116802, 122338 116756, 117093 116345, 113983 116115, 112533 116095, 112261 115994, 112261 115785, 112372 115093, 112538 114987, 117238 114967, 119298 115039, 121025 115131, 122599 115167, 125398 115185, 130025 115197, 131482 115165, 136642 115150, 138285 115089, 138780 115008, 137312 114919, 129653 114887, 129045 114876, 125429 114880, 124883 114894, 122494 114908, 121049 114891, 117553 114745, 117100 114692, 113528 114688, 112632 114761, 112342 114646, 112456 113187, 113003 113086) (134946 116502, 133715 116560, 133491 116592, 138007 116639, 140364 116628, 142135 116552, 146506 116506, 145122 116444, 145136 116414, 143708 116402) (155424 116462, 159699 116532, 160425 116486, 160692 116428, 158777 116396) (149645 115695, 151936 115707, 154846 115808, 153938 115725, 151809 115677) (131482 114062, 129841 114102, 137313 114141, 141384 114140, 148260 114119, 154703 114218, 154676 114187, 152897 114105, 150653 114058, 140332 114029) (122961 113937, 124054 113980, 123870 113953, 123010 113928, 121838 113866)), ((159010 107145, 159234 107302, 159728 107797, 159606 107932, 159337 107965, 158955 108062, 159155 108163, 159240 108158, 160141 108237, 160194 108224, 160969 109024, 161322 109351, 161594 110167, 160604 110167, 159172 110098, 159048 110084, 156843 109975, 154846 110001, 154367 109977, 153100 109957, 151543 109994, 147973 109992, 146968 110032, 147665 110077, 147863 110122, 148150 110156, 153090 110144, 153806 110257, 154690 110313, 157283 110323, 157402 110337, 158734 110402, 159458 110485, 160228 110485, 161255 110409, 161532 110408, 161448 110517, 161443 110598, 161230 111032, 160312 111036, 159943 111139, 159893 111240, 160769 111348, 162255 111382, 162152 110133, 162116 109797, 162247 109757, 164034 109634, 164960 109508, 166153 109505, 168297 109461, 168198 109437, 165823 109371, 165557 109372, 164456 109324, 164027 109377, 162914 109398, 164004 108271, 164228 108124, 164740 108131, 165883 108177, 166864 108152, 166893 108065, 166681 107988, 165278 107959, 164359 107993, 164420 107854, 165118 107147, 167035 107145, 168449 107197, 173540 107159, 178307 107164, 184638 107207, 189131 107160, 189801 107829, 189824 107985, 188705 107960, 188202 108012, 188023 108072, 188161 108159, 189118 108167, 189975 108148, 190080 108262, 190442 108565, 191881 109878, 191566 109889, 188702 109362, 188432 109226, 188394 109184, 187542 109141, 186288 109329, 186436 109420, 185815 109625, 184514 109911, 183626 110121, 183224 110201, 182105 110240, 182000 110264, 180558 110296, 180147 110289, 179742 110306, 178668 110382, 174030 110395, 172202 110350, 171824 110331, 171002 110322, 170645 110247, 169387 110356, 169227 110533, 168956 110656, 169073 110697, 169011 110760, 170254 110644, 170626 110597, 171494 110573, 172048 110576, 176278 110544, 178712 110571, 179786 110617, 182057 110590, 183296 110637, 184470 110553, 188215 110534, 191836 110534, 191836 110744, 191749 111098, 191889 112076, 191903 112362, 191672 112435, 185409 112400, 167759 112410, 167716 112356, 167575 112354, 167609 112409, 162581 112379, 162331 112300, 162262 111470, 162200 111654, 162154 112127, 161658 112417, 152006 112419, 147443 112395, 138176 112449, 134654 112452, 132430 112478, 132213 112306, 132162 111936, 132213 111901, 133447 111837, 133288 111793, 133196 111702, 132899 111661, 132689 111520, 132593 111514, 132577 111281, 132416 110545, 132754 110541, 133602 110760, 134295 110871, 135496 110886, 137024 110825, 140133 110818, 140468 110876, 141545 110862, 142152 110832, 142365 110771, 143112 110736, 142973 110613, 143059 110590, 142030 110539, 140363 110617, 136668 110609, 135588 110523, 133818 110306, 132718 110113, 133318 109012, 133557 108779, 133734 108694, 133930 108783, 134575 108851, 135963 108854, 137324 108792, 138682 108775, 139880 108795, 140534 108870, 142303 108852, 143022 108778, 143288 108645, 144060 108498, 144001 108876, 144014 108912, 143745 109323, 141375 109312, 139839 109386, 138895 109459, 138266 109488, 137529 109581, 136714 109618, 136280 109720, 136760 109804, 138275 109763, 139817 109555, 140188 109535, 141688 109408, 142697 109432, 143752 109432, 143840 109377, 144286 109389, 144352 109447, 146389 109483, 147285 109392, 147522 109353, 149125 109270, 149851 109212, 153288 109206, 155163 109264, 155826 109217, 156626 109223, 157207 109171, 157232 109023, 155744 108946, 153846 108955, 152331 109028, 151614 109028, 150769 108951, 149390 108946, 148315 108982, 147094 109181, 145995 109270, 145163 109271, 145126 109248, 144506 109278, 144518 108863, 145073 108673, 145134 108715, 145257 108350, 145355 108416, 148996 108398, 150534 108409, 150631 108363, 150491 108334, 148483 108328, 146407 108288, 145276 108294, 145175 108258, 144676 108184, 144445 108196, 143973 108384, 143130 108479, 142442 108541, 140520 108583, 138917 108642, 138372 108642, 137210 108620, 136577 108542, 134321 108563, 133754 108673, 133793 108538, 135053 107302, 135294 107191, 136401 107145, 140012 107186, 142035 107141, 146145 107142, 151406 107184, 157701 107141) (152019 110746, 151366 110977, 150605 111286, 149841 111562, 150677 111382, 151978 111067, 152618 111043, 154278 111013, 154658 110914, 154450 110825, 153863 110735) (144211 110440, 144077 110740, 144397 110824, 144851 110909, 144939 110460, 144828 110334, 144597 110313) (176791 107863, 176491 107904, 175284 108001, 171031 108016, 169946 108119, 169283 108117, 169284 108059, 169146 108117, 168700 108156, 168391 108285, 168129 108467, 168088 108543, 169123 108183, 169927 108146, 174458 108180, 175129 108269, 176784 108261, 177351 108165, 177690 108125, 178255 108031, 178692 107977, 182178 107974, 183162 107908, 182216 107818, 181932 107777, 179155 107746, 178667 107685, 177815 107680)), ((98915 107130, 99146 107235, 100177 108242, 100253 108365, 99924 108342, 100094 108511, 100349 108500, 100455 108616, 100576 108635, 100908 108932, 101340 109634, 101521 109683, 101365 109676, 101459 109831, 101777 109811, 101754 109883, 101852 109946, 101744 110339, 101903 110365, 101880 110689, 102146 110584, 102154 110415, 102001 109761, 102055 109718, 102204 109714, 102269 109523, 102904 109169, 103409 108665, 103622 108630, 103947 108278, 103836 108211, 104823 107184, 105115 107133, 107978 107113, 111160 107132, 128883 107133, 129138 107284, 129173 107296, 131343 109462, 131644 109797, 131361 109854, 131401 109897, 131026 110115, 127214 110106, 125858 110135, 125947 110159, 127764 110204, 129488 110201, 130988 110164, 130998 110211, 131690 110198, 131647 110445, 131399 111203, 131794 111212, 131772 111674, 131873 111741, 131816 112323, 131653 112448, 128596 112449, 126602 112399, 120755 112437, 115849 112432, 109488 112389, 102207 112436, 102216 112325, 102047 112310, 101941 111290, 101931 110981, 101882 110954, 101881 111394, 102001 111870, 101953 112322, 101701 112336, 101644 112361, 93766 112371, 93180 112345, 90270 112356, 88684 112421, 80711 112399, 80169 112432, 79671 112358, 76805 112366, 76104 112346, 76077 112380, 75800 112402, 74788 112378, 73731 111335, 73755 111304, 74031 111310, 73685 110971, 73304 110932, 73269 110892, 73314 110609, 72973 110268, 73235 110264, 72989 109912, 72711 109904, 72594 109866, 72773 109607, 72635 109385, 73683 108277, 73859 108169, 74007 108179, 74199 107999, 74050 107988, 74133 107852, 74775 107236, 75001 107156, 75203 107153, 75383 107099) (125717 111185, 125194 111356, 125654 111424, 126049 111311, 126306 111111, 126133 111090) (74948 111341, 74614 111369, 75011 111381, 75589 111330) (87821 111146, 82785 111199, 80450 111194, 80558 111207, 87462 111220, 87858 111213, 87948 111226, 89158 111144, 88280 111133) (101881 110918, 102294 111011, 102229 110743, 101879 110689) (88984 109561, 88904 109585, 89077 109600, 91071 109624, 91564 109659, 92986 109641, 92678 109608, 90853 109534) (76264 108798, 76033 108929, 76226 108969, 77050 109045, 77709 109074, 78383 109091, 78011 108892, 77113 108854, 76893 108797)), ((188855 109509, 189201 109527, 191054 109895, 191689 110012, 191847 110125, 191828 110397, 191667 110471, 189050 110429, 185038 110418, 184491 110370, 184059 110257, 183994 110199, 187068 109513, 188137 109434)), ((132088 80351, 132100 80698, 131668 82937, 131570 83294, 131434 83512, 131392 83547, 131349 84410, 131537 85661, 131628 85512, 131833 86135, 132119 87435, 132329 88323, 132410 88724, 132451 89846, 132474 89949, 132505 91392, 132497 91803, 132514 92207, 132592 93280, 132603 97920, 132559 99748, 132541 100125, 132532 100946, 132456 101304, 132564 102563, 132742 102723, 132866 102993, 132908 102876, 132971 102937, 132853 101697, 132806 101324, 132781 100455, 132784 99901, 132754 95668, 132780 93237, 132827 92162, 132800 89891, 132847 88652, 132762 87479, 132742 84557, 132742 81104, 132953 81167, 133307 81537, 134284 82442, 134570 82722, 134644 82977, 134608 86909, 134618 103536, 134564 103579, 134562 103672, 134617 103645, 134587 106715, 134508 106965, 132343 109101, 132007 109405, 131965 109303, 131844 107913, 131716 106990, 131713 105797, 131669 103653, 131645 103752, 131579 106127, 131581 106393, 131535 107493, 131588 107920, 131606 109039, 130479 107944, 130332 107720, 130339 107208, 130388 106065, 130360 105084, 130275 105055, 130198 105267, 130169 106670, 130201 107590, 130062 107530, 129356 106833, 129355 104915, 129407 103501, 129367 98408, 129372 93641, 129415 87312, 129369 82818, 130048 82147, 130193 82123, 130185 82785, 130168 83243, 130220 83747, 130280 83926, 130367 83789, 130376 82791, 130356 81920, 130501 81687, 130773 81419, 132045 80344) (130028 89735, 129988 90019, 129969 92116, 129954 92794, 129893 93283, 129891 94134, 130071 95159, 130113 95459, 130209 96666, 130227 100918, 130329 102004, 130327 102664, 130269 102662, 130326 102800, 130364 103250, 130493 103558, 130675 103821, 130751 103862, 130394 102822, 130356 102023, 130390 97490, 130480 96819, 130470 95163, 130373 94597, 130334 94257, 130240 93694, 130187 93257, 130184 89773, 130118 88788)), ((162514 80880, 162638 81057, 162558 81767, 162517 82495, 162485 83800, 162499 85365, 162548 86299, 162564 92260, 162545 95954, 162523 96426, 162529 97064, 162578 97072, 162566 92262, 162603 85065, 162644 84157, 162754 82802, 162735 82077, 162655 81072, 162829 81158, 164387 82691, 164614 82943, 164605 87896, 164219 87649, 164178 87742, 164400 88225, 164012 88242, 163727 87669, 163575 87536, 163067 87302, 163024 87588, 163038 87749, 162985 90035, 162978 92695, 163204 95265, 163245 95456, 163240 96220, 163315 97903, 163327 99623, 163330 104516, 163310 105624, 163284 106464, 163219 106762, 162803 107018, 162309 107495, 162080 107602, 161747 107898, 161779 107977, 161784 108230, 161756 108271, 161802 108775, 161864 109009, 162044 109283, 161662 109211, 161427 108906, 160814 108383, 160613 108185, 160473 107965, 160292 107863, 160127 107626, 160166 103244, 160144 100619, 160129 100234, 160300 99798, 160314 99623, 160130 99240, 160150 98709, 160190 96160, 160286 94642, 160295 94381, 160412 93860, 160504 93302, 160711 92494, 160833 92221, 160896 91519, 160869 90235, 160815 90377, 160742 89793, 160695 90321, 160658 90241, 160550 92039, 160397 92632, 160224 93079, 159978 94043, 159950 94605, 160051 94812, 160054 97362, 160083 99295, 160218 99682, 160075 100157, 160057 102516, 160087 107587, 159939 107500, 159488 107071, 159407 106902, 159354 101060, 159576 100875, 159722 100716, 159718 100563, 159505 100233, 159396 99806, 159354 98442, 159375 96776, 159359 93507, 159418 84180, 159411 82884, 160611 81733, 160810 81657, 160758 81779, 160800 82029, 160788 86686, 160777 87518, 160791 88053, 160845 88268, 161104 90329, 161297 91487, 161344 91823, 161426 92165, 161448 96639, 161476 99983, 161464 100068, 161512 101339, 161588 101568, 161545 102732, 161525 102761, 161543 103460, 161637 103981, 161707 103987, 161780 103832, 161812 103083, 161829 102871, 161806 102457, 161783 102385, 161733 102023, 161653 101302, 161622 100681, 161552 99922, 161546 97115, 161556 93767, 161550 93426, 161494 92025, 161344 90663, 161127 89039, 160929 87718, 160921 81528, 161025 81337, 161664 80710, 161948 80647)), ((101982 94980, 102787 94938, 102896 94892, 102918 98067, 102954 101184, 102958 104691, 102978 105075, 102977 106241, 103011 108181, 102887 108404, 102116 109124, 102023 108988, 102144 106880, 102107 105872, 101995 104857, 101942 106962, 101821 107960, 101789 108501, 101799 108816, 101711 108809, 101531 108631, 101168 108300, 100963 108007, 101163 107419, 101190 107169, 101314 106857, 101421 103786, 101413 103667, 101407 101790, 101473 99485, 101424 98534, 101442 96445, 101472 96107, 101661 94816)), ((31584 108412, 35792 108665, 36397 108724, 38847 108856, 38447 108902, 37214 108990, 35497 109037, 34203 109018, 32537 109049, 31191 109043, 31191 108380)), ((70286 79814, 70527 80081, 70754 80006, 71579 79901, 72899 81068, 72977 81196, 72930 82540, 72914 82716, 73008 84778, 73091 84696, 73144 84286, 73148 83827, 73219 83388, 73211 81700, 73136 81385, 73239 81465, 73407 81676, 73610 81789, 74764 82969, 74744 95230, 74793 96104, 74793 96465, 74752 98120, 74780 102349, 74775 106961, 74682 107201, 74308 107524, 73755 108130, 73620 108162, 73535 107563, 73505 107251, 73451 107488, 73418 107884, 73430 108326, 73214 108626, 73051 108631, 73034 106166, 73078 104948, 73085 104496, 73189 103562, 73249 103194, 73245 102391, 73179 101498, 73040 102157, 72918 104625, 72887 105087, 72902 105742, 72927 108640, 72967 108656, 72962 108702, 72766 108937, 71932 109038, 71046 108578, 70835 108442, 70877 107978, 70845 105935, 70816 105430, 70791 105245, 70762 105336, 70711 106221, 70711 106747, 70792 108412, 70535 108167, 70165 107883, 70008 107646, 69776 107264, 69666 107235, 69495 106969, 69497 106308, 69530 106135, 69948 106309, 69953 106352, 69970 106328, 69932 105940, 69821 105305, 69756 105349, 69515 104618, 69501 103800, 69517 99441, 69534 97942, 69507 95158, 69529 92815, 69541 79951, 69611 79761) (71423 103241, 71403 103336, 71406 104048, 71461 105319, 71610 107272, 71704 107843, 71747 107585, 71757 107133, 71557 105220, 71498 102385) (69775 93625, 69692 93891, 69687 94937, 69757 96028, 69754 97698, 69774 98304, 69819 99010, 69825 102676, 69862 104020, 69875 103597, 69868 99038, 69859 98979, 69894 98438, 69917 97578, 69875 96176, 69953 95836, 69964 93752, 69880 93631, 69840 93230) (74082 95383, 74056 96106, 74057 97367, 74127 98634, 74162 100733, 74202 102239, 74228 100960, 74300 99277, 74301 98326, 74351 97499, 74348 95249, 74193 94847) (70840 97385, 70806 98878, 70811 99568, 70861 99912, 70906 99499, 70900 98719, 70861 97352, 70853 95478) (72206 89101, 72203 89896, 72222 92789, 72389 96033, 72433 98394, 72548 99048, 72635 98048, 72601 96638, 72472 95825, 72442 95507, 72263 92763, 72255 92409, 72259 89241, 72237 88998) (73370 91468, 73365 92491, 73399 92670, 73423 92474, 73437 92117, 73418 90084)), ((103884 81751, 104632 82462, 104728 82685, 104676 85904, 104671 95701, 104709 103114, 104672 106559, 104427 106874, 103489 107841, 103249 108074, 103045 108152, 103034 107866, 103074 97329, 103093 96375, 103138 94944, 103160 94555, 103267 94128, 103115 93811, 103203 92615, 103163 91729, 103138 90727, 103234 89932, 103291 89632, 103292 88813, 103448 87550, 103544 86203, 103709 84580, 103729 84488, 103720 82610, 103781 81697)), ((100628 81448, 100585 81797, 100574 82704, 100596 83749, 100654 84821, 100655 85564, 100611 85805, 100693 86455, 100883 87066, 101264 87838, 101479 88179, 101544 88423, 101672 89034, 101689 89293, 101698 89767, 101654 92971, 101631 93455, 101353 96330, 101349 96667, 101190 100623, 101149 102559, 101148 103282, 101032 104729, 100996 106188, 101003 107273, 100960 108006, 100823 107968, 99511 106683, 99471 106487, 99489 95678, 99488 89261, 99446 87738, 99429 82751, 99540 82499, 100601 81421) (100890 93175, 100849 93650, 100855 94403, 100908 94674, 100953 94651, 100992 94168, 100986 93400, 100949 93145)), ((164607 106391, 164641 106350, 164653 106781, 164517 107112, 164142 107479, 163739 107841, 163933 107383, 163897 107364, 163937 106859, 164158 106590, 164599 106346)), ((163391 89582, 163600 90326, 163989 90450, 164341 90540, 164375 90503, 164390 90577, 164642 90614, 164659 98032, 164641 104837, 164617 105828, 164638 106234, 164159 106583, 163994 106645, 163853 106767, 163582 106958, 163495 106500, 163466 105493, 163458 104441, 163477 97986, 163554 96295, 163485 95431, 163381 95042, 163191 93578, 163140 92300, 163156 88953, 163300 88931)), ((141712 105172, 143385 106869, 142215 106869, 141588 106217, 137152 101749, 137152 101762, 135007 99623, 135007 98462)), ((137650 102410, 140561 105306, 141865 106681, 142015 106869, 140218 106869, 139270 105973, 139208 105935, 139418 106164, 139427 106164, 140127 106869, 139234 106869, 137234 104821, 135007 102687, 135007 101031, 136167 102149, 136412 102267, 135715 101443, 135007 100749, 135007 99753)), ((135867 91710, 135562 91810, 135708 92040, 136068 92193, 136030 92683, 135672 92551, 135271 92682, 135058 92964, 135267 93203, 137381 95381, 139877 97890, 142359 100075, 142554 100220, 143276 100948, 144942 102513, 146460 104018, 149311 106869, 147276 106869, 146602 106364, 146072 105872, 145373 105271, 139674 99573, 138357 98332, 136990 97160, 135007 95490, 135007 93656, 135533 94107, 138405 96965, 135007 93543, 135007 91499, 135019 91219, 135007 90853) (142663 101249, 142992 101603, 143454 102059, 143496 102048, 140146 98709)), ((189007 91828, 185473 95408, 183327 97465, 182985 97541, 182818 97740, 182903 97788, 183008 97597, 183354 97568, 186289 94789, 189007 92104, 189007 94298, 188593 94629, 188089 95090, 187939 95270, 188007 95271, 188566 94867, 188592 94832, 189007 94523, 189007 96265, 188630 96748, 186604 99440, 186319 99763, 183281 102903, 180267 105905, 179999 106142, 180024 106142, 179167 106869, 176612 106869, 177259 106029, 177974 105214, 180550 102622, 180639 102383, 177483 105460, 176889 106088, 176904 106088, 176155 106869, 174441 106869, 174768 106676, 174901 106681, 175105 106527, 175358 106385, 176008 105640, 176891 104515, 177191 104254, 177311 104104, 177330 104005, 177192 103699, 176883 103699, 176775 103497, 177161 103102, 177824 102388, 178722 101542, 180848 99415, 181000 99186, 182098 98136, 182370 97887, 189007 91254) (182802 100710, 182932 100970, 183227 101276, 182914 101540, 182712 101734, 182436 101875, 182450 102065, 182201 102328, 181948 102258, 182057 102496, 181650 102922, 181326 103320, 181632 103104, 182570 102220, 182787 102004, 183136 101563, 183285 101289, 182994 100574, 183070 100512, 183915 100785, 183984 100701, 184114 100410, 183850 100721, 183370 100501, 183343 100531, 183024 100394) (186138 98465, 184252 100293, 184584 100105, 185094 99578, 186706 97969) (182015 98404, 181812 98488, 181390 98884, 181199 99169, 181142 99356, 180963 99826, 180678 100114, 180554 100282, 180682 100210, 181087 99828, 181338 99358, 181732 98795, 182373 98258, 182374 98193, 182492 98042) (186402 95726, 186101 95916, 185871 96130, 184811 97166, 184118 97887, 183671 98320, 182911 97778, 182840 97884, 182373 98273, 182369 98384, 182426 98456, 182508 98417, 182849 97994, 182824 97913, 183306 98144, 183737 98427, 184191 98043, 185095 97161, 186091 96087, 187205 94941)), ((135792 96382, 136482 96965, 138040 98207, 138421 98476, 142381 102393, 142467 102490, 145397 105383, 145461 105462, 146597 106532, 146936 106788, 147011 106869, 145157 106869, 144817 106353, 144664 106184, 144246 106000, 141275 102966, 139625 101178, 139199 100588, 138739 100005, 138145 99140, 138002 98849, 137395 98150, 136191 96983, 136270 97133, 135690 96651, 136100 97118, 135988 97054, 137584 98790, 138019 99427, 138305 99942, 139061 101023, 139594 101593, 139844 101719, 140053 101917, 142327 104187, 144259 106074, 144689 106328, 145014 106869, 144136 106869, 143061 105836, 141137 103859, 141106 103858, 138055 100837, 135007 97761, 135007 95770)), ((136478 94170, 136490 94079, 137145 94613, 137647 94934, 137917 95005, 138244 94593, 138136 94319, 138434 94540, 138533 94359, 145449 101273, 145434 101273, 151023 106869, 149510 106869, 149094 106475, 145168 102534, 143581 100839, 142708 100061, 142271 99762, 140787 98531, 139575 97386, 136953 94747, 136239 94053)), ((139545 87764, 140458 88792, 143138 91446, 144815 93040, 153086 101343, 153697 101909, 154437 102811, 155176 103768, 155866 104259, 155910 104390, 156556 104997, 156882 105338, 157171 105534, 157390 105921, 157854 106136, 158380 106574, 158667 106869, 157319 106869, 157139 106760, 156647 106322, 153456 103283, 150950 100779, 153473 103308, 156942 106869, 154067 106869, 153286 105813, 152455 104861, 151939 104191, 150938 102963, 149845 101829, 149013 100923, 142196 94037, 139717 91595, 139514 91531, 141364 93435, 149611 101638, 150901 103128, 151712 104139, 152100 104653, 152467 105335, 153301 106220, 153491 106481, 153842 106869, 151689 106869, 151540 106702, 151483 106417, 151126 106157, 150468 105482, 150225 105129, 149988 105006, 149641 104736, 149399 104567, 149149 104102, 148875 103976, 148732 103780, 148133 103107, 147890 102882, 147575 102677, 147339 102506, 140507 95647, 140491 95610, 138246 93352, 138222 93366, 135007 90228, 135007 87897, 135135 87968, 135925 88726, 136568 89367, 138533 91283, 138253 90976, 135007 87562, 135007 83246) (145008 94910, 149680 99510, 145388 95199, 145012 94832, 144933 94736, 143217 93188)), ((189007 105513, 188856 105669, 188602 106012, 188255 106416, 188781 106108, 189007 105884, 189007 106438, 188582 106869, 185141 106869, 187894 104407, 188719 103769, 189007 103506)), ((189007 87385, 188791 87601, 188615 87798, 187154 89256, 184679 91699, 183890 92543, 184284 92214, 184559 91998, 185288 91297, 187212 89328, 189007 87528, 189007 88782, 188619 89210, 187979 89678, 186928 90501, 186593 90849, 186340 91013, 185299 91920, 183835 93107, 183524 93410, 182528 94288, 181905 94859, 181074 95760, 181143 95860, 181526 95543, 182398 94683, 183695 93365, 184603 92634, 186107 91489, 186435 91225, 186944 90918, 187787 90316, 187886 90234, 188510 89772, 189007 89297, 189007 90561, 188777 90739, 184921 94630, 183783 95754, 182966 96254, 182865 96095, 182718 96169, 182686 95987, 182339 96377, 182136 96450, 181799 96770, 181705 97039, 181014 97762, 181227 98321, 179560 99994, 176872 102643, 173632 105887, 172953 106624, 172698 106869, 171139 106869, 171826 106181, 172653 105320, 172926 105049, 173500 104549, 173970 104124, 174469 103586, 174616 103351, 174874 103091, 175071 102787, 175104 102682, 174856 102818, 174778 102714, 175007 102392, 175598 101409, 175732 101057, 176911 99659, 179493 97009, 179619 96826, 179576 96841, 179047 97322, 176268 100093, 175335 101195, 175198 101421, 174988 101637, 174233 103187, 174338 103167, 174114 103447, 172960 104706, 172883 104807, 172025 105754, 170912 106869, 167560 106869, 168260 106172, 168912 105352, 169011 105214, 169545 104660, 169677 104457, 170671 103427, 173320 100756, 177090 97035, 177677 96513, 178399 95930, 179300 95291, 180386 94256, 181559 92974, 182790 91741, 185066 89413, 185081 89260, 184805 89515, 180656 93622, 179704 94477, 178826 95284, 178717 95352, 177102 96748, 176503 97297, 176536 97242, 176250 97514, 173104 100721, 171828 101987, 170167 103496, 169452 104130, 168827 104851, 168246 105594, 167945 106016, 167651 106375, 167129 106869, 165402 106869, 165885 106346, 167975 104243, 170717 101517, 174653 97576, 174662 97576, 189007 83298)), ((135659 103546, 136041 103874, 138773 106527, 139111 106869, 138084 106869, 137695 106484, 136436 105280, 135574 104373, 135488 104261, 135007 103774, 135007 102902)), ((174641 105965, 175104 106270, 174947 106425, 174684 106406, 174358 106663, 174119 106869, 173382 106869, 174408 105799)), ((135409 104419, 135525 104512, 136409 105354, 137869 106869, 136513 106869, 135718 106080, 135351 105762, 135007 105418, 135007 104058)), ((189007 99625, 187903 100672, 186370 102207, 185200 103276, 184287 104230, 184065 104559, 183962 104637, 183894 104788, 184239 104618, 186289 102553, 186582 102151, 187095 101623, 189007 99728, 189007 101043, 187470 102610, 188250 101834, 188937 101180, 189007 101171, 189007 103197, 187941 104265, 185111 106869, 181387 106869, 185304 102923, 188152 100108, 189007 99230)), ((189007 98574, 184481 103113, 180716 106869, 179264 106869, 179467 106699, 180295 105960, 181975 104291, 183301 102908, 184055 102221, 186204 100058, 186697 99522, 187435 98646, 187842 98077, 187842 98052, 188826 96670, 189007 96484)), ((129077 103720, 128692 104109, 127488 105370, 126581 106231, 126470 106317, 125984 106797, 125110 106797, 125754 106145, 126082 105764, 128735 103031, 129077 102693)), ((129077 101586, 128182 102534, 128145 102596, 128373 102386, 128373 102377, 129077 101677, 129076 102574, 127029 104574, 124897 106797, 123240 106797, 124359 105637, 124476 105392, 123655 106089, 122958 106797, 121960 106797, 124620 104154, 127514 101243, 128889 99941, 129077 99792)), ((129077 99589, 128426 100216, 123957 104652, 123970 104652, 121831 106797, 120672 106797, 127380 100092, 129077 98419)), ((129077 105292, 128290 106086, 127974 106453, 127629 106797, 126266 106797, 126630 106395, 126721 106279, 127563 105396, 129077 103935)), ((129077 84485, 128968 84666, 128534 85157, 125495 88348, 122988 90854, 125520 88331, 129077 84871, 129077 87737, 128025 88519, 127072 89352, 126401 89868, 125171 90866, 124037 91959, 123131 92791, 116247 99608, 113803 102087, 113739 102290, 115645 100441, 119278 96778, 123846 92193, 125336 90903, 126348 90096, 126862 89707, 127543 89339, 128428 88504, 128689 88313, 129077 87962, 129077 90102, 128914 90266, 128625 90321, 128365 90678, 127691 91336, 127339 91579, 127214 91816, 126945 92165, 126775 92406, 126311 92657, 126184 92929, 125988 93072, 125315 93671, 125090 93914, 124885 94230, 124714 94466, 117855 101297, 117818 101313, 115560 103558, 115574 103582, 112445 106797, 110107 106797, 110178 106670, 110935 105880, 111576 105237, 113495 103271, 113187 103551, 109773 106797, 105454 106797, 109974 102259, 111001 101349, 113681 98642, 115248 96989, 123552 88718, 124118 88108, 125023 87367, 125977 86632, 126468 85938, 126598 85895, 127207 85251, 127548 84924, 127745 84635, 128129 84414, 128344 83953, 128782 83425, 129077 83139) (117408 96419, 117041 96794, 116946 96872, 115396 98587, 117120 96798, 121718 92124)), ((76615 100711, 79026 103093, 81839 105941, 82719 106797, 82327 106797, 81278 105696, 79743 104160, 78674 102990, 77718 102078, 77389 101855, 77311 101752, 77161 101684, 77331 102029, 79397 104078, 79799 104372, 80327 104886, 82222 106797, 80907 106797, 79339 105263, 80114 106044, 80769 106727, 80780 106797, 78751 106797, 77683 105731, 75079 102898, 75079 99177)), ((75272 92559, 75267 92693, 75423 92895, 75565 93150, 76330 93818, 77434 94682, 77696 94983, 77846 95102, 77944 95121, 78249 94982, 78251 94674, 78452 94565, 78846 94951, 79560 95617, 80407 96513, 82534 98640, 82762 98792, 83814 99889, 84063 100162, 90696 106797, 90120 106797, 86540 103263, 84486 101119, 84409 100775, 84209 100611, 84161 100694, 84353 100798, 84384 101145, 87159 104081, 89846 106797, 87650 106797, 87322 106383, 86859 105879, 86679 105729, 86679 105798, 87083 106356, 87117 106382, 87426 106797, 85683 106797, 85201 106421, 82508 104396, 82186 104110, 79049 101071, 76043 98059, 75806 97791, 75806 97816, 75079 96958, 75079 94404, 75921 95051, 76736 95768, 79327 98341, 79567 98432, 76489 95274, 75860 94680, 75860 94694, 75079 93946, 75079 92234) (83492 100216, 83550 100339, 83990 100627, 84035 100614, 83805 101096, 83523 101527, 83906 101981, 84788 102885, 85862 103882, 87008 104997, 86222 104194, 86032 103895, 84782 102601, 84063 101908, 83630 101461, 84170 100703, 84066 100630, 83684 100175, 83564 100159) (81843 102376, 82370 102886, 83980 104498, 83483 103929, 81658 102044) (78846 99425, 79730 100360, 79946 100577, 80387 100927, 80661 101077, 81376 100787, 81438 100864, 81163 101708, 81247 101776, 81542 101906, 81227 101642, 81447 101160, 81417 101133, 81554 100814, 81238 100593, 80978 100723, 80673 101019, 80263 100545, 80216 100504, 80075 100227, 79884 100242, 79621 99994, 79692 99738, 79454 99848, 79028 99441, 78629 99117) (81739 98474, 82120 98879, 82590 99128, 83153 99523, 83695 100172, 83763 100173, 83907 100284, 83712 100018, 83544 99808, 83460 99605, 83064 99181, 82779 98991, 82593 98933, 82123 98755, 81834 98470, 81666 98345)), ((75602 83675, 77708 85764, 80431 88507, 84370 92445, 98651 106797, 94563 106797, 94347 106581, 94152 106405, 92694 104946, 90250 102469, 89406 101680, 89736 102076, 89950 102350, 90652 103078, 92624 105004, 94421 106797, 93167 106797, 92738 106409, 92270 105769, 91448 104719, 91100 104384, 90936 104132, 90029 103090, 88842 101625, 88540 101315, 87661 100320, 87089 99695, 86189 98864, 86088 98933, 86406 99317, 87266 100188, 88584 101485, 89315 102393, 90459 103899, 90724 104226, 91031 104735, 91634 105578, 92177 106302, 92651 106797, 91387 106797, 91211 106567, 87318 102711, 86195 101574, 85696 100756, 85853 100655, 85779 100508, 85961 100479, 85571 100129, 85498 99927, 85178 99592, 84909 99497, 84186 98804, 83627 99020, 81955 97353, 79307 94665, 76061 91421, 75325 90744, 75079 90495, 75079 88929, 75767 89618, 76628 90446, 76899 90720, 77824 91764, 78363 92261, 78597 92408, 78857 92665, 79162 92862, 79266 92894, 79131 92647, 79235 92569, 79557 92799, 80540 93390, 80893 93523, 82291 94703, 84939 97283, 85122 97409, 85108 97367, 84626 96838, 81855 94059, 80753 93128, 80528 92991, 80313 92778, 78761 92022, 78782 92128, 78503 91904, 77241 90749, 77141 90674, 76194 89817, 75079 88698, 75079 85351, 75778 86050, 76598 86703, 76738 86803, 77289 87336, 77492 87468, 79275 89201, 81192 91112, 84913 94881, 85437 95468, 86020 96189, 86658 97090, 87694 98178, 88976 99351, 90209 100582, 92537 102858, 92688 102873, 92433 102597, 88328 98447, 87473 97494, 86666 96616, 86598 96508, 85200 94894, 84651 94296, 84706 94330, 84434 94043, 81228 90894, 79961 89619, 78452 87959, 77818 87244, 77098 86618, 76356 86036, 75931 85734, 75574 85441, 75079 84921, 75079 83196)), ((129077 96647, 128561 96988, 128393 97140, 128208 97560, 125174 100529, 123386 102179, 122796 102605, 122214 103065, 121351 103659, 121035 103816, 120360 104409, 119192 105614, 119343 105535, 118859 106114, 119328 105704, 119264 105816, 120999 104220, 121636 103785, 122151 103499, 123231 102744, 123801 102210, 123927 101960, 124125 101752, 126395 99477, 128282 97546, 128536 97115, 129077 96790, 129077 97668, 128045 98743, 126070 100668, 126070 100698, 123042 103752, 119971 106797, 117978 106797, 118594 106013, 119176 105322, 120415 103764, 120684 103383, 124601 99423, 124698 99337, 127594 96408, 127674 96343, 128741 95208, 128997 94870, 129077 94795)), ((77541 105684, 78179 106509, 78442 106797, 76437 106797, 76281 106647, 75937 106392, 75532 106045, 75840 106573, 76064 106797, 75510 106797, 75079 106372, 75079 102934)), ((75249 97259, 75988 98087, 77658 99766, 79043 101091, 79728 101846, 81890 103996, 82426 104488, 83302 105228, 83872 105635, 83896 105635, 85280 106616, 85464 106797, 83375 106797, 78835 102271, 75079 98507, 75079 97056)), ((129077 94528, 128575 95202, 128084 95732, 127483 96431, 121781 102130, 120540 103448, 119368 104814, 117698 106797, 115864 106797, 116315 106271, 119173 103399, 115748 106797, 113060 106797, 113918 105937, 114018 106242, 114250 106097, 114405 105738, 114891 105778, 114761 106136, 114893 106536, 115172 106746, 115411 106537, 117591 104423, 120099 101927, 122285 99445, 122430 99250, 123158 98528, 124721 96862, 129077 92487) (120917 101658, 123457 99141, 123811 98812, 124267 98350, 124256 98308)), ((183845 83166, 183798 83199, 182709 84542, 182854 84525, 182347 85322, 181515 86562, 180626 87831, 179661 88851, 179593 88951, 178321 90266, 177978 90597, 177660 90939, 176753 91956, 175431 93333, 172135 96634, 170492 98223, 169972 98652, 169629 98891, 168550 100118, 168443 100477, 168235 100846, 168341 100794, 168288 100935, 169389 99677, 169713 99284, 170505 98458, 170981 97987, 174666 94253, 176945 92016, 177696 91302, 177959 91064, 179968 89019, 181125 87927, 182108 86824, 186028 82869, 188651 82869, 185098 86393, 167744 103756, 165007 106509, 165007 102504, 165315 102182, 165286 102190, 165479 101961, 165393 101955, 165007 102284, 165007 99307, 169716 94563, 169716 94544, 174416 89852, 180898 83425, 181439 82869, 184162 82869) (178607 86566, 178302 86817, 175577 89495, 175062 89927, 174213 90769, 173333 91898, 173071 92217, 171957 93469, 167925 97526, 166977 98627, 166318 99279, 166266 99272, 166219 99377, 165833 99811, 165705 100111, 165699 100362, 165758 100404, 166264 99399, 167011 98602, 171328 94340, 172056 93736, 173611 92170, 174084 91564, 174382 91210, 174862 90601, 175256 90133, 178612 86775, 179475 85821)), ((79767 83105, 79758 83076, 79987 83269, 79993 83185, 79666 82797, 82641 82797, 87385 87506, 87404 87507, 92096 92208, 98525 98688, 99079 99231, 99079 101952, 98784 101637, 98751 101590, 97406 100499, 97424 100644, 96628 100138, 95388 99305, 94119 98416, 93099 97451, 92998 97383, 91683 96112, 91351 95769, 91010 95451, 89994 94546, 88617 93224, 85314 89926, 83727 88282, 83298 87762, 83059 87419, 81832 86340, 81472 86233, 81102 86025, 81154 86132, 81013 86079, 82274 87181, 82665 87505, 83492 88297, 83962 88772, 87695 92458, 89934 94736, 90884 95751, 92916 97748, 94021 98917, 95124 99898, 99079 103820, 99079 106442, 95175 102507, 78194 85534, 75428 82797, 79444 82797) (81544 83551, 82551 84057, 83348 84802, 87608 89118, 88212 89846, 89778 91401, 90384 91875, 90738 92173, 91348 92654, 91817 93050, 95174 96402, 96127 97265, 95131 96094, 92454 93368, 92023 92853, 91179 92004, 90051 91122, 89733 90861, 88480 89748, 84422 85717, 83322 84769, 82669 84110, 82676 84058, 82571 84011, 82137 83625, 81837 83497, 81586 83490)), ((137921 82962, 138917 83910, 137933 82869, 142437 82869, 147773 88161, 147947 88683, 148722 89444, 148898 89524, 149398 89811, 158676 99074, 159007 99422, 159007 100720, 158649 100367, 159007 100771, 159007 104458, 158432 103880, 157431 102920, 154925 100363, 154639 100154, 155001 100589, 156617 102199, 157635 103244, 158785 104445, 159007 104659, 159007 106332, 156953 104299, 156014 103337, 155923 103052, 156042 102817, 156230 102661, 156327 102643, 156292 102526, 156164 102461, 156018 102529, 155758 102411, 155741 102362, 155556 102146, 155494 101994, 155671 101926, 155441 101869, 155292 101618, 155231 101309, 154980 101129, 154851 101154, 154766 101228, 154639 101203, 154538 101243, 154341 101155, 154046 101054, 153839 100862, 153769 100755, 153301 100565, 153377 100666, 137188 84471, 135555 82869, 137764 82869) (141672 84279, 142226 84903, 143531 86176, 144855 87210, 145304 87592, 148626 90290, 150302 91599, 153575 94499, 153997 94887, 158514 99368, 154060 94889, 153662 94501, 150413 91600, 149943 91211, 147453 89217, 145191 87307, 144544 86741, 144399 86630, 142591 84937, 141766 84248) (143975 87547, 144979 88454, 145637 89008, 146128 89385, 146247 89410, 145832 88999, 145230 88462, 144643 88005, 144244 87681, 143913 87458, 143173 86723) (141153 84673, 140135 83612, 139978 83494)), ((122577 83155, 122979 82797, 126666 82797, 126088 83372, 125128 84373, 122572 86881, 122363 87167, 122798 86806, 124407 85187, 125452 84169, 126653 83019, 126868 82797, 128540 82797, 126508 84851, 125546 85790, 125260 85882, 125025 85762, 124869 85574, 124851 85477, 124734 85512, 124670 85640, 124737 85786, 124621 86046, 124572 86063, 124355 86248, 124203 86310, 124134 86135, 124077 86363, 123826 86516, 123519 86575, 123339 86825, 123362 86954, 123436 87038, 123411 87165, 123451 87266, 123363 87463, 123263 87758, 123071 87965, 122965 88035, 122773 88503, 122874 88427, 106724 104570, 105081 106248, 105081 104040, 105173 103883, 106122 102887, 105081 103871, 105081 99367, 110369 94033, 110891 93859, 111652 93082, 111732 92906, 112021 92406, 121283 83128, 121632 82797, 122929 82797) (105823 101669, 105705 101827, 106883 100652) (117097 87744, 116709 88142, 113808 91391, 113419 91861, 111425 94351, 109516 96614, 108949 97262, 108838 97406, 107145 99213, 106457 100038, 106489 100132, 107111 99578, 108385 98276, 109418 96950, 109800 96500, 112498 93178, 113807 91502, 116707 88229, 117095 87808, 121579 83290) (111207 95972, 110670 96574, 110213 97161, 109889 97560, 109666 97891, 108931 98632, 109755 97829, 110664 96825, 111217 96167, 111594 95676, 111620 95557)), ((115888 105508, 115465 105785, 115001 105401, 115348 105085, 115911 105006)), ((129077 92296, 128683 92714, 124742 96636, 123049 98223, 122271 99095, 121970 99535, 120739 101017, 119594 102229, 116955 104851, 116261 105565, 116380 105326, 116291 105314, 116821 104659, 117145 104157, 117216 103887, 116801 103560, 116527 103668, 116748 103370, 116569 103271, 123481 96355, 123481 96370, 129077 90781)), ((115336 105062, 114995 105396, 114838 105171, 115434 104446)), ((96503 100221, 97853 101199, 98830 102069, 99079 102414, 99079 103724, 98238 102860, 95635 100233, 95155 99684, 94802 99179, 94759 99052)), ((147637 83544, 148660 84515, 148761 84584, 150078 85861, 150412 86205, 150754 86524, 151772 87437, 153153 88765, 156464 92072, 158058 93719, 158493 94239, 158813 94600, 159007 94770, 159007 97606, 158544 97164, 154240 92806, 153630 92079, 152058 90517, 151454 90038, 151101 89739, 150492 89252, 150023 88855, 146654 85490, 145699 84622, 146703 85793, 148737 87854, 149390 88527, 149825 89041, 150670 89893, 151797 90780, 152116 91044, 153370 92165, 157440 96214, 158540 97167, 159007 97693, 159007 98863, 153121 93030, 149770 89670, 143315 83167, 143007 82869, 146691 82869)), ((119376 83260, 115017 87567, 114287 88174, 112726 89747, 112247 90349, 111948 90703, 111462 91314, 111064 91783, 107698 95151, 106832 96106, 107699 95353, 108002 95101, 110736 92414, 111250 91979, 112101 91134, 112989 90007, 113254 89688, 114377 88434, 118422 84364, 119379 83264, 119903 82797, 121072 82797, 115239 88685, 111879 92034, 105375 98489, 105081 98797, 105081 95113, 105755 94167, 106724 93144, 106793 93044, 108069 91726, 108413 91392, 108733 91050, 109646 90034, 110973 88654, 114280 85340, 115928 83747, 116448 83312, 116809 82991, 116980 82797, 119815 82797)), ((175910 87849, 175381 88015, 174622 88789, 174546 88966, 174263 89468, 165290 98457, 165007 98723, 165007 98262, 169190 94105, 169577 93708, 172460 90461, 172845 89990, 174823 87495, 176717 85233, 177279 84586, 177327 84505, 178790 82869, 180845 82869)), ((87843 86984, 88240 87370, 91487 90252, 91958 90637, 94453 92613, 96719 94507, 97366 95070, 97446 95118, 99079 96581, 99079 98639, 94099 93702, 93935 93171, 93161 92413, 92982 92337, 92480 92055, 83491 83080, 83226 82797, 83686 82797)), ((178149 83295, 177829 83563, 176805 84890, 176426 85339, 173756 88666, 172458 90347, 169576 93618, 169190 94040, 168649 94596, 165007 98258, 165007 91516, 173650 82869, 178563 82869) (176521 83913, 176439 83982, 175536 84986, 174988 85645, 174615 86137, 174592 86258, 175003 85844, 175538 85243, 175989 84654, 176309 84254, 176528 83921, 177274 83170)), ((99079 91440, 99079 96356, 98654 95940, 98386 95619, 97058 94597, 96609 94218, 93282 91547, 91602 90250, 88330 87370, 87909 86984, 87352 86443, 83690 82797, 90435 82797) (96105 92793, 96706 93328, 97295 93779, 97694 94100, 98027 94318, 98778 95065, 98035 94311, 97966 94229, 96963 93328, 96304 92779, 95812 92407, 95691 92384)), ((102985 81273, 103431 81326, 103516 81457, 103409 82170, 103417 84258, 103491 84868, 103367 86192, 103305 86994, 103156 88168, 103015 88595, 102831 89952, 102807 90936, 102840 91021, 102948 91457, 103061 93165, 103024 93291, 103052 93312, 103086 93846, 102889 94144, 102837 94377, 102710 94466, 102635 94385, 102367 94487, 102090 94165, 101878 94135, 101736 94023, 101846 92478, 101891 91504, 101878 89698, 101849 88705, 101775 88202, 101651 87866, 101553 87316, 101356 86911, 101253 86671, 101054 86100, 100946 85652, 100886 85469, 100869 83843, 100908 82600, 100907 82133, 100978 81163, 101021 81075, 101844 80237)), ((159007 92011, 159007 94417, 158123 93563, 157816 93235, 154070 89536, 151825 87249, 150870 86233, 148819 84218, 147686 83018, 147456 82869, 149858 82869)), ((115771 83681, 115443 83989, 111744 87734, 109459 89982, 108441 90934, 106426 92985, 105236 94110, 105081 94349, 105081 91937, 114223 82797, 116627 82797)), ((136730 93148, 136798 93703, 136300 93678, 136018 93257, 136403 92789)), ((137358 93224, 136746 93128, 136408 92783, 136635 92630)), ((76149 92200, 75983 92433, 75679 92896, 75525 92741, 75544 92474, 75287 92150, 75079 91910, 75079 91175)), ((105081 91284, 105081 89262, 105864 88501, 106819 87638, 107698 86828, 107806 86759, 109422 85352, 110021 84799, 109987 84853, 110273 84580, 112055 82797, 113473 82797)), ((153303 83655, 154166 84610, 154979 85489, 155047 85598, 156452 87211, 157005 87812, 156951 87779, 157224 88065, 159007 89845, 159007 91265, 150520 82869, 152542 82869)), ((172405 83061, 171404 84178, 168684 86828, 165007 90484, 165007 88861, 168651 85230, 169018 84854, 169113 84777, 170837 82869, 172594 82869)), ((96719 86442, 97095 86808, 97173 86903, 99079 88628, 99070 88929, 99079 89093, 99079 90384, 98887 90195, 97770 89195, 95121 86476, 91465 82797, 93088 82797)), ((155450 83367, 155554 83302, 155200 82869, 156788 82869, 157348 83410, 157890 83213, 159007 84347, 159007 87183, 156650 84880, 156483 84794, 156967 85324, 157591 85935, 159007 87358, 159007 89551, 157805 88338, 157804 88314, 156734 87233, 156207 86646, 155620 85924, 154974 85025, 153932 83936, 153167 83249, 152796 82869, 154945 82869)), ((164460 88822, 164494 89151, 164293 88913, 164277 88689)), ((164208 88612, 164189 88920, 163820 89074, 163471 88653, 163581 88341)), ((107089 85157, 107002 85324, 107532 84840, 108143 84216, 109566 82797, 111759 82797, 110546 84000, 110523 84001, 109441 85071, 108854 85597, 108134 86184, 107236 86830, 106146 87875, 105460 88639, 105081 89008, 105081 86859, 105577 86354, 105513 86252, 105081 86604, 105081 85016, 105620 84456, 105423 83915, 106555 82797, 109392 82797)), ((170652 83063, 168937 84848, 165007 88846, 165007 86732, 165651 86103, 166987 84740, 168495 83251, 168919 82869, 170827 82869)), ((95846 83441, 97210 84777, 98697 86285, 99079 86708, 99079 88617, 98885 88442, 97102 86727, 93103 82797, 95216 82797)), ((132605 80942, 132679 81240, 132639 83885, 132626 86911, 132579 87457, 132468 87891, 132408 87955, 131721 84879, 131642 83865, 131717 83332, 131736 83090, 132223 80744, 132332 80573)), ((185068 83712, 182443 86315, 181894 86793, 181388 87146, 181262 87190, 182429 85447, 183409 84096, 184279 83118, 184620 82869, 185934 82869)), ((165668 85880, 165007 86517, 165007 83298, 165433 82869, 168633 82869)), ((99079 83223, 99079 86425, 96069 83458, 95431 82797, 98652 82797)), ((189382 77634, 189533 77902, 189432 77951, 189621 77992, 189859 78147, 190259 78566, 190297 78633, 190571 78957, 190300 79070, 187503 79152, 187480 79162, 190367 79269, 190451 79291, 190930 79332, 191126 79496, 191115 79588, 190925 79808, 190944 79902, 190723 80018, 190502 80042, 190207 80102, 190101 80069, 189896 80085, 189558 80254, 189480 80459, 189264 80559, 188835 80586, 188798 80658, 189144 80686, 189070 80817, 188721 81173, 188444 81377, 187634 82080, 187525 82189, 186916 82527, 186359 82610, 179792 82660, 179515 82396, 178753 82406, 178617 82481, 178227 82637, 166761 82652, 166518 82434, 166424 82332, 166024 81948, 165775 81641, 168140 81662, 168180 81654, 166510 81514, 165591 81354, 165127 81404, 164558 81322, 164278 81434, 163970 81485, 163174 80658, 163113 80549, 165122 80420, 165647 80415, 165898 80346, 164225 80293, 163542 80303, 163484 80329, 162931 80374, 162762 80259, 163298 78955, 163539 78757, 164001 78202, 164175 78019, 164399 77870, 164809 77837, 164747 77814, 164488 77781, 164603 77599, 164875 77395, 168390 77388, 168474 77531, 168358 77799, 168168 78060, 168062 78152, 168101 78217, 168242 78167, 168385 78007, 168585 77913, 168883 77942, 168769 78146, 168714 78116, 168745 78205, 168984 78069, 169140 78143, 169213 78339, 169485 78278, 169672 78042, 169884 77856, 170071 77773, 170347 77624, 170627 77643, 171092 77414, 186849 77418, 189060 77382) (183570 80945, 182236 81159, 181723 81216, 179273 81566, 178434 81696, 176909 81968, 173954 82244, 173486 82276, 167994 82306, 172463 82332, 173277 82385, 173908 82321, 176853 82064, 179673 81615, 181888 81355, 182602 81288, 182762 81260, 184628 81173, 185504 81069, 185646 80974, 185122 80895) (182672 80254, 181737 80310, 181038 80388, 180511 80478, 180415 80551, 180887 80548, 181555 80498, 182171 80402, 183547 80335, 183404 80292, 184320 80257, 182872 80234) (185857 80305, 186996 80307, 187879 80274, 186964 80281, 185356 80267) (164582 78676, 163640 78757, 164183 78859, 166471 78868, 166748 78852, 167131 78863, 169650 78821, 169954 78760, 169535 78704, 167814 78708, 165430 78653)), ((165215 81692, 165379 81780, 165353 81891, 165483 82027, 165383 82128, 165287 82130, 165123 82410, 165129 82581, 165090 82597, 164457 82001, 164242 81784, 164184 81691, 164710 81711, 164822 81570)), ((144475 80866, 145429 80884, 147249 80950, 147676 81059, 147995 80907, 149189 80995, 150078 80952, 151077 80929, 151703 81000, 152174 81080, 152991 81083, 154257 81240, 155601 81336, 157224 81501, 157316 81521, 159195 81511, 160107 81571, 160054 81676, 159342 82423, 159123 82520, 155899 82467, 146251 82463, 138690 82501, 135245 82464, 134930 82219, 133963 81280, 133730 81041, 133654 80833, 133940 80822)), ((92122 77157, 94146 77202, 97757 77158, 98867 77205, 99105 77316, 100366 78547, 100403 78678, 99837 78569, 97581 78550, 96948 78628, 95787 78649, 95242 78650, 93639 78588, 91715 78546, 91028 78485, 90186 78391, 89714 78206, 89483 78192, 88983 78266, 88882 78301, 87752 78298, 85672 78335, 83666 78341, 83527 78371, 83625 78416, 85160 78406, 88802 78424, 88900 78357, 89024 78721, 89087 78678, 89640 78870, 89647 79282, 89034 79251, 88998 79275, 88164 79272, 87065 79185, 85844 78988, 84768 78952, 83389 78957, 82545 79030, 81829 79032, 80314 78959, 78416 78951, 76924 79029, 76950 79176, 77531 79227, 78330 79221, 78995 79268, 80869 79210, 84307 79214, 85033 79272, 86635 79354, 86872 79394, 87769 79482, 89806 79457, 89860 79410, 90104 79373, 90330 79396, 90407 79446, 91356 79442, 92471 79410, 93971 79538, 94339 79556, 95881 79762, 97398 79804, 97877 79720, 97444 79618, 96630 79583, 95891 79489, 95264 79459, 94320 79391, 92901 79318, 90412 79329, 90145 78917, 90156 78879, 90099 78506, 90869 78649, 91135 78784, 91853 78857, 93623 78874, 94278 78799, 95687 78778, 96834 78800, 98195 78858, 99584 78857, 100227 78788, 100424 78700, 100601 78786, 100785 79017, 101357 80061, 101288 80116, 100287 80307, 98569 80520, 97490 80602, 93792 80625, 92135 80563, 91122 80624, 90920 80787, 91813 80813, 92020 80867, 92623 80888, 93694 80882, 94027 80822, 96539 80818, 97447 80882, 98470 80866, 99385 80755, 100797 80517, 100863 80539, 100184 81271, 99936 81505, 99734 81510, 98721 81651, 98279 81693, 98273 81782, 98213 81825, 99436 81888, 99470 81923, 99167 82280, 98876 82462, 97325 82438, 86733 82431, 82152 82405, 75266 82403, 74771 82121, 73976 81375, 75354 81341, 75916 81234, 75734 81133, 74690 81028, 73684 81024, 73160 80507, 73131 80406, 73461 80405, 74325 80482, 75449 80479, 75815 80413, 77367 80321, 79468 80312, 80350 80252, 81066 80141, 86007 80156, 86295 80121, 86495 80078, 87190 80032, 86184 79991, 82616 79990, 81058 79956, 79791 79976, 79312 80001, 77313 79974, 75111 80083, 73874 80163, 72874 80164, 72719 80055, 72952 79352, 73188 79028, 73966 78231, 74018 78245, 74915 78171, 75001 78175, 75203 78072, 74821 77975, 74553 77944, 74430 77809, 74923 77317, 75147 77158, 76457 77157, 82752 77198, 88012 77155) (79707 80819, 79499 80909, 79881 81005, 81539 81035, 82181 81060, 83479 81374, 84317 81550, 83552 81279, 82793 80972, 82138 80741, 80295 80729) (89334 80366, 89237 80481, 89289 81073, 90046 80861, 90283 81008, 90091 80707, 90039 80520, 89576 80344)), ((110104 77200, 109859 77585, 109951 77626, 110433 77405, 110450 77792, 109877 78077, 109745 78229, 109512 78737, 109800 78780, 109961 78766, 112243 78819, 114906 78826, 117476 78600, 117665 78560, 118428 78565, 120113 78490, 121833 78477, 126725 78475, 127832 78494, 128672 78520, 128970 78585, 129228 79001, 129703 79495, 129811 79724, 130106 80058, 130185 80026, 130438 80023, 130479 80050, 130986 80001, 131218 79940, 131494 79760, 131419 80142, 131114 80377, 130591 80990, 130394 81191, 130174 81334, 130073 81511, 129834 81677, 125453 81640, 122828 81660, 122442 81675, 122006 81504, 121831 81490, 121449 81673, 120917 81655, 118368 81614, 116850 81518, 116589 81509, 116069 81393, 115510 81300, 114702 81093, 114449 80980, 113729 80908, 112446 80938, 112586 80991, 112003 81066, 112529 81111, 112449 81148, 114248 81254, 114841 81408, 115287 81582, 116255 81826, 116813 81856, 117020 81753, 119571 81750, 121503 81721, 121890 81586, 122366 81729, 124725 81748, 126717 81743, 129795 81717, 129710 81868, 129279 82320, 129110 82399, 123268 82450, 123084 82228, 122924 82082, 122771 82086, 122441 82299, 122014 82410, 120650 82450, 118956 82429, 115719 82445, 106388 82388, 105093 82393, 103941 81195, 103867 80994, 103989 81046, 104239 81004, 108895 81016, 109727 81027, 110262 81013, 110476 80960, 112539 80702, 113698 80507, 114034 80460, 114374 80379, 118849 80356, 122191 80328, 122276 80340, 123547 80292, 123776 80218, 124941 80261, 124969 80280, 125670 80261, 126189 80170, 126195 80099, 126040 80025, 125082 79975, 124668 79998, 124596 80021, 123510 80152, 122889 80184, 122130 80252, 119325 80258, 115979 80248, 115638 80254, 114233 80310, 112873 80460, 111249 80677, 109926 80875, 103738 80883, 103545 80780, 102917 80138, 102854 79857, 103089 79292, 103267 79170, 103975 79246, 104704 79287, 106010 79319, 107575 79305, 108507 79256, 114470 79240, 118164 79263, 118636 79284, 119274 79278, 119282 79230, 114472 79238, 107273 79201, 106366 79161, 105012 79051, 104285 79069, 103282 79153, 103367 78976, 104898 77424, 105153 77190)), ((165705 81671, 165679 81794, 165514 81793, 165243 81676, 165631 81631)), ((159204 78697, 159671 78696, 160640 78770, 160729 78813, 161566 79634, 160532 80776, 160478 81223, 160347 81308, 159638 81201, 157550 81208, 156937 81283, 155613 81158, 154810 81095, 153636 80948, 153209 80806, 151853 80622, 150867 80598, 150783 80632, 150347 80740, 148643 80853, 148513 80816, 148492 80844, 147961 80878, 147661 80681, 147427 80628, 147338 80502, 147419 80427, 147317 80159, 147640 79882, 147669 79670, 147781 79527, 149327 79637, 150301 79683, 152108 79666, 153099 79639, 153604 79566, 153938 79441, 154487 79343, 154894 79145, 155134 79043, 155704 78845, 156154 78738, 156336 78678, 157961 78659)), ((134385 78952, 134635 78978, 134948 79102, 138022 79213, 138141 79205, 140016 79199, 142319 79263, 143270 79216, 145359 79233, 145698 79264, 146988 79453, 146825 79772, 146866 80579, 146912 80688, 143737 80708, 140620 80746, 137113 80750, 136730 80770, 135564 80767, 133624 80799, 133400 80674, 132680 79908, 132816 79814, 133900 79883, 134924 79936, 135932 79899, 136947 79787, 134842 79734, 133844 79613, 133303 79581, 132988 79590, 132995 79502, 133174 79323, 133504 78959, 133801 78755)), ((159305 77332, 160383 78391, 160356 78419, 160008 78377, 159123 78365, 158056 78388, 156983 78445, 156240 78446, 155999 78403, 155348 78483, 154738 78673, 153967 79053, 153625 79269, 153381 79336, 152773 79464, 152515 79480, 152040 79490, 148833 79446, 148349 79422, 145474 79145, 145137 79141, 141181 78982, 139245 78941, 138522 78940, 137076 78821, 135617 78787, 134531 78795, 133802 78752, 133836 78613, 135122 77304, 135317 77261, 146131 77280, 152543 77278, 154065 77237, 159056 77217) (147401 78645, 147130 78698, 147153 78743, 147636 78782, 148404 78777, 148661 78740, 148629 78681, 148154 78639)), ((72405 50527, 72323 50845, 72236 51628, 72263 52963, 72330 53108, 72347 55010, 72185 57403, 71998 58807, 71963 59128, 71887 60953, 71914 62820, 71939 62898, 71954 62726, 71976 60761, 72207 57556, 72384 56283, 72500 55341, 72520 55030, 72520 52606, 72601 52007, 72597 51351, 72653 50791, 72718 50811, 73748 51864, 74223 52278, 74409 52473, 74689 52801, 74718 74998, 74670 76696, 74054 77378, 73925 77404, 73895 75852, 73907 75089, 73897 74427, 73826 74074, 73716 74202, 73683 76490, 73696 76854, 73756 77582, 73665 77770, 72611 78839, 72618 78356, 72585 77672, 72660 76950, 72973 74647, 73077 74016, 73349 72626, 73467 71947, 73598 70975, 73713 69666, 73690 66704, 73704 65454, 73628 64796, 73643 62785, 73643 60040, 73620 58660, 73588 57805, 73553 58600, 73471 64517, 73479 65073, 73448 65260, 73448 68166, 73518 68961, 73477 70233, 73383 71317, 73317 71770, 73003 73660, 72929 74044, 72469 77224, 72377 77427, 72287 78034, 72257 79091, 72220 79209, 72056 79235, 71358 79066, 71261 79287, 71248 78286, 71259 76684, 71400 74777, 71429 74095, 71458 72925, 71477 70616, 71431 70084, 71424 69087, 71372 66703, 71274 66503, 71156 67205, 71136 70986, 71140 72671, 71176 74078, 71160 74793, 71105 76195, 71044 76888, 70981 77332, 70953 78776, 71035 79418, 71028 79456, 70943 79333, 70577 79329, 69556 79395, 69453 79327, 69482 52891, 69589 52660, 70593 51627, 70717 51551, 70519 54028, 70500 54173, 70483 54492, 70490 58439, 70338 61664, 70309 65729, 70328 71338, 70233 72949, 69788 77936, 69981 76642, 70273 73529, 70422 71805, 70442 65590, 70434 62644, 70558 59385, 70577 59247, 70602 55383, 70625 54521, 70859 52475, 70873 51954, 70854 51454, 70969 51348, 70995 51200, 72325 50391) (72596 57078, 72576 57754, 72621 59615, 72620 62514, 72589 64641, 72649 66523, 72686 68446, 72706 70168, 72721 68999, 72752 68139, 72794 68393, 72828 67015, 72820 66207, 72780 65823, 72722 62853, 72722 59701, 72746 58291, 72750 57395, 72722 56855)), ((162452 50745, 162776 50980, 163573 51755, 163559 51807, 163635 52707, 163631 52793, 163732 52995, 163829 52611, 163860 52345, 163995 52222, 164487 52715, 164645 52939, 164648 54248, 164607 60658, 164648 65801, 164647 69910, 164602 71938, 164645 75547, 164601 76656, 164490 76897, 163258 78155, 163126 78193, 163235 77629, 163254 75373, 163178 74740, 163155 73577, 163154 73032, 163216 71431, 163258 69506, 163320 68819, 163413 67977, 163598 67504, 163612 67274, 163539 66775, 163504 66674, 163507 65544, 163469 63462, 163463 61456, 163433 61317, 163388 61416, 163398 62950, 163381 66594, 163449 66688, 163083 66815, 163126 66878, 162934 67431, 162525 67439, 162553 66824, 162529 66788, 162532 65953, 162619 64853, 162816 63632, 162852 62560, 162847 61181, 162774 60337, 162772 59620, 162845 58103, 162853 56207, 162775 54716, 162631 54740, 162579 55322, 162586 56121, 162538 56787, 162595 58661, 162590 62099, 162532 62824, 162450 64427, 162410 64663, 162322 65561, 162347 67598, 162394 67652, 162431 67895, 162408 68122, 162358 68199, 162362 69148, 162394 70263, 162266 71763, 162248 72131, 162042 73673, 162000 75189, 162085 75667, 162186 75235, 162223 74422, 162317 73683, 162345 73056, 162413 72112, 162488 70691, 162475 68204, 162887 67936, 162925 67946, 163298 67891, 163155 68661, 163020 68927, 162947 69645, 162932 71415, 163006 72070, 163026 73477, 163006 74626, 162948 75985, 162947 77375, 163017 78019, 163104 78214, 163019 78393, 162786 78576, 161741 79146, 161688 79078, 161497 78077, 161287 76360, 161202 75281, 161181 71581, 161241 69927, 161181 68912, 161017 68712, 160991 69604, 160937 69811, 160916 70415, 160922 71486, 160982 71819, 160986 74331, 160923 75237, 160939 76261, 161049 77177, 161287 78587, 161265 78653, 160531 77974, 160299 77727, 160294 77526, 160156 76513, 160114 76071, 160025 76062, 159981 76001, 159915 77227, 159881 77261, 159524 76957, 159343 76667, 159366 75117, 159373 64522, 159403 59944, 159401 53058, 159674 52592, 159683 52562, 160432 51767, 160466 53146, 160572 53708, 160673 53525, 160776 52482, 160780 51476, 161297 50952, 161398 50923, 161399 51253, 161321 52117, 161324 53239, 161404 53719, 161483 55159, 161492 57260, 161551 58141, 161663 58858, 161652 63799, 161687 64086, 161727 64286, 161772 64982, 161813 63976, 161814 60408, 161848 58850, 161829 57581, 161803 57104, 161831 55105, 161721 52902, 161641 51666, 161640 50666, 161749 50511) (160731 67079, 160945 67838, 160798 68075, 161099 67883, 161284 67829, 161460 67367, 161438 67126, 161323 67029) (160799 57670, 160769 59330, 160744 59973, 160430 61271, 160254 62109, 160525 61343, 160832 60585, 161064 59931, 161075 58087, 160985 57497, 160897 57292)), ((101796 50689, 102016 50881, 102110 50861, 102227 51081, 102250 51302, 102310 51597, 102278 51705, 102294 51910, 102462 52246, 102667 52325, 102767 52542, 102794 52970, 102866 53008, 102894 52662, 103025 52734, 103381 53083, 103585 53360, 104291 54172, 104401 54281, 104738 54890, 104819 55437, 104869 62013, 104604 62289, 104617 63052, 104691 63188, 104845 63579, 104860 75043, 104644 75288, 104540 75382, 104159 75781, 103850 76029, 103870 73664, 103862 73624, 103724 75294, 103562 76213, 103612 76677, 103530 77248, 103643 77526, 103693 77833, 102869 78632, 102759 78693, 102633 76740, 102626 76158, 102556 75906, 102502 77579, 102514 78263, 102539 78320, 102582 78874, 102469 79042, 101166 78511, 100966 78269, 100410 77803, 100227 77629, 100078 77405, 100046 76995, 100022 77057, 99989 77316, 99807 77201, 99607 76929, 99596 73414, 99740 73330, 100007 73447, 100268 73636, 100360 73742, 100426 73703, 100376 73563, 100216 73420, 100122 73222, 100150 72921, 100356 73035, 100325 73090, 100415 73059, 100277 72822, 100351 72664, 100547 72591, 100487 72321, 100251 72132, 100064 71920, 99981 71733, 99832 71457, 99851 71177, 99624 70714, 99630 54991, 99591 52745, 99845 52421, 100110 52271, 100159 52373, 100200 52183, 100356 51945, 100778 51545, 100845 51507, 101167 51233, 101279 51504, 101360 54301, 101370 54324, 101479 51437, 101501 51353, 101540 50874, 101704 50678) (100912 72272, 100918 73991, 100862 76374, 100884 77223, 100965 78168, 101067 77621, 101076 75333, 101061 75056, 101071 74674, 101029 72157, 100968 71853) (103103 56686, 103153 58235, 103367 59568, 103424 60081, 103775 62533, 103906 63373, 104176 64896, 104452 67850, 104484 68318, 104484 69368, 104516 73810, 104541 69341, 104593 68528, 104529 67896, 104272 64951, 103825 62132, 103563 59916, 103496 59203, 103468 59042, 103379 57154, 103278 56300, 103182 56158) (102442 58936, 102462 59136, 102518 60068, 102600 60767, 102689 61294, 102762 61389, 102759 60917, 102709 60250, 102610 59634, 102543 58258, 102500 58403, 102465 57485) (102491 54840, 102476 56448, 102515 55948, 102517 54808, 102484 53925)), ((133527 51475, 133644 51663, 133568 52293, 133531 53296, 133598 53567, 133661 53974, 133765 52972, 133788 52232, 133817 51841, 133951 51922, 134573 52569, 134650 52795, 134663 54998, 134661 56693, 134485 56745, 134556 57088, 134544 57739, 134461 57981, 134547 58197, 134649 58771, 134526 58974, 134516 59062, 134611 59264, 134570 59416, 134512 60000, 134528 60248, 134665 60689, 134638 67296, 134596 67378, 134586 69545, 134641 69531, 134663 74825, 134658 76472, 134406 76808, 134232 76879, 134199 76512, 134130 75350, 134045 74537, 133942 74609, 133893 74789, 133865 75253, 134112 76994, 133975 77198, 132763 78420, 132220 78936, 132121 78931, 132151 78318, 132137 77191, 132099 77138, 132017 77273, 131963 77600, 131960 78094, 131984 78959, 131859 79019, 131478 78343, 131082 78006, 130405 77247, 130263 77276, 130027 77232, 129593 76780, 129443 76518, 129433 71558, 129471 70680, 129448 68059, 129383 66476, 129408 58501, 129374 57960, 129507 57046, 129665 56145, 129512 55674, 129580 55535, 129549 54961, 129559 54617, 129488 54432, 129617 54033, 129425 53866, 129402 53590, 129426 52580, 130469 51523, 130500 51548, 130491 51976, 130440 52252, 130423 52802, 130479 53465, 130596 56710, 130586 65222, 130594 65650, 130580 65747, 130697 67533, 130870 69811, 130710 67424, 130661 65613, 130605 60590, 130616 56489, 130678 53333, 130678 52663, 130793 51908, 130872 51097, 130912 51060, 131387 51135, 132409 50418) (132739 71982, 132714 74097, 132657 75584, 132707 77327, 132823 77552, 132921 77110, 132960 76039, 132947 74878, 132866 74092, 132864 73347, 132825 70941) (132655 54911, 132565 55842, 132444 56463, 132269 57649, 132236 58879, 132181 59830, 132150 63573, 132151 64629, 132131 66866, 132158 70737, 132173 70855, 132192 70806, 132277 70862, 132308 68659, 132277 59192, 132430 57635, 132581 56700, 132679 56240, 132914 55803, 132951 54903, 133007 54684, 133006 54053, 132875 53825)), ((127045 77163, 128036 77187, 128442 77166, 128791 77645, 128853 77810, 128976 77951, 129167 78222, 128709 78309, 127701 78340, 126649 78348, 120195 78327, 118505 78250, 117638 78320, 117250 78423, 115786 78613, 114508 78664, 111161 78648, 111141 78504, 111790 78413, 112536 78204, 112660 77815, 112750 77463, 112713 77429, 112787 77414, 112822 77162, 120240 77144)), ((111127 77617, 111283 77985, 110861 78333, 110550 78223, 110820 77596)), ((129325 77292, 129687 77663, 130049 78066, 129591 77874, 129572 77910, 129067 77867, 128799 77646, 128555 77205, 128599 77197, 128558 77163, 128989 77151)), ((104336 76421, 104338 76517, 104620 76683, 104792 76678, 104808 76717, 104210 77346, 103992 77562, 103900 77620, 103920 77095, 103780 76982, 103901 76590, 103990 76425, 104100 76451, 104235 76321)), ((111121 77512, 110897 77527, 111030 77344, 111359 77310)), ((159007 57236, 158699 57558, 158728 57550, 158535 57779, 158620 57785, 159007 57456, 159007 60433, 154298 65175, 154297 65195, 149595 69888, 143105 76329, 142575 76869, 139852 76869, 140167 76574, 140214 76541, 141306 75196, 141160 75215, 141666 74420, 142499 73178, 143388 71910, 144353 70890, 144421 70790, 145693 69475, 146036 69143, 146354 68802, 147261 67786, 148583 66409, 151878 63106, 153522 61518, 154042 61088, 154385 60849, 155464 59621, 155571 59262, 155779 58894, 155672 58946, 155725 58805, 154626 60063, 154301 60456, 153509 61282, 153033 61753, 149346 65487, 147069 67725, 146053 68676, 144008 70756, 142888 71813, 141906 72916, 137986 76869, 135363 76869, 139299 72965, 156270 55984, 159007 53220) (157749 60340, 157003 61140, 152686 65400, 151958 66004, 150404 67570, 149929 68174, 149631 68528, 149152 69140, 148757 69609, 145402 72965, 144539 73919, 145407 73173, 145711 72923, 148436 70246, 148952 69814, 149798 68972, 150680 67843, 150942 67524, 152057 66271, 156089 62214, 157037 61114, 157694 60461, 157746 60468, 157793 60363, 158179 59929, 158307 59629, 158314 59378, 158254 59336)), ((159007 68227, 150364 76869, 145449 76869, 145864 76445, 146185 76178, 147207 74849, 147586 74399, 150258 71073, 151555 69393, 154436 66121, 154822 65701, 155363 65144, 159007 61482) (149011 73896, 148476 74498, 148025 75087, 147704 75486, 147486 75817, 146739 76568, 147493 75825, 147575 75756, 148478 74755, 149026 74096, 149399 73603, 149422 73481)), ((141584 74295, 140605 75643, 139735 76620, 139394 76869, 138080 76869, 138944 76030, 141571 73426, 142121 72945, 142628 72593, 142752 72550)), ((159007 73008, 158363 73637, 157027 75000, 155519 76488, 155096 76869, 153187 76869, 153362 76677, 155077 74893, 159007 70892)), ((159007 61478, 154822 65635, 154435 66032, 151552 69279, 151167 69750, 149191 72245, 147297 74507, 146735 75155, 146687 75234, 145224 76869, 143167 76869, 148103 71891, 148633 71725, 149391 70951, 149467 70774, 149749 70272, 158724 61283, 159007 61018)), ((159007 76442, 158581 76869, 155380 76869, 158346 73859, 159007 73221)), ((165383 61425, 165384 61466, 165949 62044, 166186 62393, 166422 62514, 166767 62778, 167008 62944, 167250 63407, 167521 63528, 167661 63723, 168251 64389, 168493 64610, 168807 64809, 169041 64976, 169398 65326, 175777 71745, 175793 71782, 178009 74011, 178034 73996, 181001 76869, 178459 76869, 177680 76108, 178359 76869, 173866 76869, 173022 76038, 171991 75126, 170759 73849, 169199 72288, 169199 72264, 165007 68048, 165007 66449, 165574 67014, 165007 66440, 165007 64056, 165421 64593, 166496 65717, 167314 66610, 174040 73405, 176478 75805, 176667 75840, 174865 73994, 166728 65904, 165459 64431, 165007 63856, 165007 61178) (170847 72303, 171217 72664, 171294 72759, 172989 74284, 171223 72586, 166611 68054)), ((172819 76869, 166942 76869, 165812 76043, 165007 75331, 165007 69056)), ((166008 54094, 168719 56788, 170662 58752, 170806 59203, 170934 59529, 171086 59674, 171475 59772, 171934 60084, 171945 60084, 173282 61371, 175000 63120, 176147 64269, 178384 66476, 188706 76869, 186812 76869, 183571 73624, 182725 72749, 182245 72288, 182008 72119, 179866 70326, 178322 69106, 177945 68845, 174036 64983, 173950 64888, 171063 62032, 170999 61953, 169876 60902, 169667 60782, 168735 59794, 168647 59683, 168055 59118, 167569 58753, 167556 58831, 167676 59050, 168325 59741, 168487 59925, 168815 60225, 168878 60259, 169868 61068, 170392 61552, 171083 62144, 176457 67523, 178007 68990, 179361 70140, 180967 71459, 182392 72610, 186665 76869, 184541 76869, 183270 75621, 182406 74824, 177924 70363, 183389 75875, 183871 76392, 184287 76869, 181631 76869, 180370 75613, 180680 75504, 180540 75275, 180183 75128, 180232 74634, 180590 74758, 180996 74617, 181035 74123, 178926 71943, 176463 69467, 174007 67320, 173815 67177, 173103 66458, 171458 64917, 169959 63433, 165608 59084, 165007 58463, 165007 54136, 167404 56559, 168386 57569, 170986 60136, 171296 60430, 171667 61040, 171817 61208, 172252 61392, 175165 64380, 176789 66147, 177208 66731, 177658 67309, 178238 68168, 178390 68484, 178971 69150, 180162 70300, 180085 70151, 180656 70624, 180256 70162, 180368 70224, 178796 68509, 178372 67876, 178095 67362, 177357 66288, 176831 65726, 176582 65605, 176376 65411, 174131 63172, 172224 61310, 171795 61064, 171372 60445, 169064 58111, 165007 54091, 165007 53152) (172904 65356, 176211 68647, 173728 66143, 173403 65793, 172947 65343)), ((159007 70877, 155363 74511, 154996 74887, 154901 74964, 153177 76869, 151420 76869, 151609 76679, 152610 75561, 155331 72912, 159007 69256)), ((165807 76115, 165808 76134, 166068 76346, 166091 76346, 166754 76869, 165734 76869, 165007 76144, 165007 75406)), ((105269 69399, 106388 70400, 109036 73121, 112696 76797, 111071 76797, 107438 73153, 107062 72787, 106985 72691, 105081 70969, 105081 69212)), ((99079 63346, 98316 64124, 99079 63445, 99079 67938, 98246 68784, 97336 69814, 96059 71046, 94498 72604, 94473 72605, 90255 76797, 88661 76797, 89225 76230, 88652 76797, 86266 76797, 86801 76383, 87925 75308, 88820 74490, 95614 67764, 98013 65326, 98048 65137, 96203 66939, 88112 75076, 86639 76345, 86064 76797, 83386 76797, 83633 76421, 83675 76420, 84253 75855, 84602 75618, 84722 75382, 84986 75037, 85152 74796, 85615 74556, 85736 74284, 85931 74143, 86597 73553, 86818 73312, 87017 72998, 87185 72764, 93953 66027, 93990 66011, 96219 63799, 96204 63774, 99079 60804) (94795 70581, 90262 75193, 94513 70957, 94875 70587, 94969 70510, 96492 68815)), ((108983 57089, 125964 74060, 128728 76797, 124712 76797, 124390 76489, 124398 76519, 124169 76325, 124168 76417, 124493 76797, 121515 76797, 116775 72091, 116756 72091, 112060 67388, 105633 60906, 105081 60365, 105081 57642, 105376 57961, 105409 58008, 106752 59098, 106734 58952, 107532 59458, 108770 60290, 110039 61178, 111060 62143, 111160 62212, 112475 63484, 112808 63828, 113148 64147, 114165 65052, 115542 66373, 118842 69670, 120431 71314, 120860 71834, 121099 72178, 122328 73254, 122686 73362, 123054 73571, 123002 73464, 123145 73516, 121885 72416, 121492 72091, 120666 71301, 120195 70825, 116461 67138, 114225 64862, 113510 64108, 113272 63845, 111229 61838, 110135 60679, 109033 59696, 105081 55776, 105081 53168) (108777 63198, 109027 63503, 111054 65556, 111705 66227, 112135 66741, 112976 67590, 114107 68471, 114426 68733, 115678 69847, 119734 73879, 120835 74827, 121487 75486, 121480 75538, 121585 75585, 122020 75973, 122320 76101, 122570 76106, 122612 76047, 121607 75540, 120810 74793, 116549 70477, 115947 69749, 114379 68193, 113774 67720, 113421 67423, 112809 66942, 112341 66548, 108984 63192, 108029 62331)), ((110058 65894, 110223 66423, 110997 67182, 111175 67258, 111678 67541, 120665 76514, 120931 76797, 120472 76797, 116315 72614, 115918 72228, 112669 69345, 112198 68959, 109705 66981, 107441 65090, 106794 64528, 106714 64480, 105081 63015, 105081 60959)), ((105505 63655, 105772 63975, 107101 64999, 107551 65378, 110876 68048, 112555 69346, 115828 72228, 116249 72614, 116806 73155, 120468 76797, 113722 76797, 105081 68154, 105081 63241) (106125 65283, 106194 65365, 107195 66268, 107853 66819, 108345 67191, 108467 67214, 108052 66805, 107451 66270, 106464 65496, 106133 65276, 105382 64530)), ((95353 61995, 95445 62008, 94921 62659, 94607 63157, 94542 63427, 94967 63766, 95240 63663, 95024 63960, 95206 64062, 88370 70902, 88355 70902, 82456 76797, 80875 76797, 81524 76136, 87109 70576, 88784 69012, 89549 68149, 89842 67712, 91050 66245, 92178 65047, 94781 62462, 95465 61758)), ((108091 76140, 108729 76797, 105506 76797, 105081 76371, 105081 73171)), ((105271 71152, 107057 72867, 111056 76797, 108941 76797, 108311 76154, 106948 74820, 105462 73309, 105081 72886, 105081 70979)), ((99079 76070, 98352 76797, 97616 76797, 98323 75997, 98342 75996, 98554 75736, 98554 75713, 99079 75050)), ((99079 74862, 98251 75992, 97541 76797, 91266 76797, 99079 68985)), ((99079 54992, 95832 58233, 94958 59079, 94496 59559, 94327 59796, 92535 61939, 91317 63482, 91053 63860, 87191 67768, 87096 67854, 84240 70743, 84161 70807, 83110 71928, 82992 72139, 82002 73070, 81891 73157, 81326 73751, 80961 74235, 81039 74249, 81258 74128, 81949 73479, 82134 73317, 82433 72989, 82467 72926, 83278 71936, 83762 71412, 84352 70722, 89975 65102, 91198 63799, 92348 62446, 93667 60840, 94818 59412, 99079 55139, 99079 57263, 97829 58534, 97034 59402, 92571 63881, 98085 58418, 98602 57936, 99079 57517, 99079 60173, 97821 61434, 97712 61124, 97484 61266, 97337 61625, 96844 61572, 96968 61214, 96826 60808, 96331 60770, 94152 62880, 91675 65341, 89528 67797, 89385 67989, 88665 68701, 87125 70346, 85641 71845, 81294 76196, 80671 76797, 76348 76797, 78768 74400, 79777 73419, 82348 70818, 82641 70508, 83250 70137, 83418 69987, 83600 69552, 86588 66639, 88357 65016, 88939 64597, 89517 64147, 90377 63567, 90667 63428, 91360 62833, 92511 61641, 92360 61719, 92834 61148, 92370 61550, 92432 61439, 90717 63008, 90085 63432, 89572 63709, 88500 64447, 87933 64976, 87815 65222, 87620 65429, 85380 67673, 83518 69580, 83274 70009, 82657 70432, 80319 72740, 76303 76797, 75361 76797, 76306 75796, 78998 73085, 80960 71142, 81411 70998, 81737 70870, 81884 70718, 81984 70329, 82293 69871, 82292 69859, 83579 68522, 85329 66803, 86477 65657, 88672 63434, 99079 53101) (88351 68077, 88001 68401, 87551 68857, 87564 68900, 90855 65593)), ((104002 76127, 104002 76290, 103884 76562, 103839 76173, 103879 76099)), ((152188 53559, 151361 54420, 151088 54691, 150513 55191, 150043 55617, 149545 56151, 149398 56388, 149140 56649, 148942 56953, 148910 57058, 149157 56922, 149235 57026, 149006 57348, 148417 58330, 148282 58682, 147103 60081, 144521 62731, 144395 62914, 144437 62899, 144967 62418, 147745 59645, 148679 58545, 148816 58319, 149026 58103, 149782 56552, 149676 56573, 149900 56293, 151055 55031, 151131 54931, 151988 53986, 153102 52871, 156454 52871, 155753 53568, 155101 54387, 155002 54527, 154468 55081, 154336 55284, 152603 57066, 150692 58984, 146924 62705, 146337 63227, 145615 63810, 144714 64448, 143625 65485, 142453 66767, 141222 68001, 138946 70325, 138933 70480, 139209 70225, 143357 66120, 144310 65263, 145188 64457, 145296 64390, 146912 62992, 147511 62443, 147478 62498, 147764 62226, 150910 59020, 152185 57753, 153845 56245, 154562 55608, 155187 54889, 155653 54298, 156069 53722, 156363 53364, 156885 52871, 158610 52871, 158130 53394, 156040 55499, 153295 58224, 149355 62161, 135007 76442, 135007 72355, 135223 72139, 135399 71944, 136859 70486, 139335 68041, 140124 67197, 139456 67742, 138727 68443, 136800 70414, 135007 72212, 135007 70956, 135395 70530, 136035 70063, 137086 69239, 137420 68892, 137674 68728, 138715 67821, 140179 66634, 140490 66332, 141486 65452, 142109 64881, 142940 63980, 142871 63880, 142488 64198, 141616 65058, 140319 66376, 139411 67106, 137905 68251, 137578 68515, 137070 68821, 136227 69426, 136128 69508, 135501 69968, 135007 70443, 135007 69178, 135236 69000, 139093 65110, 140231 63986, 141048 63488, 141149 63643, 141296 63569, 141328 63751, 141675 63359, 141878 63288, 142215 62970, 142309 62701, 143000 61978, 142785 61419, 144452 59747, 147140 57099, 150382 53853, 151060 53116, 151311 52871, 152875 52871)), ((167953 53896, 168022 53989, 168269 54257, 171991 57970, 174923 61108, 178821 65042, 184148 70341, 185808 72167, 187829 74618, 188152 74988, 187699 74376, 185961 72247, 184563 70646, 178809 64860, 175937 62005, 172882 58773, 172791 58661, 169199 55034, 168513 54319, 167670 53300, 167596 53191, 167331 52871, 169404 52871, 170607 54050, 170622 54079, 170886 54347, 172904 56585, 174192 58174, 175655 59740, 177254 61302, 177316 61339, 177216 61225, 175575 59554, 172988 56650, 172396 55926, 171149 54433, 170714 53958, 169616 52871, 172579 52871, 175352 55586, 181021 61292, 183806 64073, 183806 64086, 189007 69267, 189007 70455, 188933 70397, 188868 70529, 189007 70704, 189007 71781, 188396 71004, 188395 70980, 188089 70575, 187144 69257, 186670 68626, 185906 67681, 184719 66344, 182005 63656, 180806 62435, 180127 61864, 178227 59942, 175689 57403, 174376 56124, 174240 56032, 174313 56144, 176572 58446, 180099 61940, 180720 62665, 183136 65113, 183957 65836, 185093 67028, 185992 68053, 186314 68459, 187686 70266, 187921 70593, 188697 71598, 189007 72031, 189007 73984, 188753 73728, 188045 72892, 187404 72156, 186821 71533, 185696 70374, 183780 68428, 183291 68005, 182400 67120, 180299 65090, 180056 64977, 180738 65789, 184007 69112, 185539 70638, 186678 71734, 187215 72289, 188007 73156, 188827 74110, 189007 74294, 189007 76406, 165455 52871, 167049 52871) (172685 55779, 172869 56006, 173281 56437, 174992 58079, 177365 60454, 179284 62420, 179613 62727, 182744 65744, 183867 66845, 183152 66114, 182455 65380, 182711 65574, 181552 64367, 180844 63671, 180464 63351, 177766 60732, 175042 58008, 173014 55940, 172545 55507)), ((109809 53013, 110006 53189, 111464 54650, 113907 57125, 114751 57915, 114422 57520, 114207 57246, 113506 56518, 111536 54592, 109736 52797, 110993 52797, 111418 53185, 111886 53825, 112709 54877, 113057 55211, 113222 55464, 114128 56505, 115316 57971, 115618 58281, 116497 59276, 117067 59903, 117969 60730, 118069 60662, 117752 60280, 116892 59408, 115573 58111, 114842 57201, 113698 55699, 113435 55371, 113128 54860, 112524 54018, 111982 53293, 111505 52797, 112771 52797, 112948 53027, 116838 56885, 117962 58024, 118462 58838, 118307 58939, 118381 59086, 118199 59118, 118589 59465, 118661 59668, 118980 60006, 119249 60101, 119970 60790, 120529 60578, 122202 62245, 124851 64932, 128096 68172, 128832 68852, 129077 69096, 129077 70665, 128390 69978, 127531 69151, 127260 68878, 126331 67833, 125798 67335, 125562 67188, 125300 66930, 124996 66733, 124891 66700, 125027 66948, 124922 67026, 124600 66797, 123617 66206, 123266 66072, 121867 64893, 119217 62311, 119034 62186, 119049 62228, 119530 62757, 122305 65537, 123404 66469, 123630 66606, 123845 66816, 125395 67571, 125375 67466, 125655 67690, 126919 68845, 127019 68921, 127962 69781, 129077 70895, 129077 74244, 128381 73545, 127560 72893, 127422 72793, 126868 72258, 126666 72128, 124882 70393, 122964 68484, 119243 64714, 118721 64127, 118138 63406, 117500 62507, 116463 61418, 115182 60245, 113949 59015, 111623 56740, 111468 56723, 111724 56999, 115830 61148, 116685 62100, 117492 62978, 117560 63087, 118957 64702, 119505 65301, 119450 65268, 119722 65554, 122929 68701, 124195 69977, 126364 72372, 127060 72976, 127651 73442, 128224 73860, 128584 74153, 129077 74675, 129077 76402, 128554 75919, 126128 73509, 123726 71088, 119786 67144, 105506 52797, 109594 52797)), ((92605 52871, 92737 52937, 92912 52797, 93990 52797, 93215 53410, 93190 53411, 92785 53716, 91466 54660, 90834 55134, 89889 55898, 88552 57087, 85864 59799, 84644 61000, 84072 61680, 82150 63579, 79611 66116, 78334 67428, 78242 67564, 78354 67491, 80655 65234, 84148 61708, 84874 61085, 87321 58668, 88044 57847, 89236 56711, 90264 55812, 90670 55491, 92476 54118, 92803 53883, 93806 53108, 94241 52797, 96195 52797, 95938 53051, 95100 53759, 94364 54400, 93742 54983, 92582 56108, 90637 58024, 90214 58513, 89329 59404, 87299 61505, 87186 61750, 88002 61064, 91321 57797, 92852 56258, 93942 55126, 94497 54589, 95364 53797, 96318 52977, 96503 52797, 98614 52797, 75079 76356, 75079 74755, 76104 73851, 76198 73783, 76465 73535, 80180 69813, 83316 66881, 87252 62983, 92549 57656, 94375 55997, 96828 53975, 97197 53655, 96584 54109, 94455 55843, 92854 57241, 87068 62995, 84213 65867, 80981 68922, 80870 69013, 77242 72605, 76527 73291, 75508 74135, 75399 74209, 75079 74476, 75079 72400, 76260 71197, 76288 71182, 76557 70918, 78793 68900, 80382 67612, 81948 66149, 83510 64552, 83547 64490, 83250 64764, 81762 66229, 78858 68816, 78135 69408, 76643 70655, 76167 71090, 75079 72188, 75079 69225, 77794 66452, 83500 60783, 86282 57997, 86295 57997, 91476 52797, 92663 52797) (88322 58654, 87588 59349, 87782 59095, 86575 60255, 85879 60962, 85559 61340, 82940 64038, 80216 66764, 78926 68019, 78148 68790, 77715 69260, 77987 69119, 78215 68935, 78645 68523, 80287 66812, 82662 64439, 84628 62520, 87952 59062, 89053 57939)), ((179518 74202, 179848 74539, 179618 74702, 178904 74118)), ((179980 73638, 180254 74056, 179853 74533, 179542 74188, 179476 73622)), ((165668 59316, 171228 64901, 172793 66576, 173653 67339, 174092 67633, 175559 68842, 176757 69970, 179342 72573, 180046 73257, 179809 73144, 179796 73235, 179145 72711, 178647 72397, 178377 72332, 178038 72757, 178141 73030, 177844 72814, 177742 72998, 170902 66161, 170902 66146, 165007 60246, 165007 58667)), ((37951 71858, 41421 71918, 48916 71936, 51320 71988, 51441 72160, 51370 72954, 37902 72987, 31191 72983, 31191 71677)), ((62510 65079, 63147 65094, 63581 65270, 63548 65301, 63613 65612, 63616 65836, 63568 65896, 63662 65937, 63858 65897, 63959 65752, 64183 65681, 64224 65584, 64389 65646, 64707 65664, 64873 65722, 64890 65860, 65055 65787, 65547 65881, 65887 66055, 66209 66013, 66297 65902, 66306 65769, 66452 65685, 66507 65580, 66754 65499, 66951 65369, 67534 65322, 67661 65346, 67909 65282, 68053 65200, 67740 65164, 67763 65085, 68386 65096, 69105 65095, 69105 70595, 59402 70598, 59465 70564, 59351 70342, 59383 70243, 59278 69993, 59177 69828, 59183 69492, 59607 69507, 62260 69504, 60562 69420, 59113 69226, 59113 68249, 59930 68170, 59113 68148, 59113 66598, 60926 66600, 62148 66558, 63955 66585, 66839 66569, 67225 66518, 66891 66439, 61888 66468, 59400 66415, 59113 66420, 59113 65062)), ((177610 54049, 181840 58298, 182096 58509, 182309 58663, 182350 58648, 182109 58350, 179000 55243, 177757 53955, 176652 52871, 177659 52871, 178399 53580, 180968 56154, 181582 56848, 182946 58326, 183124 58555, 183816 59359, 185600 61106, 185744 61145, 186020 61385, 186106 61315, 186175 61592, 187931 63378, 189007 64611, 189007 66110, 188421 65518, 186980 63997, 186027 63129, 186067 63188, 185848 63165, 186602 63956, 186770 64196, 187311 64769, 188288 65738, 188601 65969, 188814 66158, 189007 66350, 189007 68540, 180856 60404, 176258 55838, 173962 53525, 173355 52871, 176274 52871) (184438 61350, 184205 61884, 185074 62441, 185138 62077, 184822 61539, 184599 61345) (175609 53091, 175595 53210, 177123 54779, 177660 55347, 178568 56684, 179096 57403, 178704 56708, 178363 56022, 178237 55798, 178273 55819, 177930 55188, 176288 53529, 175720 53091)), ((146755 53712, 146040 54528, 143464 57118, 143375 57357, 146530 54280, 147124 53652, 147110 53652, 147858 52871, 149571 52871, 149245 53064, 149111 53059, 148909 53214, 148654 53357, 147991 54117, 147122 55225, 146821 55486, 146702 55636, 146683 55735, 146822 56041, 147130 56042, 147239 56242, 146853 56637, 146190 57351, 145292 58198, 143163 60326, 143012 60554, 141915 61604, 141643 61854, 135007 68488, 135007 67912, 138541 64332, 140685 62277, 141029 62199, 141194 62000, 141110 61952, 141006 62143, 140659 62174, 137723 64951, 135007 67637, 135007 65442, 135421 65113, 135925 64651, 136075 64471, 136007 64471, 135448 64875, 135422 64909, 135007 65217, 135007 63475, 135384 62991, 137408 60300, 137694 59978, 140737 56837, 143746 53835, 144014 53598, 143990 53598, 144846 52871, 147403 52871) (141505 61323, 141273 61608, 141177 61782, 141189 61828, 140708 61597, 140277 61313, 139823 61698, 138919 62580, 137922 63654, 136807 64800, 137610 64014, 137913 63824, 138143 63610, 139203 62574, 139896 61853, 140343 61420, 141102 61962, 141173 61855, 141634 61473, 141645 61356, 141588 61284) (139430 59635, 138920 60162, 137308 61772, 137876 61275, 139762 59447) (143330 59530, 142925 59912, 142676 60382, 142281 60945, 141631 61487, 141634 61555, 141527 61694, 141999 61335, 142201 61251, 142623 60856, 142814 60571, 142872 60384, 143050 59914, 143334 59626, 143459 59458) (142381 56638, 141444 57522, 141227 57738, 140877 58178, 140727 58451, 141018 59166, 140943 59228, 140097 58955, 140028 59039, 139900 59330, 140162 59019, 140644 59239, 140671 59208, 140990 59344, 141211 59030, 141081 58769, 140785 58464, 141259 58054, 141300 58007, 141577 57865, 141562 57674, 141812 57413, 142066 57484, 141957 57245, 142364 56820, 142688 56421)), ((87726 53383, 86205 54824, 85338 55780, 85397 55741, 85373 55957, 86166 55202, 86403 55035, 86977 54493, 87947 53516, 88177 53203, 88366 52990, 88558 52797, 90752 52797, 83488 60070, 78047 65544, 75733 67843, 75079 68449, 75079 65530, 76259 64194, 80508 59964, 80719 59708, 80871 59497, 80857 59457, 80558 59698, 77451 62805, 76163 64047, 75079 65154, 75079 64145, 75788 63405, 78363 60836, 79059 60222, 80536 58858, 80763 58680, 81567 57988, 83314 56204, 83353 56060, 83594 55784, 83523 55698, 83800 55629, 85588 53873, 86819 52797, 88324 52797) (78916 63100, 78230 63441, 78006 63567, 78027 63531, 77396 63876, 75739 65516, 75300 66083, 75300 66195, 75419 66208, 76987 64681, 77556 64144, 78892 63236, 79611 62708) (83748 56982, 83554 57205, 83561 57366, 84092 57599, 84649 56730, 84286 56668)), ((128633 66857, 128614 67120, 128871 67446, 129077 67685, 129077 68432, 128008 67398, 128175 67164, 128479 66700)), ((117618 56333, 119673 58477, 119749 58822, 119948 58984, 119997 58902, 119805 58799, 119776 58450, 116999 55515, 114312 52797, 116506 52797, 116835 53211, 117300 53715, 117478 53865, 117479 53797, 117075 53238, 117040 53212, 116731 52797, 118473 52797, 118959 53175, 121648 55200, 121971 55485, 125111 58527, 128113 61538, 128350 61806, 128350 61782, 129077 62639, 129077 65193, 128237 64545, 127422 63830, 124830 61254, 124589 61164, 127668 64322, 128296 64916, 128296 64901, 129077 65649, 129077 67363, 128884 67036, 128890 66904, 128736 66700, 128594 66447, 127945 65881, 127929 65858, 126726 64916, 126462 64615, 126312 64495, 126214 64476, 125909 64612, 125907 64922, 125708 65030, 125313 64643, 124597 63980, 123750 63081, 121624 60956, 121394 60804, 120344 59709, 120099 59438, 113462 52797, 114038 52797) (120446 59578, 120614 59789, 120698 59992, 121093 60415, 121378 60605, 121566 60662, 122034 60842, 122322 61127, 122490 61250, 122418 61122, 122036 60717, 121568 60466, 121005 60073, 120464 59424, 120395 59425, 120256 59317) (122929 57954, 122709 58434, 122740 58461, 122605 58780, 122918 59004, 123180 58873, 123484 58577, 123748 58890, 123943 59092, 124084 59368, 124276 59354, 124538 59603, 124466 59856, 124704 59748, 125130 60156, 125528 60478, 125312 60172, 124428 59234, 124212 59017, 123771 58668, 123497 58519, 122782 58810, 122720 58734, 122993 57889, 122909 57820, 122618 57690) (117936 55402, 118124 55703, 119376 56993, 120095 57686, 120528 58133, 119987 58895, 120095 58966, 120477 59424, 120592 59435, 120664 59378, 120625 59296, 120204 58953, 120123 58980, 120353 58499, 120635 58067, 120252 57613, 119370 56709, 118296 55713, 117150 54599) (120673 55668, 122501 57552, 122313 57220, 121786 56710, 120177 55098)), ((187250 61669, 187365 61970, 187941 62645, 188417 63085, 189007 63685, 189007 64405, 188330 63662, 186222 61571, 186351 61122, 186385 61116, 186666 60885)), ((84605 53694, 83968 54251, 83135 54953, 82835 55178, 81954 55968, 81881 56085, 80871 57091, 78916 59102, 77067 60961, 76980 61082, 77099 61017, 78561 59538, 81877 56246, 81920 56107, 82236 55758, 81980 56115, 82239 56277, 82267 56198, 82960 55799, 83234 56143, 82527 56761, 81783 57500, 80775 58391, 79550 59345, 78565 60284, 77334 61520, 76649 62307, 76070 62888, 75079 63859, 75079 61373, 78843 57522, 81560 54854, 83073 53341, 83662 52797, 85536 52797)), ((184284 56635, 186953 59352, 188466 60865, 189007 61450, 189007 63326, 188110 62397, 187553 61760, 186851 60925, 186627 60625, 185836 59746, 185719 59673, 184714 58663, 182703 56708, 180843 54855, 180722 54769, 180788 54887, 182267 56353, 185558 59668, 185697 59711, 186057 60036, 185689 59770, 185530 60030, 185610 60059, 186005 60752, 185661 61026, 185043 60318, 184306 59573, 183415 58567, 182459 57342, 181520 56354, 180284 55125, 179497 54441, 178911 53862, 177938 52871, 180433 52871)), ((144547 53041, 143718 53780, 142039 55450, 140716 56832, 139958 57520, 137808 59682, 137316 60218, 136579 61094, 136172 61663, 136172 61688, 135188 63070, 135007 63256, 135007 61167, 139533 56627, 143297 52871, 144750 52871)), ((96910 62186, 96326 62900, 96412 62286, 96749 61956)), ((125321 57323, 129077 61088, 129077 62540, 128907 62338, 128168 61511, 126499 59829, 125116 58506, 124429 57749, 122266 55600, 121730 55107, 120854 54369, 120285 53962, 120260 53962, 118880 52980, 118693 52797, 120782 52797)), ((96743 61951, 96398 62262, 95832 62328, 95846 61824, 96266 61554)), ((185247 53945, 185581 54313, 187922 57028, 188154 57258, 189007 58165, 189007 60670, 188765 60405, 185386 57071, 181232 52871, 184195 52871) (184785 54523, 185180 54972, 185862 55647, 186138 55852, 186144 55798, 185742 55343, 185063 54672, 184807 54465)), ((82617 53039, 79279 56418, 75079 60571, 75079 57609, 76153 56557, 76521 56223, 79237 53882, 79466 53650, 80373 52797, 82881 52797) (77551 56063, 76880 56742, 76673 56997, 76731 57019, 77180 56624, 77855 55942, 78060 55667, 78006 55660)), ((105920 56736, 108524 59361, 109004 59910, 109354 60418, 109398 60543, 107657 59376, 106306 58395, 105330 57525, 105081 57184, 105081 55870)), ((141086 54414, 138711 56817, 135831 59664, 135007 60510, 135007 60116, 136109 59069, 137644 57533, 138814 56466, 139728 55507, 139949 55180, 140052 55103, 140120 54953, 139775 55121, 137726 57186, 137432 57589, 136918 58117, 135007 60014, 135007 58697, 136543 57130, 135762 57906, 135077 58560, 135007 58570, 135007 56543, 136073 55475, 138903 52871, 142627 52871)), ((122880 53901, 124415 55436, 125484 56606, 126442 57517, 126771 57739, 126849 57842, 126999 57910, 126827 57568, 124761 55516, 124359 55223, 123831 54711, 121938 52797, 123251 52797, 124820 54334, 124044 53554, 123388 52867, 123379 52797, 125406 52797, 126473 53863, 129077 56697, 129077 60417, 127538 58880, 125132 56501, 122317 53657, 121439 52797, 121833 52797)), ((186313 53101, 186381 53180, 186893 53644, 186937 53773, 187298 54289, 187286 54632, 187033 54602, 186983 54730, 186521 54641, 186370 54745, 186800 55441, 187130 55377, 187419 55062, 187546 54796, 187594 54514, 187801 54811, 189007 56006, 189007 58050, 188155 57189, 188055 57054, 187813 56776, 186703 55393, 186336 54757, 186150 54750, 184935 53377, 184466 52871, 186046 52871)), ((79398 53649, 79262 53750, 78984 53991, 77604 55101, 76965 55468, 76958 55654, 75585 56872, 75079 57341, 75079 55758, 75311 55491, 75390 55423, 75852 54911, 75981 54867, 76499 54506, 76840 54518, 76810 54771, 76938 54821, 76849 55285, 76953 55435, 77652 55004, 77587 54674, 77272 54385, 77005 54258, 76725 54210, 77021 54003, 78214 52797, 80258 52797)), ((127878 52948, 128221 53202, 128626 53549, 128316 53024, 128095 52797, 128646 52797, 129077 53222, 129077 56663, 126841 54172, 126615 53910, 125978 53085, 125716 52797, 127721 52797)), ((136120 55333, 135295 55971, 135007 56234, 135007 54227, 135157 54071, 135412 53728, 135759 53324, 135231 53632, 135007 53853, 135016 53294, 135432 52871, 138870 52871)), ((189007 53607, 189007 55778, 187953 54656, 187710 54458, 187531 54250, 187362 54011, 187000 53674, 186884 53619, 186210 52871, 188280 52871)), ((76864 53851, 76668 54094, 76462 54273, 76220 54442, 75882 54804, 75827 54920, 75079 55594, 75079 53527, 75815 52797, 77987 52797)), ((85870 53476, 83779 55583, 83330 55455, 83324 55421, 83093 55140, 83877 54554, 84179 54439, 84854 53863, 85293 53387, 85893 52797, 86613 52797)), ((41362 51603, 44970 51632, 50644 51757, 51461 51798, 51461 54959, 31191 54979, 31191 53519, 34314 53534, 35148 53617, 34903 53497, 35351 53430, 33974 53235, 31191 53222, 31191 52634, 32475 52554, 32391 52545, 48553 52549, 49282 52519, 48721 52477, 31605 52431, 31191 52437, 31191 51613, 36010 51597)), ((149605 53940, 149372 53774, 148908 53471, 149067 53315, 149330 53335, 149656 53078, 149894 52871, 150632 52871)), ((151049 48205, 151509 48242, 154740 48581, 154801 48576, 156809 48682, 159295 48751, 161732 48700, 161583 48755, 161690 49948, 161471 50080, 160866 49988, 160817 49972, 160158 49933, 157516 49889, 157546 49917, 158531 50023, 158771 50021, 160084 50053, 160964 50120, 161312 50180, 161038 50354, 160373 51025, 160234 51081, 159784 51074, 158903 50955, 157379 50722, 157085 50640, 156464 50507, 156186 50372, 155381 50206, 154704 50172, 154610 50141, 154300 50134, 153236 50290, 152354 50360, 149370 50372, 149176 50487, 152687 50544, 153549 50512, 154782 50527, 155548 50608, 155756 50652, 156907 50853, 158400 51070, 159607 51296, 160022 51346, 159931 51471, 159382 51921, 158611 52197, 157966 52308, 157800 52249, 157099 52278, 156670 52311, 156350 52210, 155907 52090, 155472 51922, 154994 51819, 154613 51762, 154311 51626, 154295 51517, 153968 51409, 153061 51489, 152054 51649, 151737 51612, 151584 51667, 151359 52036, 151441 52258, 151314 52478, 150872 52486, 150236 52522, 149406 52486, 147343 52486, 147152 52543, 146249 52521, 146206 52495, 137251 52485, 136707 52453, 136419 52500, 136017 52490, 135730 52354, 135823 52307, 136148 52292, 136038 52152, 136198 52060, 142993 52041, 145134 52106, 145369 52301, 145544 52274, 145515 52170, 145379 52233, 145162 52004, 142246 51889, 136460 51885, 136111 51866, 135701 51684, 135499 51367, 135724 51206, 136658 51185, 138129 51120, 135683 51110, 135356 51015, 135026 50987, 134135 50492, 133869 50315, 133604 50287, 133898 50578, 134092 50847, 134100 50970, 134061 51046, 133896 51052, 133488 50986, 133055 50738, 132133 49845, 132089 49730, 132317 49594, 132554 49538, 132487 49335, 132762 49271, 132943 49166, 135556 49156, 138149 49126, 138487 49095, 138515 49083, 140253 48921, 140659 48895, 140973 48849, 141688 48777, 144334 48297, 144682 48268, 147939 48200) (147077 52166, 146761 52236, 146593 52289, 146010 52213, 145921 52304, 146281 52371, 146428 52460, 146825 52481, 147053 52416, 147179 52316, 147499 52111, 147813 52107, 147979 52072, 147875 52028, 147431 52009) (142770 51092, 141211 51120, 142343 51134, 142612 51213, 142960 51230, 144059 51243, 144792 51228, 145281 51239, 145515 52171, 145597 52146, 146014 52204, 146084 52108, 146089 51979, 145990 51935, 145632 52004, 145603 52105, 145427 51619, 145288 51107, 144833 51054, 143851 51040) (137547 49874, 139210 50134, 140251 50342, 140828 50372, 141012 50351, 140954 50299, 139596 50060, 138056 49849) (146352 49272, 146066 49406, 146444 49363, 146578 49862, 146612 49860, 146723 50187, 146807 50057, 146759 50049, 146445 49260) (147739 49201, 147320 49265, 147080 49353, 146898 49905, 147087 49592, 147124 49437, 147647 49460, 147909 49554, 148004 49401, 148290 49392, 148418 49639, 148445 49928, 148434 49626, 148557 49441, 148948 49362, 149352 49306, 149038 49240, 148072 49201) (144663 49291, 143187 49352, 146064 49406, 145685 49268)), ((154072 51890, 155300 52140, 155999 52339, 155730 52422, 154886 52479, 153571 52528, 153891 51698, 154059 51695)), ((191898 47272, 192121 47381, 192107 48385, 192233 48507, 191108 48420, 189084 48311, 188896 48292, 188333 48275, 183367 48281, 180143 48130, 176075 48101, 170466 48120, 169006 48023, 164040 47578, 165432 47773, 170003 48214, 176215 48234, 179161 48226, 182419 48346, 182557 48366, 187074 48394, 187986 48417, 189586 48566, 190813 48651, 191483 48665, 192157 48644, 191918 48761, 191953 48782, 191959 49076, 191728 50115, 191531 50195, 191278 50115, 190341 50028, 188895 50055, 188718 50122, 186794 50139, 184401 49976, 182997 49788, 182676 49753, 180851 49679, 178984 49705, 178906 49731, 179079 49746, 181043 49768, 184248 49999, 185521 50176, 186463 50292, 186775 50311, 189227 50311, 189861 50393, 190596 50389, 191190 50445, 191177 50491, 190044 51540, 189572 52014, 189356 52200, 189002 52481, 166806 52510, 165108 52461, 164415 51830, 164400 51717, 165953 51686, 166716 51697, 167377 51687, 167730 51617, 167602 51507, 165314 51472, 164950 51486, 164222 51548, 164024 51457, 162923 50403, 163407 50410, 164097 50374, 164825 50449, 167159 50765, 167790 50869, 169179 51141, 169858 51259, 170829 51390, 172142 51505, 175100 51482, 176350 51495, 177008 51420, 179019 51434, 181764 51434, 183144 51411, 183999 51380, 183204 51343, 177287 51262, 176731 51271, 176544 51240, 173638 51239, 172843 51310, 171571 51267, 170487 51174, 170034 51109, 168144 50795, 167762 50721, 165394 50376, 164531 50259, 164292 50168, 163653 50079, 162537 50048, 162413 50011, 162378 49848, 162398 49148, 162218 49051, 163254 49039, 164912 49050, 167015 49190, 167709 49220, 168879 49248, 171190 49269, 171721 49223, 172718 49216, 175101 49164, 175304 49066, 174599 48948, 170822 48928, 169133 48932, 167819 48965, 167077 48951, 165546 48897, 164798 48836, 164386 48773, 162857 48740, 162111 48831, 162265 48733, 162312 48368, 162165 47348, 162515 47241) (182189 50413, 179290 50412, 177163 50381, 175281 50440, 173358 50478, 171638 50498, 172806 50513, 173665 50544, 173412 50584, 174789 50618, 175597 50610, 175981 50572, 178953 50513, 182104 50514, 183514 50538, 184409 50540, 184949 50512, 184725 50388, 184050 50368)), ((159232 52189, 158997 52421, 158573 52475, 158182 52496, 158197 52371, 158652 52236, 159242 52028)), ((92995 50946, 93017 51091, 92367 51182, 91624 51390, 91499 51780, 91408 52133, 91446 52167, 91371 52182, 91335 52436, 83921 52450, 77113 52431, 76121 52407, 75716 52429, 75369 51951, 75305 51785, 75182 51644, 74991 51375, 75448 51289, 76455 51257, 77507 51250, 83963 51269, 85653 51346, 86517 51274, 86906 51172, 88372 50981, 89649 50933)), ((74567 51723, 74586 51687, 75091 51727, 75361 51950, 75603 52389, 75559 52397, 75600 52431, 75169 52443, 74836 52307, 74469 51932, 74109 51529)), ((105392 47155, 117427 47165, 122004 47193, 131981 47194, 131945 47468, 131972 47478, 131991 48234, 131181 48265, 130995 48263, 130404 48367, 130620 48467, 131431 48576, 131827 48584, 132056 49015, 132055 49099, 131976 49222, 131043 49112, 130053 49114, 129353 49194, 127101 49263, 126981 49276, 124690 49282, 123806 49340, 123091 49453, 118149 49442, 117862 49477, 117664 49517, 116968 49562, 117974 49603, 121542 49604, 123100 49638, 124368 49619, 124847 49594, 126847 49624, 129122 49511, 129247 49498, 130757 49436, 131993 49435, 131965 49545, 131426 50248, 131167 50567, 130292 51362, 130235 51349, 129281 51427, 129189 51423, 128958 51523, 129343 51620, 129609 51653, 129739 51788, 129295 52237, 129010 52437, 127898 52439, 121408 52398, 116148 52439, 112039 52438, 110010 52396, 106400 52437, 105291 52390, 105051 52280, 103669 51047, 103603 50918, 104238 51026, 106575 51046, 107209 50968, 108916 50947, 110519 51007, 112443 51049, 113132 51110, 113972 51207, 114446 51392, 114676 51405, 115173 51329, 115275 51295, 116404 51299, 118962 51258, 120492 51253, 120631 51223, 120532 51179, 119000 51191, 115354 51171, 115260 51239, 115134 50874, 115071 50917, 114518 50728, 114509 50315, 115126 50344, 115162 50320, 115995 50326, 117095 50411, 118316 50607, 119388 50642, 120768 50640, 121613 50567, 122330 50564, 123846 50635, 125744 50644, 127234 50569, 127209 50421, 126627 50369, 125829 50376, 125162 50329, 123287 50385, 119850 50380, 119125 50322, 117523 50242, 117287 50204, 116389 50113, 114354 50137, 114299 50185, 114053 50225, 113827 50199, 113751 50149, 112802 50153, 111687 50186, 110186 50056, 109817 50038, 108275 49832, 106758 49789, 106246 49874, 106716 49976, 107528 50013, 108267 50107, 108894 50136, 109838 50205, 111257 50278, 113745 50267, 114013 50677, 114002 50715, 114057 51092, 113288 50947, 113022 50814, 112303 50737, 110534 50723, 109879 50796, 108471 50818, 107325 50796, 105961 50739, 104443 50737, 103768 50805, 103575 50896, 103361 50809, 103148 50577, 102464 49533, 102521 49480, 103627 49289, 105500 49076, 106635 48994, 110367 48972, 112023 49035, 113035 48974, 113236 48807, 112345 48781, 112138 48727, 111533 48708, 110461 48714, 110129 48774, 107619 48779, 106706 48713, 105360 48729, 105056 48803, 104736 48843, 103282 49078, 103162 49055, 103608 48325, 103611 48113, 104743 47905, 104534 47771, 102306 47706, 102219 47663, 102134 48401, 102205 48600, 102098 48551, 101581 48593, 95401 48581, 94432 48570, 93896 48584, 93682 48638, 91619 48894, 90461 49089, 90125 49136, 89783 49216, 81967 49267, 81882 49254, 80609 49302, 80381 49378, 79216 49335, 79187 49316, 78490 49333, 77969 49428, 77962 49498, 78118 49571, 78865 49602, 79077 49619, 79491 49596, 79563 49574, 79926 49524, 80646 49444, 81267 49412, 82027 49342, 88522 49340, 89923 49284, 91285 49137, 92909 48921, 94233 48720, 102189 48712, 102033 48818, 102093 49457, 101994 49740, 101452 50303, 101216 50428, 100425 50350, 99609 50309, 98186 50279, 96585 50292, 95649 50340, 89688 50356, 85995 50335, 85524 50314, 84886 50319, 84878 50368, 89686 50358, 96884 50395, 97798 50436, 99207 50547, 100033 50527, 101194 50445, 101061 50620, 99262 52173, 99007 52404, 94053 52395, 94299 52009, 94206 51969, 93723 52192, 93706 51802, 94279 51520, 94412 51369, 94646 50857, 94360 50814, 94199 50829, 91913 50778, 89253 50768, 86684 50998, 86494 51038, 85728 51033, 84045 51105, 82325 51118, 77432 51121, 75485 51076, 75186 51009, 74930 50594, 74453 50102, 74346 49870, 74051 49537, 73973 49569, 73722 49574, 73680 49546, 73175 49593, 72940 49657, 72666 49837, 72738 49454, 73042 49221, 73566 48606, 73763 48407, 73984 48264, 74086 48083, 74322 47917, 78704 47956, 81331 47935, 81715 47919, 82151 48090, 82326 48105, 82710 47922, 83241 47940, 85790 47980, 87568 48086, 88088 48205, 88646 48298, 89455 48505, 89729 48626, 90431 48688, 91712 48658, 91572 48605, 92157 48532, 91629 48486, 91709 48450, 89910 48343, 89317 48188, 88870 48015, 87904 47767, 87344 47739, 87134 47842, 84587 47845, 82655 47874, 82268 48009, 81792 47865, 79432 47848, 77439 47853, 74361 47877, 74448 47729, 74879 47278, 75048 47197, 80890 47147, 81073 47370, 81232 47516, 81385 47511, 81717 47298, 82144 47188, 83507 47146, 85173 47167, 86272 47168, 88441 47149, 99647 47208, 102228 47205, 102269 47246, 102449 47133) (114110 48735, 113873 48588, 114065 48889, 114121 49076, 114583 49252, 114824 49232, 114921 49116, 114871 48524) (120605 48315, 121404 48640, 122019 48853, 123863 48869, 124451 48779, 124658 48687, 124278 48590, 122619 48561, 121977 48536, 120677 48220, 119841 48044)), ((93126 52250, 92797 52284, 93035 52083, 93259 52068)), ((93607 51371, 93336 52000, 93028 51979, 92874 51610, 93297 51263)), ((51461 49486, 51461 50723, 50634 50731, 51461 50734, 51461 51674, 50563 51620, 46517 51435, 43948 51387, 40815 51417, 33014 51458, 31191 51444, 31191 49484)), ((134408 51334, 134628 51483, 134788 51629, 134501 51638, 134228 51627, 134211 51539, 134060 51372, 134200 51294)), ((138713 47251, 138475 47456, 137963 48114, 137988 48328, 138093 48422, 138471 48422, 138420 48547, 138574 48622, 138878 48465, 139200 48539, 139460 48543, 139712 48586, 139986 48468, 140055 48630, 140236 48692, 140170 48877, 138439 49042, 138118 49065, 135607 49144, 132901 49111, 132576 49034, 132297 48953, 132212 48784, 132366 48667, 132747 48594, 132823 48360, 132544 48219, 135087 48221, 135754 48102, 135392 48022, 133270 48003, 132386 48010, 132178 47981, 132169 47794, 132370 47584, 132517 47473, 132593 47270, 133152 47195) (133086 47631, 133167 47684, 133386 47643, 133473 47552, 133443 47499, 133034 47498)), ((35792 48667, 36397 48725, 38847 48856, 38447 48902, 37214 48990, 35497 49036, 34203 49016, 32537 49048, 31191 49044, 31191 48382)), ((33077 47044, 34889 47199, 46662 47563, 49626 47665, 50322 47748, 50554 47796, 51223 47789, 51301 47940, 50952 48441, 51397 48714, 51364 48835, 51168 48976, 48223 49014, 47670 48878, 48396 48790, 46960 48848, 45422 48785, 40522 48839, 36730 48637, 34307 48419, 31910 48266, 31191 48163, 31191 46949)), ((142440 47210, 145614 47210, 154116 47260, 157083 47254, 161630 47207, 161824 47320, 161842 47902, 161871 48158, 161779 48503, 161043 48451, 159306 48453, 159087 48520, 154868 48543, 151700 48194, 151048 48133, 150723 48138, 148758 48118, 147910 48143, 147460 48112, 144928 48130, 144361 48163, 143508 48260, 141544 48674, 140713 48803, 140638 48716, 140273 48688, 140759 48515, 141078 48177, 141292 47878, 141306 47765, 141640 47461, 141735 47299, 142270 47178)), ((171926 41086, 174281 41112, 174335 41156, 174403 41928, 174409 42217, 174277 42312, 173213 42240, 172696 42190, 171239 42144, 169425 42259, 168182 42267, 164306 42355, 169841 42415, 171069 42417, 172770 42537, 173497 42508, 174142 42536, 174387 42641, 174381 45396, 174282 45486, 174150 45535, 172538 45451, 169896 45380, 169141 45462, 169258 45543, 171401 45649, 173378 45670, 174252 45695, 174410 45845, 174309 46500, 173969 46592, 173646 46598, 167947 46562, 163910 46559, 163422 46446, 163169 46443, 162591 46486, 161025 46475, 160296 46400, 159769 46487, 158929 46552, 158494 46559, 157627 46437, 157129 46510, 156733 46506, 154994 46450, 154603 46461, 153882 46557, 153155 46578, 152339 46563, 130010 46585, 120641 46560, 116929 46607, 112696 46559, 112487 46436, 112464 46261, 112684 46117, 113349 46095, 116755 46023, 118310 45942, 118573 45905, 119233 45840, 118803 45772, 117550 45767, 112688 46034, 112482 45871, 112505 44623, 112456 44136, 112711 43965, 113667 43976, 116349 43931, 116702 43845, 115511 43807, 112763 43792, 112519 43674, 112869 43373, 112850 42871, 112877 42773, 112967 42237, 112701 42142, 112726 41984, 112484 41699, 112468 41310, 112544 41191, 112743 41123, 125412 41113, 127569 41151, 139744 41110, 159082 41129, 160266 41095, 161412 41115, 162340 41154, 163156 41166, 164740 41297, 165304 41295, 166156 41236, 166418 41308, 167713 41314, 168799 41252, 169366 41183, 170158 41304, 170819 41048) (160948 44410, 161902 44494, 163882 44742, 165666 44807, 166113 44852, 167057 44875, 167247 44831, 167134 44719, 162498 44396, 161242 44292, 158568 44174) (115540 44571, 114975 44668, 116024 44730, 117518 44756, 119210 44749, 122202 44650, 124302 44629, 122324 44610, 118712 44532) (131247 44042, 135006 44098, 146494 44096, 151655 44086, 147210 44079, 148154 44008, 144387 43988, 136519 43987) (140933 42350, 139126 42416, 142091 42406, 145766 42368, 141807 42343)), ((107932 35347, 109743 35341, 109924 35295, 139376 35295, 139360 35427, 139491 35675, 139616 35842, 139607 36176, 139083 36161, 135802 36164, 137901 36250, 139571 36430, 140622 36385, 142593 36356, 143286 36308, 143354 36356, 143361 37203, 143242 37293, 139777 37413, 138686 37497, 140555 37538, 141775 37529, 141916 37507, 143266 37461, 143423 37512, 143379 38960, 143274 39151, 143406 39701, 143432 39935, 143203 40118, 143011 40126, 143200 40138, 143371 40361, 143358 40481, 143209 40594, 141553 40611, 135492 40589, 134704 40575, 134170 40398, 134211 40367, 134130 40056, 134126 39832, 134185 39772, 134069 39731, 133827 39772, 133702 39918, 133423 39989, 133372 40084, 133168 40023, 132777 40005, 132569 39947, 132548 39808, 132344 39883, 131736 39789, 131315 39613, 130905 39655, 130792 39766, 130775 39899, 130587 39983, 130518 40088, 130202 40169, 129951 40299, 129204 40346, 129041 40322, 128727 40386, 128544 40469, 128939 40504, 128908 40583, 128209 40575, 85022 40567, 84816 40420, 84777 40269, 85021 40002, 85125 39995, 85021 39990, 84758 39790, 84799 39282, 84922 38911, 85218 38885, 85773 38816, 87708 38820, 90026 38741, 85944 38664, 85574 38597, 84952 38560, 84873 38380, 85078 38252, 85826 38030, 85941 37960, 86207 37863, 86526 37811, 87040 37747, 87303 37780, 87712 37759, 87989 37607, 87975 37386, 88172 37292, 88823 37240, 88794 37183, 88195 37162, 87946 37021, 88206 36589, 88365 36441, 88963 35534, 89144 35448, 89372 35295, 107830 35295) (135939 39114, 133697 39084, 130096 39099, 129614 39150, 130029 39229, 136260 39203, 139341 39252, 141002 39230, 142204 39153, 141150 39073, 137451 39069) (105784 37299, 104654 37341, 103335 37454, 101848 37502, 102328 37568, 104017 37521, 105601 37434, 106460 37358, 106603 37296) (113920 35767, 108358 36171, 102831 36486, 102050 36522, 97340 36654, 95719 36746, 95685 36837, 96866 36884, 99117 36830, 103364 36582, 109963 36123, 113872 35800, 122305 35452, 122755 35451, 122324 35449)), ((206000 36515, 205872 36674, 206002 36783, 205990 38102, 205956 38164, 204385 38359, 203970 38395, 200934 38594, 198367 38680, 196289 38697, 193540 38700, 189908 38681, 186512 38625, 184500 38702, 184637 38729, 184389 38851, 186082 38916, 186430 38948, 190106 38937, 191082 38891, 196644 38882, 199168 38945, 201268 38930, 203252 38802, 205407 38611, 205517 38587, 205832 38570, 206070 38599, 205995 39612, 202862 39809, 202926 39827, 202880 39935, 205820 40000, 206027 40044, 206111 40294, 206109 40462, 205799 40587, 201358 40554, 175322 40543, 162606 40568, 152823 40561, 144643 40570, 144171 40289, 144070 39814, 144032 39448, 147479 39440, 149058 39325, 148458 39231, 146755 39140, 144130 39129, 144152 39065, 144103 38548, 144313 38450, 144877 38449, 146906 38532, 149180 38527, 150577 38462, 151022 38427, 153545 38326, 156048 38319, 158324 38354, 160137 38297, 162281 38166, 172945 38166, 174143 38122, 173212 38052, 162021 38011, 158117 38037, 154179 38010, 152211 38082, 152035 38079, 149446 38140, 149028 38160, 146288 38218, 144267 38219, 144134 38179, 144107 36193, 146124 36115, 146211 36019, 145656 35905, 144817 35907, 144121 35773, 144185 35295, 206005 35295) (158630 38900, 158095 38987, 158680 39114, 163979 39139, 166840 39459, 167325 39502, 166536 39355, 165165 39228, 164857 39074, 165046 39030, 163863 38828, 159933 38816) (180201 38403, 180036 38513, 180120 38680, 180388 38971, 182009 38830, 181457 38491, 180691 38383) (187577 37422, 191032 37592, 193942 37776, 197013 37820, 197834 37742, 197264 37652, 194294 37509, 192830 37479, 191086 37417, 188672 37371) (181067 37342, 179194 37305, 177395 37312, 175339 37236, 171932 37025, 170398 36971, 168510 37006, 164951 37042, 155751 37015, 152914 37056, 152871 37178, 154129 37227, 157088 37243, 165598 37207, 168936 37212, 171012 37238, 174599 37350, 175056 37386, 176691 37460, 181203 37435, 181711 37257, 181917 37268, 182040 37390, 182072 37250, 182483 37396, 184823 37390, 184504 37356, 182791 37357, 182517 37345, 182168 36984, 182036 36916, 181868 37112, 181544 37189, 181281 36879) (197854 36625, 195095 36700, 195431 36717, 199271 36800, 200587 36838, 203430 36833, 205380 36784, 205651 36675, 204519 36562, 199813 36543) (179470 36264, 171993 36332, 167653 36337, 167558 36347, 167642 36361, 172414 36344, 179371 36372, 179559 36316, 180507 36287, 181228 36308, 182131 36456, 183927 36611, 184628 36763, 185717 36819, 186802 36815, 189396 36826, 191848 36738, 193926 36709, 190936 36630, 190176 36579, 185758 36531, 184535 36480, 182417 36370, 181721 36259, 179761 36211) (179785 36497, 179813 36624, 181051 36792, 181204 36510, 180330 36445)), ((143407 35721, 143410 36018, 143307 36102, 142107 36088, 141770 36180, 141038 36122, 139775 36178, 139726 36155, 140066 36012, 140500 36005, 140562 36035, 140859 36111, 140681 36014, 141017 35886, 141003 35763, 141484 35648, 141686 35646, 142115 35542, 142699 35350, 142815 35295, 143312 35295)), ((51599 35727, 51435 35789, 50205 35720, 48107 35688, 37197 35751, 31191 35557, 31191 35295, 51581 35295))) \ No newline at end of file diff --git a/stress_benchmark/resources/060.settings b/stress_benchmark/resources/060.settings new file mode 100644 index 0000000000..9fd982aca1 --- /dev/null +++ b/stress_benchmark/resources/060.settings @@ -0,0 +1,627 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=10 +retraction_combing=noskin +material_bed_temperature=58 +ironing_inset=0.38 +speed_support_roof=40.0 +support_bottom_wall_count=0 +machine_max_feedrate_z=10 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=20.0 +ooze_shield_angle=60 +expand_skins_expand_distance=1.2000000000000002 +support_infill_rate=20 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=10 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=2 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=xy_overrides_z +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=8 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=500 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=8 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=True +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=4.2862637970157366e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=False +bridge_settings_enabled=False +material_final_print_temperature=202.0 +machine_max_feedrate_x=500 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=40.0 +wall_0_material_flow_roofing=100 +speed_travel=200.0 +machine_max_acceleration_z=100 +layer_height_0=0.1 +skin_preshrink=1.2000000000000002 +machine_depth=350 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=1.2000000000000002 +skirt_line_count=3 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.1 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.7000000000000001 +group_outer_walls=True +cool_fan_speed=100.0 +raft_base_jerk=8 +retraction_enable=True +jerk_support_bottom=8 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +infill_randomize_start_location=False +jerk_wall_x=8 +cool_min_layer_time=10 +speed_layer_0=20.0 +speed_wall_x_roofing=40.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.12 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=500 +material_print_temperature=202.0 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=500 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=175.0 +support_interface_material_flow=100 +support_enable=False +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=2.4000240002400024 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=500 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=7 +wipe_retraction_retract_speed=20.0 +material_anti_ooze_retracted_position=-4 +layer_height=0.1 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=40.0 +support_bottom_distance=0.2 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=8 +minimum_interface_area=10 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.30000000000000004 +meshfix_union_all_remove_holes=False +raft_interface_speed=30.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=500 +layer_start_x=0.0 +support_infill_sparse_thickness=0.1 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=8 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=30.0 +speed_support_infill=40.0 +support_offset=0.8 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=10.0 +material_break_speed=25 +machine_width=350 +raft_smoothing=5 +material_break_preparation_temperature=202.0 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=40.0 +wall_x_material_flow=100 +prime_tower_position_x=340.575 +acceleration_layer_0=500 +retraction_amount=1 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=320.575 +jerk_support=8 +jerk_skirt_brim=8 +support_roof_density=33.333 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=10 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=grid +xy_offset=0 +prime_tower_brim_enable=True +support_xy_distance=0.8 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=20.0 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=0.8 +infill_wipe_dist=0.0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=0 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=10 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +raft_margin=15 +speed_print_layer_0=20.0 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +ooze_shield_dist=2 +support_line_distance=2.0 +zig_zaggify_infill=False +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=8 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=2.0 +acceleration_enabled=False +smooth_spiralized_contours=True +travel_speed=200.0 +z_seam_corner=z_seam_corner_weighted +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=350 +acceleration_skirt_brim=500 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=58 +raft_surface_jerk=8 +machine_max_feedrate_y=500 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +support_interface_height=0.8 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.2 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +support_z_distance=0.2 +support_bottom_enable=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=400 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +coasting_enable=False +retraction_hop=0.2 +jerk_prime_tower=8 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=7 +wipe_retraction_prime_speed=20.0 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=40.0 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.25 +infill_offset_y=0 +cool_fan_speed_max=100.0 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +skirt_gap=10.0 +bridge_fan_speed=100 +bridge_skin_speed=20.0 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=8 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=0 +raft_base_line_spacing=1.6 +jerk_wall_0=8 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=3 +material_print_temperature_layer_0=202.0 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_max_feedrate_e=50 +wipe_retraction_amount=1 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=40.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=500 +brim_gap=0 +jerk_topbottom=8 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=500 +support_roof_height=0.8 +cool_fan_speed_min=100.0 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=4.0 +support_bottom_density=33.333 +print_temperature=210 +acceleration_wall=500 +wall_material_flow=100 +raft_acceleration=500 +raft_interface_thickness=0.15000000000000002 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=8 +raft_surface_speed=40.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.04 +small_feature_speed_factor=50 +wipe_hop_enable=False +support_xy_distance_overhang=0.4 +default_material_bed_temperature=60 +fill_outline_gaps=False +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.12 +support_tree_branch_diameter=5 +support_brim_width=4 +gradual_infill_steps=0 +top_skin_preshrink=1.2000000000000002 +jerk_wall_x_roofing=8 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5 +top_layers=7 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=500 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=202.0 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=202.0 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +speed_travel_layer_0=100.0 +speed_ironing=26.666666666666668 +gantry_height=25 +bottom_skin_expand_distance=1.2000000000000002 +min_feature_size=0.1 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=1.5 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=1 +raft_jerk=8 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.7000000000000001 +skirt_brim_extruder_nr=-1 +support_brim_line_count=10 +build_volume_temperature=28 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=80.0 +raft_surface_thickness=0.1 +retraction_hop_after_extruder_switch_height=0.2 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +support_top_distance=0.2 +infill=0 +bridge_skin_speed_3=20.0 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=58 +machine_acceleration=500 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=10 +retraction_retract_speed=20.0 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=20.0 +line_width=0.4 +acceleration_ironing=500 +bridge_wall_speed=20.0 +support_interface_density=33.333 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=10 +machine_extruder_count=1 +acceleration_infill=500 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.04 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=8 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=brim +speed_z_hop=5 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=4.0 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=500 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=500 +wall_line_width_x=0.4 +acceleration_support_interface=500 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +speed_wall_0=40.0 +meshfix_fluid_motion_angle=15 +speed_support_bottom=40.0 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=63 +top_bottom_pattern_0=lines +wall_thickness=1.2000000000000002 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=500 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=True +wipe_move_distance=20 +speed_print=80.0 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=42.0 +raft_speed=40.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +small_skin_width=0.8 +speed_roofing=40.0 +speed_prime_tower=40.0 +speed_support=40.0 +small_hole_max_size=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=4.0 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.25 +min_bead_width=0.34 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=8 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=0.7000000000000001 +material_guid=06e5377a-87df-4b2d-93fb-277e8b37f38a +platform_adhesion=0 +raft_base_speed=30.0 +jerk_travel_layer_0=8 +bridge_skin_material_flow_3=110 +wipe_hop_speed=5 +prime_tower_enable=False +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_wall_0_roofing=500 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=63 +support_tree_bp_diameter=7.5 +skirt_brim_speed=20.0 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=100 +jerk_infill=8 +infill_pattern=gyroid +adaptive_layer_height_variation_step=0.04 +acceleration_roofing=500 +raft_interface_jerk=8 +retraction_speed=20.0 +extruder_prime_pos_y=0 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/060.wkt b/stress_benchmark/resources/060.wkt new file mode 100644 index 0000000000..b11f88495c --- /dev/null +++ b/stress_benchmark/resources/060.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((154509 180190, 154892 180261, 155289 180256, 156229 180714, 156422 182869, 156875 182872, 156659 181573, 157335 181613, 157638 181851, 158114 181771, 158285 181576, 158383 181547, 158434 181291, 159101 181192, 159840 181300, 160175 181370, 160948 181772, 161003 181885, 161037 182887, 161493 182885, 161796 182521, 162119 182435, 162149 182255, 162386 181805, 162412 181703, 163178 181298, 163226 181239, 163578 181136, 164708 181173, 165538 181240, 166046 181168, 166171 181406, 166277 181665, 166277 181756, 166167 181890, 166163 182068, 166257 182563, 166253 182888, 168126 182892, 168106 182217, 168145 181980, 168277 181725, 168533 181642, 169371 181691, 170403 181784, 170618 182031, 170744 182031, 170870 181953, 171902 182195, 172160 182514, 172354 182503, 172733 182705, 173007 182878, 173154 183010, 173210 183187, 173287 183814, 173273 184285, 173788 184119, 174809 183914, 174674 183559, 174635 183292, 174674 183019, 174783 182934, 175036 183056, 175276 183033, 175569 183025, 175946 182631, 175933 182400, 176069 182286, 176449 182354, 176601 182330, 176973 182358, 176976 182279, 177321 182253, 177616 182285, 178012 182397, 178447 182473, 179356 183027, 179481 182973, 179541 183020, 179582 182972, 179925 183062, 179968 183030, 180626 183282, 180717 183402, 180751 183663, 180821 183846, 180918 183913, 180994 184043, 181256 184392, 181368 184620, 181592 185176, 181836 185079, 182919 184982, 183343 184972, 184412 185020, 184485 185012, 186415 185010, 187394 184829, 188025 184806, 188299 184681, 188664 184670, 188837 183559, 188930 183272, 189150 183093, 189158 181134, 189471 180981, 189797 180956, 190248 180977, 190905 180983, 191593 180914, 191856 180975, 192007 180917, 192417 180925, 192547 180948, 192751 180834, 193787 180860, 193355 182887, 193935 182885, 194111 180750, 194631 180459, 194970 180281, 196071 180210, 196489 180401, 196880 180762, 197144 181084, 196780 183724, 196685 184070, 196529 184460, 196846 185001, 196992 185300, 197680 186374, 198545 188061, 198598 188096, 198807 188370, 199326 187247, 199583 187131, 199935 187144, 200209 187233, 200398 187324, 200444 187441, 200551 187549, 200618 187562, 200769 187729, 200944 187736, 201522 188119, 201809 188278, 201915 188821, 201820 189752, 201481 190391, 201744 190423, 201937 190431, 202502 190586, 203153 191030, 203331 191118, 203452 191000, 203705 190855, 204932 189706, 206127 190034, 206987 190894, 207054 191085, 207159 191316, 207150 191796, 207104 192359, 206941 192738, 206656 193261, 204617 193429, 204601 193996, 206516 193587, 206526 194273, 206542 194626, 206427 194830, 206451 194958, 206457 195370, 206400 195521, 206463 195790, 206392 196469, 206399 197128, 206417 197578, 206397 197885, 206242 198216, 205460 198227, 204594 198222, 204592 198469, 205099 198474, 205604 198625, 205907 198839, 206080 199174, 206071 199774, 206177 200430, 206252 200741, 206777 201023, 206861 201246, 206905 201917, 206607 202658, 206459 203567, 206448 203750, 206343 204113, 205997 204638, 205904 204655, 205518 204890, 205411 205127, 205055 205138, 204597 205109, 204597 205492, 204869 205499, 205025 205527, 205517 205558, 205878 205629, 206048 205917, 206355 205955, 206542 206044, 206551 207247, 206570 207499, 206446 207651, 206143 207919, 206183 208027, 206493 208321, 206554 208498, 206455 209332, 206192 209870, 205947 210043, 205568 210095, 204600 210097, 204539 211001, 204500 211136, 204797 211225, 204998 211296, 205649 211460, 205826 211879, 205772 212220, 205473 212355, 205694 212743, 205668 213079, 205558 213405, 205172 214372, 204865 214921, 204306 216005, 204105 216165, 203845 216182, 203781 216197, 203519 216199, 202084 215771, 201984 216204, 201888 216444, 201058 218068, 201135 218437, 201073 218542, 201480 219050, 201577 219298, 201609 219555, 201725 219953, 201799 220438, 201913 220861, 202173 221432, 202597 221964, 202860 222328, 203031 222533, 203217 223461, 203164 224398, 203359 225948, 203550 226351, 205151 226355, 205490 226371, 205605 226427, 206005 227200, 206074 227532, 206185 228270, 206081 228943, 205827 228993, 205799 229090, 205603 229262, 205525 229740, 205761 230040, 205804 230716, 204603 230518, 204601 230971, 206238 231114, 206462 231223, 206912 231801, 207149 232397, 207194 233100, 206966 233517, 206215 234311, 204866 234703, 204501 234609, 204226 234437, 203550 233931, 203269 233663, 202967 233397, 202754 233608, 202951 233775, 202212 234517, 201914 234430, 201599 234722, 201667 235253, 200672 236173, 200267 236248, 200075 235788, 200142 235305, 200129 235033, 200270 234870, 200103 234751, 199471 234723, 199117 234975, 198596 235164, 198514 235249, 198121 236549, 198081 236705, 197654 237676, 197009 238126, 196995 238450, 196761 238762, 196795 239104, 196737 239371, 197306 238808, 197471 238894, 197788 239273, 197635 239528, 197344 239726, 196979 240029, 196636 240262, 196483 240089, 196360 240285, 196406 240496, 196616 240828, 197149 241389, 197626 241927, 197289 243241, 196954 243551, 196689 243877, 196322 244069, 196048 244181, 195518 244200, 195057 244143, 194680 243948, 194121 243640, 193969 241915, 193924 241508, 193485 241502, 193702 242817, 193305 242798, 193027 242774, 192725 242537, 192248 242615, 192079 242812, 191981 242840, 191928 243095, 191259 243195, 190521 243086, 190187 243016, 189416 242616, 189359 242503, 189341 242162, 189330 241498, 188866 241506, 188566 241868, 188242 241964, 188215 242133, 187976 242583, 187950 242685, 187186 243090, 187138 243148, 186786 243252, 185656 243213, 184824 243146, 184316 243218, 184191 242982, 184085 242723, 184085 242632, 184195 242498, 184199 242319, 184100 241801, 184103 241510, 183609 241508, 183638 242016, 183554 242250, 183129 242251, 183177 242698, 183082 243146, 182944 243301, 182476 243398, 182142 243451, 181004 243482, 180812 243255, 180587 243290, 180431 243396, 179897 243310, 179567 243060, 179451 242871, 179331 243018, 179190 243099, 178856 242964, 178604 242424, 178422 242091, 178398 241494, 178331 241494, 178252 242077, 178219 242414, 178105 242762, 177962 243090, 177659 243250, 177429 243350, 176643 243466, 176335 243433, 176158 243550, 176128 243635, 175883 243703, 175615 243727, 175360 243657, 175290 243653, 175053 243440, 174964 243396, 174767 243741, 174156 243621, 174135 243565, 173941 243354, 173797 243086, 173479 242734, 173378 242486, 173344 242257, 173356 241467, 172734 241471, 172591 241879, 172360 242061, 171868 242163, 171250 242151, 170718 242088, 170431 241672, 170213 241863, 169959 241983, 169655 241954, 168608 241819, 168522 241775, 168474 241644, 168493 241374, 168389 241276, 168191 241217, 168202 240964, 168189 240906, 168250 240314, 168322 239956, 167684 239792, 166923 239773, 166735 239663, 165427 239050, 165398 239027, 163899 238476, 163609 238141, 163476 237905, 163229 237672, 163159 237748, 163084 237645, 162919 237852, 162261 237815, 162241 237344, 162058 237355, 161377 237777, 160668 238244, 160447 238363, 159626 238866, 158867 239589, 158503 240055, 158225 240600, 157942 240981, 157406 241295, 157050 241393, 156393 241772, 156239 243121, 156088 243563, 156113 243707, 155320 244145, 154130 244158, 154034 244121, 153711 243805, 153046 243205, 152759 242102, 152897 241335, 153004 241053, 153976 239978, 153081 239104, 152832 238200, 152763 238089, 152730 237925, 152836 236551, 153108 235879, 153042 235593, 152844 235165, 152543 234972, 152270 234667, 151858 234439, 151075 234082, 150561 233790, 149859 233526, 148098 233703, 147720 233534, 147144 233324, 145813 234195, 145751 234269, 144999 234537, 144185 234329, 143121 233062, 143267 232060, 143736 231125, 144870 231030, 145472 230934, 145552 230970, 145749 230953, 145747 230395, 143848 230801, 143838 230106, 143822 229761, 143935 229558, 143911 229430, 143906 229018, 143962 228867, 143902 228597, 143970 227919, 143965 227258, 143946 226811, 143966 226503, 144120 226172, 144921 226163, 145774 226178, 145774 225924, 145265 225914, 144759 225763, 144453 225548, 144282 225212, 144293 224614, 144185 223957, 144110 223646, 143583 223365, 143501 223141, 143450 222490, 143755 221730, 143904 220819, 143915 220637, 144020 220275, 144366 219750, 144460 219733, 144834 219502, 144963 219252, 145516 219255, 146031 219295, 146924 219302, 147007 219378, 147011 220312, 147906 220164, 148725 220129, 148994 219968, 149774 218989, 150223 218351, 150431 217992, 150443 217801, 150348 217379, 150242 217165, 149215 217177, 148929 217081, 147657 216697, 147247 216418, 146981 216008, 146904 213562, 146940 212519, 146960 212238, 146741 210401, 146669 210039, 146436 209373, 145951 207702, 145775 206171, 145778 204178, 146015 203442, 145065 203400, 144828 203084, 144370 201413, 144318 201097, 144471 200910, 144415 200444, 144451 200291, 144520 199631, 144703 199373, 144822 199302, 145079 199078, 145192 198913, 145468 198703, 145826 198573, 145813 198298, 145813 198037, 145213 198031, 144874 198016, 144759 197959, 144357 197187, 144289 196852, 144179 196113, 144283 195443, 144535 195395, 144563 195298, 144759 195126, 144839 194649, 144600 194348, 144554 193674, 145793 193877, 145759 193415, 144984 193354, 144295 193281, 143368 193221, 143705 193220, 143242 192301, 143152 191285, 143390 190880, 144189 190047, 145154 189802, 146476 190280, 146849 190471, 147439 190874, 147849 190876, 148664 190971, 148809 190948, 149227 191053, 150360 191391, 151254 191386, 151608 190965, 151657 190766, 151582 189507, 151616 189230, 151713 188625, 152536 187574, 152602 187368, 152810 187038, 152988 186732, 153421 186197, 153683 185715, 153952 185457, 154054 185230, 154062 184700, 154046 184603, 154211 184023, 153266 183011, 153074 182834, 152733 182466, 152939 181587, 153158 180966, 153514 180717, 153833 180418, 154261 180175) (165182 233311, 174738 233272, 174286 233252, 173993 233224, 165211 233147) (165789 190760, 165532 190830, 164757 191002, 164883 191084, 164916 191534, 164530 191679, 164576 192005, 164986 192247, 165040 192748, 164608 192843, 164627 193190, 164891 193340, 164775 193459, 165120 193560, 165052 193926, 164575 194039, 164474 193753, 164265 193696, 164157 194031, 163443 194020, 163228 193751, 163068 194047, 162705 194037, 162538 193779, 162482 193827, 162351 194048, 161891 194032, 161753 193795, 161287 193758, 161112 194033, 160688 194039, 160427 194032, 160250 193675, 159915 193660, 159475 194112, 159436 194010, 158069 195371, 156464 196997, 156500 197207, 156444 197735, 156022 197791, 155988 198032, 156225 198299, 156250 198410, 156350 198487, 156269 199171, 155838 199179, 155793 199507, 156025 199683, 155865 199769, 156190 199945, 156074 200877, 155574 200932, 155541 201384, 155794 201619, 155618 201739, 155950 201896, 155956 202355, 155918 202437, 155822 202503, 155392 202543, 155282 202209, 154986 202049, 155009 204208, 154697 204731, 154597 204860, 154531 206345, 154531 206730, 154709 206890, 155004 207068, 155009 207867, 154568 208431, 154545 208856, 154783 209174, 155011 209149, 155009 210406, 154533 210922, 154539 211550, 154791 211679, 154693 211937, 155010 211971, 155015 213167, 154937 213436, 154523 214012, 154527 214767, 154815 214866, 154713 215124, 154852 215122, 154963 215175, 155008 215365, 155009 215788, 154852 216096, 154772 216378, 154655 216592, 154553 216663, 154481 217189, 154244 217355, 154057 218987, 153841 220139, 153475 221047, 153403 221373, 153567 222095, 153723 222436, 153880 222880, 154096 222863, 154372 222401, 154731 222376, 154845 222882, 154971 222942, 155173 222850, 155551 222731, 155744 222967, 155312 223228, 155308 223543, 155405 223582, 155748 223618, 155732 223942, 155483 224069, 155477 224114, 155343 224179, 155311 224412, 155725 224452, 155753 224707, 155296 225001, 155279 225195, 155734 225229, 155775 225494, 155279 225747, 155239 226258, 155275 226340, 155712 226411, 155746 226570, 155725 227034, 155272 227212, 155278 227720, 155363 227871, 154323 227897, 154163 227982, 154169 228196, 154476 228539, 154915 228085, 155888 228364, 157161 230041, 157507 229587, 158877 230906, 160240 232270, 160344 232092, 160296 231663, 160606 231375, 160669 231847, 160976 231848, 161188 231608, 161240 231472, 161602 231517, 161651 231932, 161911 231996, 162092 231574, 162362 231570, 162437 231709, 162482 232029, 162698 232064, 162885 231652, 163175 231649, 163273 232141, 163865 232250, 164094 231772, 164735 231870, 164804 232287, 164910 232295, 165033 231337, 165439 231329, 169258 231373, 170473 231460, 171810 231408, 174058 231460, 175321 231605, 175129 231896, 174828 232009, 174968 232232, 175020 232209, 175125 232269, 175228 232581, 175497 232793, 175752 233034, 175728 233086, 175775 233201, 176965 233216, 177551 233300, 178382 233280, 178578 233247, 178520 233047, 178444 232999, 178276 232982, 178151 232860, 178187 232850, 178088 232168, 179635 231816, 180018 231703, 181038 231578, 181535 231546, 181639 231365, 181448 231279, 185311 231282, 185425 230864, 185578 230824, 185944 230811, 185983 230970, 186101 231025, 186197 231168, 186304 230815, 186522 230789, 186862 230790, 187039 231044, 187162 231076, 187267 230784, 187633 230781, 187831 231036, 187981 230787, 188412 230775, 188553 231031, 189176 231068, 189291 230769, 190052 230769, 190307 231131, 191701 229720, 192655 228776, 193858 227623, 194404 227423, 194370 227064, 194018 226996, 193864 227214, 193773 227044, 193630 227356, 193226 227140, 193285 226307, 193688 226267, 193741 225950, 193503 225712, 193382 225511, 193482 224863, 193907 224855, 193948 224492, 193707 224366, 193845 224246, 193562 224090, 193682 223142, 194162 223098, 194218 222656, 193973 222429, 194157 222309, 193823 222131, 193815 221656, 193849 221574, 193966 221510, 194375 221470, 194489 221844, 194741 221958, 195016 221952, 195170 221637, 195436 221683, 195475 218291, 195477 209363, 195411 208350, 195416 203449, 195476 203452, 195476 201644, 195360 201614, 194835 201851, 194587 201578, 195013 201349, 195076 201090, 195055 201011, 194954 200951, 194636 200918, 194625 200592, 194801 200518, 195029 200336, 195043 200155, 194635 200108, 194596 199816, 195041 199603, 195078 199354, 194651 199338, 194574 199037, 194850 198881, 195100 198765, 195131 198371, 195093 198180, 194643 198119, 194606 197952, 194634 197495, 195036 197337, 195069 197203, 195003 197000, 191865 193845, 190130 192124, 190184 192679, 189886 192865, 189824 192730, 189773 192441, 189481 192409, 189316 192609, 189244 192807, 188889 192763, 188862 192502, 188794 192343, 188574 192297, 188393 192710, 188126 192715, 188019 192445, 187982 192218, 187771 192197, 187591 192640, 187303 192638, 187216 192155, 186614 192025, 186395 192497, 186255 192512, 185742 192435, 185704 192003, 185471 191952, 185331 193050, 184924 193057, 181106 193013, 179889 192926, 178553 192979, 176934 192966, 176688 192943, 175830 192922, 174794 192957, 174004 192910, 172749 192891, 172129 192894, 170629 193022, 170246 193085, 169757 191998, 169619 191415, 168929 191401, 168742 191409, 168150 191363, 167796 191396, 167938 191206, 167356 190987, 167048 190813, 166687 190550, 166266 190539) (159586 233271, 159967 233240, 160003 232967, 159924 232909) (165376 232489, 165314 232763, 167115 232710, 172995 232597, 170111 232431, 168709 232415) (195016 227564, 195990 228478, 196157 228311, 196232 227898, 196224 227711, 196092 227851, 195623 227764, 195539 227347, 195263 227297) (194314 228000, 194327 228019, 194864 227610, 194718 227579) (159481 191755, 159444 191550, 159139 191415) (178731 186109, 178897 186247, 179107 186318, 179534 186141, 179832 186169, 178460 185933)), ((204427 220837, 205250 221810, 205317 222313, 205215 222564, 204679 222605, 204583 222622, 203384 222713, 203336 222551, 203370 220240, 203486 220091))) \ No newline at end of file diff --git a/stress_benchmark/resources/061.settings b/stress_benchmark/resources/061.settings new file mode 100644 index 0000000000..3a05b93091 --- /dev/null +++ b/stress_benchmark/resources/061.settings @@ -0,0 +1,629 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=0 +retraction_combing=noskin +material_bed_temperature=65 +ironing_inset=0.07999999999999999 +speed_support_roof=13.333333333333334 +support_bottom_wall_count=0 +machine_max_feedrate_z=299792458000 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=10 +ooze_shield_angle=60 +expand_skins_expand_distance=1.6 +support_infill_rate=0 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=1.0 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=0.0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=z_overrides_xy +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=20 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=concentric +acceleration_print=3000 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=20 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=False +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=3.91886975727153e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=False +bridge_settings_enabled=True +material_final_print_temperature=195 +machine_max_feedrate_x=299792458000 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=13.333333333333334 +wall_0_material_flow_roofing=100 +speed_travel=150 +machine_max_acceleration_z=100 +layer_height_0=0.3 +skin_preshrink=1.6 +machine_depth=220 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=1.6 +skirt_line_count=3 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.16 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.8 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=20 +retraction_enable=True +jerk_support_bottom=20 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +infill_randomize_start_location=False +jerk_wall_x=20 +cool_min_layer_time=5 +speed_layer_0=10.0 +speed_wall_x_roofing=25 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.36 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=3000 +material_print_temperature=210 +machine_disallowed_areas=[] +retract_at_layer_change=True +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=5000.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=110.0 +support_interface_material_flow=100 +support_enable=False +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=0.4 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=3000 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=4 +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.16 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=10.0 +support_bottom_distance=0 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=20 +minimum_interface_area=1.0 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.3 +meshfix_union_all_remove_holes=False +raft_interface_speed=7.5 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=3000 +layer_start_x=0.0 +support_infill_sparse_thickness=0.16 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=30 +support_tree_top_rate=10 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=33 +speed_support_infill=20 +support_offset=0.8 +magic_fuzzy_skin_outside_only=True +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=5 +material_break_speed=25 +machine_width=220 +raft_smoothing=5 +material_break_preparation_temperature=210 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=10.0 +wall_x_material_flow=100 +prime_tower_position_x=214.375 +acceleration_layer_0=3000 +retraction_amount=5 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=194.375 +jerk_support=20 +jerk_skirt_brim=20 +support_roof_density=100 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=1.0 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=concentric +xy_offset=0 +prime_tower_brim_enable=False +support_xy_distance=0.7 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=45 +roofing_pattern=concentric +machine_nozzle_size=0.4 +support_bottom_height=1 +infill_wipe_dist=0.1 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=2 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=10 +bridge_skin_density_2=75 +acceleration_support_bottom=3000 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +quality_name=Draft +raft_margin=15 +speed_print_layer_0=10.0 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=0 +zig_zaggify_infill=False +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=20 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0 +acceleration_enabled=False +smooth_spiralized_contours=True +travel_speed=120 +z_seam_corner=z_seam_corner_inner +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=220 +acceleration_skirt_brim=3000 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=65 +raft_surface_jerk=20 +machine_max_feedrate_y=299792458000 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +support_interface_height=1 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=True +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=buildplate +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +support_z_distance=0.1 +support_bottom_enable=True +retraction_combing_max_distance=0 +conical_overhang_enabled=True +remove_empty_first_layers=True +machine_height=250 +acceleration_topbottom=3000 +extruder_prime_pos_x=0 +coasting_enable=True +retraction_hop=1 +jerk_prime_tower=20 +cool_lift_head=False +support_tree_rest_preference=buildplate +material_brand=empty_brand +initial_bottom_layers=4 +wipe_retraction_prime_speed=45 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=10.0 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.8 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +machine_name=Unknown +skirt_gap=3 +bridge_fan_speed=100 +bridge_skin_speed=10 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=20 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=1 +raft_base_line_spacing=1.6 +jerk_wall_0=20 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=4 +material_print_temperature_layer_0=210 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=5 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=25 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=3000 +brim_gap=0 +jerk_topbottom=20 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=1 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=100 +print_temperature=210 +acceleration_wall=3000 +wall_material_flow=100 +raft_acceleration=3000 +raft_interface_thickness=0.24 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=1.6 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=20 +raft_surface_speed=10.0 +support_pattern=lines +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.02 +small_feature_speed_factor=50 +wipe_hop_enable=True +support_xy_distance_overhang=0.2 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=3000 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=3000 +infill_overlap_mm=0.132 +support_tree_branch_diameter=5 +support_brim_width=1.2000000000000002 +gradual_infill_steps=0 +top_skin_preshrink=1.6 +jerk_wall_x_roofing=20 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=True +machine_max_jerk_e=5.0 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=9000 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=200 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=210 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +speed_travel_layer_0=75.0 +speed_ironing=6.666666666666667 +gantry_height=30.1 +bottom_skin_expand_distance=1.6 +min_feature_size=0.1 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=1 +raft_jerk=20 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.6 +skirt_brim_extruder_nr=-1 +support_brim_line_count=3 +build_volume_temperature=28 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=20 +raft_surface_thickness=0.16 +retraction_hop_after_extruder_switch_height=1 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=False +support_top_distance=0.1 +infill=0 +bridge_skin_speed_3=10 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=65 +machine_acceleration=4000 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=20 +retraction_retract_speed=45 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +line_width=0.4 +acceleration_ironing=3000 +bridge_wall_speed=10 +support_interface_density=100 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=1 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=20.0 +machine_extruder_count=1 +acceleration_infill=3000 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.1 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=20 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=skirt +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=8.0 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=3000 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=3000 +wall_line_width_x=0.4 +acceleration_support_interface=3000 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=5 +speed_wall_0=10.0 +meshfix_fluid_motion_angle=15 +speed_support_bottom=13.333333333333334 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=50 +top_bottom_pattern_0=lines +wall_thickness=1.2 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=3000 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=True +wipe_move_distance=20 +speed_print=20 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=33.333333333333336 +raft_speed=10.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +small_skin_width=0.8 +speed_roofing=10.0 +speed_prime_tower=20 +speed_support=20 +small_hole_max_size=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=8.0 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.5 +min_bead_width=0.34 +support_interface_enable=False +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=20 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=7.5 +jerk_travel_layer_0=30.0 +bridge_skin_material_flow_3=110 +wipe_hop_speed=10 +prime_tower_enable=False +acceleration_wall_x_roofing=3000 +support_roof_enable=False +acceleration_wall_0_roofing=3000 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.16 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=50 +support_tree_bp_diameter=7.5 +skirt_brim_speed=10.0 +support_interface_skip_height=0.16 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=90 +jerk_infill=20 +infill_pattern=grid +adaptive_layer_height_variation_step=0.01 +acceleration_roofing=3000 +raft_interface_jerk=20 +retraction_speed=45 +extruder_prime_pos_y=0 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/061.wkt b/stress_benchmark/resources/061.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/061.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/resources/062.settings b/stress_benchmark/resources/062.settings new file mode 100644 index 0000000000..d6c59d5fec --- /dev/null +++ b/stress_benchmark/resources/062.settings @@ -0,0 +1,629 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=0 +retraction_combing=noskin +material_bed_temperature=60 +ironing_inset=0.38 +speed_support_roof=40.0 +support_bottom_wall_count=0 +machine_max_feedrate_z=299792458000 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=15.0 +ooze_shield_angle=60 +expand_skins_expand_distance=1.2000000000000002 +support_infill_rate=0 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=1.0 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=0.0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=z_overrides_xy +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=20 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=3000 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=20 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=False +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=7.83773951454306e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=False +bridge_settings_enabled=False +material_final_print_temperature=205 +machine_max_feedrate_x=299792458000 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=40.0 +wall_0_material_flow_roofing=100 +speed_travel=120 +machine_max_acceleration_z=100 +layer_height_0=0.28 +skin_preshrink=1.2000000000000002 +machine_depth=235.0 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=1.2000000000000002 +skirt_line_count=1 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.32 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=1.2 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=20 +retraction_enable=True +jerk_support_bottom=20 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=10000 +infill_randomize_start_location=False +jerk_wall_x=20 +cool_min_layer_time=5 +speed_layer_0=30.0 +speed_wall_x_roofing=60.0 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.336 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=3000 +material_print_temperature=205 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=5000.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=117.5 +support_interface_material_flow=100 +support_enable=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=0.4 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=3000 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=4 +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.32 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30.0 +support_bottom_distance=0.1 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=20 +minimum_interface_area=1.0 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.28 +meshfix_union_all_remove_holes=False +raft_interface_speed=22.5 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=3000 +layer_start_x=0.0 +support_infill_sparse_thickness=0.32 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=30 +support_tree_top_rate=10 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=10 +speed_support_infill=60 +support_offset=0.0 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=5 +material_break_speed=25 +machine_width=235 +raft_smoothing=5 +material_break_preparation_temperature=205 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=30.0 +wall_x_material_flow=100 +prime_tower_position_x=234 +acceleration_layer_0=3000 +retraction_amount=5 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=214.0 +jerk_support=20 +jerk_skirt_brim=20 +support_roof_density=100 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=1.0 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=concentric +xy_offset=0 +prime_tower_brim_enable=False +support_xy_distance=0.7 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=45 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=1 +infill_wipe_dist=0.1 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=0 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=15 +bridge_skin_density_2=75 +acceleration_support_bottom=3000 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +raft_margin=15 +speed_print_layer_0=30.0 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=0 +zig_zaggify_infill=False +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=20 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0 +acceleration_enabled=False +smooth_spiralized_contours=True +travel_speed=120 +z_seam_corner=z_seam_corner_inner +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=235.0 +acceleration_skirt_brim=3000 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=60 +raft_surface_jerk=20 +machine_max_feedrate_y=299792458000 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +support_interface_height=1 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +support_z_distance=0.1 +support_bottom_enable=False +retraction_combing_max_distance=10 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=285.0 +acceleration_topbottom=3000 +extruder_prime_pos_x=0 +coasting_enable=False +retraction_hop=1 +jerk_prime_tower=20 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=4 +wipe_retraction_prime_speed=45 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0.3 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=30.0 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.8 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +machine_name=Unknown +skirt_gap=3 +quality_changes_name=Armor +bridge_fan_speed=100 +bridge_skin_speed=15.0 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=20 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=1 +raft_base_line_spacing=1.6 +jerk_wall_0=20 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=3 +material_print_temperature_layer_0=205 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=True +inset_direction=inside_out +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_max_feedrate_e=299792458000 +wipe_retraction_amount=5 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=60.0 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=3000 +brim_gap=0 +jerk_topbottom=20 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=1 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=100 +print_temperature=210 +acceleration_wall=3000 +wall_material_flow=100 +raft_acceleration=3000 +raft_interface_thickness=0.48 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=1.2000000000000002 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=20 +raft_surface_speed=30.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.02 +small_feature_speed_factor=50 +wipe_hop_enable=True +support_xy_distance_overhang=0.2 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=3000 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=3000 +infill_overlap_mm=0.04 +support_tree_branch_diameter=5 +support_brim_width=1.2000000000000002 +gradual_infill_steps=0 +top_skin_preshrink=1.2000000000000002 +jerk_wall_x_roofing=20 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5.0 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=9000 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=205 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=205 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3000 +speed_travel_layer_0=60.0 +speed_ironing=20.0 +gantry_height=285.0 +bottom_skin_expand_distance=1.2000000000000002 +min_feature_size=0.1 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=1 +raft_jerk=20 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=1.2 +skirt_brim_extruder_nr=-1 +support_brim_line_count=3 +build_volume_temperature=28 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=60 +raft_surface_thickness=0.32 +retraction_hop_after_extruder_switch_height=1 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=False +support_top_distance=0.1 +infill=0 +bridge_skin_speed_3=15.0 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60 +machine_acceleration=4000 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=20 +retraction_retract_speed=45 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +line_width=0.4 +acceleration_ironing=3000 +bridge_wall_speed=15.0 +support_interface_density=100 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=1 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=20.0 +machine_extruder_count=1 +acceleration_infill=3000 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.1 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=20 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=none +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=8.0 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=3000 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=3000 +wall_line_width_x=0.4 +acceleration_support_interface=3000 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=5 +speed_wall_0=30.0 +meshfix_fluid_motion_angle=15 +speed_support_bottom=40.0 +material_id=empty_material +raft_surface_layers=1 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=50 +top_bottom_pattern_0=lines +wall_thickness=1.2 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=3000 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=60 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=33.333333333333336 +raft_speed=30.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +small_skin_width=0.8 +speed_roofing=30.0 +speed_prime_tower=60 +speed_support=60 +small_hole_max_size=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=8.0 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.5 +min_bead_width=0.34 +support_interface_enable=False +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=20 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=1.2 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=22.5 +jerk_travel_layer_0=30.0 +bridge_skin_material_flow_3=110 +wipe_hop_speed=10 +prime_tower_enable=False +acceleration_wall_x_roofing=3000 +support_roof_enable=False +acceleration_wall_0_roofing=3000 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.32 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=50 +support_tree_bp_diameter=7.5 +skirt_brim_speed=30.0 +support_interface_skip_height=0.32 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=90 +jerk_infill=20 +infill_pattern=cubic +adaptive_layer_height_variation_step=0.01 +acceleration_roofing=3000 +raft_interface_jerk=20 +retraction_speed=45 +extruder_prime_pos_y=0 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/062.wkt b/stress_benchmark/resources/062.wkt new file mode 100644 index 0000000000..e175d28303 --- /dev/null +++ b/stress_benchmark/resources/062.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((117731 159004, 118355 159216, 119096 159772, 119579 160364, 119988 161000, 120285 161602, 120591 162374, 120839 163186, 121007 164009, 121112 164827, 121135 165660, 121123 166475, 121064 167310, 120920 168160, 120772 168872, 120505 169745, 120087 170769, 119554 171662, 119032 172264, 118534 172693, 117932 172994, 117761 173021, 117503 172994, 117246 173022, 117075 172993, 116473 172692, 115948 172236, 115276 171409, 114901 170662, 114564 169932, 114256 168983, 114043 167998, 113942 167317, 113869 166505, 113867 165659, 113914 164837, 113997 164018, 114180 163180, 114413 162375, 114719 161603, 115020 161002, 115428 160366, 115903 159780, 116650 159212, 117241 158991))) \ No newline at end of file diff --git a/stress_benchmark/resources/063.settings b/stress_benchmark/resources/063.settings new file mode 100644 index 0000000000..4757dbfedc --- /dev/null +++ b/stress_benchmark/resources/063.settings @@ -0,0 +1,630 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=0 +retraction_combing=off +material_bed_temperature=60 +ironing_inset=0.355 +speed_support_roof=100.0 +support_bottom_wall_count=0 +machine_max_feedrate_z=10 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0.025000000000000022 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=37.5 +ooze_shield_angle=60 +expand_skins_expand_distance=1.15 +support_infill_rate=0 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=1.0 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=0.0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=z_overrides_xy +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=5 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=500 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=5 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=False +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=4.898587196589413e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=True +bridge_settings_enabled=False +material_final_print_temperature=185 +machine_max_feedrate_x=500 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=100.0 +wall_0_material_flow_roofing=100 +speed_travel=200 +machine_max_acceleration_z=100 +layer_height_0=0.3 +skin_preshrink=1.15 +machine_depth=220 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=1.15 +skirt_line_count=3 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.2 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.8 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=5 +retraction_enable=True +jerk_support_bottom=5 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +infill_randomize_start_location=False +jerk_wall_x=5 +cool_min_layer_time=5 +speed_layer_0=75.0 +speed_wall_x_roofing=30 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.36 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=500 +material_print_temperature=185 +machine_disallowed_areas=[] +retract_at_layer_change=True +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=1000 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=110.0 +support_interface_material_flow=100 +support_enable=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=0.4 +initial_layer_line_width_factor=150 +conical_overhang_angle=50 +acceleration_support_infill=500 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=4 +wipe_retraction_retract_speed=30 +material_anti_ooze_retracted_position=-4 +layer_height=0.2 +support_roof_pattern=concentric +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=75.0 +support_bottom_distance=0 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=5 +minimum_interface_area=1.0 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.3 +meshfix_union_all_remove_holes=False +raft_interface_speed=56.25 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=500 +layer_start_x=0.0 +support_infill_sparse_thickness=0.2 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=5 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=30.0 +speed_support_infill=150 +support_offset=0.0 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=10.0 +material_break_speed=25 +machine_width=220 +raft_smoothing=5 +material_break_preparation_temperature=185 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=75.0 +wall_x_material_flow=100 +prime_tower_position_x=217.575 +acceleration_layer_0=500 +retraction_amount=0.5 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=197.575 +jerk_support=5 +jerk_skirt_brim=5 +support_roof_density=100 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=1.0 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=concentric +xy_offset=0 +prime_tower_brim_enable=False +support_xy_distance=0.7 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=30 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=1 +infill_wipe_dist=0.0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=0 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=15 +bridge_skin_density_2=75 +acceleration_support_bottom=500 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +quality_name=Draft +raft_margin=15 +speed_print_layer_0=75.0 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=0 +zig_zaggify_infill=True +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=5 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=120 +z_seam_corner=z_seam_corner_weighted +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=220 +acceleration_skirt_brim=500 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=60 +raft_surface_jerk=5 +machine_max_feedrate_y=500 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +support_interface_height=1 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=buildplate +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.1 +support_roof_line_distance=0.4 +zig_zaggify_support=False +support_z_distance=0.1 +support_bottom_enable=True +retraction_combing_max_distance=0 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=250 +acceleration_topbottom=500 +extruder_prime_pos_x=0 +coasting_enable=False +retraction_hop=0.4 +jerk_prime_tower=5 +cool_lift_head=False +support_tree_rest_preference=buildplate +material_brand=empty_brand +initial_bottom_layers=4 +wipe_retraction_prime_speed=30 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=25 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.6666666666666666 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +machine_name=SV01 +skirt_gap=0 +quality_changes_name=SV06 +bridge_fan_speed=100 +bridge_skin_speed=37.5 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=5 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=1 +raft_base_line_spacing=1.6 +jerk_wall_0=5 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=3 +material_print_temperature_layer_0=185 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=5 +machine_max_feedrate_e=50 +wipe_retraction_amount=0.5 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=30 +infill_line_width=0.4 +wall_line_width_0=0.35 +acceleration_print_layer_0=500 +brim_gap=0 +jerk_topbottom=5 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=1000 +support_roof_height=1 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=100 +print_temperature=210 +acceleration_wall=500 +wall_material_flow=100 +raft_acceleration=500 +raft_interface_thickness=0.30000000000000004 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=1.15 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=5 +raft_surface_speed=75.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.04 +small_feature_speed_factor=50 +wipe_hop_enable=True +support_xy_distance_overhang=0.2 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=500 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=500 +infill_overlap_mm=0.12 +support_tree_branch_diameter=5 +support_brim_width=1.7999999999999998 +gradual_infill_steps=0 +top_skin_preshrink=1.15 +jerk_wall_x_roofing=5 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=500 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=185 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=185 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500 +speed_travel_layer_0=100.0 +speed_ironing=50.0 +gantry_height=250 +bottom_skin_expand_distance=1.15 +min_feature_size=0.0875 +z_seam_type=back +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.7 +extruders_enabled_count=1 +raft_jerk=5 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.8 +skirt_brim_extruder_nr=-1 +support_brim_line_count=3 +build_volume_temperature=28 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=150 +raft_surface_thickness=0.2 +retraction_hop_after_extruder_switch_height=0.4 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +support_top_distance=0.1 +infill=0 +bridge_skin_speed_3=37.5 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60 +machine_acceleration=500 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=14 +retraction_retract_speed=30 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=30 +line_width=0.4 +acceleration_ironing=500 +bridge_wall_speed=12.5 +support_interface_density=100 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.4 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=10 +machine_extruder_count=1 +acceleration_infill=500 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.1 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=5 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=skirt +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=2.6666666666666665 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=500 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=500 +wall_line_width_x=0.4 +acceleration_support_interface=500 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=0.5 +speed_wall_0=25 +meshfix_fluid_motion_angle=15 +speed_support_bottom=100.0 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=50 +top_bottom_pattern_0=lines +wall_thickness=0.8 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=500 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=150 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=33.333333333333336 +raft_speed=75.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +small_skin_width=0.8 +speed_roofing=75.0 +speed_prime_tower=150 +speed_support=150 +small_hole_max_size=0 +jerk_wall=5 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=2.6666666666666665 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.5 +min_bead_width=0.34 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=5 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=0.8 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=56.25 +jerk_travel_layer_0=5 +bridge_skin_material_flow_3=110 +wipe_hop_speed=10 +prime_tower_enable=False +acceleration_wall_x_roofing=500 +support_roof_enable=True +acceleration_wall_0_roofing=500 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.2 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=50 +support_tree_bp_diameter=7.5 +skirt_brim_speed=75.0 +support_interface_skip_height=0.2 +machine_nozzle_head_distance=3 +support_bottom_pattern=concentric +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=90 +jerk_infill=5 +infill_pattern=lines +adaptive_layer_height_variation_step=0.01 +acceleration_roofing=500 +raft_interface_jerk=5 +retraction_speed=30 +extruder_prime_pos_y=0 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/063.wkt b/stress_benchmark/resources/063.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/063.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/resources/064.settings b/stress_benchmark/resources/064.settings new file mode 100644 index 0000000000..ad14e390a1 --- /dev/null +++ b/stress_benchmark/resources/064.settings @@ -0,0 +1,626 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=20 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=10 +retraction_combing=noskin +material_bed_temperature=65 +ironing_inset=0.3 +speed_support_roof=25.0 +support_bottom_wall_count=0 +machine_max_feedrate_z=10 +wall_transition_angle=30 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=0 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=12.5 +ooze_shield_angle=60 +expand_skins_expand_distance=0.4 +support_infill_rate=20 +ironing_flow=14 +cool_fan_enabled=True +minimum_bottom_area=2 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=85 +minimum_support_area=0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=xy_overrides_z +material_no_load_move_factor=0.940860215 +material_flow=90 +jerk_roofing=8 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=concentric +acceleration_print=400 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=8 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=True +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=9.797174393178826e-18 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=False +bridge_settings_enabled=False +material_final_print_temperature=185 +machine_max_feedrate_x=500 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=25.0 +wall_0_material_flow_roofing=85.0 +speed_travel=100 +machine_max_acceleration_z=100 +layer_height_0=0.28 +skin_preshrink=0.4 +machine_depth=235 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=0.4 +skirt_line_count=3 +skin_monotonic=True +skin_line_width=0.4 +material_break_preparation_speed=2 +infill_sparse_thickness=0.16 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.4 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=8 +retraction_enable=True +jerk_support_bottom=8 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +infill_randomize_start_location=False +jerk_wall_x=8 +cool_min_layer_time=10 +speed_layer_0=10 +speed_wall_x_roofing=25 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.336 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=400 +material_print_temperature=185 +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=250 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=117.5 +support_interface_material_flow=90 +support_enable=False +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=2.4000240002400024 +initial_layer_line_width_factor=150 +conical_overhang_angle=50 +acceleration_support_infill=400 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=2 +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.04 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25.0 +support_bottom_distance=0.08 +material_shrinkage_percentage=100.0 +wall_distribution_count=2 +jerk_layer_0=2 +minimum_interface_area=2 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=2 +meshfix_union_all_remove_holes=False +raft_interface_speed=18.75 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_feeder_wheel_diameter=10.0 +skin_material_flow=85 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=400 +layer_start_x=0.0 +support_infill_sparse_thickness=0.04 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=8 +support_tree_top_rate=30 +ironing_monotonic=True +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=False +infill_overlap=30.0 +speed_support_infill=40 +support_offset=0.0 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=10.0 +material_break_speed=25 +machine_width=235 +raft_smoothing=5 +material_break_preparation_temperature=185 +material_alternate_walls=True +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=25.0 +wall_x_material_flow=85.0 +prime_tower_position_x=226.0 +acceleration_layer_0=400 +retraction_amount=5 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=206.0 +jerk_support=8 +jerk_skirt_brim=8 +support_roof_density=33.333 +roofing_line_width=0.4 +material_flow_layer_0=85 +minimum_roof_area=2 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=grid +xy_offset=0 +prime_tower_brim_enable=True +support_xy_distance=0.0 +acceleration_travel_enabled=True +brim_outside_only=False +retraction_prime_speed=45 +roofing_pattern=concentric +machine_nozzle_size=0.4 +support_bottom_height=0.16 +infill_wipe_dist=0.0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=1 +support_infill_extruder_nr=0 +alternate_carve_order=False +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=100 +bridge_skin_density_2=75 +acceleration_support_bottom=400 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +raft_margin=15 +speed_print_layer_0=10 +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=45 +ooze_shield_dist=2 +support_line_distance=2.0 +zig_zaggify_infill=True +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=8 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=2.0 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=235 +acceleration_skirt_brim=400 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=65 +raft_surface_jerk=8 +machine_max_feedrate_y=500 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +support_interface_height=0.16 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.8 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=1.4 +support_roof_line_distance=2.4000240002400024 +zig_zaggify_support=False +support_z_distance=0.08 +support_bottom_enable=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=250 +acceleration_topbottom=400 +extruder_prime_pos_x=0 +coasting_enable=True +retraction_hop=0.2 +jerk_prime_tower=8 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=2 +wipe_retraction_prime_speed=45 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=20 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.25 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +skirt_gap=10.0 +bridge_fan_speed=100 +bridge_skin_speed=12.5 +infill_mesh_order=0 +support_roof_material_flow=90 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=2 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=80 +alternate_extra_perimeter=True +wall_0_material_flow_layer_0=85 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=0 +raft_base_line_spacing=1.6 +jerk_wall_0=8 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=1 +material_print_temperature_layer_0=185 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=False +inset_direction=outside_in +wall_x_material_flow_roofing=85.0 +support_tree_tip_diameter=0.8 +jerk_ironing=8 +machine_max_feedrate_e=50 +wipe_retraction_amount=5 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=25 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=400 +brim_gap=0.8 +jerk_topbottom=8 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=250 +support_roof_height=0.16 +cool_fan_speed_min=100 +support_material_flow=90 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.1 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=33.333 +print_temperature=210 +acceleration_wall=400 +wall_material_flow=85.0 +raft_acceleration=400 +raft_interface_thickness=0.06 +support_meshes_present=True +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=0.4 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=8 +raft_surface_speed=25.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0 +small_feature_speed_factor=50 +wipe_hop_enable=False +support_xy_distance_overhang=0.4 +default_material_bed_temperature=50 +fill_outline_gaps=False +acceleration_wall_0=400 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=90 +prime_tower_flow=90 +acceleration_wall_x=400 +infill_overlap_mm=0 +support_tree_branch_diameter=5 +support_brim_width=4 +gradual_infill_steps=0 +top_skin_preshrink=0.4 +jerk_wall_x_roofing=8 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5 +top_layers=4 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=500 +support_roof_offset=0.0 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=185 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=185 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=400 +speed_travel_layer_0=50 +speed_ironing=10 +gantry_height=25 +bottom_skin_expand_distance=0.4 +min_feature_size=0 +z_seam_type=shortest +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=1.5 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=1 +raft_jerk=8 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.4 +skirt_brim_extruder_nr=-1 +support_brim_line_count=7 +build_volume_temperature=28 +wall_0_wipe_dist=0.0 +switch_extruder_prime_speed=20 +speed_infill=75 +raft_surface_thickness=0.04 +retraction_hop_after_extruder_switch_height=0.2 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +support_top_distance=0.2 +infill=0 +bridge_skin_speed_3=12.5 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=70 +machine_acceleration=500 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=90 +brim_line_count=14 +retraction_retract_speed=45 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=concentric +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +line_width=0.4 +acceleration_ironing=400 +bridge_wall_speed=10 +support_interface_density=33.333 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=10 +machine_extruder_count=1 +acceleration_infill=400 +roofing_material_flow=85 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.06 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=8 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=brim +speed_z_hop=5 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=0.4 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.01 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=inclusive +mesh_position_z=0 +raft_surface_acceleration=400 +anti_overhang_mesh=False +infill_material_flow=90 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.0 +raft_base_acceleration=400 +wall_line_width_x=0.4 +acceleration_support_interface=400 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +speed_wall_0=20 +meshfix_fluid_motion_angle=15 +speed_support_bottom=25.0 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=60 +top_bottom_pattern_0=concentric +wall_thickness=0.8 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=400 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=True +wipe_move_distance=20 +speed_print=50 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=40.0 +raft_speed=25.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +small_skin_width=0.8 +speed_roofing=25.0 +speed_prime_tower=25.0 +speed_support=40 +small_hole_max_size=0 +jerk_wall=8 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=180 +cross_infill_pocket_size=0.4 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.25 +min_bead_width=0.2 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=8 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=0.4 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=18.75 +jerk_travel_layer_0=8 +bridge_skin_material_flow_3=110 +wipe_hop_speed=5 +prime_tower_enable=False +acceleration_wall_x_roofing=400 +support_roof_enable=True +acceleration_wall_0_roofing=400 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.04 +support=0 +support_mesh=True +machine_firmware_retract=False +support_tree_angle=60 +support_tree_bp_diameter=7.5 +skirt_brim_speed=30 +support_interface_skip_height=0.04 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=100 +jerk_infill=8 +infill_pattern=concentric +adaptive_layer_height_variation_step=0.02 +acceleration_roofing=400 +raft_interface_jerk=8 +retraction_speed=45 +extruder_prime_pos_y=0 +wall_0_material_flow=85.0 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/064.wkt b/stress_benchmark/resources/064.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/064.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/resources/065.settings b/stress_benchmark/resources/065.settings new file mode 100644 index 0000000000..e82e8ae600 --- /dev/null +++ b/stress_benchmark/resources/065.settings @@ -0,0 +1,631 @@ +material_maximum_park_duration=7200 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=True +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=40 +retraction_combing=no_outer_surfaces +material_bed_temperature=60 +ironing_inset=0.2375 +speed_support_roof=20 +support_bottom_wall_count=1 +machine_max_feedrate_z=40 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0.015 +xy_offset_layer_0=-0.010000000000000002 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=20 +ooze_shield_angle=60 +expand_skins_expand_distance=0.75 +support_infill_rate=80 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=1.0 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=95.0 +minimum_support_area=0.0 +support_roof_wall_count=1 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=z_overrides_xy +material_no_load_move_factor=0.91 +material_flow=100 +jerk_roofing=20 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=3500 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=20 +support_tower_diameter=3.0 +carve_multiple_volumes=True +travel_avoid_supports=False +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=4.898587196589413e-17 +material_break_temperature=60 +support_extruder_nr=1 +jerk_enabled=True +bridge_settings_enabled=True +material_final_print_temperature=175 +machine_max_feedrate_x=300 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=20 +wall_0_material_flow_roofing=100 +speed_travel=150 +machine_max_acceleration_z=100 +layer_height_0=0.2 +skin_preshrink=0.75 +machine_depth=240 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=0.75 +skirt_line_count=1 +skin_monotonic=False +skin_line_width=0.25 +material_break_preparation_speed=50 +infill_sparse_thickness=0.1 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=False +brim_replaces_support=False +skirt_brim_minimal_length=2000 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=0.72 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=20 +retraction_enable=True +jerk_support_bottom=20 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=4 +travel_avoid_distance=0.4 +cool_min_layer_time_fan_speed_max=5 +machine_max_acceleration_e=10000 +infill_randomize_start_location=False +jerk_wall_x=20 +cool_min_layer_time=0 +speed_layer_0=10.0 +speed_wall_x_roofing=25 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.3 +retraction_hop_only_when_collides=True +infill_support_angle=40 +acceleration_prime_tower=2000 +material_print_temperature=190 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=0.4 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=1 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=1428.5714285714287 +material_bed_temp_wait=True +support_tower_roof_angle=0 +raft_interface_fan_speed=25.0 +z_seam_x=165.0 +support_interface_material_flow=95.0 +support_enable=True +extruder_prime_pos_z=2 +machine_heated_build_volume=True +support_bottom_line_distance=0.4 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=2000 +min_wall_line_width=0.2125 +draft_shield_height_limitation=full +bottom_layers=8 +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.1 +support_roof_pattern=zigzag +raft_interface_extruder_nr=1 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=25 +support_bottom_distance=0 +material_shrinkage_percentage=100.2 +wall_distribution_count=1 +jerk_layer_0=20 +minimum_interface_area=1.0 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +raft_interface_speed=17.5 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_feeder_wheel_diameter=10.0 +skin_material_flow=95.0 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=2000 +layer_start_x=330.0 +support_infill_sparse_thickness=0.2 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=20 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.8 +z_seam_position=back +raft_surface_fan_speed=50 +support_mesh_drop_down=True +infill_overlap=10 +speed_support_infill=25 +machine_gcode_flavor=Griffin +support_offset=0.8 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=20 +material_break_speed=25 +machine_width=330 +raft_smoothing=5 +material_break_preparation_temperature=210 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0.4 +speed_topbottom=20 +wall_x_material_flow=100 +prime_tower_position_x=301.2 +acceleration_layer_0=1000 +retraction_amount=6.5 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=213.2 +jerk_support=20 +jerk_skirt_brim=20 +support_roof_density=100 +roofing_line_width=0.25 +material_flow_layer_0=100 +minimum_roof_area=1.0 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=zigzag +xy_offset=-0.010000000000000002 +prime_tower_brim_enable=True +support_xy_distance=0.7 +acceleration_travel_enabled=False +brim_outside_only=True +retraction_prime_speed=45 +roofing_pattern=lines +machine_nozzle_size=0.25 +support_bottom_height=0.2 +infill_wipe_dist=0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=1 +support_infill_extruder_nr=1 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=20 +bridge_skin_density_2=100 +acceleration_support_bottom=100 +bridge_skin_density=80 +raft_airgap=0 +mold_angle=40 +quality_name=Fine +raft_margin=15 +speed_print_layer_0=10.0 +roofing_angles=[] +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=0.5 +zig_zaggify_infill=True +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.2 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0 +jerk_support_interface=20 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0.5 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=150 +z_seam_corner=z_seam_corner_none +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=240 +acceleration_skirt_brim=1000 +skin_no_small_gaps_heuristic=False +wall_line_width=0.25 +gradual_support_infill_steps=2 +machine_heated_bed=True +print_bed_temperature=60 +raft_surface_jerk=20 +machine_max_feedrate_y=300 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +support_interface_height=0.2 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.6000000000000001 +material_shrinkage_percentage_xy=100.2 +wipe_pause=0 +speed_slowdown_layers=1 +bridge_wall_min_length=2.1 +support_roof_line_distance=0.4 +zig_zaggify_support=True +support_z_distance=0 +support_bottom_enable=True +retraction_combing_max_distance=15 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=300 +acceleration_topbottom=1000 +extruder_prime_pos_x=-3 +coasting_enable=False +retraction_hop=0.2 +jerk_prime_tower=20 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=8 +wipe_retraction_prime_speed=45 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +prime_tower_size=20 +speed_wall_0_roofing=20 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.5 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=1 +skirt_gap=3 +quality_changes_name=empty +bridge_fan_speed=100 +bridge_skin_speed=20 +infill_mesh_order=0 +support_roof_material_flow=95.0 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=20 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=95 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=110.00000000000001 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=0 +raft_base_line_spacing=1.6 +jerk_wall_0=20 +machine_nozzle_heat_up_speed=1.4 +cool_fan_speed_0=100 +wall_line_count=3 +material_print_temperature_layer_0=190 +raft_surface_extruder_nr=1 +relative_extrusion=False +infill_before_walls=True +inset_direction=outside_in +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_max_feedrate_e=45 +wipe_retraction_amount=6.5 +support_use_towers=True +support_bottom_offset=0.8 +speed_wall_x=25 +infill_line_width=0.25 +wall_line_width_0=0.25 +acceleration_print_layer_0=1000 +brim_gap=0.14 +jerk_topbottom=20 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=0.2 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=1 +brim_width=3 +support_bottom_density=100 +print_temperature=200 +acceleration_wall=1500 +wall_material_flow=100 +raft_acceleration=3500 +raft_interface_thickness=0.2 +support_meshes_present=False +dual=0 +jerk_travel_enabled=False +support_interface_wall_count=1 +bridge_wall_material_flow=100 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=0.75 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.25 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=20 +raft_surface_speed=20 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.25 +skin_overlap_mm=0.05 +small_feature_speed_factor=50 +wipe_hop_enable=True +support_xy_distance_overhang=0.2 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=1500 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=95.0 +material_anti_ooze_retraction_speed=50 +support_bottom_material_flow=95.0 +prime_tower_flow=100 +acceleration_wall_x=1500 +infill_overlap_mm=0.025 +support_tree_branch_diameter=5 +support_brim_width=1.2000000000000002 +gradual_infill_steps=0 +top_skin_preshrink=0.75 +jerk_wall_x_roofing=20 +machine_min_cool_heat_time_window=15 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5.0 +top_layers=8 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=100 +machine_max_acceleration_x=9000 +support_roof_offset=0.8 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=180 +layer_0_z_overlap=0.0 +material_adhesion_tendency=0 +cool_min_temperature=180 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3500 +speed_travel_layer_0=150 +speed_ironing=13.333333333333334 +gantry_height=55 +bottom_skin_expand_distance=0.75 +min_feature_size=0.0625 +z_seam_type=sharpest_corner +prime_tower_base_size=3 +material_print_temp_wait=True +retraction_min_travel=0.7 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.5 +extruders_enabled_count=2 +raft_jerk=20 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=0.72 +skirt_brim_extruder_nr=1 +support_brim_line_count=3 +build_volume_temperature=28 +wall_0_wipe_dist=0.25 +switch_extruder_prime_speed=20 +speed_infill=30 +raft_surface_thickness=0.1 +retraction_hop_after_extruder_switch_height=0.2 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=True +support_top_distance=0 +infill=0 +bridge_skin_speed_3=20 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60 +machine_acceleration=3000 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.25 +skirt_brim_material_flow=100 +brim_line_count=8 +retraction_retract_speed=45 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +line_width=0.25 +acceleration_ironing=1000 +bridge_wall_speed=20 +support_interface_density=100 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=20.0 +machine_extruder_count=2 +acceleration_infill=3500 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.1 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +jerk_support_infill=20 +infill_offset_x=0 +min_odd_wall_line_width=0.2125 +adhesion_type=brim +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=1 +speed_equalize_flow_width_factor=110.0 +infill_line_distance=2.5 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=0 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=3500 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=0.8 +raft_base_acceleration=3500 +wall_line_width_x=0.25 +acceleration_support_interface=1500 +layer_start_y=228.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=100 +retraction_extrusion_window=1 +speed_wall_0=20 +meshfix_fluid_motion_angle=15 +speed_support_bottom=20 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.0625 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=1 +interlocking_enable=False +material_diameter=2.85 +bridge_enable_more_layers=False +lightning_infill_prune_angle=40 +resolution=0 +support_angle=45 +top_bottom_pattern_0=lines +wall_thickness=0.75 +wall_transition_length=0.25 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=1500 +support_tree_max_diameter=25 +min_even_wall_line_width=0.2125 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=30 +infill_wall_line_count=0 +bridge_fan_speed_3=100 +support_tree_angle_slow=30.0 +raft_speed=15 +support_bottom_extruder_nr=1 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +small_skin_width=0.5 +speed_roofing=20 +speed_prime_tower=20 +speed_support=25 +small_hole_max_size=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=0.9 +material_standby_temperature=100 +cross_infill_pocket_size=2.5 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.5 +min_bead_width=0.2125 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=20 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=1 +infill_support_enabled=False +top_bottom_thickness=0.72 +material_guid=506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 +platform_adhesion=0 +raft_base_speed=15 +jerk_travel_layer_0=20.0 +bridge_skin_material_flow_3=95.0 +wipe_hop_speed=10 +prime_tower_enable=True +acceleration_wall_x_roofing=1500 +support_roof_enable=True +acceleration_wall_0_roofing=1500 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=95.0 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=0.65 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=45 +skin_angles=[] +support_tree_bp_diameter=7.5 +skirt_brim_speed=12.5 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=zigzag +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=25 +jerk_infill=20 +infill_pattern=grid +adaptive_layer_height_variation_step=0.01 +acceleration_roofing=1000 +raft_interface_jerk=20 +retraction_speed=45 +extruder_prime_pos_y=6 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/065.wkt b/stress_benchmark/resources/065.wkt new file mode 100644 index 0000000000..2bd28248dc --- /dev/null +++ b/stress_benchmark/resources/065.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((274498 215057, 273516 215059, 273386 154809, 274368 154807))) \ No newline at end of file diff --git a/stress_benchmark/resources/066.settings b/stress_benchmark/resources/066.settings new file mode 100644 index 0000000000..3b324482ff --- /dev/null +++ b/stress_benchmark/resources/066.settings @@ -0,0 +1,631 @@ +material_maximum_park_duration=7200 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=True +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=40 +retraction_combing=no_outer_surfaces +material_bed_temperature=60 +ironing_inset=0.38 +speed_support_roof=20 +support_bottom_wall_count=1 +machine_max_feedrate_z=40 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=-0.09 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=35 +ooze_shield_angle=60 +expand_skins_expand_distance=0.8 +support_infill_rate=80 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=1.0 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=95.0 +minimum_support_area=0.0 +support_roof_wall_count=1 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=z_overrides_xy +material_no_load_move_factor=0.93 +material_flow=100 +jerk_roofing=20 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=3500 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=20 +support_tower_diameter=3.0 +carve_multiple_volumes=True +travel_avoid_supports=False +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=7.34788079488412e-17 +material_break_temperature=60 +support_extruder_nr=1 +jerk_enabled=True +bridge_settings_enabled=True +material_final_print_temperature=195 +machine_max_feedrate_x=300 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=20 +wall_0_material_flow_roofing=100 +speed_travel=150 +machine_max_acceleration_z=100 +layer_height_0=0.2 +skin_preshrink=0.8 +machine_depth=240 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=0.8 +skirt_line_count=1 +skin_monotonic=False +skin_line_width=0.4 +material_break_preparation_speed=50 +infill_sparse_thickness=0.1 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=False +brim_replaces_support=True +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=215 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=1.2 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=20 +retraction_enable=True +jerk_support_bottom=20 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=6 +travel_avoid_distance=3 +cool_min_layer_time_fan_speed_max=11 +machine_max_acceleration_e=10000 +infill_randomize_start_location=False +jerk_wall_x=20 +cool_min_layer_time=6 +speed_layer_0=16.0 +speed_wall_x_roofing=40 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.3 +retraction_hop_only_when_collides=True +infill_support_angle=40 +acceleration_prime_tower=2000 +material_print_temperature=210 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.4 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=0.4 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=1428.5714285714287 +material_bed_temp_wait=True +support_tower_roof_angle=0 +raft_interface_fan_speed=50.0 +z_seam_x=165.0 +support_interface_material_flow=95.0 +support_enable=True +extruder_prime_pos_z=2 +machine_heated_build_volume=True +support_bottom_line_distance=0.4 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=2000 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=12 +wipe_retraction_retract_speed=45 +material_anti_ooze_retracted_position=-4 +layer_height=0.1 +support_roof_pattern=zigzag +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=40 +support_bottom_distance=0 +material_shrinkage_percentage=100.3 +wall_distribution_count=1 +jerk_layer_0=20 +minimum_interface_area=1.0 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=True +cool_fan_full_at_height=0.2 +meshfix_union_all_remove_holes=False +raft_interface_speed=25.0 +support_tree_branch_reach_limit=30 +support_structure=normal +machine_feeder_wheel_diameter=10.0 +skin_material_flow=95.0 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=2000 +layer_start_x=330.0 +support_infill_sparse_thickness=0.2 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=20 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.8 +z_seam_position=back +raft_surface_fan_speed=100 +support_mesh_drop_down=True +infill_overlap=10 +speed_support_infill=25 +machine_gcode_flavor=Griffin +support_offset=0.8 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=20 +material_break_speed=25 +machine_width=330 +raft_smoothing=5 +material_break_preparation_temperature=230 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0.4 +speed_topbottom=35 +wall_x_material_flow=100 +prime_tower_position_x=300.8 +acceleration_layer_0=1000 +retraction_amount=6.5 +material_break_preparation_retracted_position=-14 +prime_tower_position_y=212.8 +jerk_support=20 +jerk_skirt_brim=20 +support_roof_density=100 +roofing_line_width=0.4 +material_flow_layer_0=100 +minimum_roof_area=1.0 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=zigzag +xy_offset=-0.010000000000000002 +prime_tower_brim_enable=False +support_xy_distance=0.7 +acceleration_travel_enabled=False +brim_outside_only=True +retraction_prime_speed=45 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=0.2 +infill_wipe_dist=0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=1 +support_infill_extruder_nr=1 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=15 +bridge_skin_density_2=100 +acceleration_support_bottom=100 +bridge_skin_density=80 +raft_airgap=0.3 +mold_angle=40 +quality_name=Fine +raft_margin=15 +speed_print_layer_0=16.0 +roofing_angles=[] +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=2 +ooze_shield_dist=2 +support_line_distance=0.5 +zig_zaggify_infill=True +support_interface_line_width=0.4 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.3 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0 +jerk_support_interface=20 +raft_surface_line_width=0.4 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0.5 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=150 +z_seam_corner=z_seam_corner_none +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=240 +acceleration_skirt_brim=1000 +skin_no_small_gaps_heuristic=False +wall_line_width=0.4 +gradual_support_infill_steps=2 +machine_heated_bed=True +print_bed_temperature=60 +raft_surface_jerk=20 +machine_max_feedrate_y=300 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=True +wall_0_extruder_nr=-1 +support_interface_height=0.2 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=everywhere +raft_interface_line_width=0.6000000000000001 +material_shrinkage_percentage_xy=100.3 +wipe_pause=0 +speed_slowdown_layers=1 +bridge_wall_min_length=2.1 +support_roof_line_distance=0.4 +zig_zaggify_support=True +support_z_distance=0 +support_bottom_enable=True +retraction_combing_max_distance=15 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=300 +acceleration_topbottom=1000 +extruder_prime_pos_x=-3 +coasting_enable=False +retraction_hop=2 +jerk_prime_tower=20 +cool_lift_head=False +support_tree_rest_preference=graceful +material_brand=empty_brand +initial_bottom_layers=12 +wipe_retraction_prime_speed=45 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +prime_tower_size=20 +speed_wall_0_roofing=32 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.8 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=True +adhesion_extruder_nr=-1 +skirt_gap=3 +quality_changes_name=empty +bridge_fan_speed=100 +bridge_skin_speed=35 +infill_mesh_order=0 +support_roof_material_flow=95.0 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=20 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=95 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=110.00000000000001 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=0 +raft_base_line_spacing=1.6 +jerk_wall_0=20 +machine_nozzle_heat_up_speed=1.6 +cool_fan_speed_0=100 +wall_line_count=2 +material_print_temperature_layer_0=210 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=True +inset_direction=outside_in +wall_x_material_flow_roofing=100 +support_tree_tip_diameter=0.8 +jerk_ironing=20 +machine_max_feedrate_e=45 +wipe_retraction_amount=6.5 +support_use_towers=True +support_bottom_offset=0.8 +speed_wall_x=40 +infill_line_width=0.4 +wall_line_width_0=0.4 +acceleration_print_layer_0=1000 +brim_gap=0.14 +jerk_topbottom=20 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=5000 +support_roof_height=0.2 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=1 +brim_width=7 +support_bottom_density=100 +print_temperature=200 +acceleration_wall=1500 +wall_material_flow=100 +raft_acceleration=3500 +raft_interface_thickness=0.2 +support_meshes_present=False +dual=0 +jerk_travel_enabled=False +support_interface_wall_count=1 +bridge_wall_material_flow=100 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=0.8 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.4 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=20 +raft_surface_speed=35 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.4 +skin_overlap_mm=0.08 +small_feature_speed_factor=50 +wipe_hop_enable=True +support_xy_distance_overhang=0.2 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=1500 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=95.0 +material_anti_ooze_retraction_speed=50 +support_bottom_material_flow=95.0 +prime_tower_flow=100 +acceleration_wall_x=1500 +infill_overlap_mm=0.04 +support_tree_branch_diameter=5 +support_brim_width=1.2000000000000002 +gradual_infill_steps=0 +top_skin_preshrink=0.8 +jerk_wall_x_roofing=20 +machine_min_cool_heat_time_window=15 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5.0 +top_layers=12 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=100 +machine_max_acceleration_x=9000 +support_roof_offset=0.8 +support_bottom_line_width=0.4 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=200 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=200 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=3500 +speed_travel_layer_0=150 +speed_ironing=23.333333333333332 +gantry_height=55 +bottom_skin_expand_distance=0.8 +min_feature_size=0.1 +z_seam_type=sharpest_corner +prime_tower_base_size=3 +material_print_temp_wait=True +retraction_min_travel=0.8 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.8 +extruders_enabled_count=2 +raft_jerk=20 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=1.2 +skirt_brim_extruder_nr=-1 +support_brim_line_count=3 +build_volume_temperature=24 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=45 +raft_surface_thickness=0.1 +retraction_hop_after_extruder_switch_height=2 +machine_max_acceleration_y=9000 +optimize_wall_printing_order=True +support_top_distance=0 +infill=0 +bridge_skin_speed_3=35 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60 +machine_acceleration=3000 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.4 +skirt_brim_material_flow=100 +brim_line_count=18 +retraction_retract_speed=45 +raft_surface_line_spacing=0.4 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=45 +line_width=0.4 +acceleration_ironing=1000 +bridge_wall_speed=35 +support_interface_density=100 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=20.0 +machine_extruder_count=2 +acceleration_infill=3500 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.1 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=4 +ironing_line_spacing=0.1 +jerk_support_infill=20 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=skirt +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=110.0 +infill_line_distance=8.0 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.04 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=0 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=3500 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=0.8 +raft_base_acceleration=3500 +wall_line_width_x=0.4 +acceleration_support_interface=1500 +layer_start_y=228.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=100 +retraction_extrusion_window=1 +speed_wall_0=32 +meshfix_fluid_motion_angle=15 +speed_support_bottom=20 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=1 +interlocking_enable=False +material_diameter=2.85 +bridge_enable_more_layers=False +lightning_infill_prune_angle=40 +resolution=0 +support_angle=45 +top_bottom_pattern_0=lines +wall_thickness=0.8 +wall_transition_length=0.4 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=1500 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=True +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=45 +infill_wall_line_count=0 +bridge_fan_speed_3=100 +support_tree_angle_slow=30.0 +raft_speed=15 +support_bottom_extruder_nr=1 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=False +small_skin_width=0.8 +speed_roofing=35 +speed_prime_tower=35 +speed_support=25 +small_hole_max_size=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=0.75 +material_standby_temperature=115 +cross_infill_pocket_size=8.0 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.5 +min_bead_width=0.34 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=20 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=1 +infill_support_enabled=False +top_bottom_thickness=1.2 +material_guid=851427a0-0c9a-4d7c-a9a8-5cc92f84af1f +platform_adhesion=0 +raft_base_speed=15 +jerk_travel_layer_0=20.0 +bridge_skin_material_flow_3=95.0 +wipe_hop_speed=10 +prime_tower_enable=False +acceleration_wall_x_roofing=1500 +support_roof_enable=True +acceleration_wall_0_roofing=1500 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=95.0 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1.0 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.1 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=45 +skin_angles=[] +support_tree_bp_diameter=7.5 +skirt_brim_speed=16.0 +support_interface_skip_height=0.1 +machine_nozzle_head_distance=3 +support_bottom_pattern=zigzag +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.4 +bridge_sparse_infill_max_density=0 +retraction_count_max=25 +jerk_infill=20 +infill_pattern=triangles +adaptive_layer_height_variation_step=0.01 +acceleration_roofing=1000 +raft_interface_jerk=20 +retraction_speed=45 +extruder_prime_pos_y=6 +wall_0_material_flow=100 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/066.wkt b/stress_benchmark/resources/066.wkt new file mode 100644 index 0000000000..d6e42e98b8 --- /dev/null +++ b/stress_benchmark/resources/066.wkt @@ -0,0 +1 @@ +MULTIPOLYGON (((165244 101743, 166738 102904, 168150 104230, 169007 105191, 169408 105703, 170133 106774, 170747 107915, 171234 109121, 171233 109121, 171566 110378, 171739 111665, 171739 112964, 171566 114255, 171420 114890, 171007 116119, 170456 117295, 170134 117856, 169408 118928, 169007 119437, 168148 120402, 166736 121725, 165241 122886, 163055 124308, 160799 125534, 159056 126359, 154895 128035, 151213 129265, 151213 127699, 154394 126638, 158466 124997, 158467 124997, 160131 124206, 162297 123030, 162298 123029, 164381 121675, 165773 120594, 165775 120593, 167084 119362, 167868 118486, 167869 118485, 168206 118053, 168874 117070, 168875 117069, 169138 116606, 169627 115567, 169627 115565, 169988 114484, 170105 113988, 170106 113986, 170256 112867, 170256 111761, 170108 110664, 170108 110662, 169823 109589, 169822 109588, 169403 108545, 169403 108544, 168863 107543, 168862 107542, 168206 106577, 167869 106146, 167868 106145, 167083 105265, 165773 104035, 165772 104034, 164378 102952, 163199 102179, 163200 100401))) \ No newline at end of file diff --git a/stress_benchmark/resources/067.settings b/stress_benchmark/resources/067.settings new file mode 100644 index 0000000000..8fead7495b --- /dev/null +++ b/stress_benchmark/resources/067.settings @@ -0,0 +1,629 @@ +material_maximum_park_duration=300 +support_bottom_stair_step_min_slope=10.0 +wipe_brush_pos_x=100 +extruder_prime_pos_abs=False +machine_scale_fan_speed_zero_to_one=False +support_zag_skip_count=0 +retraction_combing=noskin +material_bed_temperature=60.0 +ironing_inset=0.4275 +speed_support_roof=45 +support_bottom_wall_count=0 +machine_max_feedrate_z=10 +wall_transition_angle=10 +coasting_min_volume=0.8 +wall_0_inset=0 +xy_offset_layer_0=-0.15 +support_tree_limit_branch_reach=True +bridge_skin_speed_2=22.5 +ooze_shield_angle=60 +expand_skins_expand_distance=1.45 +support_infill_rate=0 +ironing_flow=10.0 +cool_fan_enabled=True +minimum_bottom_area=10 +skirt_height=3 +material_extrusion_cool_down_speed=0.7 +wall_x_material_flow_layer_0=100 +minimum_support_area=0 +support_roof_wall_count=0 +lightning_infill_overhang_angle=40 +support_xy_overrides_z=xy_overrides_z +material_no_load_move_factor=0.940860215 +material_flow=100 +jerk_roofing=20 +material_is_support_material=False +support_fan_enable=False +machine_buildplate_type=glass +ironing_pattern=zigzag +acceleration_print=500.0 +machine_minimum_feedrate=0.0 +material_surface_energy=100 +jerk_wall_0_roofing=20 +support_tower_diameter=3.0 +carve_multiple_volumes=False +travel_avoid_supports=True +interlocking_beam_layer_count=2 +min_skin_width_for_expansion=5.143516556418884e-17 +material_break_temperature=50 +support_extruder_nr=0 +jerk_enabled=True +bridge_settings_enabled=False +material_final_print_temperature=205.0 +machine_max_feedrate_x=500 +clean_between_layers=False +support_tree_max_diameter_increase_by_merges_when_support_to_model=1 +speed_support_interface=45 +wall_0_material_flow_roofing=90 +speed_travel=150.0 +machine_max_acceleration_z=100 +layer_height_0=0.28 +skin_preshrink=1.45 +machine_depth=235 +small_skin_on_surface=False +nozzle_disallowed_areas=[] +bottom_skin_preshrink=1.45 +skirt_line_count=3 +skin_monotonic=False +skin_line_width=0.45 +material_break_preparation_speed=2 +infill_sparse_thickness=0.3 +wipe_retraction_extra_prime_amount=0 +coasting_speed=90 +nozzle_offsetting_for_disallowed_areas=True +brim_replaces_support=False +skirt_brim_minimal_length=250 +cooling=0 +default_material_print_temperature=200 +meshfix_maximum_extrusion_area_deviation=50000 +top_thickness=1.12 +group_outer_walls=True +cool_fan_speed=100 +raft_base_jerk=20 +retraction_enable=True +jerk_support_bottom=20 +skin_outline_count=1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size=0.2 +cool_min_speed=10 +travel_avoid_distance=0.625 +cool_min_layer_time_fan_speed_max=10 +machine_max_acceleration_e=5000 +infill_randomize_start_location=False +jerk_wall_x=20 +cool_min_layer_time=10 +speed_layer_0=25 +speed_wall_x_roofing=65 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled=False +raft_base_thickness=0.336 +retraction_hop_only_when_collides=False +infill_support_angle=40 +acceleration_prime_tower=500.0 +material_print_temperature=205.0 +machine_disallowed_areas=[] +retract_at_layer_change=False +support_roof_line_width=0.45 +travel=0 +meshfix_union_all=True +gradual_support_infill_step_height=1 +machine_steps_per_mm_e=1600 +raft_interface_layers=1 +raft_base_extruder_nr=0 +wipe_retraction_enable=True +switch_extruder_retraction_amount=16 +acceleration_travel_layer_0=500.0 +material_bed_temp_wait=True +support_tower_roof_angle=65 +raft_interface_fan_speed=0 +z_seam_x=117.5 +support_interface_material_flow=100 +support_enable=True +extruder_prime_pos_z=0 +machine_heated_build_volume=False +support_bottom_line_distance=2.7000270002700026 +initial_layer_line_width_factor=100.0 +conical_overhang_angle=50 +acceleration_support_infill=500.0 +min_wall_line_width=0.34 +draft_shield_height_limitation=full +bottom_layers=3 +wipe_retraction_retract_speed=35.0 +material_anti_ooze_retracted_position=-4 +layer_height=0.28 +support_roof_pattern=grid +raft_interface_extruder_nr=0 +mesh_position_x=0 +meshfix_extensive_stitching=False +speed_wall=30.0 +support_bottom_distance=0 +material_shrinkage_percentage=100.0 +wall_distribution_count=1 +jerk_layer_0=8 +minimum_interface_area=10 +command_line_settings=0 +prime_tower_raft_base_line_spacing=1.6 +material_bed_temp_prepend=False +cool_fan_full_at_height=0.8400000000000001 +meshfix_union_all_remove_holes=False +raft_interface_speed=22.5 +support_tree_branch_reach_limit=30 +support_structure=tree +machine_feeder_wheel_diameter=10.0 +skin_material_flow=100 +cutting_mesh=False +support_tower_maximum_supported_diameter=3.0 +material_name=empty +acceleration_support=500.0 +layer_start_x=0.0 +support_infill_sparse_thickness=0.28 +magic_spiralize=False +wall_transition_filter_distance=100 +jerk_travel=20 +support_tree_top_rate=30 +ironing_monotonic=False +support_interface_offset=0.0 +z_seam_position=back +raft_surface_fan_speed=0 +support_mesh_drop_down=True +infill_overlap=0 +speed_support_infill=50 +support_offset=0.0 +magic_fuzzy_skin_outside_only=False +interlocking_boundary_avoidance=2 +coasting_volume=0.064 +skin_overlap=30.0 +material_break_speed=25 +machine_width=235 +raft_smoothing=5 +material_break_preparation_temperature=205.0 +material_alternate_walls=False +retraction_extra_prime_amount=0 +skin_edge_support_thickness=0 +speed_topbottom=45 +wall_x_material_flow=90 +prime_tower_position_x=223.025 +acceleration_layer_0=500.0 +retraction_amount=1.4 +material_break_preparation_retracted_position=-16 +prime_tower_position_y=203.025 +jerk_support=20 +jerk_skirt_brim=8 +support_roof_density=33.333 +roofing_line_width=0.45 +material_flow_layer_0=100 +minimum_roof_area=10 +blackmagic=0 +raft_remove_inside_corners=False +support_interface_pattern=grid +xy_offset=0 +prime_tower_brim_enable=False +support_xy_distance=0.9 +acceleration_travel_enabled=True +brim_outside_only=True +retraction_prime_speed=35.0 +roofing_pattern=lines +machine_nozzle_size=0.4 +support_bottom_height=1.12 +infill_wipe_dist=0.0 +raft_fan_speed=0 +machine_endstop_positive_direction_z=True +support_join_distance=2.0 +interlocking_orientation=22.5 +mold_width=5 +interlocking_depth=2 +roofing_layer_count=1 +support_infill_extruder_nr=0 +alternate_carve_order=True +hole_xy_offset=0 +magic_fuzzy_skin_point_density=1.25 +infill_sparse_density=20.0 +bridge_skin_density_2=75 +acceleration_support_bottom=500.0 +bridge_skin_density=100 +raft_airgap=0.3 +mold_angle=40 +raft_margin=15 +speed_print_layer_0=25 +roofing_angles=[45,135] +hole_xy_offset_max_diameter=0 +cool_fan_full_layer=4 +ooze_shield_dist=2 +support_line_distance=0 +zig_zaggify_infill=False +support_interface_line_width=0.45 +magic_mesh_surface_mode=normal +material_shrinkage_percentage_z=100.0 +machine_nozzle_expansion_angle=45 +multiple_mesh_overlap=0.15 +jerk_support_interface=20 +raft_surface_line_width=0.45 +support_supported_skin_fan_speed=100 +support_initial_layer_line_distance=0 +acceleration_enabled=True +smooth_spiralized_contours=True +travel_speed=150.0 +z_seam_corner=z_seam_corner_weighted +meshfix_fluid_motion_enabled=True +machine_show_variants=False +wall_overhang_angle=90 +z_seam_y=235 +acceleration_skirt_brim=500.0 +skin_no_small_gaps_heuristic=False +wall_line_width=0.45 +gradual_support_infill_steps=0 +machine_heated_bed=True +print_bed_temperature=60.0 +raft_surface_jerk=20 +machine_max_feedrate_y=500 +meshfix=0 +prime_tower_wipe_enabled=True +retraction_hop_enabled=False +wall_0_extruder_nr=-1 +support_interface_height=1.12 +wall_extruder_nr=-1 +adaptive_layer_height_enabled=False +material_type=empty +support_skip_zag_per_mm=20 +speed=0 +day=Mon +support_bottom_stair_step_width=5.0 +support_type=buildplate +raft_interface_line_width=0.9 +material_shrinkage_percentage_xy=100.0 +wipe_pause=0 +speed_slowdown_layers=2 +bridge_wall_min_length=2.3 +support_roof_line_distance=2.7000270002700026 +zig_zaggify_support=False +support_z_distance=0.28 +support_bottom_enable=True +retraction_combing_max_distance=30 +conical_overhang_enabled=False +remove_empty_first_layers=True +machine_height=250 +acceleration_topbottom=500.0 +extruder_prime_pos_x=0 +coasting_enable=True +retraction_hop=0.2 +jerk_prime_tower=20 +cool_lift_head=False +support_tree_rest_preference=buildplate +material_brand=empty_brand +initial_bottom_layers=3 +wipe_retraction_prime_speed=35.0 +wall_overhang_speed_factor=100 +machine_heat_zone_length=16 +support_bottom_stair_step_height=0 +machine_nozzle_id=unknown +prime_tower_size=20 +speed_wall_0_roofing=50 +machine_always_write_active_tool=False +raft_base_fan_speed=0 +ooze_shield_enabled=False +max_skin_angle_for_expansion=90 +meshfix_maximum_travel_resolution=0.25 +infill_offset_y=0 +cool_fan_speed_max=100 +material_print_temp_prepend=False +adhesion_extruder_nr=-1 +skirt_gap=10.0 +bridge_fan_speed=100 +bridge_skin_speed=22.5 +infill_mesh_order=0 +support_roof_material_flow=100 +prime_tower_base_curve_magnitude=4 +jerk_print_layer_0=8 +infill_extruder_nr=-1 +wipe_repeat_count=5 +skin_material_flow_layer_0=100 +alternate_extra_perimeter=False +wall_0_material_flow_layer_0=100 +roofing_monotonic=True +machine_center_is_zero=False +support_wall_count=1 +raft_base_line_spacing=1.6 +jerk_wall_0=20 +machine_nozzle_heat_up_speed=2.0 +cool_fan_speed_0=0 +wall_line_count=3 +material_print_temperature_layer_0=205.0 +raft_surface_extruder_nr=0 +relative_extrusion=False +infill_before_walls=False +inset_direction=inside_out +wall_x_material_flow_roofing=90 +support_tree_tip_diameter=0.9 +jerk_ironing=20 +machine_max_feedrate_e=50 +wipe_retraction_amount=1.4 +support_use_towers=True +support_bottom_offset=0.0 +speed_wall_x=65 +infill_line_width=0.57 +wall_line_width_0=0.45 +acceleration_print_layer_0=500.0 +brim_gap=0 +jerk_topbottom=20 +center_object=False +connect_infill_polygons=False +material_flush_purge_speed=0.5 +acceleration_travel=500.0 +support_roof_height=1.12 +cool_fan_speed_min=100 +support_material_flow=100 +bridge_skin_support_threshold=50 +adaptive_layer_height_threshold=0.2 +support_extruder_nr_layer_0=0 +brim_width=8.0 +support_bottom_density=33.333 +print_temperature=210 +acceleration_wall=500.0 +wall_material_flow=90 +raft_acceleration=500.0 +raft_interface_thickness=0.42000000000000004 +support_meshes_present=False +dual=0 +jerk_travel_enabled=True +support_interface_wall_count=0 +bridge_wall_material_flow=50 +lightning_infill_straightening_angle=40 +z_seam_relative=False +top_skin_expand_distance=1.45 +switch_extruder_extra_prime_amount=0 +prime_tower_line_width=0.45 +meshfix_fluid_motion_small_distance=0.01 +machine_endstop_positive_direction_y=False +mold_enabled=False +magic_fuzzy_skin_enabled=False +print_sequence=all_at_once +date=04-12-2023 +jerk_support_roof=20 +raft_surface_speed=30.0 +support_pattern=zigzag +switch_extruder_retraction_speeds=20 +sub_div_rad_add=0.5 +skin_overlap_mm=0.1425 +small_feature_speed_factor=50 +wipe_hop_enable=False +support_xy_distance_overhang=0.45 +default_material_bed_temperature=60 +fill_outline_gaps=True +acceleration_wall_0=500.0 +support_interface_priority=interface_area_overwrite_support_area +bridge_skin_material_flow_2=100 +material_anti_ooze_retraction_speed=5 +support_bottom_material_flow=100 +prime_tower_flow=100 +acceleration_wall_x=500.0 +infill_overlap_mm=0.0 +support_tree_branch_diameter=5 +support_brim_width=4 +gradual_infill_steps=0 +top_skin_preshrink=1.45 +jerk_wall_x_roofing=20 +machine_min_cool_heat_time_window=50.0 +machine_nozzle_temp_enabled=True +infill_enable_travel_optimization=False +machine_max_jerk_e=5 +top_layers=3 +meshfix_fluid_motion_shift_distance=0.1 +support_connect_zigzags=True +bridge_skin_density_3=80 +machine_max_acceleration_x=500 +support_roof_offset=0.0 +support_bottom_line_width=0.45 +machine_max_jerk_z=0.4 +switch_extruder_retraction_speed=20 +machine_settings=0 +flow_rate_extrusion_offset_factor=100 +material_initial_print_temperature=205.0 +layer_0_z_overlap=0.15 +material_adhesion_tendency=0 +cool_min_temperature=205.0 +material_end_of_filament_purge_length=20 +raft_interface_acceleration=500.0 +speed_travel_layer_0=125.0 +speed_ironing=30.0 +gantry_height=25 +bottom_skin_expand_distance=1.45 +min_feature_size=0.1125 +z_seam_type=sharpest_corner +prime_tower_base_size=8.0 +material_print_temp_wait=True +retraction_min_travel=1.5 +machine_extruders_shared_nozzle_initial_retraction=0 +interlocking_beam_width=0.9 +extruders_enabled_count=1 +raft_jerk=20 +max_extrusion_before_wipe=10 +draft_shield_height=10 +bottom_thickness=1.12 +skirt_brim_extruder_nr=-1 +support_brim_line_count=9 +build_volume_temperature=28 +wall_0_wipe_dist=0.2 +switch_extruder_prime_speed=20 +speed_infill=60.0 +raft_surface_thickness=0.28 +retraction_hop_after_extruder_switch_height=0.2 +machine_max_acceleration_y=500 +optimize_wall_printing_order=True +support_top_distance=0.28 +infill=0 +bridge_skin_speed_3=22.5 +machine_steps_per_mm_x=50 +material_bed_temperature_layer_0=60.0 +machine_acceleration=500 +machine_steps_per_mm_z=50 +skirt_brim_line_width=0.45 +skirt_brim_material_flow=100 +brim_line_count=18 +retraction_retract_speed=35.0 +raft_surface_line_spacing=0.45 +material=0 +material_crystallinity=False +top_bottom_pattern=lines +material_end_of_filament_purge_speed=0.5 +prime_tower_min_volume=6 +wipe_retraction_speed=35.0 +line_width=0.45 +acceleration_ironing=500.0 +bridge_wall_speed=25.0 +support_interface_density=33.333 +support_brim_enable=True +small_feature_speed_factor_0=50 +_plugin__curaenginegradualflow__0_1_0__reset_flow_duration=2.0 +travel_avoid_other_parts=True +flow_rate_max_extrusion_offset=0 +connect_skin_polygons=False +wipe_hop_amount=0.2 +mesh_position_y=0 +retraction_hop_after_extruder_switch=True +machine_max_jerk_xy=10 +machine_extruder_count=1 +acceleration_infill=500.0 +roofing_material_flow=100 +gradual_infill_step_height=1.5 +adaptive_layer_height_variation=0.04 +small_feature_max_length=0.0 +material_break_retracted_position=-50 +skin_edge_support_layers=0 +ironing_line_spacing=0.1 +jerk_support_infill=20 +infill_offset_x=0 +min_odd_wall_line_width=0.34 +adhesion_type=skirt +speed_z_hop=10 +brim_inside_margin=2.5 +wall_x_extruder_nr=-1 +initial_extruder_nr=0 +speed_equalize_flow_width_factor=100.0 +infill_line_distance=8.549999999999999 +lightning_infill_support_angle=40 +meshfix_maximum_deviation=0.025 +support_skip_some_zags=False +material_flush_purge_length=60 +support_conical_angle=30 +shell=0 +support_conical_min_width=5.0 +bridge_wall_coast=100 +slicing_tolerance=middle +mesh_position_z=0 +raft_surface_acceleration=500.0 +anti_overhang_mesh=False +infill_material_flow=100 +conical_overhang_hole_size=0 +roofing_extruder_nr=-1 +machine_extruders_share_heater=False +minimum_polygon_circumference=1.0 +draft_shield_enabled=False +raft_interface_line_spacing=1.1 +raft_base_acceleration=500.0 +wall_line_width_x=0.5 +acceleration_support_interface=500.0 +layer_start_y=0.0 +magic_fuzzy_skin_thickness=0.3 +support_conical_enabled=False +bridge_fan_speed_2=0 +retraction_extrusion_window=10 +speed_wall_0=50 +meshfix_fluid_motion_angle=15 +speed_support_bottom=45 +material_id=empty_material +raft_surface_layers=2 +experimental=0 +wall_transition_filter_deviation=0.1 +meshfix_keep_open_polygons=False +support_roof_extruder_nr=0 +interlocking_enable=False +material_diameter=1.75 +bridge_enable_more_layers=True +lightning_infill_prune_angle=40 +resolution=0 +support_angle=38 +top_bottom_pattern_0=lines +wall_thickness=0.9 +wall_transition_length=0.45 +ironing_only_highest_layer=False +raft_base_line_width=0.8 +acceleration_support_roof=500.0 +support_tree_max_diameter=25 +min_even_wall_line_width=0.34 +prime_blob_enable=False +top_bottom_extruder_nr=-1 +support_tree_min_height_to_model=3 +ironing_enabled=False +wipe_move_distance=20 +speed_print=60.0 +infill_wall_line_count=0 +bridge_fan_speed_3=0 +support_tree_angle_slow=25.333333333333332 +raft_speed=30.0 +support_bottom_extruder_nr=0 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration=1 +travel_retract_before_outer_wall=True +small_skin_width=0.9 +speed_roofing=50 +speed_prime_tower=45 +speed_support=50 +small_hole_max_size=0 +jerk_wall=20 +machine_nozzle_cool_down_speed=2.0 +material_standby_temperature=175 +cross_infill_pocket_size=8.549999999999999 +machine_shape=rectangular +infill_multiplier=1 +top_bottom=0 +draft_shield_dist=10 +machine_extruders_share_nozzle=False +meshfix_maximum_resolution=0.25 +min_bead_width=0.34 +support_interface_enable=True +_plugin__curaenginegradualflow__0_1_0__layer_0_max_flow_acceleration=1 +magic_fuzzy_skin_point_dist=0.8 +jerk_print=20 +brim_smart_ordering=True +machine_use_extruder_offset_to_offset_coords=True +support_interface_extruder_nr=0 +infill_support_enabled=False +top_bottom_thickness=1.12 +material_guid=0ff92885-617b-4144-a03c-9989872454bc +platform_adhesion=0 +raft_base_speed=22.5 +jerk_travel_layer_0=5 +bridge_skin_material_flow_3=110 +wipe_hop_speed=10 +prime_tower_enable=False +acceleration_wall_x_roofing=500.0 +support_roof_enable=True +acceleration_wall_0_roofing=500.0 +machine_endstop_positive_direction_x=False +infill_mesh=False +bridge_skin_material_flow=60 +mold_roof_height=0.5 +machine_nozzle_tip_outer_diameter=1 +support_tree_branch_diameter_angle=7 +prime_tower_base_height=0.28 +support=0 +support_mesh=False +machine_firmware_retract=False +support_tree_angle=38 +skin_angles=[45,135] +support_tree_bp_diameter=7.5 +skirt_brim_speed=25.0 +support_interface_skip_height=0.28 +machine_nozzle_head_distance=3 +support_bottom_pattern=grid +raft_base_wall_count=1 +min_infill_area=0 +support_line_width=0.45 +bridge_sparse_infill_max_density=0 +retraction_count_max=100 +jerk_infill=20 +infill_pattern=cubic +adaptive_layer_height_variation_step=0.04 +acceleration_roofing=500.0 +raft_interface_jerk=20 +retraction_speed=35.0 +extruder_prime_pos_y=0 +wall_0_material_flow=90 +machine_steps_per_mm_y=50 diff --git a/stress_benchmark/resources/067.wkt b/stress_benchmark/resources/067.wkt new file mode 100644 index 0000000000..4c7c9843c2 --- /dev/null +++ b/stress_benchmark/resources/067.wkt @@ -0,0 +1 @@ +MULTIPOLYGON () \ No newline at end of file diff --git a/stress_benchmark/stress_benchmark.cpp b/stress_benchmark/stress_benchmark.cpp index ee1738c9a1..98ac34bf99 100644 --- a/stress_benchmark/stress_benchmark.cpp +++ b/stress_benchmark/stress_benchmark.cpp @@ -91,7 +91,7 @@ struct Resource cura::Polygon outer; for (const auto& point : boost_polygon.outer()) { - outer.add({ static_cast(point.x()), static_cast(point.y()) }); + outer.add(cura::Point2LL(point.x(), point.y())); } polygon.add(outer); @@ -100,7 +100,7 @@ struct Resource cura::Polygon inner; for (const auto& point : hole) { - inner.add({ static_cast(point.x()), static_cast(point.y()) }); + inner.add(cura::Point2LL(point.x(), point.y())); } polygon.add(inner); } @@ -162,7 +162,7 @@ std::vector loadResources(const std::vector