diff --git a/.gitignore b/.gitignore index b3ce7c80..735887cc 100644 --- a/.gitignore +++ b/.gitignore @@ -37,8 +37,9 @@ Makefile # Machine-local runtime files /runtime/ -# Search checkpoints under results/search are intentionally tracked so that -# disjoint topology ranges merge through Git. These files are derived locally. +# Search checkpoints, archive deltas, manifests, and per-run metrics under +# results/search are intentionally tracked so disjoint ranges merge through Git. +# Only shared derived views, logs, and interrupted temporary files are ignored. /results/search/leaderboard.tsv /results/search/run.log /results/search/runs/**/run.log diff --git a/CMakeLists.txt b/CMakeLists.txt index 9da370ec..949463cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,8 @@ endif() add_library(neighborly_core src/Checkpoint/GlobalCheckpoint.cpp src/Checkpoint/GlobalCheckpoint.h + src/SearchArchive/SearchArchive.cpp + src/SearchArchive/SearchArchive.h src/NeighborlyCore/plane.h src/NeighborlyCore/precise_geometry.h src/NeighborlyCore/util.cpp @@ -52,6 +54,7 @@ target_include_directories(neighborly_core PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src/NeighborlyCore" "${CMAKE_CURRENT_SOURCE_DIR}/src/Checkpoint" + "${CMAKE_CURRENT_SOURCE_DIR}/src/SearchArchive" "${CMAKE_CURRENT_SOURCE_DIR}/projects/Szilassi" "${EIGEN_ROOT}" ) diff --git a/README.md b/README.md index 3b56c2dc..9200ebac 100644 --- a/README.md +++ b/README.md @@ -32,18 +32,31 @@ the 12 GB RTX 4070 Ti; narrower ranges allocate proportionally less. For an independent overnight run, set the desired number of minutes and topology range. This mode does not use the supplied near-miss: -it gives every topology fresh random starts, then alternates depth passes over the best -30/16/8 topologies with periodic breadth refreshes over all 59. A clean stop saves each +it combines saved archive seeds with independent random starts. A UCB-style bandit assigns +the 30/16/8 depth budgets using recent improvement, solution quality, uncertainty, and +staleness; every fifth cycle still refreshes the whole selected range, so no topology can +be starved indefinitely. A clean stop saves each topology under `results\search\topology_N`; pressing the same button later resumes only those checkpoints. `results\search\leaderboard.tsv` is the current ranking. The CUDA hot path uses standard FP32 math. Persistent chains retain their RNG, cooling, -stagnation, and restart state between batches; fixed fresh cohorts preserve global -exploration during breadth/refresh passes. Every returned shortlist is reconstructed and checked on +stagnation, and restart state between batches. Twenty-five percent of chains remain the +unchanged simulated-annealing control; disjoint cohorts add replica exchange, adaptive +move selection, population-based exploit/mutate, and MAP-Elites/CEM seed injection. +Strategy quotas and one descendant per injected seed reach CPU verification even when +they are outside the global GPU top-N. A small SPSA+Adam refinement runs in CPU double, +but its output is rounded back to exact FP32 and rechecked before it can be accepted. +Fixed fresh cohorts preserve global exploration during breadth/refresh passes. Every returned shortlist is reconstructed and checked on the CPU in `double`; candidates with at most 12 total defects are reclassified with the custom `WideReal` double-double type (about 31 decimal digits). Every claimed `0/0` is serialized and checked again at multiple tolerances down to `1e-13`. +The MAP-Elites archive separates geometry into determinant, edge-ratio, turn-angle, and +extent bins. All valid historical checkpoint generations are deduplicated and re-evaluated +on startup, so accumulated searches seed the archive instead of merely supplying one best +shape per topology. Diagonal CEM is updated only from new injected descendants, avoiding +repeatedly learning from the same persistent chain best. + CUDA Toolkit 13.3 with Visual Studio integration is required for the GPU backend. The build contains native targets for Ada `sm_89` and Blackwell `sm_120`. Without the Toolkit, the project builds a diagnostic stub and refuses `--cuda` instead of silently falling @@ -56,11 +69,26 @@ Each checkpoint is an immutable, self-contained `.szcp` file with CRC-32 and exa bit patterns. It is flushed to disk and atomically published; a damaged newest generation is ignored in favor of the previous valid one. +Archive improvements use immutable `.szar` delta files in the same run UUID namespace. +Each delta contains only cells opened or improved since the preceding durable write; CRC, +atomic publication, and deterministic per-cell selection make a normal Git merge a union +of useful results. Serialized energies are never trusted across run settings: every distinct +state is re-evaluated under the current objective before cells are compared. + +The checkpoint timer sweeps every changed topology, not just the topology currently chosen +by the bandit. Thus an improvement cannot remain only in memory because that topology is +not scheduled again. On clean stop all outstanding `.szcp` and `.szar` generations are +flushed; if durable writing fails, the stop marker is retained and the process returns an +error instead of reporting a successful stop. + For several computers, assign non-overlapping topology ranges. Each process uses a unique run UUID, so checkpoint filenames do not collide. Commit `results/search` normally on each computer and merge the branches with Git. `leaderboard.tsv`, run logs, and temporary files are derived and ignored, so they cannot create merge conflicts; the next search start rescans checkpoints, repeats CPU/DD validation, and rebuilds the leaderboard. +Each UUID run also has a tracked `metrics.tsv` with per-strategy accounted search work, archive, +replica-exchange, SPSA, and scheduler telemetry; independent computers create different +paths, so these files merge without a custom script. ## Project layout @@ -68,6 +96,7 @@ rescans checkpoints, repeats CPU/DD validation, and rebuilds the leaderboard. * `projects/VerifyCpp` — the high-precision verifier. * `projects/PolyhedronGui` — the Windows launcher. * `src/NeighborlyCore` — shared geometry and utility code. +* `src/SearchArchive` — durable Git-mergeable MAP-Elites delta storage. * `data` — topology definitions and input models. * `results/topologies` and `results/showcases` — saved research models. * `results/search` — Git-mergeable search states and durable checkpoint generations. diff --git a/projects/PolyhedronGui/launcher_gui.cpp b/projects/PolyhedronGui/launcher_gui.cpp index def81691..397d17ba 100644 --- a/projects/PolyhedronGui/launcher_gui.cpp +++ b/projects/PolyhedronGui/launcher_gui.cpp @@ -753,8 +753,10 @@ LRESULT CALLBACK window_proc(HWND window, UINT message, WPARAM wparam, LPARAM lp close_process_handles(); if (!g_stop_file.empty()) { - std::error_code remove_error; - fs::remove(g_stop_file, remove_error); + if (exit_code == 0) { + std::error_code remove_error; + fs::remove(g_stop_file, remove_error); + } g_stop_file.clear(); } diff --git a/projects/Szilassi/Szilassi.vcxproj b/projects/Szilassi/Szilassi.vcxproj index bec7e249..ce0e63be 100644 --- a/projects/Szilassi/Szilassi.vcxproj +++ b/projects/Szilassi/Szilassi.vcxproj @@ -98,7 +98,7 @@ true WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) stdcpp17 @@ -115,7 +115,7 @@ false WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) Speed AdvancedVectorExtensions2 false @@ -136,7 +136,7 @@ true _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) stdcpp17 @@ -153,7 +153,7 @@ false NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories) Speed AdvancedVectorExtensions2 false @@ -172,6 +172,7 @@ + @@ -187,6 +188,7 @@ + diff --git a/projects/Szilassi/Szilassi.vcxproj.filters b/projects/Szilassi/Szilassi.vcxproj.filters index 0519008c..c8d68521 100644 --- a/projects/Szilassi/Szilassi.vcxproj.filters +++ b/projects/Szilassi/Szilassi.vcxproj.filters @@ -24,6 +24,9 @@ Source Files + + Source Files + Source Files @@ -41,6 +44,9 @@ Header Files + + Header Files + Header Files diff --git a/projects/Szilassi/main.cpp b/projects/Szilassi/main.cpp index 03ca838d..b0d7f98f 100644 --- a/projects/Szilassi/main.cpp +++ b/projects/Szilassi/main.cpp @@ -3,6 +3,7 @@ #include "solver.h" #include "wide_real.h" #include "GlobalCheckpoint.h" +#include "SearchArchive.h" #include "cuda_search.h" #include #include @@ -13,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -21,9 +23,11 @@ #include #include #include +#include #include #include #include +#include #include #ifdef _WIN32 #ifndef NOMINMAX @@ -38,6 +42,7 @@ #define NUM_TOPOLOGIES 59 #define DUAL_PROBLEM 0 constexpr int GLOBAL_PLANE_VALUE_COUNT = 36; +constexpr std::uint32_t GLOBAL_OBJECTIVE_VERSION = 3; constexpr int CUDA_SESSION_CACHE_LIMIT = NUM_TOPOLOGIES; struct StudyOptions { @@ -2197,6 +2202,13 @@ struct GlobalMetrics { double geometry_penalty = std::numeric_limits::infinity(); double degeneracy_penalty = std::numeric_limits::infinity(); double energy = std::numeric_limits::infinity(); + // Geometry descriptors are kept separately from the objective. They are + // used by the quality-diversity archive; changing archive bins therefore + // cannot silently change which candidate is considered globally best. + double min_plane_determinant = 0.0; + double relative_min_edge = 0.0; + double min_turn_sine = 0.0; + double max_vertex_norm = std::numeric_limits::infinity(); bool canonical = false; bool precise = false; }; @@ -2238,10 +2250,63 @@ struct GlobalTopologyState { std::uint64_t run_trials = 0; std::uint64_t run_iterations = 0; std::uint64_t checkpoint_sequence = 0; + std::uint64_t last_checkpointed_run_visits = 0; std::chrono::steady_clock::time_point last_checkpoint_at{}; + bool pending_checkpoint_improvement = false; bool has_state = false; GlobalMetrics best; VectorXd best_x; + + struct DiverseElite { + std::uint64_t descriptor = 0; + GlobalMetrics metrics; + VectorXd x; + std::string source_run_id; + std::uint64_t source_seed = 0; + std::uint64_t source_sequence = 0; + std::uint64_t selections = 0; + }; + std::map archive; + std::unordered_set archive_dirty; + + struct DiagonalCemState { + bool initialized = false; + std::array mean{}; + std::array variance{}; + std::uint64_t updates = 0; + } cem; + std::unordered_set cem_seen_state_hashes; + + // The scheduler state is intentionally run-local. Durable geometry and + // counters are mergeable; a bandit can relearn its allocation cheaply and + // must not make two independent computers contend for mutable state. + std::uint64_t scheduler_pulls = 0; + std::uint64_t scheduler_last_pull = 0; + std::uint64_t scheduler_last_improvement = 0; + double scheduler_reward_ema = 0.0; + + std::uint64_t archive_sequence = 0; + + struct RoundTelemetry { + bool completed = false; + bool improved = false; + bool backend_error = false; + bool spsa_attempted = false; + bool spsa_accepted = false; + std::uint64_t evaluated_states = 0; + std::uint64_t new_trials = 0; + std::uint64_t verified_candidates = 0; + std::uint64_t archive_improvements = 0; + std::uint64_t replica_swaps_attempted = 0; + std::uint64_t replica_swaps_accepted = 0; + double kernel_milliseconds = 0.0; + double transfer_milliseconds = 0.0; + double wall_milliseconds = 0.0; + std::array strategy_evaluated{}; + std::array strategy_verified{}; + std::array strategy_archive_improvements{}; + std::array strategy_global_improvements{}; + } last_round; }; struct GlobalTrialResult { @@ -2250,6 +2315,13 @@ struct GlobalTrialResult { int iterations = 0; }; +struct GlobalVerifiedCandidate { + GlobalMetrics metrics; + VectorXd x; + std::uint32_t strategy = 0; + std::uint64_t chain_id = 0; +}; + int global_defects(const GlobalMetrics& metrics) { return metrics.crossings + metrics.intersections; } @@ -2273,6 +2345,170 @@ bool better_global_metrics(const GlobalMetrics& left, const GlobalMetrics& right right.energy); } +int logarithmic_archive_bin( + double value, + double minimum_log10, + double maximum_log10, + int bin_count +) { + if (!std::isfinite(value) || value <= 0.0 || bin_count <= 1) { + return 0; + } + const double scaled = (std::log10(value) - minimum_log10) / + (maximum_log10 - minimum_log10); + return std::clamp( + static_cast(std::floor(scaled * static_cast(bin_count))), + 0, + bin_count - 1); +} + +std::uint64_t global_archive_descriptor(const GlobalMetrics& metrics) { + if (!std::isfinite(metrics.energy)) { + return std::numeric_limits::max(); + } + const std::uint64_t determinant = static_cast( + logarithmic_archive_bin(metrics.min_plane_determinant, -10.0, 0.0, 8)); + const std::uint64_t edge = static_cast( + logarithmic_archive_bin(metrics.relative_min_edge, -8.0, 0.0, 8)); + const std::uint64_t turn = static_cast( + logarithmic_archive_bin(metrics.min_turn_sine, -8.0, 0.0, 8)); + const std::uint64_t extent = static_cast( + logarithmic_archive_bin(1.0 + metrics.max_vertex_norm, 0.0, 6.0, 8)); + // C/I and energy are quality, not behavior descriptors. Consequently a + // cell can only improve as more computers contribute data. + return determinant | (edge << 3U) | (turn << 6U) | (extent << 9U); +} + +bool add_global_archive_elite( + GlobalTopologyState& state, + const GlobalMetrics& metrics, + const VectorXd& x, + const std::string& source_run_id, + std::uint64_t source_seed, + std::uint64_t source_sequence, + bool mark_dirty +) { + constexpr std::size_t kMaximumArchiveCells = 4096; + if (!std::isfinite(metrics.energy) || x.size() != GLOBAL_PLANE_VALUE_COUNT || + !x.allFinite()) { + return false; + } + const std::uint64_t descriptor = global_archive_descriptor(metrics); + if (descriptor == std::numeric_limits::max()) { + return false; + } + auto existing = state.archive.find(descriptor); + if (existing != state.archive.end()) { + if (!better_global_metrics(metrics, existing->second.metrics)) { + return false; + } + const std::uint64_t selections = existing->second.selections; + existing->second = GlobalTopologyState::DiverseElite{ + descriptor, + metrics, + x, + source_run_id, + source_seed, + source_sequence, + selections}; + if (mark_dirty) { + state.archive_dirty.insert(descriptor); + } + return true; + } + + state.archive.emplace( + descriptor, + GlobalTopologyState::DiverseElite{ + descriptor, + metrics, + x, + source_run_id, + source_seed, + source_sequence, + 0}); + if (mark_dirty) { + state.archive_dirty.insert(descriptor); + } + if (state.archive.size() <= kMaximumArchiveCells) { + return true; + } + + auto worst = state.archive.begin(); + for (auto it = std::next(state.archive.begin()); it != state.archive.end(); ++it) { + if (better_global_metrics(worst->second.metrics, it->second.metrics)) { + worst = it; + } + } + const bool retained = worst->first != descriptor; + state.archive_dirty.erase(worst->first); + state.archive.erase(worst); + return retained; +} + +double topology_bandit_score( + const GlobalTopologyState& state, + std::uint64_t total_pulls, + std::uint64_t current_round, + int best_defects +) { + const double exploration = 0.60 * std::sqrt( + std::log(static_cast(total_pulls) + 2.0) / + (static_cast(state.scheduler_pulls) + 1.0)); + const double quality_prior = state.has_state + ? 0.30 / (1.0 + std::max(0, global_defects(state.best) - best_defects)) + : 0.35; + const double rounds_since_pull = state.scheduler_last_pull == 0 + ? static_cast(current_round + 1) + : static_cast(current_round - state.scheduler_last_pull); + const double staleness = std::min(0.25, rounds_since_pull * 0.01); + return state.scheduler_reward_ema + exploration + quality_prior + staleness; +} + +void update_topology_bandit_reward( + GlobalTopologyState& state, + bool had_before, + const GlobalMetrics& before, + std::uint64_t archive_improvements, + std::uint64_t current_round +) { + double reward = 0.0; + if (!had_before && state.has_state) { + reward = 1.0; + } else if (had_before && state.has_state) { + const int defect_gain = global_defects(before) - global_defects(state.best); + reward += static_cast(std::clamp(defect_gain, 0, 4)); + if (defect_gain == 0) { + const int balance_gain = + std::max(before.crossings, before.intersections) - + std::max(state.best.crossings, state.best.intersections); + reward += 0.50 * static_cast(std::max(0, balance_gain)); + if (balance_gain == 0) { + reward += 0.25 * static_cast( + std::max(0, before.crossings - state.best.crossings)); + if (std::isfinite(before.energy) && before.energy > 0.0 && + state.best.energy < before.energy) { + reward += std::min( + 0.20, + (before.energy - state.best.energy) / before.energy); + } + } + } + } + reward += std::min(0.10, static_cast(archive_improvements) * 0.01); + if (state.scheduler_pulls == 0) { + state.scheduler_reward_ema = reward; + } else { + state.scheduler_reward_ema = + 0.90 * state.scheduler_reward_ema + 0.10 * reward; + } + state.scheduler_pulls += 1; + state.scheduler_last_pull = current_round; + if (reward >= 0.20) { + state.scheduler_last_improvement = current_round; + } +} + bool load_global_topology_context(int topology) { g_topology = topology; open_topology("data/topologies.txt", g_tris, topology); @@ -2459,6 +2695,10 @@ GlobalMetrics evaluate_global_state( const double turn_barrier = std::log1p(0.002 / std::max(1e-10, min_turn_sine)); const double extent_barrier = 0.10 * std::log1p(max_vertex_norm / 100.0); + metrics.min_plane_determinant = min_plane_determinant; + metrics.relative_min_edge = relative_min_edge; + metrics.min_turn_sine = min_turn_sine; + metrics.max_vertex_norm = max_vertex_norm; metrics.degeneracy_penalty = g_global_degeneracy_weight * (determinant_barrier + edge_barrier + turn_barrier + extent_barrier); metrics.geometry_penalty = @@ -2474,6 +2714,293 @@ GlobalMetrics evaluate_global_state( return metrics; } +bool round_trip_global_state_to_fp32( + VectorXd& x, + GlobalMetrics& metrics +) { + if (x.size() != GLOBAL_PLANE_VALUE_COUNT) { + return false; + } + VectorXd exact(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const float value = static_cast(x[component]); + if (!std::isfinite(value)) { + return false; + } + exact[component] = static_cast(value); + } + PlaneEvaluationScratch scratch; + GlobalMetrics exact_metrics = evaluate_global_state(exact, true, scratch); + if (!std::isfinite(exact_metrics.energy)) { + return false; + } + x = std::move(exact); + metrics = exact_metrics; + return true; +} + +void update_diagonal_cem( + GlobalTopologyState& state, + const std::vector& candidates +) { + if (candidates.empty()) { + return; + } + std::vector ranked; + ranked.reserve(candidates.size()); + const bool has_injected_candidates = std::any_of( + candidates.begin(), + candidates.end(), + [](const GlobalVerifiedCandidate& candidate) { + return candidate.strategy == + static_cast(cuda_search::StrategyKind::Injected); + }); + if (state.cem_seen_state_hashes.size() > 16384) { + state.cem_seen_state_hashes.clear(); + } + for (const GlobalVerifiedCandidate& candidate : candidates) { + if (has_injected_candidates && + candidate.strategy != + static_cast(cuda_search::StrategyKind::Injected)) { + continue; + } + if (candidate.x.size() == GLOBAL_PLANE_VALUE_COUNT && + std::isfinite(candidate.metrics.energy)) { + std::uint64_t hash = 1469598103934665603ULL; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const float value = static_cast(candidate.x[component]); + std::uint32_t bits = 0; + std::memcpy(&bits, &value, sizeof(bits)); + hash ^= static_cast(bits); + hash *= 1099511628211ULL; + } + if (!state.cem_seen_state_hashes.insert(hash).second) { + continue; + } + ranked.push_back(&candidate); + } + } + std::stable_sort(ranked.begin(), ranked.end(), [](const auto* left, const auto* right) { + return better_global_metrics(left->metrics, right->metrics); + }); + if (ranked.empty()) { + return; + } + const VectorXd& mode_anchor = ranked.front()->x; + const int anchor_defects = global_defects(ranked.front()->metrics); + ranked.erase( + std::remove_if( + std::next(ranked.begin()), + ranked.end(), + [&](const GlobalVerifiedCandidate* candidate) { + return global_defects(candidate->metrics) > anchor_defects + 2 || + (candidate->x - mode_anchor).norm() > 1.5; + }), + ranked.end()); + + // CEM supplies the elite mean; the diagonal covariance update also keeps + // the displacement of the mean (the useful part of diagonal CMA) so the + // distribution does not collapse after one unusually tight shortlist. + const std::size_t elite_count = std::min( + ranked.size(), + std::max(4, ranked.size() / 6)); + std::array elite_mean{}; + std::array elite_variance{}; + double weight_sum = 0.0; + for (std::size_t rank = 0; rank < elite_count; ++rank) { + const double weight = std::log(static_cast(elite_count) + 1.5) - + std::log(static_cast(rank) + 1.0); + weight_sum += weight; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + elite_mean[component] += weight * ranked[rank]->x[component]; + } + } + for (double& value : elite_mean) { + value /= weight_sum; + } + for (std::size_t rank = 0; rank < elite_count; ++rank) { + const double weight = std::log(static_cast(elite_count) + 1.5) - + std::log(static_cast(rank) + 1.0); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const double delta = ranked[rank]->x[component] - elite_mean[component]; + elite_variance[component] += weight * delta * delta; + } + } + constexpr double kMinimumVariance = 0.0025 * 0.0025; + constexpr double kMaximumVariance = 0.35 * 0.35; + for (double& value : elite_variance) { + value = std::clamp(value / weight_sum, kMinimumVariance, kMaximumVariance); + } + + if (!state.cem.initialized) { + state.cem.mean = elite_mean; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + state.cem.variance[component] = std::max( + elite_variance[component], + 0.035 * 0.035); + } + state.cem.initialized = true; + } else { + constexpr double kLearningRate = 0.18; + constexpr double kEvolutionWeight = 0.10; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const double displacement = elite_mean[component] - state.cem.mean[component]; + state.cem.mean[component] += kLearningRate * displacement; + const double target_variance = elite_variance[component] + + kEvolutionWeight * displacement * displacement; + state.cem.variance[component] = std::clamp( + (1.0 - kLearningRate) * state.cem.variance[component] + + kLearningRate * target_variance, + kMinimumVariance, + kMaximumVariance); + } + } + state.cem.updates += 1; +} + +std::vector make_hybrid_seed_pool( + GlobalTopologyState& state, + std::uint64_t seed, + int maximum_states +) { + std::vector result; + if (maximum_states <= 0) { + return result; + } + result.reserve(static_cast(maximum_states)); + RNG rng(static_cast(seed)); + std::normal_distribution normal(0.0, 1.0); + + const int archive_target = std::min( + maximum_states / 2, + static_cast(state.archive.size())); + std::vector archive_candidates; + archive_candidates.reserve(state.archive.size()); + for (auto& item : state.archive) { + archive_candidates.push_back(&item.second); + } + // Sampling the least-used cells first is the MAP-Elites coverage pressure: + // high-quality cells do not monopolize all descendants. + std::shuffle(archive_candidates.begin(), archive_candidates.end(), rng); + std::stable_sort( + archive_candidates.begin(), + archive_candidates.end(), + [](const auto* left, const auto* right) { + return left->selections < right->selections; + }); + for (int index = 0; index < archive_target; ++index) { + GlobalTopologyState::DiverseElite& elite = *archive_candidates[index]; + cuda_search::PlaneState state_value; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + state_value.values[static_cast(component)] = + static_cast(elite.x[component]); + } + elite.selections += 1; + result.push_back(state_value); + } + + while (state.cem.initialized && + static_cast(result.size()) < maximum_states) { + VectorXd sample(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + sample[component] = state.cem.mean[component] + + std::sqrt(state.cem.variance[component]) * normal(rng); + } + if (!normalize_global_plane_state(sample)) { + continue; + } + cuda_search::PlaneState state_value; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + state_value.values[static_cast(component)] = + static_cast(sample[component]); + } + result.push_back(state_value); + } + return result; +} + +double smooth_spsa_objective(const GlobalMetrics& metrics) { + if (!std::isfinite(metrics.energy)) { + return 1.0e30; + } + // Counts remain a weak guide when a perturbation crosses a discrete + // boundary; clearance and conditioning provide the differentiable signal. + return 0.004 * static_cast(global_defects(metrics)) + + 0.035 * std::min(20.0, metrics.crossing_loss) + + metrics.geometry_penalty; +} + +bool refine_with_spsa_adam( + const VectorXd& start, + std::uint64_t seed, + int iterations, + VectorXd& refined, + GlobalMetrics& refined_metrics +) { + if (start.size() != GLOBAL_PLANE_VALUE_COUNT || iterations <= 0) { + return false; + } + RNG rng(static_cast(seed)); + std::uniform_int_distribution sign(0, 1); + PlaneEvaluationScratch scratch; + VectorXd current = start; + std::array first_moment{}; + std::array second_moment{}; + constexpr double kBeta1 = 0.82; + constexpr double kBeta2 = 0.97; + + for (int iteration = 0; iteration < iterations; ++iteration) { + const double perturbation = 0.022 / + std::pow(static_cast(iteration + 1), 0.101); + const double learning_rate = 0.012 / + std::pow(static_cast(iteration + 5), 0.602); + VectorXd delta(GLOBAL_PLANE_VALUE_COUNT); + VectorXd plus = current; + VectorXd minus = current; + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + delta[component] = sign(rng) == 0 ? -1.0 : 1.0; + plus[component] += perturbation * delta[component]; + minus[component] -= perturbation * delta[component]; + } + if (!normalize_global_plane_state(plus) || + !normalize_global_plane_state(minus)) { + continue; + } + const double plus_value = smooth_spsa_objective( + evaluate_global_state(plus, false, scratch)); + const double minus_value = smooth_spsa_objective( + evaluate_global_state(minus, false, scratch)); + if (!std::isfinite(plus_value) || !std::isfinite(minus_value)) { + continue; + } + const double directional = std::clamp( + (plus_value - minus_value) / (2.0 * perturbation), + -100.0, + 100.0); + const double beta1_power = std::pow(kBeta1, iteration + 1); + const double beta2_power = std::pow(kBeta2, iteration + 1); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const double gradient = directional * delta[component]; + first_moment[component] = + kBeta1 * first_moment[component] + (1.0 - kBeta1) * gradient; + second_moment[component] = + kBeta2 * second_moment[component] + (1.0 - kBeta2) * gradient * gradient; + const double corrected_first = first_moment[component] / (1.0 - beta1_power); + const double corrected_second = second_moment[component] / (1.0 - beta2_power); + current[component] -= learning_rate * corrected_first / + (std::sqrt(corrected_second) + 1.0e-8); + } + normalize_global_plane_state(current); + } + + refined_metrics = evaluate_global_state(current, true, scratch); + if (!std::isfinite(refined_metrics.energy)) { + return false; + } + refined = std::move(current); + return true; +} + GlobalTrialResult run_global_trial( const LocalRepairOptions& options, const VectorXd& start_x, @@ -2613,7 +3140,8 @@ bool load_global_topology_state( } PlaneEvaluationScratch scratch; GlobalMetrics metrics = evaluate_global_state(x, true, scratch); - if (!std::isfinite(metrics.energy)) { + if (!std::isfinite(metrics.energy) || + !round_trip_global_state_to_fp32(x, metrics)) { return false; } state.best_x = x; @@ -2639,6 +3167,23 @@ void load_mergeable_checkpoints( ) { using namespace szilassi::checkpoint; const CheckpointScan scan = scan_checkpoints(options.global_dir); + + // Preserve legacy previews as archive seeds before a newer mergeable best + // replaces state.best below. They are inputs only; they never contribute + // to mergeable run counters. + for (GlobalTopologyState& state : states) { + if (state.has_state && load_global_topology_context(state.topology)) { + add_global_archive_elite( + state, + state.best, + state.best_x, + "legacy-preview", + 0, + 0, + false); + } + } + const LatestCheckpointMap latest = select_latest_per_run_topology(scan); for (const auto& entry : latest) { const GlobalCheckpoint& checkpoint = entry.second.checkpoint; @@ -2677,6 +3222,166 @@ void load_mergeable_checkpoints( state.has_state = true; } } + + std::unordered_set conflicted_paths; + for (const CheckpointConflict& conflict : scan.conflicts) { + for (const std::filesystem::path& path : conflict.paths) { + conflicted_paths.insert(path.lexically_normal().generic_string()); + } + } + std::array, NUM_TOPOLOGIES> by_topology; + for (const CheckpointRecord& record : scan.valid) { + if (record.checkpoint.topology >= 0 && + record.checkpoint.topology < NUM_TOPOLOGIES && + conflicted_paths.find(record.path.lexically_normal().generic_string()) == + conflicted_paths.end()) { + by_topology[static_cast(record.checkpoint.topology)].push_back( + &record); + } + } + std::size_t imported_unique_states = 0; + for (int topology = 0; topology < NUM_TOPOLOGIES; ++topology) { + if (by_topology[static_cast(topology)].empty() || + !load_global_topology_context(topology)) { + continue; + } + const std::uint64_t expected_fingerprint = topology_fingerprint(); + std::unordered_set seen_states; + for (const CheckpointRecord* record : by_topology[static_cast(topology)]) { + const GlobalCheckpoint& checkpoint = record->checkpoint; + if (checkpoint.plane_coefficients.size() != + static_cast(GLOBAL_PLANE_VALUE_COUNT) || + (checkpoint.topology_fingerprint != 0 && + checkpoint.topology_fingerprint != expected_fingerprint)) { + continue; + } + const char* raw = reinterpret_cast( + checkpoint.plane_coefficients.data()); + std::string exact_state( + raw, + raw + sizeof(float) * checkpoint.plane_coefficients.size()); + if (!seen_states.insert(std::move(exact_state)).second) { + continue; + } + VectorXd x(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + x[component] = static_cast( + checkpoint.plane_coefficients[static_cast(component)]); + } + if (!valid_plane_state(x)) { + continue; + } + PlaneEvaluationScratch scratch; + GlobalMetrics metrics = evaluate_global_state(x, true, scratch); + if (!std::isfinite(metrics.energy)) { + continue; + } + imported_unique_states += 1; + add_global_archive_elite( + states[topology], + metrics, + x, + checkpoint.run_id, + checkpoint.base_seed, + checkpoint.sequence, + false); + } + } + + const szilassi::archive::ArchiveScan archive_scan = + szilassi::archive::scan_archives(options.global_dir); + const szilassi::archive::ArchiveGenerationMap archive_generations = + szilassi::archive::select_nonconflicting_deltas(archive_scan); + std::size_t imported_archive_cells = 0; + std::size_t imported_archive_deltas = 0; + std::size_t incompatible_archive_deltas = 0; + for (int topology = 0; topology < NUM_TOPOLOGIES; ++topology) { + if (!load_global_topology_context(topology)) { + continue; + } + const std::uint64_t expected_fingerprint = topology_fingerprint(); + std::unordered_set seen_archive_states; + for (const auto& generation : archive_generations) { + const szilassi::archive::ArchiveRecord& record = generation.second; + if (record.delta.topology != topology) { + continue; + } + if (record.delta.objective_version != GLOBAL_OBJECTIVE_VERSION || + record.delta.topology_fingerprint != expected_fingerprint) { + incompatible_archive_deltas += 1; + continue; + } + imported_archive_deltas += 1; + // Re-evaluate every distinct state before per-cell selection. + // Energy contains configurable weights, so selecting by serialized + // energy first could discard the current run's true winner. + for (const szilassi::archive::ArchiveEntry& entry : record.delta.entries) { + const char* raw = reinterpret_cast( + entry.plane_coefficients.data()); + std::string exact_state( + raw, + raw + sizeof(float) * entry.plane_coefficients.size()); + if (!seen_archive_states.insert(std::move(exact_state)).second) { + continue; + } + VectorXd x(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + x[component] = static_cast( + entry.plane_coefficients[static_cast(component)]); + } + if (!valid_plane_state(x)) { + continue; + } + PlaneEvaluationScratch scratch; + const GlobalMetrics metrics = evaluate_global_state(x, true, scratch); + if (!std::isfinite(metrics.energy)) { + continue; + } + if (add_global_archive_elite( + states[topology], + metrics, + x, + entry.origin_run_id, + entry.origin_seed, + entry.origin_sequence, + false)) { + imported_archive_cells += 1; + } + if (!states[topology].has_state || + better_global_metrics(metrics, states[topology].best)) { + states[topology].best = metrics; + states[topology].best_x = x; + states[topology].has_state = true; + } + } + } + } + for (GlobalTopologyState& state : states) { + std::vector bootstrap_candidates; + bootstrap_candidates.reserve(state.archive.size()); + for (const auto& item : state.archive) { + bootstrap_candidates.push_back(GlobalVerifiedCandidate{ + item.second.metrics, + item.second.x, + 0, + 0}); + } + state.cem = {}; + update_diagonal_cem(state, bootstrap_candidates); + } + std::cout << "Loaded " << imported_unique_states + << " unique saved FP32 states into the diversity archive." + << std::endl; + if (imported_archive_deltas != 0 || imported_archive_cells != 0) { + std::cout << "Merged " << imported_archive_deltas + << " archive delta(s), improving " << imported_archive_cells + << " local MAP-Elites cell(s)." << std::endl; + } + if (incompatible_archive_deltas != 0) { + std::cerr << "Ignored " << incompatible_archive_deltas + << " archive delta(s) with a different objective version or topology." + << std::endl; + } if (!scan.rejected.empty()) { std::cerr << "Ignored " << scan.rejected.size() << " incomplete or corrupt checkpoint(s); older generations remain usable." @@ -2686,6 +3391,14 @@ void load_mergeable_checkpoints( std::cerr << "Ignored " << scan.conflicts.size() << " conflicting checkpoint sequence(s)." << std::endl; } + if (!archive_scan.rejected.empty()) { + std::cerr << "Ignored " << archive_scan.rejected.size() + << " incomplete or corrupt archive delta(s)." << std::endl; + } + if (!archive_scan.conflicts.empty()) { + std::cerr << "Ignored " << archive_scan.conflicts.size() + << " conflicting archive delta sequence(s)." << std::endl; + } } bool commit_mergeable_checkpoint( @@ -2707,7 +3420,7 @@ bool commit_mergeable_checkpoint( checkpoint.topology = state.topology; checkpoint.topology_first = options.topology_from; checkpoint.topology_last = options.topology_to; - checkpoint.objective_version = 2; + checkpoint.objective_version = GLOBAL_OBJECTIVE_VERSION; checkpoint.topology_fingerprint = topology_fingerprint(); checkpoint.base_seed = static_cast( static_cast(options.seed)); @@ -2753,6 +3466,113 @@ bool commit_mergeable_checkpoint( return true; } +bool commit_mergeable_archive_delta( + const LocalRepairOptions& options, + const szilassi::checkpoint::RunIdentity& identity, + GlobalTopologyState& state +) { + if (state.archive_dirty.empty()) { + return true; + } + using namespace szilassi::archive; + std::map exact_entries; + std::vector persisted_descriptors; + std::vector stale_descriptors; + const std::int64_t created_at = szilassi::checkpoint::unix_time_ns_now(); + for (std::uint64_t dirty_descriptor : state.archive_dirty) { + const auto found = state.archive.find(dirty_descriptor); + if (found == state.archive.end()) { + stale_descriptors.push_back(dirty_descriptor); + continue; + } + const GlobalTopologyState::DiverseElite& elite = found->second; + ArchiveEntry entry; + VectorXd exact_x(GLOBAL_PLANE_VALUE_COUNT); + for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) { + const float value = static_cast(elite.x[component]); + entry.plane_coefficients[static_cast(component)] = value; + exact_x[component] = static_cast(value); + } + PlaneEvaluationScratch scratch; + const GlobalMetrics metrics = evaluate_global_state(exact_x, true, scratch); + if (!std::isfinite(metrics.energy)) { + std::cerr << "Archive FP32 round-trip is invalid for topology " + << state.topology << std::endl; + continue; + } + entry.descriptor_key = global_archive_descriptor(metrics); + entry.quality.crossings = metrics.crossings; + entry.quality.intersections = metrics.intersections; + entry.quality.crossing_loss = metrics.crossing_loss; + entry.quality.geometry_penalty = metrics.geometry_penalty; + entry.quality.degeneracy_penalty = metrics.degeneracy_penalty; + entry.quality.energy = metrics.energy; + entry.quality.min_abs_determinant = metrics.min_plane_determinant; + entry.quality.min_edge_ratio = metrics.relative_min_edge; + entry.quality.min_turn_sine = metrics.min_turn_sine; + entry.quality.extent = metrics.max_vertex_norm; + entry.verification = metrics.precise + ? VerificationPrecision::DoubleDouble + : VerificationPrecision::Double; + entry.flags = ArchiveEntryFlagCanonical | + (metrics.precise ? ArchiveEntryFlagDdVerified : ArchiveEntryFlagNone); + entry.origin_run_id = elite.source_run_id.empty() + ? identity.run_id + : elite.source_run_id; + entry.origin_seed = elite.source_seed != 0 + ? elite.source_seed + : static_cast(static_cast(options.seed)); + entry.origin_sequence = elite.source_sequence; + entry.discovered_unix_ns = created_at; + const auto existing = exact_entries.find(entry.descriptor_key); + if (existing == exact_entries.end()) { + exact_entries.emplace(entry.descriptor_key, std::move(entry)); + } else if (quality_is_better(entry, existing->second)) { + existing->second = std::move(entry); + } + persisted_descriptors.push_back(dirty_descriptor); + } + for (std::uint64_t descriptor : stale_descriptors) { + state.archive_dirty.erase(descriptor); + } + if (exact_entries.empty()) { + return state.archive_dirty.empty(); + } + + ArchiveDelta delta; + delta.run_id = identity.run_id; + delta.node_id = identity.node_id; + // Reserve the sequence before publication. A POSIX directory fsync can + // fail after rename has already made the file visible; reusing that + // sequence with different bytes would manufacture a merge conflict. + delta.sequence = ++state.archive_sequence; + delta.created_unix_ns = created_at; + delta.topology = state.topology; + delta.objective_version = GLOBAL_OBJECTIVE_VERSION; + delta.topology_fingerprint = topology_fingerprint(); + delta.base_seed = static_cast( + static_cast(options.seed)); + delta.entries.reserve(exact_entries.size()); + for (auto& item : exact_entries) { + delta.entries.push_back(std::move(item.second)); + } + const CommitResult result = commit_delta(options.global_dir, std::move(delta)); + if (!result) { + std::cerr << "Durable archive delta failed for topology " << state.topology + << ": " << result.error << std::endl; + return false; + } + for (std::uint64_t descriptor : persisted_descriptors) { + state.archive_dirty.erase(descriptor); + } + if (!state.archive_dirty.empty()) { + std::cerr << "Some archive cells could not be represented durably for topology " + << state.topology << std::endl; + return false; + } + return true; +} + void save_global_topology_state( const LocalRepairOptions& options, const GlobalTopologyState& state, @@ -2787,7 +3607,8 @@ void write_global_leaderboard( const std::filesystem::path root(options.global_dir); std::filesystem::create_directories(root); std::ofstream out(root / "leaderboard.tsv"); - out << "rank\ttopology\tC\tI\tdefects\tprecision\tvisits\ttrials\tenergy\tdegeneracy\n"; + out << "rank\ttopology\tC\tI\tdefects\tprecision\tvisits\ttrials" + << "\tarchive_cells\tenergy\tdegeneracy\n"; int rank = 1; for (int ix : order) { const GlobalTopologyState& state = states[ix]; @@ -2797,10 +3618,11 @@ void write_global_leaderboard( << global_defects(state.best) << "\t" << (state.best.precise ? "dd31" : "double") << "\t" << state.visits << "\t" - << state.trials << "\t" << std::setprecision(17) << state.best.energy << "\t" + << state.trials << "\t" << state.archive.size() << "\t" + << std::setprecision(17) << state.best.energy << "\t" << state.best.degeneracy_penalty; } else { - out << "-\t-\t-\t-\t0\t0\t-\t-"; + out << "-\t-\t-\t-\t0\t0\t0\t-\t-"; } out << "\n"; } @@ -2819,7 +3641,7 @@ bool write_run_manifest( std::cerr << "Cannot write run manifest: " << manifest_path << std::endl; return false; } - out << "format\tszilassi-global-search-v2\n" + out << "format\tszilassi-global-search-v3\n" << "run_id\t" << identity.run_id << "\n" << "node_id\t" << identity.node_id << "\n" << "seed\t" << options.seed << "\n" @@ -2832,6 +3654,19 @@ bool write_run_manifest( << "cuda_iterations_per_batch\t" << options.cuda_iterations << "\n" << "cuda_depth_batches\t6\n" << "cuda_session_cache\t" << effective_cuda_session_cache << "\n" + << "algorithm\thybrid-quality-diversity-v1\n" + << "control_baseline_fraction\t0.25\n" + << "strategy_weights\tbaseline:4,replica:3,adaptive:3,pbt:3,injected:3\n" + << "fresh_fractions\tdepth:1/4,breadth:7/8,injected-protected\n" + << "replica_exchange\tgroup:8,temperature-ratio:16\n" + << "pbt\trotating-pairs,depth-chance:0.08,breadth-chance:0.04\n" + << "verification_quotas\toverall:128,per-strategy:max(8,overall/5),per-injected-seed:1\n" + << "accounted_fp32_steps\tproposal-iterations-plus-injection-pbt;setup-retries-excluded\n" + << "map_elites_bins\tdeterminant:8,edge:8,turn:8,extent:8\n" + << "map_elites_max_cells_per_topology\t4096\n" + << "cem\tdiagonal-weighted,covariance-adaptation:0.18,new-injected-only\n" + << "spsa\tadam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate\n" + << "topology_scheduler\tucb-plus-quality,full-refresh-every-5\n" << "cpu_iterations_per_trial\t" << options.iterations << "\n" << "degeneracy_weight\t" << std::setprecision(17) << options.degeneracy_weight << "\n"; @@ -2840,11 +3675,16 @@ bool write_run_manifest( std::cerr << "Cannot flush run manifest: " << manifest_path << std::endl; return false; } + out.close(); + if (!out) { + std::cerr << "Cannot close run manifest: " << manifest_path << std::endl; + return false; + } #ifdef _WIN32 const HANDLE handle = CreateFileW( manifest_path.c_str(), - GENERIC_READ, + GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, nullptr, OPEN_EXISTING, @@ -2898,6 +3738,8 @@ bool run_global_topology_round_cuda( int effective_chain_count, cuda_search::BatchSession& session ) { + const auto round_started_at = std::chrono::steady_clock::now(); + state.last_round = {}; const GlobalMetrics previous_best = state.best; const bool previous_has_state = state.has_state; const bool session_was_initialized = session.initialized(); @@ -2919,8 +3761,13 @@ bool run_global_topology_round_cuda( config.stagnation_iterations = std::max(256, options.stagnation); config.degeneracy_weight = static_cast(options.degeneracy_weight); - std::vector initial_states; - if (state.has_state && state.best_x.size() == GLOBAL_PLANE_VALUE_COUNT) { + std::vector initial_states = make_hybrid_seed_pool( + state, + static_cast(static_cast(round_seed)) ^ + 0x6a09e667f3bcc909ULL, + std::min(128, effective_chain_count)); + if (initial_states.empty() && state.has_state && + state.best_x.size() == GLOBAL_PLANE_VALUE_COUNT) { cuda_search::PlaneState initial; for (int i = 0; i < GLOBAL_PLANE_VALUE_COUNT; ++i) { initial.values[static_cast(i)] = @@ -2933,6 +3780,7 @@ bool run_global_topology_round_cuda( make_cuda_topology(), config, initial_states, initialize_error)) { std::cerr << "CUDA session initialization failed for topology " << state.topology << ": " << initialize_error << std::endl; + state.last_round.backend_error = true; return false; } } @@ -2953,24 +3801,34 @@ bool run_global_topology_round_cuda( } cuda_search::BatchRunConfig run_config; run_config.step_scale = depth ? 1.0f : 1.5f; + // Exactly one quarter remains the unchanged simulated-annealing + // control. The other disjoint cohorts test complementary mechanisms. + run_config.baseline_weight = 4; + run_config.replica_exchange_weight = 3; + run_config.adaptive_move_weight = 3; + run_config.pbt_weight = 3; + run_config.injected_weight = 3; + run_config.replica_group_size = 8; + run_config.replica_temperature_ratio = 16.0f; + run_config.pbt_exploit_chance = depth ? 0.08f : 0.04f; + run_config.pbt_state_jitter = static_cast( + std::max(0.002, options.step * (depth ? 0.025 : 0.05))); + run_config.injected_state_jitter = static_cast( + std::max(0.002, options.step * (depth ? 0.018 : 0.04))); + run_config.injected_states = make_hybrid_seed_pool( + state, + static_cast(static_cast(round_seed)) + + static_cast(batch + 1) * 0x9e3779b97f4a7c15ULL, + 64); if (batch == 0 && (previous_has_state || session_was_initialized)) { run_config.fresh_numerator = depth ? 1 : 7; run_config.fresh_denominator = depth ? 4 : 8; - if (session_was_initialized) { - const std::uint64_t chain_count = - static_cast(effective_chain_count); - const std::uint64_t numerator = - static_cast(run_config.fresh_numerator); - const std::uint64_t denominator = - static_cast(run_config.fresh_denominator); - new_trials += (chain_count / denominator) * numerator + - std::min(chain_count % denominator, numerator); - } } const cuda_search::BatchResult gpu = session.run(run_config); if (!gpu.success) { std::cerr << "CUDA batch failed for topology " << state.topology << ": " << gpu.error << std::endl; + state.last_round.backend_error = true; session.reset(); break; } @@ -2979,8 +3837,30 @@ bool run_global_topology_round_cuda( kernel_milliseconds += gpu.kernel_milliseconds; transfer_milliseconds += gpu.transfer_milliseconds; evaluated_states += gpu.evaluated_states; + state.last_round.replica_swaps_attempted += + gpu.replica_exchange_attempts; + state.last_round.replica_swaps_accepted += + gpu.replica_exchange_accepts; + constexpr std::array kStrategyWeights = {4, 3, 3, 3, 3}; + constexpr int kTotalStrategyWeight = 16; + for (int chain = 0; chain < effective_chain_count; ++chain) { + const int residue = chain % kTotalStrategyWeight; + int boundary = 0; + for (int strategy = 0; strategy < 5; ++strategy) { + boundary += kStrategyWeights[static_cast(strategy)]; + if (residue < boundary) { + state.last_round.strategy_evaluated[static_cast(strategy)] += + static_cast(options.cuda_iterations); + break; + } + } + } + state.last_round.strategy_evaluated[3] += gpu.pbt_exploits; + state.last_round.strategy_evaluated[4] += gpu.injected_chains; + new_trials += gpu.fresh_chains + gpu.injected_chains; completed_batches += 1; + std::vector batch_verified; for (const cuda_search::Candidate& candidate : gpu.shortlist) { VectorXd x(GLOBAL_PLANE_VALUE_COUNT); for (int i = 0; i < GLOBAL_PLANE_VALUE_COUNT; ++i) { @@ -2994,32 +3874,98 @@ bool run_global_topology_round_cuda( if (!std::isfinite(verified.energy)) { continue; } + const std::size_t strategy = std::min( + static_cast(candidate.strategy), + state.last_round.strategy_verified.size() - 1); + state.last_round.verified_candidates += 1; + state.last_round.strategy_verified[strategy] += 1; + const bool archive_improved = add_global_archive_elite( + state, + verified, + x, + {}, + static_cast(static_cast(round_seed)), + candidate.iterations, + true); + if (archive_improved) { + state.last_round.archive_improvements += 1; + state.last_round.strategy_archive_improvements[strategy] += 1; + } + batch_verified.push_back(GlobalVerifiedCandidate{ + verified, + x, + static_cast(strategy), + candidate.chain_id}); if (!state.has_state || better_global_metrics(verified, state.best)) { state.best = verified; state.best_x = x; state.has_state = true; + state.last_round.strategy_global_improvements[strategy] += 1; } } + update_diagonal_cem(state, batch_verified); } if (completed_batches == 0) { return false; } + if (depth && state.has_state && !state.last_round.backend_error && + !stop_requested.load(std::memory_order_relaxed)) { + state.last_round.spsa_attempted = true; + VectorXd refined; + GlobalMetrics refined_metrics; + if (refine_with_spsa_adam( + state.best_x, + static_cast(static_cast(round_seed)) ^ + 0xbb67ae8584caa73bULL, + 6, + refined, + refined_metrics) && + round_trip_global_state_to_fp32(refined, refined_metrics)) { + const bool archive_improved = add_global_archive_elite( + state, + refined_metrics, + refined, + {}, + static_cast(static_cast(round_seed)), + 0, + true); + if (archive_improved) { + state.last_round.archive_improvements += 1; + } + if (better_global_metrics(refined_metrics, state.best)) { + state.best = refined_metrics; + state.best_x = refined; + state.last_round.spsa_accepted = true; + } else if (archive_improved) { + state.last_round.spsa_accepted = true; + } + } + } + state.visits += 1; state.run_visits += 1; state.trials += new_trials; state.run_trials += new_trials; state.iterations += evaluated_states; state.run_iterations += evaluated_states; + state.last_round.completed = true; + state.last_round.new_trials = new_trials; + state.last_round.evaluated_states = evaluated_states; + state.last_round.kernel_milliseconds = kernel_milliseconds; + state.last_round.transfer_milliseconds = transfer_milliseconds; + state.last_round.wall_milliseconds = std::chrono::duration( + std::chrono::steady_clock::now() - round_started_at).count(); std::cout << " CUDA " << device_name << ": " << std::fixed << std::setprecision(1) << kernel_milliseconds << " ms kernel, " << transfer_milliseconds << " ms transfer, " - << evaluated_states << " FP32 states in " + << evaluated_states << " accounted FP32 search steps in " << completed_batches << " batch(es)" << std::defaultfloat << std::setprecision(6) << std::endl; - return state.has_state && + state.last_round.improved = state.has_state && (!previous_has_state || better_global_metrics(state.best, previous_best)); + return state.last_round.improved; } bool run_global_topology_round( @@ -3045,6 +3991,8 @@ bool run_global_topology_round( effective_cuda_chains, *cuda_session); } + const auto round_started_at = std::chrono::steady_clock::now(); + state.last_round = {}; const GlobalMetrics previous_best = state.best; const bool previous_has_state = state.has_state; GlobalMetrics shared_best = state.best; @@ -3087,6 +4035,10 @@ bool run_global_topology_round( const int seed = static_cast(1 + seed_value % 2147483646ULL); GlobalTrialResult result = run_global_trial( options, start_x, start_fresh, seed, iterations, stop_requested); + if (std::isfinite(result.best.energy) && + !round_trip_global_state_to_fp32(result.best_x, result.best)) { + result.best = GlobalMetrics{}; + } { std::lock_guard lock(best_mutex); if (better_global_metrics(result.best, shared_best)) { @@ -3123,8 +4075,27 @@ bool run_global_topology_round( state.has_state = shared_has_state; state.best = shared_best; state.best_x = shared_best_x; - return state.has_state && + if (state.has_state && add_global_archive_elite( + state, + state.best, + state.best_x, + {}, + static_cast(static_cast(round_seed)), + state.iterations, + true)) { + state.last_round.archive_improvements = 1; + } + state.last_round.completed = true; + state.last_round.new_trials = round_trials; + state.last_round.evaluated_states = round_iterations; + state.last_round.verified_candidates = round_trials; + state.last_round.strategy_evaluated[0] = round_iterations; + state.last_round.strategy_verified[0] = round_trials; + state.last_round.wall_milliseconds = std::chrono::duration( + std::chrono::steady_clock::now() - round_started_at).count(); + state.last_round.improved = state.has_state && (!previous_has_state || better_global_metrics(state.best, previous_best)); + return state.last_round.improved; } int global_search_all(const LocalRepairOptions& options) { @@ -3207,6 +4178,10 @@ int global_search_all(const LocalRepairOptions& options) { active_topologies.reserve(options.topology_to - options.topology_from + 1); for (int topology = options.topology_from; topology <= options.topology_to; ++topology) { active_topologies.push_back(topology); + states[topology].scheduler_pulls = std::min( + 8, + static_cast(std::floor( + std::log2(static_cast(states[topology].visits) + 1.0)))); } const std::filesystem::path run_directory = @@ -3217,12 +4192,17 @@ int global_search_all(const LocalRepairOptions& options) { CUDA_SESSION_CACHE_LIMIT, static_cast(active_topologies.size())) : 0; - write_run_manifest( - run_directory, - options, - run_identity, - effective_cuda_chains, - effective_cuda_session_cache); + if (!write_run_manifest( + run_directory, + options, + run_identity, + effective_cuda_chains, + effective_cuda_session_cache)) { + stop_requested.store(true, std::memory_order_relaxed); + watcher_done.store(true, std::memory_order_relaxed); + watcher.join(); + return 2; + } std::ofstream run_log(run_directory / "run.log", std::ios::app); run_log << "\n=== global-search seed " << options.seed << ", run " << run_identity.run_id @@ -3230,6 +4210,31 @@ int global_search_all(const LocalRepairOptions& options) { << ", threads " << worker_count << ", minutes " << (options.time_limit_seconds / 60.0) << " ===\n"; + std::ofstream metrics_log( + run_directory / "metrics.tsv", + std::ios::binary | std::ios::trunc); + if (!metrics_log) { + std::cerr << "Cannot create strategy telemetry: " + << (run_directory / "metrics.tsv") << std::endl; + stop_requested.store(true, std::memory_order_relaxed); + watcher_done.store(true, std::memory_order_relaxed); + watcher.join(); + return 2; + } + metrics_log + << "round\tunix_ns\tphase\ttopology\tdepth\tbandit_score" + << "\tbefore_C\tbefore_I\tafter_C\tafter_I\timproved\tbackend_error" + << "\tarchive_cells\tarchive_improvements\tverified\taccounted_fp32_steps" + << "\tnew_trials\tkernel_ms\ttransfer_ms\twall_ms" + << "\trex_attempts\trex_accepts\tspsa_attempted\tspsa_accepted" + << "\tsteps_baseline\tsteps_replica\tsteps_adaptive\tsteps_pbt\tsteps_injected" + << "\tverified_baseline\tverified_replica\tverified_adaptive" + << "\tverified_pbt\tverified_injected" + << "\tarchive_baseline\tarchive_replica\tarchive_adaptive" + << "\tarchive_pbt\tarchive_injected" + << "\tglobal_baseline\tglobal_replica\tglobal_adaptive" + << "\tglobal_pbt\tglobal_injected\n"; + metrics_log.flush(); std::cout << "===================" << std::endl; std::cout << "Mode : global-search" << std::endl; @@ -3238,7 +4243,8 @@ int global_search_all(const LocalRepairOptions& options) { << std::endl; std::cout << "Topologies: " << options.topology_from << ".." << options.topology_to << " (" << active_topologies.size() << ")" << std::endl; - std::cout << "Start : independent random plane arrangements" << std::endl; + std::cout << "Start : saved MAP-Elites/CEM seeds plus independent random starts" + << std::endl; std::cout << "Coordinates: " << (options.use_cuda ? "CUDA FP32 search" : "CPU double search") << std::endl; @@ -3261,6 +4267,7 @@ int global_search_all(const LocalRepairOptions& options) { int completed_rounds = 0; bool found = false; + bool fatal_search_error = false; std::vector cuda_sessions(effective_cuda_session_cache); std::uint64_t cuda_session_use_counter = 0; auto acquire_cuda_session = [&](int topology) -> cuda_search::BatchSession* { @@ -3289,6 +4296,79 @@ int global_search_all(const LocalRepairOptions& options) { selected->last_used = cuda_session_use_counter; return &selected->session; }; + auto persist_topology_if_due = [&](GlobalTopologyState& state, + std::chrono::steady_clock::time_point now, + bool force, + szilassi::checkpoint::CheckpointReason forced_reason) { + if (state.run_visits == 0) { + return true; + } + const bool checkpoint_changed = + state.run_visits > state.last_checkpointed_run_visits; + const bool archive_changed = !state.archive_dirty.empty(); + if (!checkpoint_changed && !archive_changed) { + return true; + } + const bool due = force || + state.last_checkpoint_at.time_since_epoch().count() == 0 || + now - state.last_checkpoint_at >= + std::chrono::seconds(options.checkpoint_seconds); + if (!due) { + return true; + } + if (!load_global_topology_context(state.topology)) { + std::cerr << "Cannot restore topology context for durable save: " + << state.topology << std::endl; + return false; + } + + bool checkpoint_saved = true; + if (checkpoint_changed) { + const auto reason = force + ? forced_reason + : (state.pending_checkpoint_improvement + ? szilassi::checkpoint::CheckpointReason::Improvement + : szilassi::checkpoint::CheckpointReason::Periodic); + checkpoint_saved = commit_mergeable_checkpoint( + options, + run_identity, + state, + reason); + if (checkpoint_saved) { + state.last_checkpointed_run_visits = state.run_visits; + state.pending_checkpoint_improvement = false; + save_global_topology_state(options, state, true, options.seed); + } + } + const bool archive_saved = commit_mergeable_archive_delta( + options, + run_identity, + state); + if (checkpoint_saved && archive_saved && state.archive_dirty.empty()) { + state.last_checkpoint_at = now; + return true; + } + return false; + }; + auto sweep_due_topologies = [&](int restore_topology, + bool force, + szilassi::checkpoint::CheckpointReason forced_reason) { + const auto now = std::chrono::steady_clock::now(); + bool success = true; + for (int item : active_topologies) { + if (!persist_topology_if_due(states[item], now, force, forced_reason)) { + success = false; + } + } + if (restore_topology >= 0) { + if (!load_global_topology_context(restore_topology)) { + std::cerr << "Cannot restore active topology context after durable sweep: " + << restore_topology << std::endl; + success = false; + } + } + return success; + }; auto run_round = [&](int topology, bool depth, const char* phase, int position, int total) { if (stop_requested.load(std::memory_order_relaxed)) { return; @@ -3298,6 +4378,31 @@ int global_search_all(const LocalRepairOptions& options) { return; } GlobalTopologyState& state = states[topology]; + const bool had_before = state.has_state; + const GlobalMetrics before = state.best; + const std::uint64_t total_scheduler_pulls = std::accumulate( + active_topologies.begin(), + active_topologies.end(), + std::uint64_t{0}, + [&](std::uint64_t sum, int item) { + return sum + states[item].scheduler_pulls; + }); + int current_best_defects = std::numeric_limits::max() / 4; + for (int item : active_topologies) { + if (states[item].has_state) { + current_best_defects = std::min( + current_best_defects, + global_defects(states[item].best)); + } + } + if (current_best_defects >= std::numeric_limits::max() / 8) { + current_best_defects = 0; + } + const double selection_score = topology_bandit_score( + state, + total_scheduler_pulls, + static_cast(completed_rounds + 1), + current_best_defects); const int round_seed = static_cast( 1 + (static_cast(static_cast(options.seed)) + static_cast(state.visits + 1) * 15485863ULL + @@ -3316,26 +4421,35 @@ int global_search_all(const LocalRepairOptions& options) { round_seed, effective_cuda_chains, cuda_session); - completed_rounds += 1; - const auto checkpoint_now = std::chrono::steady_clock::now(); - const bool checkpoint_due = state.last_checkpoint_at.time_since_epoch().count() == 0 || - checkpoint_now - state.last_checkpoint_at >= - std::chrono::seconds(options.checkpoint_seconds); - if (checkpoint_due) { - if (commit_mergeable_checkpoint( - options, - run_identity, - state, - improved - ? szilassi::checkpoint::CheckpointReason::Improvement - : szilassi::checkpoint::CheckpointReason::Periodic)) { - state.last_checkpoint_at = checkpoint_now; + if (!state.last_round.completed) { + if (state.last_round.backend_error) { + fatal_search_error = true; + stop_requested.store(true, std::memory_order_relaxed); + std::cerr << "CUDA search failed; stopping instead of retrying an invalid round." + << std::endl; } + return; } - // Legacy previews follow the durable checkpoint cadence. The current - // in-memory best is always committed on a clean stop below. - if (checkpoint_due) { - save_global_topology_state(options, state, improved, round_seed); + completed_rounds += 1; + update_topology_bandit_reward( + state, + had_before, + before, + state.last_round.archive_improvements, + static_cast(completed_rounds)); + state.pending_checkpoint_improvement = + state.pending_checkpoint_improvement || improved; + if (state.last_round.backend_error) { + fatal_search_error = true; + stop_requested.store(true, std::memory_order_relaxed); + } + if (!sweep_due_topologies( + topology, + false, + szilassi::checkpoint::CheckpointReason::Periodic)) { + std::cerr << "Periodic durable save failed; stopping search safely." + << std::endl; + stop_requested.store(true, std::memory_order_relaxed); } write_global_leaderboard(options, states); @@ -3347,6 +4461,9 @@ int global_search_all(const LocalRepairOptions& options) { << ", visits " << state.visits << (state.best.precise ? ", DD31" : ", double") << (improved ? " NEW BEST" : "") + << ", archive " << state.archive.size() + << ", bandit " << std::fixed << std::setprecision(3) + << selection_score << ", elapsed " << std::fixed << std::setprecision(1) << elapsed_minutes << " min" << std::defaultfloat << std::setprecision(6) << std::endl; @@ -3355,6 +4472,44 @@ int global_search_all(const LocalRepairOptions& options) { << state.visits << "\t" << state.trials << "\t" << std::setprecision(17) << state.best.energy << "\n"; run_log.flush(); + metrics_log << completed_rounds << "\t" + << szilassi::checkpoint::unix_time_ns_now() << "\t" + << phase << "\t" << topology << "\t" << (depth ? 1 : 0) << "\t" + << std::setprecision(17) << selection_score << "\t" + << (had_before ? before.crossings : -1) << "\t" + << (had_before ? before.intersections : -1) << "\t" + << (state.has_state ? state.best.crossings : -1) << "\t" + << (state.has_state ? state.best.intersections : -1) << "\t" + << (improved ? 1 : 0) << "\t" + << (state.last_round.backend_error ? 1 : 0) << "\t" + << state.archive.size() << "\t" + << state.last_round.archive_improvements << "\t" + << state.last_round.verified_candidates << "\t" + << state.last_round.evaluated_states << "\t" + << state.last_round.new_trials << "\t" + << state.last_round.kernel_milliseconds << "\t" + << state.last_round.transfer_milliseconds << "\t" + << state.last_round.wall_milliseconds << "\t" + << state.last_round.replica_swaps_attempted << "\t" + << state.last_round.replica_swaps_accepted << "\t" + << (state.last_round.spsa_attempted ? 1 : 0) << "\t" + << (state.last_round.spsa_accepted ? 1 : 0); + for (int strategy = 0; strategy < 5; ++strategy) { + metrics_log << "\t" << state.last_round.strategy_evaluated[strategy]; + } + for (int strategy = 0; strategy < 5; ++strategy) { + metrics_log << "\t" << state.last_round.strategy_verified[strategy]; + } + for (int strategy = 0; strategy < 5; ++strategy) { + metrics_log << "\t" + << state.last_round.strategy_archive_improvements[strategy]; + } + for (int strategy = 0; strategy < 5; ++strategy) { + metrics_log << "\t" + << state.last_round.strategy_global_improvements[strategy]; + } + metrics_log << "\n"; + metrics_log.flush(); if (state.best.crossings == 0 && state.best.intersections == 0) { int saved_crossings = 0; @@ -3389,14 +4544,40 @@ int global_search_all(const LocalRepairOptions& options) { int cycle = 0; while (!stop_requested.load(std::memory_order_relaxed)) { std::vector ranked = active_topologies; + const std::uint64_t total_scheduler_pulls = std::accumulate( + active_topologies.begin(), + active_topologies.end(), + std::uint64_t{0}, + [&](std::uint64_t sum, int topology) { + return sum + states[topology].scheduler_pulls; + }); + int best_defects = std::numeric_limits::max() / 4; + for (int topology : active_topologies) { + if (states[topology].has_state) { + best_defects = std::min(best_defects, global_defects(states[topology].best)); + } + } + if (best_defects >= std::numeric_limits::max() / 8) { + best_defects = 0; + } + std::unordered_map bandit_scores; + for (int topology : active_topologies) { + bandit_scores[topology] = topology_bandit_score( + states[topology], + total_scheduler_pulls, + static_cast(completed_rounds + 1), + best_defects); + } std::sort(ranked.begin(), ranked.end(), [&](int a, int b) { + if (bandit_scores[a] != bandit_scores[b]) { + return bandit_scores[a] > bandit_scores[b]; + } if (states[a].has_state != states[b].has_state) { return states[a].has_state; } - if (!states[a].has_state) { - return a < b; - } - return better_global_metrics(states[a].best, states[b].best); + return states[a].has_state + ? better_global_metrics(states[a].best, states[b].best) + : a < b; }); const bool exploration_cycle = cycle % 5 == 4; @@ -3422,21 +4603,25 @@ int global_search_all(const LocalRepairOptions& options) { watcher_done.store(true, std::memory_order_relaxed); watcher.join(); - for (int topology : active_topologies) { - GlobalTopologyState& state = states[topology]; - if (state.run_visits == 0 || !load_global_topology_context(topology)) { - continue; - } - commit_mergeable_checkpoint( - options, - run_identity, - state, + bool persistence_succeeded = sweep_due_topologies( + -1, + true, + szilassi::checkpoint::CheckpointReason::Stop); + if (!persistence_succeeded) { + // A sequence is never reused, so one immediate retry is safe even if + // an OS reported an error after publishing an immutable generation. + persistence_succeeded = sweep_due_topologies( + -1, + true, szilassi::checkpoint::CheckpointReason::Stop); - save_global_topology_state(options, state, true, options.seed); } - if (!options.stop_file_path.empty()) { + if (persistence_succeeded && !options.stop_file_path.empty()) { std::error_code remove_error; std::filesystem::remove(options.stop_file_path, remove_error); + } else if (!persistence_succeeded) { + std::cerr << "Final durable save failed. The stop marker was retained; " + << "the process returns an error instead of claiming a clean stop." + << std::endl; } write_global_leaderboard(options, states); @@ -3458,7 +4643,10 @@ int global_search_all(const LocalRepairOptions& options) { } std::cout << "Leaderboard: " << (root / "leaderboard.tsv").string() << std::endl; std::cout << "===================" << std::endl; - return found ? 0 : 0; + if (!persistence_succeeded) { + return 4; + } + return fatal_search_error ? 3 : 0; } int repair_local_shape(const LocalRepairOptions& options) { diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/metrics.tsv b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/metrics.tsv new file mode 100644 index 00000000..b3032273 --- /dev/null +++ b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/metrics.tsv @@ -0,0 +1,1490 @@ +round unix_ns phase topology depth bandit_score before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783720379281012300 DEPTH 8 1 0.81305749130700911 2 6 2 6 1 0 71 207 2566 23664930 143040 871.68611145019531 5.9464999999999995 1092.6855 120960 67941 1 0 5898240 4423680 4423680 4426527 4492800 165 157 163 159 1922 10 4 14 3 176 0 0 0 0 1 +2 1783720380562812300 DEPTH 11 1 0.82315041093344288 0 8 0 8 1 0 49 127 2572 23664847 143040 819.19389343261719 5.9820000000000011 1260.8909000000001 120960 57677 1 0 5898240 4423680 4423680 4426447 4492800 158 155 155 159 1945 4 5 5 7 106 0 0 0 0 2 +3 1783720381761344700 DEPTH 53 1 0.83324310072727603 0 8 0 8 1 0 58 152 2575 23664863 143040 847.7171630859375 5.9335000000000004 1175.3344999999999 120960 67870 1 0 5898240 4423680 4423680 4426462 4492800 168 150 150 150 1957 6 10 2 3 131 1 0 0 0 0 +4 1783720383119638800 DEPTH 17 1 0.84333556178630276 0 8 0 8 1 0 39 85 2606 23664814 143040 808.21965026855469 6.0261000000000005 1337.5545999999999 120960 55904 1 0 5898240 4423680 4423680 4426412 4492800 151 150 154 154 1997 8 9 4 1 63 0 0 0 0 6 +5 1783720384404027700 DEPTH 44 1 0.70342779520056653 2 7 2 7 0 0 53 131 2590 23664850 143040 832.41134643554688 6.0326000000000004 1261.8391999999999 120960 59167 1 0 5898240 4423680 4423680 4426448 4492800 160 152 150 151 1977 4 1 4 1 121 0 0 0 0 0 +6 1783720385630595100 DEPTH 13 1 0.71351980205243426 1 8 1 7 1 0 65 172 2545 23664743 143040 821.22908020019531 6.0872000000000002 1201.2907 120960 58610 1 0 5898240 4423680 4423680 4426342 4492800 174 168 150 150 1903 4 4 3 1 160 0 0 0 0 2 +7 1783720386905061900 DEPTH 54 1 0.72361158341666554 1 8 1 8 1 0 44 105 2560 23664830 143040 818.50495910644531 5.9325999999999999 1249.8674000000001 120960 58578 1 0 5898240 4423680 4423680 4426429 4492800 158 153 158 152 1939 5 5 3 4 88 0 0 0 0 1 +8 1783720388107910800 DEPTH 31 1 0.68370314036048563 2 8 2 7 1 0 41 100 2555 23664917 143040 806.83314514160156 5.9284999999999997 1182.5182 120960 56624 1 0 5898240 4423680 4423680 4426516 4492800 163 150 154 161 1927 4 2 3 6 85 1 0 0 0 1 +9 1783720389393459700 DEPTH 52 1 0.6937944739436529 1 9 1 9 1 0 47 123 2590 23664857 143040 800.84059143066406 5.9522999999999993 1265.1690000000001 120960 56104 1 0 5898240 4423680 4423680 4426456 4492800 167 154 174 179 1916 6 2 7 5 103 0 0 0 0 5 +10 1783720390708624300 DEPTH 56 1 0.70388558521852973 1 9 1 8 1 0 50 133 2612 23664772 143040 819.71403503417969 5.9334999999999996 1291.5786000000001 120960 56424 1 0 5898240 4423680 4423680 4426372 4492800 154 157 155 150 1996 4 6 6 10 107 0 1 0 0 4 +11 1783720391803684000 DEPTH 33 1 0.71397647523014951 1 9 1 9 1 0 64 158 2553 23664889 143040 852.65184020996094 5.9603999999999999 1066.4477999999999 120960 66155 1 0 5898240 4423680 4423680 4426489 4492800 168 162 150 150 1923 4 7 4 4 139 1 0 0 0 0 +12 1783720393017792500 DEPTH 1 1 0.71403734290373866 2 10 2 10 1 0 51 134 2585 23664859 143040 821.29786682128906 5.9356999999999998 1195.8626999999999 120960 58134 1 0 5898240 4423680 4423680 4426458 4492800 158 168 153 152 1954 4 6 7 7 110 0 1 0 0 2 +13 1783720394087853000 DEPTH 49 1 0.71413328024336931 3 10 3 10 1 0 60 162 2556 23664907 143040 845.11819458007812 5.9276999999999997 1047.5074999999999 120960 63210 1 0 5898240 4423680 4423680 4426506 4492800 169 150 151 152 1934 3 1 8 6 144 0 0 0 0 3 +14 1783720395369629200 DEPTH 9 1 0.71924782802728648 2 9 2 7 1 0 59 142 2616 23664798 143040 848.32940673828125 5.9559999999999995 1261.2357999999999 120960 63552 1 0 5898240 4423680 4423680 4426395 4492800 163 150 150 150 2003 3 15 12 10 102 0 0 0 0 4 +15 1783720396454968900 DEPTH 16 1 0.72933784329198847 2 9 2 8 1 0 79 214 2538 23664866 143040 857.75251770019531 5.9436999999999998 1069.5133000000001 120960 68708 1 0 5898240 4423680 4423680 4426465 4492800 154 154 154 154 1922 5 8 7 4 190 0 0 0 0 1 +16 1783720397682782600 DEPTH 41 1 0.73942764241100756 0 11 1 10 1 0 45 112 2593 23664826 143040 805.55964660644531 5.9785000000000004 1210.5284999999999 120960 56619 1 0 5898240 4423680 4423680 4426424 4492800 163 162 150 150 1968 8 5 5 4 90 0 0 0 0 3 +17 1783720398730990000 DEPTH 3 1 0.74737186914464226 3 11 3 11 0 0 69 196 2544 23664855 143040 831.67231750488281 5.9862000000000002 1034.1641999999999 120960 62769 1 0 5898240 4423680 4423680 4426455 4492800 203 167 164 199 1811 11 3 6 15 161 0 0 0 0 0 +18 1783720399808294400 DEPTH 19 1 0.757466660161906 3 11 3 11 1 0 64 144 2601 23664866 143040 853.82505798339844 5.9306999999999999 1054.7481 120960 66454 1 0 5898240 4423680 4423680 4426466 4492800 168 168 150 150 1965 4 4 6 12 118 0 0 0 0 1 +19 1783720400826409500 DEPTH 5 1 0.7675612250900341 2 12 2 12 1 0 33 83 2575 23664752 143040 809.50466918945312 5.9447999999999999 1005.2414 120960 55218 1 0 5898240 4423680 4423680 4426351 4492800 163 181 159 158 1914 1 0 3 5 74 0 0 0 0 5 +20 1783720401831326500 DEPTH 48 1 0.7776555649706175 2 12 2 12 1 0 30 50 2583 23664809 143040 789.90521240234375 5.9433000000000007 981.5684 120960 54705 1 0 5898240 4423680 4423680 4426406 4492800 167 166 158 189 1903 5 2 1 3 39 0 0 0 0 5 +21 1783720402877548000 DEPTH 7 1 0.78774968083815411 2 12 2 12 0 0 57 159 2558 23664887 143040 833.19967651367188 5.952 1032.7571 120960 60671 1 0 5898240 4423680 4423680 4426486 4492800 159 165 150 150 1934 2 6 4 6 141 0 0 0 0 0 +22 1783720403941272700 DEPTH 47 1 0.79784357372011205 2 12 2 11 1 0 62 169 2585 23664806 143040 843.68699645996094 5.9293999999999993 1049.5907 120960 62506 1 0 5898240 4423680 4423680 4426403 4492800 158 150 150 150 1977 10 5 9 11 134 0 0 0 0 5 +23 1783720404991139000 DEPTH 45 1 0.80793724463699346 2 12 2 12 1 0 47 136 2561 23664827 143040 840.87931823730469 5.9419000000000004 1033.098 120960 63430 1 0 5898240 4423680 4423680 4426425 4492800 154 150 153 152 1952 5 1 3 7 120 0 0 0 0 4 +24 1783720406056940500 DEPTH 39 1 0.8180306946023963 2 12 2 12 1 0 73 186 2563 23664852 143040 847.81669616699219 5.9464000000000006 1049.6696999999999 120960 66288 1 0 5898240 4423680 4423680 4426450 4492800 162 150 150 150 1951 3 3 7 9 164 0 0 0 0 2 +25 1783720407134314800 DEPTH 29 1 0.81812392462307681 2 12 2 12 1 0 63 161 2593 23664862 143040 858.45362854003906 5.9875000000000007 1062.2299 120960 66964 1 0 5898240 4423680 4423680 4426461 4492800 168 150 150 150 1975 7 6 8 4 136 0 0 0 0 1 +26 1783720408189957600 DEPTH 30 1 0.81821693569900955 2 12 2 12 1 0 54 164 2558 23664758 143040 839.49501037597656 5.9535 1041.4709 120960 63424 1 0 5898240 4423680 4423680 4426356 4492800 163 150 151 154 1940 6 6 1 2 149 0 0 0 0 4 +27 1783720409219212300 DEPTH 26 1 0.81830972882344888 1 13 1 13 1 0 42 86 2614 23664881 143040 818.06210327148438 5.9574000000000007 1016.5705 120960 57159 1 0 5898240 4423680 4423680 4426480 4492800 150 150 156 170 1988 7 2 5 3 69 0 0 0 1 3 +28 1783720410284834600 DEPTH 14 1 0.81840230498298761 0 14 0 12 1 0 58 166 2573 23664893 143040 834.99485778808594 5.9453999999999994 1045.9155000000001 120960 60717 1 0 5898240 4423680 4423680 4426492 4492800 160 159 150 151 1953 6 2 13 2 143 0 1 0 0 4 +29 1783720411352195800 DEPTH 20 1 0.81313752230047409 3 12 3 12 1 0 51 136 2603 23664810 143040 842.75607299804688 6.0038 1042.9641999999999 120960 62264 1 0 5898240 4423680 4423680 4426409 4492800 162 168 150 150 1973 15 9 14 2 96 0 0 0 0 2 +30 1783720412400142100 DEPTH 25 1 0.81322966746364145 3 12 3 11 1 0 44 110 2578 23664837 143040 830.54266357421875 6.0785 1031.4679000000001 120960 59078 1 0 5898240 4423680 4423680 4426435 4492800 159 173 152 150 1944 5 3 3 5 94 0 0 0 0 3 +31 1783720413651555500 DEPTH 13 1 1.1303091353870591 1 7 1 6 1 0 80 113 2528 23664766 81600 815.89825439453125 5.9312999999999994 1250.2243000000001 120960 47815 1 0 5898240 4423680 4423680 4426365 4492800 173 162 154 156 1883 2 1 0 0 110 0 0 0 0 2 +32 1783720415010668800 DEPTH 17 1 0.88110196571252986 0 8 0 7 1 0 44 49 2593 23664893 81600 804.7655029296875 5.9847999999999999 1343.0171 120960 45684 1 0 5898240 4423680 4423680 4426491 4492800 150 150 172 170 1951 0 0 4 0 45 0 0 3 0 2 +33 1783720416368979300 DEPTH 11 1 0.88052431345337812 0 8 0 8 1 0 59 70 2566 23664889 81600 810.70890808105469 5.9132999999999996 1310.6504 120960 46973 1 0 5898240 4423680 4423680 4426489 4492800 169 150 166 242 1839 4 1 1 3 61 0 0 0 0 1 +34 1783720417649389600 DEPTH 53 1 0.88058036865647815 0 8 0 8 1 0 72 111 2553 23664793 81600 835.97703552246094 6.1457000000000006 1259.2331999999999 120960 54740 1 0 5898240 4423680 4423680 4426393 4492800 168 150 150 150 1935 3 2 0 0 106 0 0 0 0 1 +35 1783720418723201500 DEPTH 8 1 0.8806389717166716 2 6 2 6 1 0 77 135 2533 23664901 81600 847.59005737304688 5.9894999999999996 1057.1119000000001 120960 55556 1 0 5898240 4423680 4423680 4426500 4492800 150 150 150 154 1929 6 3 3 0 123 0 0 0 0 1 +36 1783720420004346000 DEPTH 9 1 1.0007174220109036 2 7 2 7 1 0 68 68 2603 23664831 81600 846.98075866699219 5.9545000000000003 1280.0583999999999 120960 52046 1 0 5898240 4423680 4423680 4426431 4492800 162 150 150 150 1991 1 2 8 4 53 0 0 0 0 1 +37 1783720421269119900 DEPTH 31 1 0.93079851686372161 2 7 2 7 0 0 43 55 2551 23664793 81600 803.24388122558594 5.9156000000000004 1249.3049000000001 120960 46625 1 0 5898240 4423680 4423680 4426390 4492800 169 150 173 221 1838 0 2 6 1 46 0 0 0 0 0 +38 1783720422604704000 DEPTH 56 1 0.93087942616524411 1 8 2 7 1 0 58 74 2610 23664744 81600 811.86256408691406 5.9329000000000001 1318.6052 120960 47200 1 0 5898240 4423680 4423680 4426344 4492800 150 150 150 150 2010 2 1 4 6 61 0 0 4 0 0 +39 1783720423922689000 DEPTH 44 1 0.83096015073573126 2 7 2 7 0 0 65 99 2573 23664884 81600 830.63987731933594 5.9727000000000006 1298.7824000000001 120960 48647 1 0 5898240 4423680 4423680 4426483 4492800 156 150 150 150 1967 0 0 0 0 99 0 0 0 0 0 +40 1783720425231998000 DEPTH 54 1 0.83198665185774456 1 8 1 8 0 0 52 67 2553 23664883 81600 813.65797424316406 5.9174999999999995 1291.7641000000001 120960 47265 1 0 5898240 4423680 4423680 4426482 4492800 166 150 176 161 1900 1 4 4 3 55 0 0 0 0 0 +41 1783720426305354700 DEPTH 16 1 0.90612104893788292 2 8 2 8 1 0 95 159 2508 23664818 81600 847.92082214355469 5.9344999999999999 1051.3300999999999 120960 55820 1 0 5898240 4423680 4423680 4426418 4492800 150 150 150 151 1907 0 2 0 0 157 0 0 0 0 1 +42 1783720427377637300 DEPTH 15 1 0.81015231751098737 3 12 3 12 0 0 48 120 2561 23664807 143040 839.75961303710938 5.9654999999999996 1036.6123 120960 63196 1 0 5898240 4423680 4423680 4426406 4492800 157 150 150 150 1954 4 4 7 3 102 0 0 0 0 0 +43 1783720428451386600 DEPTH 22 1 0.81024175323390346 3 12 3 12 1 0 69 212 2546 23664849 143040 852.72332763671875 5.9620999999999995 1059.7892999999999 120960 67510 1 0 5898240 4423680 4423680 4426448 4492800 155 159 151 157 1924 5 4 4 4 195 0 0 0 0 2 +44 1783720429482495900 DEPTH 50 1 0.81033098691775973 2 13 2 10 1 0 45 108 2589 23664798 143040 804.47785949707031 6.0442999999999998 1003.0853 120960 55960 1 0 5898240 4423680 4423680 4426397 4492800 151 152 150 152 1984 3 6 5 2 92 0 0 0 0 6 +45 1783720430538956000 DEPTH 43 1 0.81042001944443887 2 13 2 13 1 0 55 161 2561 23664816 143040 840.44996643066406 5.9455999999999998 1039.2451000000001 120960 63406 1 0 5898240 4423680 4423680 4426416 4492800 160 153 150 150 1948 7 6 5 1 142 0 0 0 0 3 +46 1783720431612998400 DEPTH 28 1 0.81050885169013187 2 13 2 13 1 0 63 160 2558 23664821 143040 851.5384521484375 5.9323999999999995 1054.0853 120960 66969 1 0 5898240 4423680 4423680 4426420 4492800 168 150 150 150 1940 2 3 2 5 148 0 0 0 0 1 +47 1783720432882190400 DEPTH 13 1 1.1186523789711149 1 6 1 6 0 0 86 111 2533 23664771 81600 814.68569946289062 5.9777999999999993 1268.1337000000001 120960 40452 1 0 5898240 4423680 4423680 4426370 4492800 166 162 157 151 1897 0 3 0 1 107 0 0 0 0 0 +48 1783720434214440400 DEPTH 17 1 1.0293675116860315 0 7 0 7 1 0 53 93 2570 23664896 81600 807.138916015625 5.9263999999999992 1331.1351 120960 38951 1 0 5898240 4423680 4423680 4426493 4492800 166 150 255 272 1727 0 0 0 0 93 0 0 0 0 3 +49 1783720435366723400 DEPTH 14 1 0.967275975961704 0 12 0 12 1 0 65 106 2576 23664982 81600 829.49620056152344 5.9173999999999998 1151.1985 120960 49199 1 0 5898240 4423680 4423680 4426579 4492800 150 150 150 156 1970 0 0 5 0 101 0 0 0 0 2 +50 1783720436419687800 DEPTH 47 1 0.90021612351145786 2 11 2 11 0 0 71 70 2551 23664858 81600 837.88981628417969 5.9883999999999995 1033.8303000000001 120960 50746 1 0 5898240 4423680 4423680 4426457 4492800 156 150 151 150 1944 0 0 3 0 67 0 0 0 0 0 +51 1783720437412737200 DEPTH 50 1 0.92744180057170489 2 10 2 9 1 0 51 49 2551 23664844 81600 799.33821105957031 5.9486999999999997 991.24390000000005 120960 45154 1 0 5898240 4423680 4423680 4426444 4492800 152 150 157 170 1922 1 0 8 0 40 0 0 0 0 1 +52 1783720438685850600 DEPTH 9 1 0.9101868296020349 2 7 2 7 0 0 72 48 2595 23664717 81600 839.01287841796875 5.9481999999999999 1271.9346 120960 43713 1 0 5898240 4423680 4423680 4426316 4492800 167 150 150 150 1978 2 0 4 1 41 0 0 0 0 0 +53 1783720439955875300 DEPTH 41 1 0.84207134483117407 1 10 1 10 1 0 54 67 2566 23664887 81600 803.9044189453125 5.9173 1235.9585999999999 120960 46425 1 0 5898240 4423680 4423680 4426486 4492800 162 156 152 151 1945 1 1 2 1 62 0 0 0 0 1 +54 1783720441001460400 DEPTH 25 1 0.88518915959562039 3 11 3 11 0 0 51 54 2575 23664869 81600 825.99708557128906 5.9655999999999993 1023.3754 120960 48573 1 0 5898240 4423680 4423680 4426469 4492800 162 162 159 170 1922 1 3 2 6 42 0 0 0 0 0 +55 1783720442273030200 DEPTH 13 1 1.0091825463100312 1 6 1 6 0 0 90 77 2522 23664826 81600 811.24755859375 5.9084000000000003 1270.4711 120960 29820 1 0 5898240 4423680 4423680 4426425 4492800 162 162 157 157 1884 0 0 0 0 77 0 0 0 0 0 +56 1783720443286177800 DEPTH 50 1 0.97130497414340544 2 9 2 9 1 0 59 53 2536 23664850 81600 799.0538330078125 5.9218999999999999 990.66520000000003 120960 38641 1 0 5898240 4423680 4423680 4426448 4492800 151 150 172 190 1873 2 0 4 1 46 0 0 0 0 1 +57 1783720444604028100 DEPTH 17 1 0.94801523552638256 0 7 0 7 1 0 65 85 2529 23664895 81600 803.82354736328125 6.0204000000000004 1316.7197000000001 120960 28457 1 0 5898240 4423680 4423680 4426494 4492800 239 150 301 402 1437 0 0 0 1 84 0 0 0 0 2 +58 1783720445954275500 DEPTH 56 1 0.90947281248356338 2 7 2 6 1 0 67 59 2586 23664916 81600 815.34140014648438 5.9269999999999996 1325.0924 120960 39967 1 0 5898240 4423680 4423680 4426510 4492800 162 150 158 175 1941 1 1 2 3 52 0 0 1 0 1 +59 1783720447320215700 DEPTH 11 1 0.86967350150569034 0 8 0 8 1 0 60 42 2580 23664857 81600 808.2801513671875 5.9220000000000006 1321.6020000000001 120960 39962 1 0 5898240 4423680 4423680 4426455 4492800 188 150 181 445 1616 5 0 1 2 34 0 0 0 0 1 +60 1783720448589315400 DEPTH 31 1 0.88961985536336785 2 7 2 7 0 0 44 30 2533 23664897 81600 801.88815307617188 5.9118000000000004 1267.962 120960 39643 1 0 5898240 4423680 4423680 4426495 4492800 181 150 198 396 1608 0 0 0 0 30 0 0 0 0 0 +61 1783720449849821400 DEPTH 53 1 0.86972050800973177 0 8 0 8 0 0 81 92 2538 23664836 81600 833.56675720214844 5.9124999999999996 1241.3025 120960 44821 1 0 5898240 4423680 4423680 4426430 4492800 168 150 150 150 1920 0 0 0 1 91 0 0 0 0 0 +62 1783720450916465600 DEPTH 8 1 0.86977004356456822 2 6 2 6 1 0 82 113 2519 23664779 81600 844.84495544433594 5.9384999999999994 1050.6348 120960 46576 1 0 5898240 4423680 4423680 4426378 4492800 157 150 150 163 1899 1 0 3 0 109 0 0 0 0 1 +63 1783720451119323900 REFRESH 32 0 0.80865584595851137 2 14 2 14 1 0 41 40 418 3943885 116640 149.85031127929688 1.0007999999999999 187.40539999999999 20160 15082 0 0 983040 737280 737280 737484 748800 31 31 28 26 302 1 1 3 1 34 0 0 0 0 1 +64 1783720451338094600 REFRESH 18 0 0.80181813984446271 4 15 4 15 0 0 37 34 428 3943916 116640 150.60890197753906 1.0164 189.76740000000001 20160 14882 0 0 983040 737280 737280 737515 748800 25 25 25 26 327 2 2 0 2 28 0 0 0 0 0 +65 1783720451539403600 REFRESH 1 0 0.80881394654216077 2 10 2 10 1 0 52 12 414 3943926 55200 148.78515625 0.98960000000000004 188.23920000000001 20160 14887 0 0 983040 737280 737280 737526 748800 31 25 31 30 297 0 0 0 1 11 0 0 0 0 1 +66 1783720451738332500 REFRESH 23 0 0.80618413247100695 3 14 3 14 1 0 37 34 426 3943924 116640 149.6575927734375 1.008 186.01859999999999 20160 14851 0 0 983040 737280 737280 737524 748800 25 25 25 25 326 1 1 0 1 31 0 0 0 0 1 +67 1783720451937975900 REFRESH 20 0 0.79209626330378347 3 12 3 12 0 0 54 16 423 3943887 55200 149.95353698730469 0.98240000000000005 182.8415 20160 14933 0 0 983040 737280 737280 737487 748800 25 25 25 25 323 1 1 0 0 14 0 0 0 0 0 +68 1783720452130887900 REFRESH 9 0 0.88213585392747618 2 7 2 7 0 0 73 16 424 3943916 55200 149.970947265625 1.0226999999999999 191.76050000000001 20160 13028 0 0 983040 737280 737280 737516 748800 26 25 25 30 318 0 0 0 0 16 0 0 0 0 0 +69 1783720452342002500 REFRESH 51 0 0.80416531638346411 3 15 3 15 1 0 39 39 415 3943917 116640 149.71186828613281 1.01 188.36799999999999 20160 14994 0 0 983040 737280 737280 737517 748800 30 25 32 30 298 1 1 3 1 33 0 0 0 0 1 +70 1783720452545720400 REFRESH 55 0 0.79924959075788737 2 19 5 15 1 0 42 40 435 3943917 116640 149.56748962402344 1.0069999999999999 189.55950000000001 20160 14746 0 0 983040 737280 737280 737517 748800 25 25 25 25 335 2 0 0 1 37 0 0 0 0 1 +71 1783720452767401700 REFRESH 12 0 0.78656058426958408 3 11 3 9 1 0 47 47 413 3943921 116640 148.82386779785156 1.0146999999999999 190.84139999999999 20160 15084 0 0 983040 737280 737280 737521 748800 26 29 31 28 299 2 2 5 5 33 0 0 0 0 1 +72 1783720452974978100 REFRESH 46 0 0.80669032724613499 2 15 2 15 1 0 40 40 429 3943905 116640 149.99551391601562 1.004 189.4804 20160 14790 0 0 983040 737280 737280 737505 748800 26 25 26 25 327 1 1 1 3 34 0 0 0 0 1 +73 1783720453168249800 REFRESH 45 0 0.79731129555652325 2 12 2 12 0 0 49 13 404 3943935 55200 149.83987426757812 0.98270000000000002 181.40719999999999 20160 14966 0 0 983040 737280 737280 737535 748800 25 25 26 26 302 1 0 0 1 11 0 0 0 0 0 +74 1783720453375335500 REFRESH 56 0 0.99550425587234426 2 6 2 6 0 0 68 16 418 3943918 55200 149.86137390136719 0.98509999999999998 205.61369999999999 20160 13019 0 0 983040 737280 737280 737517 748800 29 25 41 74 249 1 0 0 0 15 0 0 0 0 0 +75 1783720453572826900 REFRESH 49 0 0.80227325745578681 3 10 3 10 0 0 64 16 416 3943934 55200 149.89414978027344 0.98609999999999998 184.95830000000001 20160 14846 0 0 983040 737280 737280 737532 748800 25 25 27 28 311 0 0 0 2 14 0 0 0 0 0 +76 1783720453760546600 REFRESH 16 0 0.88597085935893505 2 8 2 8 0 0 96 19 408 3943896 55200 150.89561462402344 0.98609999999999998 186.49209999999999 20160 14259 0 0 983040 737280 737280 737496 748800 28 25 28 27 300 0 0 0 0 19 0 0 0 0 0 +77 1783720453958469300 REFRESH 31 0 0.8107080659802649 2 7 2 7 1 0 45 22 398 3943922 55200 148.51353454589844 0.98750000000000004 196.81360000000001 20160 13061 0 0 983040 737280 737280 737522 748800 26 25 28 49 270 0 0 0 0 22 0 0 0 0 1 +78 1783720454167044900 REFRESH 27 0 0.7871108823943197 0 14 0 14 1 0 39 39 408 3943907 116640 150.297607421875 1.0072000000000001 192.392 20160 14620 0 0 983040 737280 737280 737507 748800 32 31 26 31 288 0 1 1 1 36 0 0 0 0 1 +79 1783720454359754400 REFRESH 41 0 0.82875124445775294 1 10 1 10 0 0 58 20 417 3943897 55200 148.600830078125 0.98709999999999998 191.4924 20160 14286 0 0 983040 737280 737280 737496 748800 26 25 27 44 295 0 0 0 0 20 0 0 0 0 0 +80 1783720454562495000 REFRESH 48 0 0.79741427230527706 2 12 2 12 0 0 33 10 413 3943917 55200 148.39596557617188 0.9879 181.06780000000001 20160 14920 0 0 983040 737280 737280 737517 748800 25 25 30 31 302 2 0 1 0 7 0 0 0 0 0 +81 1783720454795133300 REFRESH 11 0 0.83012098783244381 0 8 0 8 1 0 62 17 414 3943933 55200 148.27110290527344 1.0005999999999999 231.4889 20160 12971 0 0 983040 737280 737280 737533 748800 50 25 39 104 196 0 0 0 3 14 0 0 0 0 1 +82 1783720454978894400 REFRESH 15 0 0.79325504218416643 3 12 3 12 0 0 54 23 417 3943917 55200 149.8839111328125 0.98750000000000004 182.4572 20160 14953 0 0 983040 737280 737280 737517 748800 25 25 26 25 316 0 2 0 2 19 0 0 0 0 0 +83 1783720455180485900 REFRESH 38 0 0.80532903550689805 4 14 4 14 0 0 32 30 426 3943932 116640 149.79997253417969 1.0026999999999999 186.04349999999999 20160 15036 0 0 983040 737280 737280 737532 748800 25 25 25 25 326 2 0 2 0 26 0 0 0 0 0 +84 1783720455376178400 REFRESH 40 0 0.81041085466123808 3 13 3 13 0 0 36 33 419 3943904 116640 148.36122131347656 0.999 182.6292 20160 15137 0 0 983040 737280 737280 737504 748800 25 25 25 25 319 0 1 3 5 24 0 0 0 0 0 +85 1783720455560907100 REFRESH 22 0 0.79351367134906725 3 12 3 12 0 0 73 21 417 3943922 55200 149.52447509765625 0.98719999999999997 183.5898 20160 14910 0 0 983040 737280 737280 737522 748800 25 25 25 25 317 0 1 0 0 20 0 0 0 0 0 +86 1783720455802241500 REFRESH 52 0 0.80965750673631243 1 9 1 9 0 0 49 12 402 3943890 55200 148.62950134277344 0.98929999999999996 217.8657 20160 14984 0 0 983040 737280 737280 737490 748800 33 25 33 36 275 0 0 2 0 10 0 0 0 0 0 +87 1783720455985382400 REFRESH 28 0 0.79380830194321805 2 13 2 13 0 0 64 10 401 3943896 55200 149.58198547363281 0.9859 181.8451 20160 14905 0 0 983040 737280 737280 737496 748800 25 25 25 28 298 0 0 1 0 9 0 0 0 0 0 +88 1783720456175034600 REFRESH 43 0 0.79415484613091736 2 13 2 13 1 0 63 19 413 3943905 55200 150.427490234375 0.98729999999999996 188.32669999999999 20160 15061 0 0 983040 737280 737280 737504 748800 25 25 29 33 301 0 1 1 0 17 0 0 0 0 1 +89 1783720456409806100 REFRESH 44 0 0.8216826107023828 2 7 2 7 0 0 66 14 415 3943896 55200 150.09280395507812 0.98319999999999996 194.64660000000001 20160 14260 0 0 983040 737280 737280 737496 748800 42 25 30 33 285 1 0 0 0 13 0 0 0 0 0 +90 1783720456609404300 REFRESH 19 0 0.79804015013910301 3 11 3 11 0 0 69 25 427 3943892 55200 149.47634887695312 0.98880000000000001 183.155 20160 14800 0 0 983040 737280 737280 737492 748800 25 25 25 25 327 2 1 0 1 21 0 0 0 0 0 +91 1783720456846320400 REFRESH 17 0 1.0908305991253429 0 7 0 7 0 0 69 12 417 3943917 55200 148.97970581054688 0.98760000000000003 235.65459999999999 20160 12314 0 0 983040 737280 737280 737517 748800 41 25 78 129 144 1 0 0 4 7 0 0 0 0 0 +92 1783720457046779600 REFRESH 10 0 0.80068754921772767 1 11 1 11 0 0 41 36 437 3943897 116640 149.51116943359375 1.0049999999999999 187.02170000000001 20160 14866 0 0 983040 737280 737280 737497 748800 25 25 25 25 337 1 0 2 1 32 0 0 0 0 0 +93 1783720457231332900 REFRESH 47 0 0.87692289221550834 2 11 2 11 1 0 73 16 420 3943918 55200 149.73849487304688 0.98340000000000005 181.7132 20160 14281 0 0 983040 737280 737280 737518 748800 26 25 25 26 318 0 0 0 0 16 0 0 0 0 1 +94 1783720457445244400 REFRESH 50 0 1.1309692468045056 2 9 2 9 0 0 61 16 404 3943911 55200 148.23423767089844 0.99019999999999997 179.2398 20160 13182 0 0 983040 737280 737280 737510 748800 27 25 28 47 277 0 0 0 0 16 0 0 0 0 0 +95 1783720457641214900 REFRESH 30 0 0.80942702573795167 2 12 2 12 0 0 59 22 411 3943893 55200 149.391357421875 0.9859 183.39709999999999 20160 14906 0 0 983040 737280 737280 737492 748800 28 25 29 31 298 1 0 0 2 19 0 0 0 0 0 +96 1783720457837142800 REFRESH 3 0 0.79848950173599198 3 11 3 11 0 0 70 27 413 3943900 55200 149.03706359863281 1.0626 183.2587 20160 14878 0 0 983040 737280 737280 737500 748800 25 25 25 26 312 0 1 0 1 25 0 0 0 0 0 +97 1783720458034911900 REFRESH 33 0 0.81035335251966401 1 9 1 9 0 0 65 19 422 3943895 55200 150.15834045410156 0.98870000000000002 184.7311 20160 15054 0 0 983040 737280 737280 737495 748800 26 25 25 25 321 1 0 0 0 18 0 0 0 0 0 +98 1783720458251270600 REFRESH 54 0 0.82314915061965965 1 8 1 8 1 0 55 20 416 3943891 55200 149.26438903808594 0.98080000000000001 201.28720000000001 20160 14157 0 0 983040 737280 737280 737491 748800 30 25 46 35 280 0 1 0 1 18 0 0 0 0 1 +99 1783720458445618400 REFRESH 7 0 0.79871435889089193 2 12 2 12 0 0 64 20 412 3943916 55200 149.41081237792969 0.98519999999999996 182.21690000000001 20160 14765 0 0 983040 737280 737280 737514 748800 25 25 29 25 308 1 0 0 0 19 0 0 0 0 0 +100 1783720458666778700 REFRESH 21 0 0.8150306190235278 1 14 1 14 1 0 40 39 425 3943920 116640 149.52549743652344 1.0041 188.0642 20160 14937 0 0 983040 737280 737280 737520 748800 26 25 25 25 324 3 1 3 1 31 0 0 0 0 1 +101 1783720458849778200 REFRESH 25 0 0.87213518561871439 3 11 3 11 0 0 54 18 407 3943913 55200 148.64384460449219 0.99029999999999996 181.84139999999999 20160 14466 0 0 983040 737280 737280 737513 748800 32 25 30 33 287 0 0 0 0 18 0 0 0 0 0 +102 1783720459043388500 REFRESH 26 0 0.7991564981560072 1 13 1 13 0 0 46 24 417 3943921 55200 148.87423706054688 0.98729999999999996 180.15170000000001 20160 15048 0 0 983040 737280 737280 737521 748800 25 25 27 39 301 1 0 1 1 21 0 0 0 0 0 +103 1783720459242643400 REFRESH 58 0 0.81526719689841998 2 13 2 13 0 0 41 41 412 3943894 116640 150.07948303222656 0.99919999999999998 185.9785 20160 15003 0 0 983040 737280 737280 737494 748800 28 28 25 28 303 2 3 1 3 32 0 0 0 0 0 +104 1783720459445187200 REFRESH 24 0 0.81201240651972095 3 13 3 13 0 0 35 32 409 3943906 116640 150.27200317382812 1.0105999999999999 189.6455 20160 14686 0 0 983040 737280 737280 737506 748800 28 25 25 26 305 3 2 0 2 25 0 0 0 0 0 +105 1783720459657062700 REFRESH 34 0 0.8154241256612258 1 14 1 14 0 0 33 32 423 3943903 116640 149.57977294921875 1.0065999999999999 185.78530000000001 20160 15083 0 0 983040 737280 737280 737503 748800 27 37 25 26 308 2 2 1 2 25 0 0 0 0 0 +106 1783720459856338900 REFRESH 39 0 0.79934907932191368 2 12 2 12 0 0 75 16 414 3943909 55200 149.71597290039062 0.98780000000000001 182.9385 20160 14860 0 0 983040 737280 737280 737509 748800 25 25 25 26 313 1 1 1 1 12 0 0 0 0 0 +107 1783720460056665500 REFRESH 37 0 0.81558042826648947 2 13 2 13 0 0 34 32 419 3943913 116640 148.43186950683594 1.0165999999999999 186.69589999999999 20160 15217 0 0 983040 737280 737280 737513 748800 26 25 25 25 318 2 0 1 1 28 0 0 0 0 0 +108 1783720460267440500 REFRESH 2 0 0.81565834626906519 2 13 2 13 1 0 35 35 438 3943926 116640 149.57875061035156 1.2197 196.0745 20160 14593 0 0 983040 737280 737280 737525 748800 25 25 25 25 338 2 0 2 0 31 0 0 0 0 1 +109 1783720460465372900 REFRESH 0 0 0.79481129402459527 1 12 1 12 1 0 38 37 409 3943915 116640 148.85171508789062 1.006 184.5778 20160 15142 0 0 983040 737280 737280 737515 748800 27 25 25 38 294 1 0 3 2 31 0 0 0 0 1 +110 1783720460667336600 REFRESH 8 0 0.86187182350987268 2 6 2 6 0 0 82 20 415 3943909 55200 150.3846435546875 0.98650000000000004 184.0317 20160 13090 0 0 983040 737280 737280 737509 748800 27 25 25 28 310 0 0 0 0 20 0 0 0 0 0 +111 1783720460857679600 REFRESH 13 0 1.1560627419826539 1 6 1 6 0 0 92 13 416 3943917 55200 148.43289184570312 0.98560000000000003 189.19630000000001 20160 12180 0 0 983040 737280 737280 737517 748800 58 25 36 97 200 1 0 0 1 11 0 0 0 0 0 +112 1783720461068938500 REFRESH 35 0 0.79503037202898874 2 11 2 11 1 0 39 36 419 3943902 116640 150.22796630859375 1.0029999999999999 188.50880000000001 20160 14901 0 0 983040 737280 737280 737502 748800 26 29 32 25 307 0 1 5 1 29 0 0 0 0 1 +113 1783720461260716700 REFRESH 5 0 0.79993376878835554 2 12 2 12 0 0 35 11 402 3943911 55200 149.2991943359375 0.98809999999999998 180.14179999999999 20160 14755 0 0 983040 737280 737280 737511 748800 31 25 26 30 290 1 0 0 0 10 0 0 0 0 0 +114 1783720461463761600 REFRESH 36 0 0.79517570478809629 3 10 3 10 1 0 44 40 432 3943938 116640 150.16038513183594 1.0054000000000001 189.28530000000001 20160 14478 0 0 983040 737280 737280 737538 748800 25 25 25 25 332 1 6 2 1 30 0 0 0 0 1 +115 1783720461682042100 REFRESH 6 0 0.81013886667379031 3 14 3 14 1 0 40 35 425 3943903 116640 148.89164733886719 1.0155000000000001 191.86009999999999 20160 14961 0 0 983040 737280 737280 737502 748800 25 25 25 25 325 1 1 1 0 32 0 0 0 0 1 +116 1783720461870754300 REFRESH 53 0 0.86227063798969183 0 8 0 8 0 0 83 18 414 3943911 55200 149.36790466308594 0.98799999999999999 187.47669999999999 20160 12976 0 0 983040 737280 737280 737511 748800 28 25 27 29 305 0 2 0 0 16 0 0 0 0 0 +117 1783720462065531400 REFRESH 4 0 0.79003549312569332 1 13 1 13 0 0 28 27 412 3943907 116640 148.20863342285156 1.0027999999999999 181.9881 20160 15220 0 0 983040 737280 737280 737507 748800 26 25 28 26 307 2 1 1 3 20 0 0 0 0 0 +118 1783720462253334100 REFRESH 14 0 0.97664976915063284 0 12 0 12 0 0 68 19 411 3943896 55200 149.60946655273438 0.98629999999999995 186.65790000000001 20160 14363 0 0 983040 737280 737280 737496 748800 29 25 27 33 297 1 0 0 0 18 0 0 0 0 0 +119 1783720462455397600 REFRESH 42 0 0.81317202749546769 3 13 3 13 0 0 43 42 419 3943921 116640 149.92588806152344 1.0127999999999999 188.64019999999999 20160 15006 0 0 983040 737280 737280 737521 748800 26 25 26 28 314 1 1 0 2 38 0 0 0 0 0 +120 1783720462656668400 REFRESH 57 0 0.81658146049234126 2 13 2 13 0 0 39 37 425 3943916 116640 149.4466552734375 1.0476000000000001 187.26560000000001 20160 15013 0 0 983040 737280 737280 737516 748800 27 26 25 26 321 3 0 2 2 30 0 0 0 0 0 +121 1783720462852393500 REFRESH 29 0 0.80032352617756863 2 12 2 12 0 0 64 15 425 3943919 55200 149.87161254882812 0.98499999999999999 183.35550000000001 20160 14960 0 0 983040 737280 737280 737519 748800 25 25 25 25 325 0 0 0 0 15 0 0 0 0 0 +122 1783720463893200100 DEPTH 50 1 1.0866683099371826 2 9 2 9 0 0 65 60 2539 23664886 81600 846.90512084960938 5.9435000000000002 1039.3385000000001 120960 65689 1 0 5898240 4423680 4423680 4426483 4492800 150 150 154 166 1919 0 0 0 0 60 0 0 0 0 0 +123 1783720465237485600 DEPTH 17 1 1.0751364610716685 0 7 0 7 0 0 76 68 2526 23664871 81600 850.06146240234375 5.9604000000000008 1343.1134 120960 59917 1 0 5898240 4423680 4423680 4426469 4492800 154 150 249 379 1594 0 0 1 0 67 0 0 0 0 0 +124 1783720466572859000 DEPTH 56 1 1.0563418817520014 2 6 2 5 1 0 74 52 2588 23664864 81600 848.90599060058594 5.9333 1320.8434999999999 120960 64900 1 0 5898240 4423680 4423680 4426458 4492800 150 150 154 157 1977 1 0 0 0 51 0 0 0 0 1 +125 1783720467861391600 DEPTH 13 1 1.0228446566331746 1 6 1 6 1 0 95 77 2530 23664877 81600 848.24314880371094 5.9845000000000006 1287.1934000000001 120960 60243 1 0 5898240 4423680 4423680 4426476 4492800 150 150 154 165 1911 0 0 0 0 77 0 0 0 0 1 +126 1783720468915048900 DEPTH 12 1 0.98735725887307613 3 9 3 9 0 0 83 204 2559 23664890 81600 854.30867004394531 5.9124999999999996 1052.4002 120960 65381 1 0 5898240 4423680 4423680 4426489 4492800 150 153 155 157 1944 6 3 7 7 181 0 0 0 0 0 +127 1783720470230056700 DEPTH 9 1 0.94985773256455353 2 7 2 7 0 0 76 37 2586 23664820 81600 855.14015197753906 5.9088999999999992 1285.4305999999999 120960 65643 1 0 5898240 4423680 4423680 4426419 4492800 150 150 150 150 1986 0 0 0 0 37 0 0 0 0 0 +128 1783720471315622700 DEPTH 55 1 0.88474873308076241 5 15 5 14 1 0 61 115 2609 23664885 81600 868.02217102050781 6.0065 1070.9648 120960 67313 1 0 5898240 4423680 4423680 4426484 4492800 150 150 150 150 2009 0 5 5 1 104 0 0 0 0 2 +129 1783720472593590100 DEPTH 31 1 0.87682044720051655 2 7 2 7 0 0 47 44 2530 23664825 81600 845.91288757324219 5.9142000000000001 1276.7588000000001 120960 65255 1 0 5898240 4423680 4423680 4426421 4492800 150 150 154 210 1866 1 0 1 0 42 0 0 0 0 0 +130 1783720473933691800 DEPTH 56 1 1.0876778767341917 2 5 2 5 0 0 77 44 2588 23664850 81600 838.22279357910156 5.9263000000000003 1324.5988 120960 53038 1 0 5898240 4423680 4423680 4426448 4492800 150 150 156 168 1964 1 0 1 1 41 0 0 0 0 0 +131 1783720475217375200 DEPTH 13 1 0.92228255456820674 1 6 1 6 0 0 97 65 2519 23664811 81600 842.82133483886719 5.9578000000000007 1282.5648000000001 120960 48961 1 0 5898240 4423680 4423680 4426410 4492800 150 150 151 163 1905 0 0 0 0 65 0 0 0 0 0 +132 1783720476594179500 DEPTH 17 1 0.89976814023378859 0 7 0 7 1 0 83 80 2526 23664776 81600 844.04861450195312 5.9211 1344.5840000000001 120960 49540 1 0 5898240 4423680 4423680 4426375 4492800 188 150 230 417 1541 0 0 0 0 80 0 0 0 0 1 +133 1783720477687271100 DEPTH 50 1 0.9061141339520441 2 9 2 9 0 0 69 59 2546 23664866 81600 842.24613952636719 5.9033999999999995 1034.5415 120960 54103 1 0 5898240 4423680 4423680 4426462 4492800 150 150 150 159 1937 0 0 0 0 59 0 0 0 0 0 +134 1783720478761247400 DEPTH 16 1 0.86953024460736916 2 8 2 8 1 0 100 128 2512 23664730 81600 859.23635864257812 6.0217999999999998 1072.9214999999999 120960 69339 1 0 5898240 4423680 4423680 4426330 4492800 151 150 150 150 1911 0 0 0 0 128 0 0 0 0 1 +135 1783720479810892800 DEPTH 47 1 0.85672715675656519 2 11 2 11 1 0 75 47 2569 23664830 81600 857.26631164550781 5.9284999999999997 1048.4889000000001 120960 69507 1 0 5898240 4423680 4423680 4426426 4492800 151 150 150 150 1968 0 2 0 0 45 0 0 0 0 1 +136 1783720481182107400 DEPTH 11 1 0.85377278210161467 0 8 0 8 1 0 63 46 2590 23664824 81600 849.05244445800781 5.9161999999999999 1331.7784999999999 120960 64540 1 0 5898240 4423680 4423680 4426424 4492800 159 150 164 252 1865 0 0 0 0 46 0 0 0 0 2 +137 1783720482251980800 DEPTH 25 1 0.85143988784906466 3 11 3 11 0 0 59 36 2555 23664870 81600 853.52969360351562 5.9282000000000004 1053.7248 120960 68986 1 0 5898240 4423680 4423680 4426469 4492800 155 150 150 150 1950 0 1 1 1 33 0 0 0 0 0 +138 1783720483627505400 DEPTH 56 1 1.0720215509546736 2 5 2 5 0 0 84 44 2590 23664871 81600 840.05158996582031 5.9310999999999998 1328.194 120960 42628 1 0 5898240 4423680 4423680 4426463 4492800 151 150 159 181 1949 0 0 0 0 44 0 0 0 0 0 +139 1783720484907247200 DEPTH 13 1 0.92309034812723401 1 6 1 6 1 0 100 60 2514 23664775 81600 835.63902282714844 5.9257000000000009 1278.655 120960 38381 1 0 5898240 4423680 4423680 4426375 4492800 150 150 152 166 1896 0 0 0 0 60 0 0 0 0 1 +140 1783720486149741400 DEPTH 14 1 0.91587859994785425 0 12 0 12 0 0 70 78 2572 23664827 81600 854.67852783203125 5.9448000000000008 1241.3674000000001 120960 69446 1 0 5898240 4423680 4423680 4426426 4492800 150 150 150 151 1971 0 0 0 2 76 0 0 0 0 0 +141 1783720487518892900 DEPTH 17 1 0.88595154659156317 0 7 0 7 1 0 86 64 2525 23664830 81600 837.91175842285156 5.9245000000000001 1332.6316999999999 120960 39413 1 0 5898240 4423680 4423680 4426427 4492800 217 150 210 428 1520 0 0 0 0 64 0 0 0 0 1 +142 1783720488594911700 DEPTH 8 1 0.85399207270347954 2 6 2 6 0 0 85 107 2468 23664788 81600 860.73580932617188 6.0467000000000004 1074.8408999999999 120960 66076 1 0 5898240 4423680 4423680 4426386 4492800 157 150 150 165 1846 0 0 0 0 107 0 0 0 0 0 +143 1783720489705536300 DEPTH 12 1 0.87521432291114876 3 9 3 9 0 0 87 132 2536 23664939 81600 845.83624267578125 5.9235999999999995 1042.0978 120960 54693 1 0 5898240 4423680 4423680 4426535 4492800 150 150 158 151 1927 1 0 0 0 131 0 0 0 0 0 +144 1783720490979591500 DEPTH 53 1 0.85412534168073351 0 8 0 8 1 0 90 91 2538 23664928 81600 853.57278442382812 5.9166999999999996 1272.5887 120960 64663 1 0 5898240 4423680 4423680 4426526 4492800 150 150 150 150 1938 0 0 0 0 91 0 0 0 0 2 +145 1783720492266427900 DEPTH 41 1 0.81699968569825399 1 10 1 10 1 0 62 76 2547 23664814 81600 847.08140563964844 5.9258000000000006 1285.5281 120960 68953 1 0 5898240 4423680 4423680 4426411 4492800 150 150 150 152 1945 0 0 0 0 76 0 0 0 0 3 +146 1783720493584437500 DEPTH 56 1 1.0398757748354237 2 5 2 5 0 0 87 31 2599 23664835 81600 836.01052856445312 5.9240000000000004 1316.7918 120960 30483 1 0 5898240 4423680 4423680 4426427 4492800 159 150 162 203 1925 0 1 0 0 30 0 0 0 0 0 +147 1783720494868420300 DEPTH 13 1 0.9065969586838295 1 6 1 6 1 0 102 65 2518 23664842 81600 834.5126953125 6.0937000000000001 1282.8743999999999 120960 27480 1 0 5898240 4423680 4423680 4426442 4492800 150 150 152 166 1900 0 0 0 0 65 0 0 0 0 1 +148 1783720495926252300 DEPTH 55 1 0.91088245636639731 5 14 5 14 0 0 65 54 2619 23664807 81600 857.73593139648438 5.9465000000000003 1056.3543999999999 120960 55941 1 0 5898240 4423680 4423680 4426406 4492800 150 150 150 150 2019 6 0 6 0 42 0 0 0 0 0 +149 1783720496997505100 DEPTH 50 1 0.92004977559701684 2 9 2 9 0 0 74 63 2569 23664802 81600 842.50973510742188 5.9203999999999999 1036.1674 120960 42257 1 0 5898240 4423680 4423680 4426401 4492800 150 150 151 168 1950 0 0 1 0 62 0 0 0 0 0 +150 1783720498274872600 DEPTH 9 1 0.90778927174054447 2 7 2 7 0 0 81 41 2584 23664809 81600 844.57286071777344 5.9147999999999996 1276.1718000000001 120960 53642 1 0 5898240 4423680 4423680 4426406 4492800 150 150 150 150 1984 1 0 0 0 40 0 0 0 0 0 +151 1783720499601190700 DEPTH 17 1 0.88343548187168486 0 7 0 7 1 0 90 76 2516 23664762 81600 836.703125 5.9334000000000007 1325.0790999999999 120960 27916 1 0 5898240 4423680 4423680 4426361 4492800 267 150 210 434 1455 0 0 0 0 76 0 0 0 0 1 +152 1783720500945491100 DEPTH 54 1 0.81563307106546812 1 8 1 8 0 0 59 57 2552 23664884 81600 849.17861938476562 5.9635999999999996 1308.9826 120960 68647 1 0 5898240 4423680 4423680 4426481 4492800 160 150 162 158 1922 0 0 0 1 56 0 0 0 0 0 +153 1783720502278071500 DEPTH 44 1 0.81448062192666792 2 7 2 7 1 0 72 82 2556 23664847 81600 854.8607177734375 6.0538999999999996 1292.8623 120960 69105 1 0 5898240 4423680 4423680 4426446 4492800 150 150 150 150 1956 1 0 0 0 81 0 0 0 0 1 +154 1783720502476738900 REFRESH 45 0 0.786223682302581 2 12 1 12 1 0 53 23 405 3943952 55200 149.40261840820312 0.98819999999999997 182.44980000000001 20160 14626 0 0 983040 737280 737280 737552 748800 25 25 26 26 303 0 0 0 0 23 0 0 0 0 1 +155 1783720502674240700 REFRESH 28 0 0.78173887198049652 2 13 2 13 0 0 67 16 404 3943920 55200 149.42311096191406 0.98680000000000001 181.33609999999999 20160 14548 0 0 983040 737280 737280 737520 748800 25 25 26 29 299 0 2 0 0 14 0 0 0 0 0 +156 1783720502860018600 REFRESH 8 0 0.73605108386964313 2 6 2 6 0 0 87 14 415 3943916 55200 150.12358093261719 0.98560000000000003 183.89349999999999 20160 12072 0 0 983040 737280 737280 737515 748800 27 26 27 27 308 0 0 0 0 14 0 0 0 0 0 +157 1783720503051638400 REFRESH 41 0 0.67439724136420864 1 10 1 10 0 0 63 5 412 3943894 55200 148.67529296875 0.98850000000000005 190.34549999999999 20160 13019 0 0 983040 737280 737280 737493 748800 27 25 27 46 287 0 0 0 0 5 0 0 0 0 0 +158 1783720503258666300 REFRESH 32 0 0.79540232924595577 2 14 2 14 0 0 45 29 414 3943893 55200 150.34573364257812 0.98650000000000004 183.5232 20160 14665 0 0 983040 737280 737280 737493 748800 26 25 27 25 311 0 0 1 0 28 0 0 0 0 0 +159 1783720503455180600 REFRESH 40 0 0.79544551909627792 3 13 3 13 0 0 43 30 413 3943900 55200 149.03616333007812 0.99109999999999998 180.81209999999999 20160 14658 0 0 983040 737280 737280 737500 748800 26 25 26 25 311 0 0 2 4 24 0 0 0 0 0 +160 1783720503653213100 REFRESH 38 0 0.79051207327009032 4 14 4 14 0 0 37 27 423 3943898 55200 149.23078918457031 0.98760000000000003 181.97999999999999 20160 14605 0 0 983040 737280 737280 737498 748800 25 25 25 25 323 0 0 0 1 26 0 0 0 0 0 +161 1783720503852099400 REFRESH 2 0 0.79891363558921513 2 13 2 13 0 0 46 30 428 3943900 55200 149.76205444335938 0.98519999999999996 183.6301 20160 14663 0 0 983040 737280 737280 737499 748800 25 25 25 25 328 0 2 2 1 25 0 0 0 0 0 +162 1783720504067017900 REFRESH 22 0 0.78205461742344484 3 12 3 12 0 0 79 24 416 3943915 55200 150.223876953125 0.98750000000000004 184.23339999999999 20160 14772 0 0 983040 737280 737280 737514 748800 25 25 25 25 316 0 0 1 1 22 0 0 0 0 0 +163 1783720504272217200 REFRESH 15 0 0.78209292640284434 3 12 3 12 0 0 56 15 418 3943911 55200 149.14662170410156 0.98719999999999997 180.46680000000001 20160 14714 0 0 983040 737280 737280 737511 748800 25 25 26 25 317 0 0 1 1 13 0 0 0 0 0 +164 1783720504479282300 REFRESH 48 0 0.78645516269761495 2 12 2 12 0 0 33 5 418 3943909 55200 148.22723388671875 0.99650000000000005 179.8015 20160 14678 0 0 983040 737280 737280 737509 748800 26 25 31 34 302 0 0 1 0 4 0 0 0 0 0 +165 1783720504715711400 REFRESH 17 0 0.91213944748488551 0 7 0 7 0 0 90 11 418 3943892 55200 149.15583801269531 0.99019999999999997 235.12530000000001 20160 12375 0 0 983040 737280 737280 737492 748800 82 25 82 134 95 0 0 0 0 11 0 0 0 0 0 +166 1783720504917882100 REFRESH 33 0 0.8016133586263372 1 9 1 9 0 0 68 17 417 3943921 55200 149.87161254882812 0.9919 185.81809999999999 20160 14635 0 0 983040 737280 737280 737521 748800 26 25 25 27 314 0 0 0 1 16 0 0 0 0 0 +167 1783720505120232400 REFRESH 24 0 0.79597460194396397 3 13 3 13 0 0 43 31 409 3943909 55200 150.51263427734375 0.99160000000000004 185.06999999999999 20160 14669 0 0 983040 737280 737280 737509 748800 26 25 25 27 306 1 0 0 0 30 0 0 0 0 0 +168 1783720505330898500 REFRESH 49 0 0.79196509975770157 3 10 3 10 0 0 67 16 415 3943919 55200 151.58988952636719 0.98260000000000003 183.73670000000001 20160 14751 0 0 983040 737280 737280 737519 748800 30 25 30 30 300 0 0 0 0 16 0 0 0 0 0 +169 1783720505540816000 REFRESH 46 0 0.79337875971557592 2 15 2 15 0 0 48 34 427 3943901 55200 149.62483215332031 0.97799999999999998 184.88079999999999 20160 14793 0 0 983040 737280 737280 737501 748800 25 25 25 25 327 1 2 0 0 31 0 0 0 0 0 +170 1783720505741581800 REFRESH 42 0 0.79617105638433505 3 13 3 13 0 0 48 33 423 3943923 55200 150.02726745605469 1.0047999999999999 184.13589999999999 20160 14714 0 0 983040 737280 737280 737522 748800 25 25 26 27 320 0 0 0 0 33 0 0 0 0 0 +171 1783720505950202000 REFRESH 26 0 0.78695470780350463 1 13 1 13 0 0 48 15 419 3943923 55200 148.62028503417969 0.99029999999999996 181.92259999999999 20160 14708 0 0 983040 737280 737280 737522 748800 27 25 27 41 299 0 0 2 0 13 0 0 0 0 0 +172 1783720506139184100 REFRESH 14 0 0.91933578297073848 0 12 0 12 0 0 71 12 412 3943917 55200 149.93817138671875 0.99790000000000001 187.75649999999999 20160 13031 0 0 983040 737280 737280 737517 748800 35 25 28 48 276 1 0 0 0 11 0 0 0 0 0 +173 1783720506339355400 REFRESH 7 0 0.78688140654149175 2 12 2 12 0 0 66 15 412 3943894 55200 150.06617736816406 0.98780000000000001 184.29570000000001 20160 14590 0 0 983040 737280 737280 737494 748800 25 25 30 25 307 0 0 0 0 15 0 0 0 0 0 +174 1783720506539187700 REFRESH 44 0 0.77701477381943129 2 7 2 7 0 0 73 15 415 3943920 55200 150.08869934082031 0.98780000000000001 198.71430000000001 20160 12980 0 0 983040 737280 737280 737519 748800 39 25 31 29 291 0 0 0 0 15 0 0 0 0 0 +175 1783720506779583500 REFRESH 18 0 0.78957308129206127 4 15 4 15 1 0 43 23 424 3943920 55200 150.619140625 0.98660000000000003 183.50700000000001 20160 14675 0 0 983040 737280 737280 737520 748800 25 25 25 25 324 1 1 0 1 20 0 0 0 0 1 +176 1783720506978890700 REFRESH 57 0 0.79989416715969985 2 13 2 13 0 0 49 36 415 3943944 55200 148.97459411621094 0.98619999999999997 181.71430000000001 20160 14725 0 0 983040 737280 737280 737544 748800 25 25 26 26 313 1 1 2 0 32 0 0 0 0 0 +177 1783720507183785700 REFRESH 58 0 0.79995872876914542 2 13 2 13 0 0 51 38 419 3943904 55200 150.56588745117188 0.98560000000000003 185.8125 20160 14827 0 0 983040 737280 737280 737504 748800 26 25 25 25 318 0 0 2 1 35 0 0 0 0 0 +178 1783720507368419000 REFRESH 55 0 0.92949513100843084 5 14 5 14 1 0 66 17 426 3943914 55200 150.55564880371094 0.98619999999999997 183.41130000000001 20160 14035 0 0 983040 737280 737280 737514 748800 25 25 25 25 326 0 0 2 0 15 0 0 0 0 1 +179 1783720507578633700 REFRESH 29 0 0.78724991124079347 2 12 2 12 0 0 65 12 423 3943897 55200 150.34060668945312 0.98870000000000002 183.309 20160 14705 0 0 983040 737280 737280 737497 748800 25 25 25 25 323 0 0 0 0 12 0 0 0 0 0 +180 1783720507846127400 REFRESH 23 0 0.7941221293492341 3 14 3 14 0 0 45 32 417 3943932 55200 150.14297485351562 0.98809999999999998 183.9316 20160 14702 0 0 983040 737280 737280 737532 748800 25 25 25 25 317 1 1 0 0 30 0 0 0 0 0 +181 1783720508087147100 REFRESH 52 0 0.80258041925794066 1 9 1 9 0 0 50 17 411 3943888 55200 147.81645202636719 0.99590000000000001 223.05090000000001 20160 14649 0 0 983040 737280 737280 737488 748800 34 25 37 46 269 0 0 1 0 16 0 0 0 0 0 +182 1783720508284154200 REFRESH 5 0 0.787600705703697 2 12 2 12 0 0 37 16 407 3943907 55200 148.99507141113281 0.98470000000000002 180.0872 20160 14662 0 0 983040 737280 737280 737507 748800 33 25 27 31 291 0 0 0 0 16 0 0 0 0 0 +183 1783720508481081500 REFRESH 37 0 0.8003437260259364 2 13 2 13 0 0 45 31 410 3943964 55200 148.87628173828125 0.98580000000000001 180.12799999999999 20160 14785 0 0 983040 737280 737280 737564 748800 25 25 25 25 310 0 0 0 1 30 0 0 0 0 0 +184 1783720508686128100 REFRESH 54 0 0.80739095483561907 1 8 1 8 0 0 59 10 419 3943926 55200 148.37863159179688 1.0061 203.68610000000001 20160 12800 0 0 983040 737280 737280 737526 748800 47 25 78 56 213 0 0 0 0 10 0 0 0 0 0 +185 1783720508888999700 REFRESH 3 0 0.78761318960241455 3 11 3 11 0 0 74 19 413 3943928 55200 149.31155395507812 0.98570000000000002 181.04390000000001 20160 14668 0 0 983040 737280 737280 737528 748800 26 25 25 26 311 0 0 0 0 19 0 0 0 0 0 +186 1783720509086828000 REFRESH 0 0 0.78404709300797404 1 12 1 12 0 0 45 31 418 3943900 55200 149.59922790527344 0.99239999999999995 181.61959999999999 20160 14697 0 0 983040 737280 737280 737500 748800 26 25 25 28 314 0 1 2 0 28 0 0 0 0 0 +187 1783720509284542500 REFRESH 43 0 0.78397673600967466 2 13 2 13 0 0 70 24 413 3943919 55200 149.7733154296875 0.9829 181.46610000000001 20160 14733 0 0 983040 737280 737280 737519 748800 27 25 30 36 295 0 0 0 0 24 0 0 0 0 0 +188 1783720509484999000 REFRESH 51 0 0.79232815913896126 3 15 3 15 0 0 48 35 414 3943906 55200 150.1317138671875 0.98609999999999998 183.26259999999999 20160 14722 0 0 983040 737280 737280 737506 748800 28 25 31 26 304 0 1 3 1 30 0 0 0 0 0 +189 1783720509684902400 REFRESH 36 0 0.78421087283458124 3 10 3 10 0 0 52 30 428 3943917 55200 149.99040222167969 0.98760000000000003 183.80459999999999 20160 14715 0 0 983040 737280 737280 737517 748800 25 25 25 25 328 0 0 2 1 27 0 0 0 0 0 +190 1783720509903600000 REFRESH 27 0 0.77891361352089994 0 14 0 14 0 0 49 40 421 3943887 55200 150.78092956542969 0.98750000000000004 185.7107 20160 14622 0 0 983040 737280 737280 737487 748800 26 25 25 28 317 0 1 1 0 38 0 0 0 0 0 +191 1783720510116630200 REFRESH 1 0 0.8006912068083768 2 10 2 10 0 0 54 24 413 3943923 55200 148.61209106445312 0.98760000000000003 189.8947 20160 14721 0 0 983040 737280 737280 737523 748800 29 25 29 31 299 0 0 0 0 24 0 0 0 0 0 +192 1783720510316771900 REFRESH 6 0 0.79533103144946804 3 14 3 14 0 0 47 30 415 3943924 55200 150.51776123046875 0.98560000000000003 185.36940000000001 20160 14729 0 0 983040 737280 737280 737524 748800 25 25 26 25 314 2 0 2 1 25 0 0 0 0 0 +193 1783720510512449800 REFRESH 13 0 1.0680945325410789 1 6 1 6 0 0 103 11 411 3943905 55200 149.93612670898438 0.98409999999999997 194.25460000000001 20160 12281 0 0 983040 737280 737280 737505 748800 112 25 38 95 141 1 0 0 1 9 0 0 0 0 0 +194 1783720510713859500 REFRESH 10 0 0.7916520790375724 1 11 1 11 0 0 55 37 428 3943895 55200 149.75077819824219 0.99519999999999997 182.99209999999999 20160 14683 0 0 983040 737280 737280 737495 748800 25 25 25 25 328 2 0 2 0 33 0 0 0 0 0 +195 1783720510895318800 REFRESH 50 0 0.97911346035441338 2 9 2 9 0 0 75 8 420 3943910 55200 149.18556213378906 0.98640000000000005 180.3057 20160 13382 0 0 983040 737280 737280 737510 748800 98 25 45 97 155 0 0 0 0 8 0 0 0 0 0 +196 1783720511101810900 REFRESH 39 0 0.7883744865108514 2 12 2 12 1 0 77 22 410 3943915 55200 150.71539306640625 0.98640000000000005 183.85040000000001 20160 14735 0 0 983040 737280 737280 737515 748800 25 25 25 26 309 0 0 1 1 20 0 0 0 0 1 +197 1783720511337050000 REFRESH 9 0 0.90912678571617345 2 7 2 7 0 0 81 14 416 3943914 55200 150.85069274902344 0.99139999999999995 196.5087 20160 11847 0 0 983040 737280 737280 737514 748800 25 25 25 25 316 0 0 0 0 14 0 0 0 0 0 +198 1783720511552305600 REFRESH 56 0 1.1828959523194622 2 5 2 5 0 0 88 8 421 3943912 55200 149.47943115234375 1.0084 213.92959999999999 20160 12277 0 0 983040 737280 737280 737511 748800 86 25 67 99 144 0 0 1 0 7 0 0 0 0 0 +199 1783720511746527600 REFRESH 31 0 0.86449698456585455 2 7 2 7 0 0 49 12 403 3943907 55200 148.37759399414062 0.99070000000000003 192.98070000000001 20160 12174 0 0 983040 737280 737280 737506 748800 29 25 33 68 248 0 0 0 0 12 0 0 0 0 0 +200 1783720511931224900 REFRESH 47 0 0.84086490387469903 2 11 2 11 0 0 79 13 424 3943937 55200 149.31558227539062 0.98660000000000003 183.4333 20160 13005 0 0 983040 737280 737280 737537 748800 29 25 25 27 318 0 0 0 0 13 0 0 0 0 0 +201 1783720512139926300 REFRESH 4 0 0.77956550206402908 1 13 1 13 1 0 32 17 419 3943936 55200 149.56338500976562 0.98570000000000002 180.8331 20160 14862 0 0 983040 737280 737280 737536 748800 27 25 26 25 316 1 0 0 0 16 0 0 0 0 1 +202 1783720512338307700 REFRESH 12 0 0.92921713175831377 3 9 3 9 0 0 88 20 406 3943922 55200 149.51731872558594 0.98939999999999995 181.87899999999999 20160 14021 0 0 983040 737280 737280 737522 748800 28 25 38 34 281 0 0 0 0 20 0 0 0 0 0 +203 1783720512538264100 REFRESH 34 0 0.80159855084658349 1 14 1 14 0 0 44 31 412 3943893 55200 149.70675659179688 0.98670000000000002 181.69120000000001 20160 14653 0 0 983040 737280 737280 737493 748800 26 26 25 27 308 1 0 0 3 27 0 0 0 0 0 +204 1783720512720477600 REFRESH 25 0 0.83501395849309024 3 11 3 11 0 0 61 14 411 3943924 55200 149.02989196777344 0.98650000000000004 181.06649999999999 20160 13050 0 0 983040 737280 737280 737524 748800 46 25 32 35 273 0 0 0 0 14 0 0 0 0 0 +205 1783720512922734600 REFRESH 35 0 0.78522103123314091 2 11 2 11 0 0 52 34 418 3943897 55200 151.01560974121094 0.98760000000000003 185.59899999999999 20160 14675 0 0 983040 737280 737280 737497 748800 27 25 32 25 309 0 1 0 1 32 0 0 0 0 0 +206 1783720513151952400 REFRESH 11 0 0.84873881775673854 0 8 0 8 0 0 65 16 417 3943896 55200 149.25004577636719 1.0301 228.1241 20160 12045 0 0 983040 737280 737280 737496 748800 71 25 46 105 170 0 0 0 0 16 0 0 0 0 0 +207 1783720513336496900 REFRESH 16 0 0.8555939017329337 2 8 2 8 0 0 101 17 415 3943907 55200 150.53619384765625 0.9869 183.4665 20160 12926 0 0 983040 737280 737280 737507 748800 32 25 26 29 303 0 1 0 0 16 0 0 0 0 0 +208 1783720513539021400 REFRESH 19 0 0.7889781070854387 3 11 3 11 0 0 72 18 424 3943919 55200 150.60263061523438 0.98750000000000004 183.4606 20160 14687 0 0 983040 737280 737280 737518 748800 25 25 25 25 324 0 1 0 0 17 0 0 0 0 0 +209 1783720513789982900 REFRESH 21 0 0.80197903821508199 1 14 1 14 0 0 59 37 417 3943893 55200 149.65052795410156 1.0207999999999999 186.47450000000001 20160 14644 0 0 983040 737280 737280 737493 748800 26 25 25 25 316 1 2 1 2 31 0 0 0 0 0 +210 1783720513978246800 REFRESH 53 0 0.84884784924856238 0 8 0 8 0 0 90 10 416 3943906 55200 148.94898986816406 0.98629999999999995 187.07069999999999 20160 12099 0 0 983040 737280 737280 737506 748800 28 25 28 30 305 1 0 0 0 9 0 0 0 0 0 +211 1783720514176686500 REFRESH 20 0 0.78499946844250046 3 12 3 12 0 0 55 17 423 3943931 55200 150.61599731445312 0.99080000000000001 182.78270000000001 20160 14752 0 0 983040 737280 737280 737531 748800 25 25 25 25 323 0 0 0 0 17 0 0 0 0 0 +212 1783720514382691800 REFRESH 30 0 0.79911686528907633 2 12 2 12 0 0 63 20 405 3943927 55200 149.69366455078125 0.9859 182.25399999999999 20160 14739 0 0 983040 737280 737280 737527 748800 29 25 31 32 288 0 1 0 1 18 0 0 0 0 0 +213 1783720515713494500 DEPTH 56 1 1.0548038742033257 2 5 2 5 0 0 90 39 2602 23664855 81600 853.7313232421875 5.9305000000000003 1329.3421000000001 120960 57950 1 0 5898240 4423680 4423680 4426448 4492800 169 150 163 171 1949 0 0 0 0 39 0 0 0 0 0 +214 1783720517061841300 DEPTH 17 1 1.0132837227911562 0 7 0 7 1 0 94 57 2533 23664895 81600 854.20602416992188 5.9465000000000003 1347.1911 120960 59201 1 0 5898240 4423680 4423680 4426493 4492800 286 150 216 343 1538 0 0 0 0 57 0 0 0 0 2 +215 1783720518400881600 DEPTH 13 1 1.0235393346304307 1 6 1 6 0 0 104 60 2519 23664896 81600 854.07333374023438 5.9168000000000003 1303.9730999999999 120960 57557 1 0 5898240 4423680 4423680 4426495 4492800 159 150 152 168 1890 0 0 0 0 60 0 0 0 0 0 +216 1783720519457987800 DEPTH 55 1 0.90224246530993402 5 14 5 14 0 0 69 49 2614 23664842 81600 859.25753784179688 5.9427000000000003 1055.9202 120960 69208 1 0 5898240 4423680 4423680 4426442 4492800 150 150 150 150 2014 2 0 9 0 38 0 0 0 0 0 +217 1783720520732750600 DEPTH 14 1 0.89639159231921339 0 12 0 12 1 0 74 84 2572 23664814 81600 853.97299194335938 5.9257999999999997 1255.5323000000001 120960 64938 1 0 5898240 4423680 4423680 4426412 4492800 150 150 150 150 1972 0 0 0 0 84 0 0 0 0 3 +218 1783720521780004600 DEPTH 45 1 0.88100677263827898 1 12 1 12 1 0 61 109 2574 23664791 81600 855.5567626953125 5.9073000000000002 1046.0578 120960 70033 1 0 5898240 4423680 4423680 4426391 4492800 150 150 150 150 1974 1 1 0 1 106 0 0 0 0 5 +219 1783720522836175900 DEPTH 50 1 0.93814714544920097 2 9 2 9 0 0 81 52 2572 23664847 81600 853.65234375 5.9295 1054.9241999999999 120960 62051 1 0 5898240 4423680 4423680 4426446 4492800 150 150 156 162 1954 0 0 0 0 52 0 0 0 0 0 +220 1783720523900082300 DEPTH 8 1 0.84135964742781755 2 6 2 6 1 0 90 100 2464 23664833 81600 861.32733154296875 5.9033999999999995 1062.8320000000001 120960 60446 1 0 5898240 4423680 4423680 4426432 4492800 168 150 156 161 1829 0 0 0 0 100 0 0 0 0 1 +221 1783720525220400900 DEPTH 56 1 0.9610410541167248 2 5 2 5 0 0 94 29 2597 23664880 81600 842.94094848632812 5.9815000000000005 1318.9967999999999 120960 47063 1 0 5898240 4423680 4423680 4426477 4492800 177 150 166 187 1917 0 0 0 1 28 0 0 0 0 0 +222 1783720526507106000 DEPTH 9 1 0.89120690132138158 2 7 2 7 0 0 85 28 2567 23664927 81600 853.04910278320312 5.9247000000000005 1285.6307999999999 120960 57092 1 1 5898240 4423680 4423680 4426525 4492800 150 150 150 150 1967 0 0 0 1 26 0 0 0 0 0 +223 1783720527808114300 DEPTH 13 1 0.86966911169028338 1 6 1 6 0 0 109 66 2514 23664795 81600 843.24734497070312 5.9154999999999998 1286.3625999999999 120960 47050 1 0 5898240 4423680 4423680 4426395 4492800 162 150 151 178 1873 0 0 0 0 66 0 0 0 0 0 +224 1783720528854841000 DEPTH 12 1 0.87415121669693607 3 9 3 8 1 0 95 113 2517 23664778 81600 851.03837585449219 5.9243000000000006 1045.5014000000001 120960 69065 1 0 5898240 4423680 4423680 4426378 4492800 150 150 153 150 1914 0 0 0 1 112 0 0 0 0 2 +225 1783720530195366000 DEPTH 17 1 0.86356487258645676 0 7 0 7 1 0 99 49 2537 23664883 81600 846.13481140136719 5.9239000000000006 1339.3621000000001 120960 47889 1 0 5898240 4423680 4423680 4426482 4492800 289 150 226 425 1447 0 0 0 1 48 0 0 0 0 1 +226 1783720531514167300 DEPTH 31 1 0.85123754786356509 2 7 2 7 0 0 49 30 2557 23664798 81600 848.67385864257812 5.9145000000000003 1285.3507 120960 60064 1 0 5898240 4423680 4423680 4426394 4492800 150 150 159 233 1865 0 0 0 0 30 0 0 0 0 0 +227 1783720532876865200 DEPTH 44 1 0.80975673217534905 2 7 2 7 0 0 77 61 2555 23664786 81600 853.32444763183594 5.9432 1313.0021999999999 120960 64490 1 0 5898240 4423680 4423680 4426384 4492800 150 150 150 150 1955 0 0 0 0 61 0 0 0 0 0 +228 1783720534213101800 DEPTH 54 1 0.80066142225983583 1 8 1 8 0 0 60 47 2538 23664785 81600 850.31394958496094 6.0263 1322.6403 120960 64518 1 0 5898240 4423680 4423680 4426382 4492800 164 150 172 168 1884 0 0 0 0 47 0 0 0 0 0 +229 1783720535526624500 DEPTH 56 1 0.93943605475662373 2 5 2 5 0 0 96 21 2587 23664897 81600 837.27980041503906 5.9115000000000002 1312.1205 120960 37631 1 0 5898240 4423680 4423680 4426490 4492800 188 150 165 205 1879 0 0 0 0 21 0 0 0 0 0 +230 1783720536842966400 DEPTH 13 1 0.84691429113481376 1 6 1 6 0 0 112 54 2519 23664804 81600 839.60728454589844 5.956999999999999 1292.2585999999999 120960 36630 1 0 5898240 4423680 4423680 4426402 4492800 161 150 152 168 1888 0 0 0 0 54 0 0 0 0 0 +231 1783720537953569900 DEPTH 47 1 0.82436133496653541 2 11 2 11 1 0 81 51 2573 23664834 81600 856.63304138183594 5.9182999999999995 1049.915 120960 65067 1 0 5898240 4423680 4423680 4426434 4492800 156 150 150 150 1967 0 1 0 0 50 0 0 0 0 2 +232 1783720539290806200 DEPTH 11 1 0.84201796502499904 0 8 0 8 1 0 68 28 2582 23664794 81600 848.52909851074219 5.9489000000000001 1336.0971999999999 120960 59292 1 0 5898240 4423680 4423680 4426393 4492800 176 150 169 322 1765 0 0 1 0 27 0 0 0 0 2 +233 1783720540340793800 DEPTH 25 1 0.81846499317279608 3 11 3 11 0 0 65 49 2533 23664908 81600 854.38018798828125 5.9335000000000004 1048.8375000000001 120960 65430 1 0 5898240 4423680 4423680 4426507 4492800 160 150 150 150 1923 0 0 1 0 48 0 0 0 0 0 +234 1783720541456175100 DEPTH 16 1 0.84075133323793616 2 8 2 8 0 0 109 104 2521 23664870 81600 860.26402282714844 5.9703999999999997 1064.8737000000001 120960 65341 1 0 5898240 4423680 4423680 4426470 4492800 153 150 150 150 1918 0 0 0 0 104 0 0 0 0 0 +235 1783720542827823000 DEPTH 52 1 0.79401433015161993 1 9 1 9 1 0 53 53 2584 23664859 81600 845.60610961914062 5.9154 1332.3722 120960 69575 1 0 5898240 4423680 4423680 4426459 4492800 160 150 176 181 1917 2 0 0 0 51 0 0 0 0 2 +236 1783720544000259400 DEPTH 33 1 0.79398721649352511 1 9 1 9 0 0 81 110 2535 23664836 81600 863.36833190917969 5.9655000000000005 1074.0309 120960 70546 1 0 5898240 4423680 4423680 4426433 4492800 150 150 150 150 1935 1 5 4 2 98 0 0 0 0 0 +237 1783720545307275100 DEPTH 56 1 0.91975825704532588 2 5 2 5 0 0 99 20 2592 23664725 81600 834.29570007324219 5.9194999999999993 1305.5299 120960 25433 1 0 5898240 4423680 4423680 4426321 4492800 212 150 165 243 1822 0 0 0 0 20 0 0 0 0 0 +238 1783720546344337600 DEPTH 12 1 0.88137129313913032 3 8 3 8 0 0 99 111 2524 23664798 81600 844.05599975585938 5.9126999999999992 1035.8631 120960 57184 1 0 5898240 4423680 4423680 4426397 4492800 153 150 151 150 1920 2 1 4 0 104 0 0 0 0 0 +239 1783720547689197600 DEPTH 17 1 0.88469381777950451 0 7 0 7 0 0 100 35 2549 23664839 81600 840.87434387207031 5.9244000000000003 1343.7091 120960 37782 1 0 5898240 4423680 4423680 4426438 4492800 276 150 230 468 1425 0 0 0 0 35 0 0 0 0 0 +240 1783720548762804500 DEPTH 50 1 0.8820239639351668 2 9 2 9 1 0 83 32 2568 23664841 81600 844.8775634765625 5.9268000000000001 1037.5953999999999 120960 50995 1 0 5898240 4423680 4423680 4426440 4492800 154 150 161 163 1940 0 0 0 0 32 0 0 0 0 1 +241 1783720550034442700 DEPTH 53 1 0.84234647601709878 0 8 0 8 0 0 92 76 2526 23664772 81600 852.47262573242188 5.9193000000000007 1270.3994 120960 59381 1 0 5898240 4423680 4423680 4426369 4492800 150 150 150 150 1926 0 0 0 0 76 0 0 0 0 0 +242 1783720551103978700 DEPTH 55 1 0.87739459967194355 5 14 5 14 0 0 76 37 2614 23664758 81600 851.88789367675781 5.9470999999999998 1049.9186999999999 120960 57513 1 0 5898240 4423680 4423680 4426356 4492800 150 150 150 150 2014 2 0 2 1 32 0 0 0 0 0 +243 1783720552400696300 DEPTH 13 1 0.89541390145210131 1 6 1 6 0 0 118 68 2512 23664878 81600 837.16938781738281 5.923 1295.5737999999999 120960 25274 1 0 5898240 4423680 4423680 4426475 4492800 163 150 153 174 1872 0 0 0 0 68 0 0 0 0 0 +244 1783720553676876700 DEPTH 14 1 0.87516500447681245 0 12 0 12 1 0 74 60 2587 23664889 81600 847.58061218261719 5.9188999999999998 1274.8064999999999 120960 53257 1 0 5898240 4423680 4423680 4426489 4492800 150 150 150 150 1987 0 0 0 0 60 0 0 0 0 3 +245 1783720553892916500 REFRESH 54 0 0.71337760451501531 1 8 1 8 0 0 61 11 416 3943902 55200 149.04013061523438 0.98729999999999996 214.77979999999999 20160 12003 0 0 983040 737280 737280 737502 748800 63 25 64 58 206 0 0 0 0 11 0 0 0 0 0 +246 1783720554090922200 REFRESH 15 0 0.77249220701363752 3 12 3 12 0 0 59 12 417 3943892 55200 149.80685424804688 0.98619999999999997 181.73830000000001 20160 14645 0 0 983040 737280 737280 737492 748800 25 25 26 25 316 0 0 0 0 12 0 0 0 0 0 +247 1783720554273859400 REFRESH 45 0 0.86242580369464628 1 12 1 12 0 0 61 11 412 3943887 55200 149.92179870605469 0.98470000000000002 181.76990000000001 20160 13919 0 0 983040 737280 737280 737487 748800 31 25 29 28 299 0 0 0 0 11 0 0 0 0 0 +248 1783720554457699400 REFRESH 50 0 0.72785284526827343 2 9 2 9 0 0 84 13 421 3943908 55200 149.78048706054688 0.98140000000000005 182.24940000000001 20160 12453 0 0 983040 737280 737280 737508 748800 121 25 43 75 157 0 0 0 1 12 0 0 0 0 0 +249 1783720554668807500 REFRESH 1 0 0.78951056261425523 2 10 1 9 1 0 54 18 418 3943901 55200 149.15277099609375 0.98709999999999998 190.65539999999999 20160 14618 0 0 983040 737280 737280 737501 748800 29 25 30 32 302 0 0 1 1 16 0 0 0 1 0 +250 1783720554870357100 REFRESH 21 0 0.78717331222843712 1 14 1 13 1 0 64 39 414 3943896 55200 149.57670593261719 0.98719999999999997 182.86099999999999 20160 14766 0 0 983040 737280 737280 737496 748800 27 25 25 26 311 1 0 1 2 35 0 0 0 0 1 +251 1783720555057106900 REFRESH 33 0 0.68466184842800282 1 9 1 9 0 0 83 12 422 3943883 55200 150.06719970703125 0.98429999999999995 185.57839999999999 20160 13968 0 0 983040 737280 737280 737483 748800 31 25 25 31 310 0 1 1 0 10 0 0 0 0 0 +252 1783720555254008800 REFRESH 24 0 0.78393714491674549 3 13 3 13 0 0 54 41 411 3943912 55200 151.36358642578125 0.98140000000000005 183.80690000000001 20160 14555 0 0 983040 737280 737280 737511 748800 28 25 25 27 306 1 2 0 0 38 0 0 0 0 0 +253 1783720555489317100 REFRESH 17 0 0.87647153410449519 0 7 0 7 0 0 100 5 424 3943897 55200 149.46099853515625 0.98919999999999997 234.19450000000001 20160 12851 0 0 983040 737280 737280 737496 748800 92 25 76 111 120 0 0 0 0 5 0 0 0 0 0 +254 1783720555687741000 REFRESH 34 0 0.78737836810483952 1 14 1 14 0 0 53 28 417 3943892 55200 149.46304321289062 0.98850000000000005 182.34209999999999 20160 14635 0 0 983040 737280 737280 737492 748800 27 26 26 29 309 0 0 0 0 28 0 0 0 0 0 +255 1783720555885328300 REFRESH 13 0 0.87478427756301935 1 6 1 6 0 0 118 8 415 3943925 55200 149.26130676269531 1.0481 196.43889999999999 20160 12404 0 0 983040 737280 737280 737525 748800 143 25 34 95 118 0 0 0 1 7 0 0 0 0 0 +256 1783720556082561200 REFRESH 28 0 0.77314454695354851 2 13 2 13 0 0 70 16 404 3943894 55200 150.82598876953125 0.9899 185.24700000000001 20160 14575 0 0 983040 737280 737280 737494 748800 25 25 26 29 299 0 1 0 0 15 0 0 0 0 0 +257 1783720556279041200 REFRESH 7 0 0.77722599699210793 2 12 2 12 0 0 69 25 415 3943896 55200 150.15219116210938 0.98909999999999998 183.34639999999999 20160 14578 0 0 983040 737280 737280 737495 748800 26 25 35 29 300 1 0 1 0 23 0 0 0 0 0 +258 1783720556517770700 REFRESH 6 0 0.78196264844695218 3 14 3 14 0 0 53 29 417 3943916 55200 149.85932922363281 1.0017 183.5189 20160 14690 0 0 983040 737280 737280 737515 748800 26 25 25 25 316 1 0 1 1 26 0 0 0 0 0 +259 1783720556746443400 REFRESH 11 0 0.83599741996681309 0 8 0 8 0 0 68 8 420 3943911 55200 147.68025207519531 0.98550000000000004 227.57040000000001 20160 12317 0 0 983040 737280 737280 737511 748800 90 25 47 110 148 0 0 0 0 8 0 0 0 0 0 +260 1783720556944780400 REFRESH 2 0 0.78770164187455383 2 13 2 13 0 0 50 27 427 3943951 55200 150.1634521484375 0.98260000000000003 183.00319999999999 20160 14792 0 0 983040 737280 737280 737551 748800 25 25 25 25 327 1 1 2 1 22 0 0 0 0 0 +261 1783720557143156300 REFRESH 3 0 0.7774298212400822 3 11 3 11 1 0 78 23 416 3943926 55200 148.81893920898438 0.99970000000000003 181.82259999999999 20160 14596 0 0 983040 737280 737280 737526 748800 25 25 27 26 313 0 0 0 0 23 0 0 0 0 1 +262 1783720557339460900 REFRESH 43 0 0.77368267473458274 2 13 2 13 0 0 72 14 412 3943902 55200 150.14195251464844 1.016 183.51929999999999 20160 14659 0 0 983040 737280 737280 737502 748800 27 25 32 37 291 0 0 0 0 14 0 0 0 0 0 +263 1783720557534195600 REFRESH 32 0 0.78454753940397914 2 14 2 14 0 0 51 39 420 3943913 55200 149.2357177734375 1.0194000000000001 181.62870000000001 20160 14675 0 0 983040 737280 737280 737513 748800 25 25 27 25 318 2 0 0 0 37 0 0 0 0 0 +264 1783720557729077800 REFRESH 53 0 0.8160820847782132 0 8 0 8 0 0 93 10 416 3943918 55200 149.04319763183594 0.98909999999999998 193.59389999999999 20160 11861 0 0 983040 737280 737280 737518 748800 30 25 29 31 301 0 0 0 0 10 0 0 0 0 0 +265 1783720557947068300 REFRESH 51 0 0.77963246629865568 3 15 3 15 0 0 56 34 415 3943921 55200 149.79788208007812 0.99099999999999999 182.42349999999999 20160 14715 0 0 983040 737280 737280 737521 748800 28 25 33 27 302 0 0 1 1 32 0 0 0 0 0 +266 1783720558142942000 REFRESH 35 0 0.77499788451347806 2 11 2 11 0 0 62 36 409 3943910 55200 150.98060607910156 0.9849 182.88820000000001 20160 14765 0 0 983040 737280 737280 737510 748800 28 25 36 25 295 1 0 2 0 33 0 0 0 0 0 +267 1783720558337718400 REFRESH 57 0 0.78807153704488941 2 13 2 13 0 0 58 31 421 3943902 55200 149.106689453125 0.98419999999999996 180.40649999999999 20160 14606 0 0 983040 737280 737280 737502 748800 25 25 25 26 320 1 0 2 1 27 0 0 0 0 0 +268 1783720558524651200 REFRESH 8 0 0.8362248468028477 2 6 2 6 0 0 93 20 411 3943912 55200 150.38053894042969 0.9879 185.7482 20160 11904 0 0 983040 737280 737280 737512 748800 38 26 28 30 289 0 0 1 0 19 0 0 0 0 0 +269 1783720558729631300 REFRESH 44 0 0.80265676060376068 2 7 2 7 0 0 78 10 412 3943904 55200 149.89619445800781 0.98680000000000001 203.6841 20160 12038 0 0 983040 737280 737280 737504 748800 35 25 31 30 291 0 0 0 0 10 0 0 0 0 0 +270 1783720558921623200 REFRESH 41 0 0.79221422715138645 1 10 1 10 0 0 65 14 407 3943894 55200 148.14784240722656 0.98129999999999995 190.87860000000001 20160 12783 0 0 983040 737280 737280 737494 748800 26 25 27 39 290 0 0 0 0 14 0 0 0 0 0 +271 1783720559117105500 REFRESH 38 0 0.77994870979328335 4 14 4 14 0 0 43 26 418 3943918 55200 150.03648376464844 0.98640000000000005 183.01439999999999 20160 14815 0 0 983040 737280 737280 737518 748800 25 25 26 25 317 0 0 1 0 25 0 0 0 0 0 +272 1783720559315569800 REFRESH 18 0 0.77811885925075097 4 15 4 15 0 0 46 21 424 3943914 55200 150.2371826171875 0.98819999999999997 185.3963 20160 14798 0 0 983040 737280 737280 737514 748800 25 25 25 25 324 1 0 0 1 19 0 0 0 0 0 +273 1783720559513586200 REFRESH 49 0 0.7834234149912358 3 10 3 10 0 0 70 18 415 3943939 55200 150.34185791015625 0.98880000000000001 185.22579999999999 20160 14681 0 0 983040 737280 737280 737539 748800 26 25 29 28 307 0 0 0 0 18 0 0 0 0 0 +274 1783720559706398100 REFRESH 48 0 0.77320324294076559 2 12 2 12 0 0 33 4 419 3943910 55200 148.65203857421875 0.98780000000000001 180.23390000000001 20160 14669 0 0 983040 737280 737280 737510 748800 27 25 31 35 301 0 0 0 0 4 0 0 0 0 0 +275 1783720559900018100 REFRESH 30 0 0.78705375749110895 2 12 2 12 1 0 65 18 405 3943939 55200 148.99200439453125 0.98570000000000002 180.74449999999999 20160 14679 0 0 983040 737280 737280 737539 748800 28 25 32 37 283 0 0 1 0 17 0 0 0 0 1 +276 1783720560083576300 REFRESH 12 0 0.96194273903112171 3 8 3 8 0 0 101 19 410 3943929 55200 149.95571899414062 0.99009999999999998 182.36660000000001 20160 12158 0 0 983040 737280 737280 737529 748800 34 25 42 33 276 0 0 0 0 19 0 0 0 0 0 +277 1783720560279054000 REFRESH 46 0 0.78253511104003304 2 15 2 15 0 0 53 27 420 3943930 55200 150.86592102050781 0.98070000000000002 183.1163 20160 14598 0 0 983040 737280 737280 737530 748800 25 25 25 25 320 0 1 0 1 25 0 0 0 0 0 +278 1783720560472410400 REFRESH 39 0 0.77837563420555433 2 12 2 12 0 0 80 18 409 3943876 55200 150.02931213378906 0.98609999999999998 181.41759999999999 20160 14601 0 0 983040 737280 737280 737476 748800 26 25 25 28 305 0 0 0 2 16 0 0 0 0 0 +279 1783720560663974800 REFRESH 16 0 0.828180641098613 2 8 2 8 0 0 110 15 410 3943918 55200 149.31455993652344 0.98619999999999997 190.26079999999999 20160 12012 0 0 983040 737280 737280 737518 748800 35 25 26 29 295 0 0 0 0 15 0 0 0 0 0 +280 1783720560890669800 REFRESH 52 0 0.78611434153535986 1 9 1 9 0 0 53 12 420 3943902 55200 148.34176635742188 0.98650000000000004 225.44880000000001 20160 13966 0 0 983040 737280 737280 737502 748800 72 25 47 75 201 0 0 0 0 12 0 0 0 0 0 +281 1783720561078493900 REFRESH 14 0 0.85638197832619911 0 12 0 12 1 0 74 13 413 3943918 55200 150.0948486328125 0.98570000000000002 186.76669999999999 20160 12180 0 0 983040 737280 737280 737518 748800 59 25 27 53 249 0 0 0 0 13 0 0 0 0 1 +282 1783720561282567600 REFRESH 40 0 0.78552104811774215 3 13 3 13 1 0 55 31 416 3943895 55200 148.95391845703125 0.98780000000000001 179.23400000000001 20160 14710 0 0 983040 737280 737280 737495 748800 29 25 28 25 309 1 0 3 1 26 0 0 0 0 1 +283 1783720561481153600 REFRESH 27 0 0.77042878765422695 0 14 0 14 0 0 53 30 412 3943948 55200 150.65805053710938 0.98880000000000001 183.1207 20160 14649 0 0 983040 737280 737280 737548 748800 27 25 25 30 305 0 0 0 1 29 0 0 0 0 0 +284 1783720561698769400 REFRESH 47 0 0.81850415774592766 2 11 2 11 0 0 84 12 421 3943908 55200 149.55314636230469 0.98609999999999998 181.31 20160 12132 0 0 983040 737280 737280 737508 748800 35 25 25 28 308 0 0 0 0 12 0 0 0 0 0 +285 1783720561898853400 REFRESH 36 0 0.77588402660968714 3 10 3 10 0 0 62 32 423 3943913 55200 150.62835693359375 0.98650000000000004 184.4196 20160 14685 0 0 983040 737280 737280 737511 748800 25 25 25 26 322 0 1 2 0 29 0 0 0 0 0 +286 1783720562096799000 REFRESH 20 0 0.77452576919420746 3 12 3 12 0 0 55 13 419 3943886 55200 150.06924438476562 0.98480000000000001 182.1456 20160 14674 0 0 983040 737280 737280 737486 748800 25 25 25 26 318 0 0 1 0 12 0 0 0 0 0 +287 1783720562282733300 REFRESH 25 0 0.80480747048309909 3 11 3 11 0 0 67 13 414 3943902 55200 149.74362182617188 1.0590999999999999 184.78280000000001 20160 11963 0 0 983040 737280 737280 737501 748800 67 25 35 42 245 0 0 1 0 12 0 0 0 0 0 +288 1783720562484216600 REFRESH 5 0 0.77892560965063673 2 12 2 12 0 0 41 14 406 3943914 55200 149.45564270019531 0.98829999999999996 179.374 20160 14559 0 0 983040 737280 737280 737514 748800 33 25 30 31 287 0 0 0 1 13 0 0 0 0 0 +289 1783720562689299600 REFRESH 19 0 0.77882586406785759 3 11 3 11 0 0 73 13 427 3943886 55200 149.8839111328125 0.98699999999999999 182.23650000000001 20160 14554 0 0 983040 737280 737280 737486 748800 25 25 25 25 327 0 0 0 0 13 0 0 0 0 0 +290 1783720562936155500 REFRESH 4 0 0.77080609282823842 1 13 1 13 0 0 33 11 413 3943906 55200 148.26495361328125 0.98750000000000004 181.22739999999999 20160 14733 0 0 983040 737280 737280 737506 748800 28 25 27 25 308 2 0 0 1 8 0 0 0 0 0 +291 1783720563137112100 REFRESH 22 0 0.77477481647705659 3 12 3 12 1 0 79 16 417 3943911 55200 150.33241271972656 0.98829999999999996 183.9555 20160 14585 0 0 983040 737280 737280 737511 748800 25 25 25 25 317 0 0 0 0 16 0 0 0 0 1 +292 1783720563340387300 REFRESH 37 0 0.7893665490293541 2 13 2 13 0 0 50 18 412 3943944 55200 149.80198669433594 0.98960000000000004 187.7739 20160 14800 0 0 983040 737280 737280 737544 748800 25 25 25 25 312 1 0 1 1 15 0 0 0 0 0 +293 1783720563548735900 REFRESH 29 0 0.77901700373351201 2 12 2 12 0 0 69 17 422 3943925 55200 149.55110168457031 0.98929999999999996 183.19220000000001 20160 14627 0 0 983040 737280 737280 737525 748800 25 25 25 25 322 0 0 0 0 17 0 0 0 0 0 +294 1783720563754682700 REFRESH 0 0 0.77633671493082812 1 12 1 12 0 0 48 19 428 3943907 55200 149.23469543457031 0.98970000000000002 181.75999999999999 20160 14698 0 0 983040 737280 737280 737507 748800 26 25 25 26 326 0 0 0 1 18 0 0 0 0 0 +295 1783720563953314800 REFRESH 23 0 0.7834860179962353 3 14 3 14 0 0 51 25 419 3943924 55200 149.9525146484375 0.98660000000000003 183.03270000000001 20160 14849 0 0 983040 737280 737280 737523 748800 25 25 25 25 319 0 0 1 0 24 0 0 0 0 0 +296 1783720564153544300 REFRESH 58 0 0.78956929726763903 2 13 2 13 0 0 54 34 419 3943903 55200 150.68159484863281 0.98460000000000003 183.6917 20160 14737 0 0 983040 737280 737280 737503 748800 26 25 26 27 315 1 0 1 1 31 0 0 0 0 0 +297 1783720564352443500 REFRESH 55 0 0.85643870834009594 5 14 5 14 0 0 77 13 415 3943901 55200 149.71495056152344 0.98629999999999995 182.202 20160 12122 0 0 983040 737280 737280 737501 748800 25 25 25 25 315 0 0 1 0 12 0 0 0 0 0 +298 1783720564574711300 REFRESH 56 0 1.0736796550221459 2 5 2 5 0 0 99 9 423 3943922 55200 150.27098083496094 0.98809999999999998 221.03559999999999 20160 12439 0 0 983040 737280 737280 737522 748800 101 25 64 114 119 0 0 0 0 9 0 0 0 0 0 +299 1783720564779201500 REFRESH 26 0 0.77948260292177673 1 13 1 13 0 0 52 17 410 3943921 55200 149.09542846679688 0.98580000000000001 179.62010000000001 20160 14497 0 0 983040 737280 737280 737521 748800 28 25 28 50 279 1 0 0 1 15 0 0 0 0 0 +300 1783720564973775500 REFRESH 9 0 0.87707613630806958 2 7 2 7 0 0 85 15 409 3943920 55200 149.71699523925781 0.98650000000000004 193.4701 20160 12036 0 0 983040 737280 737280 737519 748800 25 25 25 25 309 0 0 0 0 15 0 0 0 0 0 +301 1783720565172920600 REFRESH 10 0 0.78380131070289261 1 11 1 11 0 0 60 29 422 3943920 55200 150.33753967285156 0.9869 183.52119999999999 20160 14713 0 0 983040 737280 737280 737520 748800 25 25 25 25 322 1 0 1 0 27 0 0 0 0 0 +302 1783720565375967700 REFRESH 31 0 0.84124563118385765 2 7 2 7 1 0 50 12 410 3943918 55200 150.0712890625 0.98839999999999995 201.89410000000001 20160 12821 0 0 983040 737280 737280 737517 748800 33 25 36 74 242 0 0 0 0 12 0 0 0 0 1 +303 1783720565574595500 REFRESH 42 0 0.78658791790365046 3 13 3 13 0 0 54 36 419 3943918 55200 150.03443908691406 0.99819999999999998 182.6344 20160 14808 0 0 983040 737280 737280 737517 748800 25 25 25 27 317 0 0 0 0 36 0 0 0 0 0 +304 1783720566880921400 DEPTH 1 1 1.0047169079192755 1 9 1 9 1 0 61 58 2570 23664818 81600 852.60049438476562 6.0057 1283.7625 120960 70448 1 0 5898240 4423680 4423680 4426418 4492800 150 150 152 164 1954 1 0 3 0 54 0 0 0 0 2 +305 1783720568232119400 DEPTH 13 1 0.99422874153682184 1 6 1 6 0 0 123 52 2510 23664878 81600 853.99235534667969 5.9265999999999996 1309.4808 120960 58682 1 0 5898240 4423680 4423680 4426477 4492800 167 150 152 160 1881 0 0 0 0 52 0 0 0 0 0 +306 1783720569582539600 DEPTH 17 1 0.97514620909645133 0 7 0 7 1 0 101 33 2550 23664849 81600 851.85842895507812 5.9310999999999998 1349.2554 120960 59791 1 0 5898240 4423680 4423680 4426448 4492800 244 150 256 408 1492 0 0 0 0 33 0 0 0 0 1 +307 1783720570628746700 DEPTH 12 1 0.93508832986779256 3 8 3 8 0 0 105 91 2510 23664927 81600 852.17033386230469 5.9161999999999999 1045.0496000000001 120960 60077 1 0 5898240 4423680 4423680 4426525 4492800 156 150 150 150 1904 1 0 0 0 90 0 0 0 0 0 +308 1783720571741369800 DEPTH 21 1 0.8797444017263788 1 13 0 10 1 0 74 157 2572 23664826 81600 860.15992736816406 5.9147999999999996 1071.4626000000001 120960 68978 1 0 5898240 4423680 4423680 4426425 4492800 150 150 154 150 1968 0 1 5 0 151 0 0 0 0 3 +309 1783720572831948000 DEPTH 50 1 0.87785751406067059 2 9 2 9 0 0 86 36 2577 23664916 81600 855.69039916992188 5.9454000000000002 1054.0829000000001 120960 61176 1 0 5898240 4423680 4423680 4426515 4492800 156 150 162 185 1924 0 0 0 0 36 0 0 0 0 0 +310 1783720574229506300 DEPTH 56 1 0.9263411389693702 2 5 2 5 0 0 102 29 2602 23664853 81600 854.47491455078125 5.9907000000000004 1330.8641 120960 58436 1 0 5898240 4423680 4423680 4426448 4492800 221 150 177 235 1819 0 1 0 0 28 0 0 0 0 0 +311 1783720575277993900 DEPTH 45 1 0.84526708193428846 1 12 1 12 1 0 65 84 2550 23664861 81600 853.49862670898438 5.9914999999999994 1047.2282 120960 68490 1 0 5898240 4423680 4423680 4426461 4492800 154 150 150 150 1946 0 0 1 0 83 0 0 0 0 3 +312 1783720576535557600 DEPTH 21 1 1.0849120979740219 0 10 0 10 1 0 95 176 2570 23664826 81600 850.6744384765625 5.9245000000000001 1256.4403 120960 56815 1 0 5898240 4423680 4423680 4426425 4492800 150 150 150 150 1970 0 0 2 1 173 0 0 0 0 2 +313 1783720577829930600 DEPTH 14 1 0.83912818796293753 0 12 0 12 1 0 74 53 2584 23664761 81600 857.63529968261719 5.9198000000000004 1293.2256 120960 58093 1 0 5898240 4423680 4423680 4426355 4492800 150 150 150 150 1984 0 0 0 0 53 0 0 0 0 1 +314 1783720579123314600 DEPTH 53 1 0.83135955469646472 0 8 0 8 0 0 94 77 2516 23664876 81600 854.525146484375 5.9349999999999996 1268.5255999999999 120960 56349 1 0 5898240 4423680 4423680 4426476 4492800 150 150 150 150 1916 0 0 0 0 77 0 0 0 0 0 +315 1783720580187990200 DEPTH 8 1 0.83137530532596571 2 6 2 6 0 0 99 89 2479 23664921 81600 861.11526489257812 5.9229999999999992 1063.5943 120960 57128 1 0 5898240 4423680 4423680 4426521 4492800 166 155 155 168 1835 1 1 0 0 87 0 0 0 0 0 +316 1783720581537982400 DEPTH 11 1 0.82954816056985803 0 8 0 8 1 0 68 24 2593 23664860 81600 848.78761291503906 5.9192999999999998 1337.1474000000001 120960 58030 1 0 5898240 4423680 4423680 4426458 4492800 203 150 167 292 1781 0 0 0 0 24 0 0 0 0 1 +317 1783720582610965100 DEPTH 16 1 0.81647825789721329 2 8 2 8 0 0 115 90 2523 23664927 81600 859.51922607421875 6.0949999999999998 1071.8688999999999 120960 58998 1 0 5898240 4423680 4423680 4426526 4492800 156 150 150 150 1917 0 0 0 0 90 0 0 0 0 0 +318 1783720583945300900 DEPTH 56 1 0.87136068890638885 2 5 2 5 0 0 106 20 2601 23664897 81600 844.98439025878906 5.9405000000000001 1333.0663 120960 47325 1 0 5898240 4423680 4423680 4426495 4492800 211 150 183 284 1773 0 0 0 0 20 0 0 0 0 0 +319 1783720585296490800 DEPTH 13 1 0.87536289899252473 1 6 1 6 1 0 124 60 2518 23664885 81600 844.27133178710938 5.9159999999999995 1302.1844000000001 120960 47112 1 0 5898240 4423680 4423680 4426484 4492800 170 150 155 170 1873 1 0 0 0 59 0 0 0 0 1 +320 1783720586571147400 DEPTH 21 1 1.0677941919132812 0 10 0 10 1 0 106 148 2533 23664908 81600 844.12620544433594 5.9276000000000009 1273.4407000000001 120960 46698 1 0 5898240 4423680 4423680 4426507 4492800 150 150 150 150 1933 0 0 0 2 146 0 0 0 0 1 +321 1783720587848880700 DEPTH 1 1 0.89469240544216333 1 9 1 9 1 0 65 56 2568 23664903 81600 846.79521179199219 5.9249999999999998 1276.4297999999999 120960 58024 1 0 5898240 4423680 4423680 4426503 4492800 157 150 156 166 1939 0 1 1 0 54 0 0 0 0 2 +322 1783720589200556000 DEPTH 17 1 0.87910929584419117 0 7 0 7 1 0 102 45 2541 23664839 81600 846.14179992675781 5.9310999999999998 1338.9434000000001 120960 48854 1 0 5898240 4423680 4423680 4426438 4492800 226 150 252 509 1404 0 0 0 0 45 0 0 0 0 1 +323 1783720590251158600 DEPTH 55 1 0.83637256490931822 5 14 5 14 0 0 80 37 2609 23664856 81600 857.39845275878906 5.9145000000000003 1049.4313999999999 120960 60043 1 1 5898240 4423680 4423680 4426455 4492800 150 150 150 150 2009 0 0 2 0 34 0 0 0 0 0 +324 1783720591546468300 DEPTH 9 1 0.85210355761744461 2 7 2 7 0 0 88 42 2588 23664880 81600 856.52210998535156 5.9385000000000003 1294.2630999999999 120960 56810 1 0 5898240 4423680 4423680 4426479 4492800 150 150 150 150 1988 0 0 0 0 42 0 0 0 0 0 +325 1783720592599954000 DEPTH 47 1 0.80479257383793568 2 11 2 11 1 0 86 43 2582 23664857 81600 856.61590576171875 5.9154 1052.1378999999999 120960 59359 1 0 5898240 4423680 4423680 4426455 4492800 156 150 150 150 1976 0 1 0 0 42 0 0 0 0 1 +326 1783720593963697900 DEPTH 56 1 0.85762381615938998 2 5 2 5 0 0 111 20 2608 23664785 81600 839.00408935546875 5.9864000000000006 1318.2946999999999 120960 37608 1 0 5898240 4423680 4423680 4426382 4492800 238 150 193 316 1711 0 0 1 0 19 0 0 0 0 0 +327 1783720595298137900 DEPTH 44 1 0.79677536280739658 2 7 2 7 0 0 81 49 2563 23664890 81600 853.5909423828125 5.9649000000000001 1314.1803 120960 59100 1 0 5898240 4423680 4423680 4426487 4492800 150 150 150 150 1963 0 0 0 0 49 0 0 0 0 0 +328 1783720596580086300 DEPTH 21 1 1.0142724350546171 0 10 0 10 1 0 112 91 2526 23664845 81600 840.54005432128906 5.9302000000000001 1280.7244000000001 120960 33833 1 0 5898240 4423680 4423680 4426445 4492800 151 150 150 150 1925 0 2 0 0 89 0 0 0 0 3 +329 1783720597646125700 DEPTH 12 1 0.88045456854772053 3 8 3 8 0 0 107 84 2502 23664853 81600 843.46218872070312 5.9233000000000002 1041.6954000000001 120960 48774 1 0 5898240 4423680 4423680 4426451 4492800 155 150 150 150 1897 3 0 0 0 81 0 0 0 0 0 +330 1783720598989366600 DEPTH 31 1 0.83021066754971362 2 7 2 7 0 0 50 42 2559 23664891 81600 847.21150207519531 5.9153000000000002 1291.3130000000001 120960 59577 1 0 5898240 4423680 4423680 4426489 4492800 156 150 172 270 1811 1 0 0 0 41 0 0 0 0 0 +331 1783720600294711100 DEPTH 13 1 0.84883659071635253 1 6 1 6 0 0 127 53 2501 23664916 81600 839.68119812011719 5.9208999999999996 1304.2102 120960 38017 1 0 5898240 4423680 4423680 4426516 4492800 175 150 157 176 1843 0 0 0 0 53 0 0 0 0 0 +332 1783720601344708900 DEPTH 50 1 0.8382979196856426 2 9 2 9 0 0 86 38 2569 23664842 81600 848.67071533203125 5.9165000000000001 1048.7483999999999 120960 49252 1 0 5898240 4423680 4423680 4426439 4492800 156 150 162 220 1881 0 0 0 0 38 0 0 0 0 0 +333 1783720602476392800 DEPTH 25 1 0.79212751220871058 3 11 3 11 0 0 69 36 2545 23664795 81600 856.79299926757812 5.9337999999999997 1049.5335 120960 59963 1 0 5898240 4423680 4423680 4426393 4492800 168 150 150 150 1927 0 0 0 0 36 0 0 0 0 0 +334 1783720603844513200 DEPTH 54 1 0.78963584337472303 1 8 1 8 0 0 65 34 2532 23664870 81600 851.42010498046875 5.9298000000000002 1325.7411 120960 59102 1 0 5898240 4423680 4423680 4426468 4492800 170 150 183 181 1848 0 0 0 0 34 0 0 0 0 0 +335 1783720605223755600 DEPTH 56 1 0.85503682147683946 2 5 2 5 0 0 115 26 2603 23664896 81600 836.29864501953125 5.926099999999999 1316.3069 120960 26251 1 0 5898240 4423680 4423680 4426493 4492800 247 150 196 347 1663 0 0 0 1 25 0 0 0 0 0 +336 1783720605442854000 REFRESH 54 0 0.55286764403805988 1 8 1 8 0 0 66 12 420 3943904 55200 148.67251586914062 0.99150000000000005 217.8595 20160 12537 0 0 983040 737280 737280 737504 748800 74 25 78 67 176 0 0 0 0 12 0 0 0 0 0 +337 1783720605644317900 REFRESH 19 0 0.76851341077358137 3 11 3 11 1 0 77 14 424 3943870 55200 150.498046875 0.99360000000000004 185.16900000000001 20160 14536 0 0 983040 737280 737280 737470 748800 25 25 25 25 324 1 0 0 0 13 0 0 0 0 1 +338 1783720605838791700 REFRESH 38 0 0.7686249148069032 4 14 4 14 0 0 45 24 418 3943920 55200 149.53779602050781 0.98770000000000002 181.18340000000001 20160 14738 0 0 983040 737280 737280 737520 748800 26 25 26 25 316 2 0 1 1 20 0 0 0 0 0 +339 1783720606038929600 REFRESH 37 0 0.77700359253555407 2 13 2 13 0 0 54 21 411 3943923 55200 149.63302612304688 0.98699999999999999 183.316 20160 14749 0 0 983040 737280 737280 737523 748800 25 25 25 25 311 1 0 1 0 19 0 0 0 0 0 +340 1783720606233525600 REFRESH 40 0 0.77377366622526755 3 13 3 13 0 0 58 30 409 3943925 55200 148.59468078613281 0.98119999999999996 178.37289999999999 20160 14733 0 0 983040 737280 737280 737525 748800 30 25 29 28 297 0 0 2 2 26 0 0 0 0 0 +341 1783720606438222400 REFRESH 22 0 0.76453919719998953 3 12 3 12 0 0 79 12 420 3943962 55200 149.51242065429688 0.98580000000000001 184.11259999999999 20160 14491 0 0 983040 737280 737280 737561 748800 25 25 25 25 320 0 1 0 0 11 0 0 0 0 0 +342 1783720606635724000 REFRESH 48 0 0.75833453214388935 2 12 2 12 0 0 33 3 415 3943902 55200 148.92851257324219 1.0043 181.90209999999999 20160 14468 0 0 983040 737280 737280 737502 748800 27 25 33 36 294 0 0 0 0 3 0 0 0 0 0 +343 1783720606829047900 REFRESH 1 0 0.91881186835421236 1 9 1 9 0 0 65 13 424 3943936 55200 149.359619140625 0.98660000000000003 192.21510000000001 20160 12870 0 0 983040 737280 737280 737536 748800 42 25 35 40 282 0 0 0 0 13 0 0 0 0 0 +344 1783720607031891500 REFRESH 4 0 0.7615548880110159 1 13 1 13 0 0 36 12 418 3943922 55200 148.68476867675781 0.98550000000000004 180.60839999999999 20160 14727 0 0 983040 737280 737280 737522 748800 28 25 28 25 312 2 0 0 0 10 0 0 0 0 0 +345 1783720607214454600 REFRESH 45 0 0.82912369007818576 1 12 1 12 1 0 66 15 409 3943903 55200 149.68524169921875 0.98329999999999995 181.2704 20160 12710 0 0 983040 737280 737280 737502 748800 37 25 29 28 290 0 0 0 0 15 0 0 0 0 1 +346 1783720607405948700 REFRESH 21 0 1.0666509498437777 0 10 0 10 0 0 112 14 411 3943924 55200 149.57568359375 0.98919999999999997 190.2945 20160 11983 0 0 983040 737280 737280 737523 748800 33 25 32 27 294 0 0 0 0 14 0 0 0 0 0 +347 1783720607607473800 REFRESH 15 0 0.76477550279050011 3 12 3 12 0 0 62 16 422 3943906 55200 149.36575317382812 0.99360000000000004 185.33779999999999 20160 14456 0 0 983040 737280 737280 737506 748800 25 25 26 25 321 0 0 1 0 15 0 0 0 0 0 +348 1783720607806389100 REFRESH 29 0 0.76898560259910897 2 12 2 12 0 0 71 14 421 3943918 55200 149.96479797363281 0.98650000000000004 183.50819999999999 20160 14583 0 0 983040 737280 737280 737518 748800 25 25 25 25 321 0 0 0 0 14 0 0 0 0 0 +349 1783720608007433400 REFRESH 13 0 0.90112834852833523 1 6 1 6 0 0 128 6 413 3943910 55200 149.73234558105469 0.98799999999999999 199.67660000000001 20160 12190 0 0 983040 737280 737280 737510 748800 126 25 35 85 142 0 0 0 0 6 0 0 0 0 0 +350 1783720608218703300 REFRESH 33 0 0.77996094566731022 1 9 1 9 0 0 84 18 422 3943882 55200 151.24479675292969 0.98629999999999995 186.2038 20160 13635 0 0 983040 737280 737280 737482 748800 39 25 29 33 296 0 0 1 0 17 0 0 0 0 0 +351 1783720608421645900 REFRESH 51 0 0.76920953044587492 3 15 3 15 0 0 59 33 415 3943884 55200 149.21626281738281 0.98650000000000004 182.31440000000001 20160 14661 0 0 983040 737280 737280 737484 748800 28 25 34 29 299 0 0 2 2 29 0 0 0 0 0 +352 1783720608619525900 REFRESH 34 0 0.7775874026655617 1 14 1 14 0 0 60 31 414 3943920 55200 149.65657043457031 0.98429999999999995 181.80269999999999 20160 14830 0 0 983040 737280 737280 737520 748800 28 26 27 31 302 0 0 0 3 28 0 0 0 0 0 +353 1783720608803029900 REFRESH 47 0 0.79190421664117616 2 11 2 11 1 0 86 14 421 3943913 55200 148.86810302734375 0.98719999999999997 182.0692 20160 11952 0 0 983040 737280 737280 737513 748800 35 25 26 25 310 0 0 0 0 14 0 0 0 0 1 +354 1783720609034977800 REFRESH 17 0 0.96339052467600927 0 7 0 7 0 0 103 6 420 3943941 55200 150.07846069335938 0.98819999999999997 230.8665 20160 12505 0 0 983040 737280 737280 737541 748800 89 25 71 116 119 0 0 0 1 5 0 0 0 0 0 +355 1783720609324822200 REFRESH 52 0 0.78025396414163406 1 9 1 9 0 0 56 11 418 3943897 55200 148.4083251953125 0.98750000000000004 227.26750000000001 20160 13758 0 0 983040 737280 737280 737497 748800 75 25 49 80 189 1 0 0 0 10 0 0 0 0 0 +356 1783720609541665400 REFRESH 41 0 0.78460017439813379 1 10 1 10 0 0 67 14 410 3943897 55200 148.12570190429688 0.98609999999999998 190.04929999999999 20160 12799 0 0 983040 737280 737280 737497 748800 28 25 27 48 282 0 0 0 0 14 0 0 0 0 0 +357 1783720609741462000 REFRESH 9 0 0.84873488811080833 2 7 2 7 0 0 88 11 415 3943890 55200 149.24697875976562 0.98640000000000005 198.67580000000001 20160 11997 0 0 983040 737280 737280 737490 748800 25 25 25 25 315 0 0 0 0 11 0 0 0 0 0 +358 1783720609943386800 REFRESH 24 0 0.7745200330040467 3 13 3 13 0 0 61 30 413 3943890 55200 150.63040161132812 0.98909999999999998 184.08019999999999 20160 14732 0 0 983040 737280 737280 737489 748800 28 25 28 30 302 1 0 1 0 28 0 0 0 0 0 +359 1783720610175549700 REFRESH 11 0 0.8250276394309245 0 8 0 8 0 0 68 13 417 3943896 55200 148.46054077148438 0.98440000000000005 231.04759999999999 20160 12455 0 0 983040 737280 737280 737496 748800 88 25 44 105 155 0 0 0 0 13 0 0 0 0 0 +360 1783720610363856300 REFRESH 14 0 0.82400843519279809 0 12 0 12 1 0 76 14 414 3943911 55200 150.00166320800781 0.98899999999999999 187.18559999999999 20160 12316 0 0 983040 737280 737280 737511 748800 91 25 29 55 214 1 0 0 0 13 0 0 0 0 1 +361 1783720610572105300 REFRESH 7 0 0.7695371552186292 2 12 2 12 0 0 70 16 414 3943927 55200 150.02006530761719 0.98640000000000005 182.79419999999999 20160 14638 0 0 983040 737280 737280 737527 748800 25 25 36 29 299 0 0 0 0 16 0 0 0 0 0 +362 1783720610759652900 REFRESH 16 0 0.80604646584327677 2 8 2 8 0 0 116 15 406 3943935 55200 150.47474670410156 0.98550000000000004 186.31379999999999 20160 11889 0 0 983040 737280 737280 737535 748800 59 25 27 29 266 0 0 0 1 14 0 0 0 0 0 +363 1783720610961496100 REFRESH 43 0 0.76578645234577236 2 13 2 13 1 0 72 14 411 3943898 55200 149.98623657226562 1.0007999999999999 185.4229 20160 14707 0 0 983040 737280 737280 737498 748800 27 25 31 38 290 0 0 1 0 13 0 0 0 0 1 +364 1783720611163031400 REFRESH 46 0 0.77205684824061183 2 15 2 15 0 0 54 23 420 3943907 55200 151.04010009765625 0.98650000000000004 184.77350000000001 20160 14665 0 0 983040 737280 737280 737507 748800 25 25 26 25 319 1 0 1 0 21 0 0 0 0 0 +365 1783720611360819200 REFRESH 42 0 0.77482760351225155 3 13 3 13 0 0 60 30 419 3943919 55200 149.83576965332031 0.98740000000000006 182.35319999999999 20160 14782 0 0 983040 737280 737280 737519 748800 25 25 26 25 318 1 0 0 1 28 0 0 0 0 0 +366 1783720611595068600 REFRESH 2 0 0.77820609344533065 2 13 2 13 0 0 54 21 425 3943914 55200 150.26278686523438 0.98570000000000002 183.37989999999999 20160 14773 0 0 983040 737280 737280 737514 748800 25 25 25 25 325 0 0 2 1 18 0 0 0 0 0 +367 1783720611804403600 REFRESH 44 0 0.79064354695797767 2 7 2 7 0 0 81 13 416 3943908 55200 148.92236328125 0.98809999999999998 208.09639999999999 20160 12103 0 0 983040 737280 737280 737508 748800 53 25 29 28 281 0 0 0 0 13 0 0 0 0 0 +368 1783720612003052000 REFRESH 26 0 0.76998983392996811 1 13 1 13 0 0 53 16 417 3943908 55200 149.19552612304688 1.1466000000000001 182.5754 20160 14469 0 0 983040 737280 737280 737508 748800 28 25 29 43 292 1 0 0 0 15 0 0 0 0 0 +369 1783720612204497700 REFRESH 23 0 0.77229990094908829 3 14 3 14 0 0 57 26 420 3943933 55200 150.39181518554688 0.98799999999999999 183.77369999999999 20160 14678 0 0 983040 737280 737280 737533 748800 25 25 25 25 320 0 0 1 0 25 0 0 0 0 0 +370 1783720612397444300 REFRESH 3 0 0.77009995451533231 3 11 3 11 1 0 79 19 416 3943939 55200 148.98483276367188 0.98770000000000002 180.9513 20160 14473 0 0 983040 737280 737280 737539 748800 25 25 26 26 314 0 0 0 0 19 0 0 0 0 1 +371 1783720612597243900 REFRESH 6 0 0.77274877224024685 3 14 3 14 0 0 56 25 421 3943890 55200 149.45388793945312 0.98819999999999997 182.57919999999999 20160 14718 0 0 983040 737280 737280 737490 748800 26 25 26 26 318 1 0 0 0 24 0 0 0 0 0 +372 1783720612805276300 REFRESH 20 0 0.76584508922286421 3 12 3 12 0 0 56 17 417 3943916 55200 149.46917724609375 1.0123 182.82210000000001 20160 14584 0 0 983040 737280 737280 737516 748800 25 25 25 26 316 0 0 1 0 16 0 0 0 0 0 +373 1783720613004210300 REFRESH 31 0 0.82062015992508786 2 7 2 7 0 0 51 5 407 3943899 55200 148.33970642089844 0.98860000000000003 197.77350000000001 20160 12814 0 0 983040 737280 737280 737498 748800 49 25 37 79 217 0 0 0 0 5 0 0 0 0 0 +374 1783720613209458000 REFRESH 36 0 0.76814679868222091 3 10 3 10 0 0 67 33 421 3943896 55200 150.3846435546875 0.99050000000000005 189.369 20160 14749 0 0 983040 737280 737280 737496 748800 25 25 25 26 320 0 0 0 1 32 0 0 0 0 0 +375 1783720613409980000 REFRESH 30 0 0.77814933958160037 2 12 2 12 0 0 66 18 410 3943927 55200 149.30021667480469 0.98699999999999999 184.44139999999999 20160 14537 0 0 983040 737280 737280 737526 748800 28 25 35 45 277 0 0 1 0 17 0 0 0 0 0 +376 1783720613592892000 REFRESH 12 0 0.88897418124039862 3 8 3 8 0 0 107 19 410 3943906 55200 149.95660400390625 0.99039999999999995 181.82320000000001 20160 12081 0 0 983040 737280 737280 737506 748800 42 25 39 33 271 0 0 0 0 19 0 0 0 0 0 +377 1783720613796612100 REFRESH 28 0 0.76615958487845837 2 13 2 13 0 0 72 14 400 3943895 55200 150.58915710449219 0.9859 182.68600000000001 20160 14568 0 0 983040 737280 737280 737494 748800 25 25 25 30 295 0 0 0 0 14 0 0 0 0 0 +378 1783720614000290600 REFRESH 0 0 0.76832517860344829 1 12 1 12 0 0 51 20 426 3943875 55200 149.91065979003906 0.98760000000000003 181.95079999999999 20160 14802 0 0 983040 737280 737280 737474 748800 26 25 25 26 324 1 0 0 1 18 0 0 0 0 0 +379 1783720614206461200 REFRESH 32 0 0.77545318228565008 2 14 2 14 0 0 55 30 414 3943921 55200 149.34938049316406 0.99039999999999995 183.02330000000001 20160 14812 0 0 983040 737280 737280 737519 748800 26 25 25 25 313 1 0 0 0 29 0 0 0 0 0 +380 1783720614391266700 REFRESH 25 0 0.78064070684993569 3 11 3 11 0 0 69 10 422 3943906 55200 150.476806640625 0.98819999999999997 183.64490000000001 20160 12187 0 0 983040 737280 737280 737506 748800 83 25 35 44 235 0 0 0 0 10 0 0 0 0 0 +381 1783720614588719300 REFRESH 5 0 0.77050481172778407 2 12 2 12 0 0 42 14 413 3943914 55200 149.06159973144531 0.98499999999999999 179.56659999999999 20160 14619 0 0 983040 737280 737280 737514 748800 38 25 30 36 284 0 0 0 0 14 0 0 0 0 0 +382 1783720614789427300 REFRESH 18 0 0.76867632014571274 4 15 4 15 0 0 48 21 426 3943877 55200 151.30522155761719 0.98740000000000006 185.28540000000001 20160 14707 0 0 983040 737280 737280 737477 748800 26 25 25 27 323 0 0 0 1 20 0 0 0 0 0 +383 1783720615016064800 REFRESH 56 0 1.004549498402858 2 5 2 5 0 0 115 9 424 3943912 55200 150.42355346679688 0.98519999999999996 225.42910000000001 20160 12141 0 0 983040 737280 737280 737512 748800 114 25 58 109 118 0 0 0 0 9 0 0 0 0 0 +384 1783720615223639300 REFRESH 58 0 0.77898140694983731 2 13 2 13 0 0 59 31 415 3943903 55200 149.92588806152344 0.98229999999999995 182.71680000000001 20160 14700 0 0 983040 737280 737280 737503 748800 26 25 27 26 311 0 0 2 0 29 0 0 0 0 0 +385 1783720615491466200 REFRESH 27 0 0.76324143384852172 0 14 0 14 0 0 55 27 418 3943906 55200 150.05081176757812 0.98770000000000002 184.28139999999999 20160 14723 0 0 983040 737280 737280 737506 748800 27 25 26 28 312 1 0 1 0 25 0 0 0 0 0 +386 1783720615692395200 REFRESH 35 0 0.76869143228999237 2 11 2 11 0 0 70 30 418 3943907 55200 150.38053894042969 0.98650000000000004 185.1677 20160 14674 0 0 983040 737280 737280 737507 748800 29 25 35 25 304 0 1 1 1 27 0 0 0 0 0 +387 1783720615877079000 REFRESH 50 0 0.84146749045917613 2 9 2 9 0 0 86 9 422 3943912 55200 150.18290710449219 0.99429999999999996 183.4701 20160 13036 0 0 983040 737280 737280 737512 748800 135 25 39 77 146 0 0 0 0 9 0 0 0 0 0 +388 1783720616077139000 REFRESH 57 0 0.77915153053266861 2 13 2 13 0 0 60 25 416 3943884 55200 150.04556274414062 0.99080000000000001 183.15190000000001 20160 14793 0 0 983040 737280 737280 737483 748800 25 25 25 29 312 0 0 0 1 24 0 0 0 0 0 +389 1783720616286850200 REFRESH 49 0 0.77608045268889181 3 10 3 10 1 0 75 18 420 3943914 55200 149.49784851074219 0.98299999999999998 183.06309999999999 20160 14537 0 0 983040 737280 737280 737514 748800 29 25 29 31 306 1 0 1 0 16 0 0 0 0 1 +390 1783720616470940300 REFRESH 55 0 0.81972671549784326 5 14 4 14 1 0 80 14 418 3943893 55200 149.68013000488281 0.98709999999999998 182.90639999999999 20160 11967 0 0 983040 737280 737280 737493 748800 25 25 25 25 318 0 0 1 0 13 0 0 0 0 1 +391 1783720616670485000 REFRESH 10 0 0.7759851113655134 1 11 1 11 0 0 67 35 424 3943921 55200 150.289306640625 0.98719999999999997 182.696 20160 14748 0 0 983040 737280 737280 737520 748800 25 25 25 25 324 1 1 0 0 33 0 0 0 0 0 +392 1783720616860073900 REFRESH 53 0 0.82782638938393938 0 8 0 8 1 0 94 11 408 3943903 55200 149.13536071777344 0.98760000000000003 188.3485 20160 11867 0 0 983040 737280 737280 737503 748800 37 25 30 29 287 0 0 0 0 11 0 0 0 0 1 +393 1783720617062300900 REFRESH 39 0 0.77093998107576467 2 12 2 12 1 0 84 18 410 3943941 55200 150.48165893554688 0.98480000000000001 186.19309999999999 20160 14486 0 0 983040 737280 737280 737541 748800 27 25 27 29 302 0 0 0 0 18 0 0 0 0 1 +394 1783720617249081800 REFRESH 8 0 0.82787249760884218 2 6 2 6 0 0 99 9 418 3943920 55200 150.88742065429688 0.9869 185.67660000000001 20160 11979 0 0 983040 737280 737280 737520 748800 30 26 27 29 306 0 0 0 0 9 0 0 0 0 0 +395 1783720618538134600 DEPTH 21 1 1.0945360513197411 0 10 0 10 1 0 115 91 2550 23664853 81600 856.00358581542969 5.918000000000001 1287.8253 120960 59412 1 0 5898240 4423680 4423680 4426452 4492800 156 150 150 150 1944 0 0 0 0 91 0 0 0 0 2 +396 1783720619863667800 DEPTH 13 1 0.96072907276802155 1 6 1 6 0 0 129 50 2499 23664832 81600 851.25579833984375 5.9462999999999999 1309.8273999999999 120960 59052 1 0 5898240 4423680 4423680 4426432 4492800 176 150 156 165 1852 0 0 0 0 50 0 0 0 0 0 +397 1783720621216360800 DEPTH 17 1 0.95423258910870357 0 7 0 7 0 0 104 50 2528 23664857 81600 854.79386901855469 5.9192999999999998 1351.3689999999999 120960 60353 1 0 5898240 4423680 4423680 4426456 4492800 239 150 245 389 1505 0 0 0 0 50 0 0 0 0 0 +398 1783720622494883800 DEPTH 1 1 0.92582038018742807 1 9 1 9 1 0 71 85 2559 23664891 81600 855.49897766113281 5.9363000000000001 1277.4154000000001 120960 63556 1 0 5898240 4423680 4423680 4426491 4492800 160 150 156 174 1919 0 0 0 0 85 0 0 0 0 4 +399 1783720623829481800 DEPTH 56 1 0.90303374947881465 2 5 2 5 0 0 115 33 2598 23664854 81600 852.30075073242188 5.9493 1333.0328999999999 120960 58387 1 0 5898240 4423680 4423680 4426449 4492800 297 150 202 285 1664 1 0 0 0 32 0 0 0 0 0 +400 1783720625155545400 DEPTH 9 1 0.83678896878708942 2 7 2 7 0 0 90 24 2606 23664893 81600 855.63050842285156 5.9344999999999999 1295.1463000000001 120960 56699 1 0 5898240 4423680 4423680 4426491 4492800 150 150 150 150 2006 0 0 0 0 24 0 0 0 0 0 +401 1783720626520571700 DEPTH 11 1 0.82069183880549579 0 8 0 8 1 0 69 29 2579 23664813 81600 849.60169982910156 5.9812999999999992 1347.549 120960 58458 1 0 5898240 4423680 4423680 4426412 4492800 258 150 173 351 1647 0 0 0 0 29 0 0 0 0 1 +402 1783720627567531700 DEPTH 45 1 0.81495799741469865 1 12 1 12 1 0 69 68 2541 23664840 81600 853.56646728515625 6.0015000000000001 1045.8284000000001 120960 63463 1 0 5898240 4423680 4423680 4426439 4492800 161 150 150 151 1929 0 0 0 0 68 0 0 0 0 1 +403 1783720628879060400 DEPTH 21 1 0.88540854522635792 0 10 0 10 1 0 117 69 2545 23664807 81600 847.7618408203125 5.9525999999999994 1287.2989 120960 47880 1 0 5898240 4423680 4423680 4426405 4492800 156 150 150 150 1939 0 0 0 0 69 0 0 0 0 2 +404 1783720630006829800 DEPTH 12 1 0.86881742940088613 3 8 3 8 0 0 109 72 2510 23664879 81600 853.02972412109375 5.9134000000000002 1042.7564 120960 56936 1 0 5898240 4423680 4423680 4426478 4492800 153 150 150 150 1907 0 0 0 0 72 0 0 0 0 0 +405 1783720631291844700 DEPTH 14 1 0.81013193443338027 0 12 0 12 0 0 76 42 2571 23664896 81600 856.93310546875 5.9131999999999998 1283.6789000000001 120960 58407 1 0 5898240 4423680 4423680 4426495 4492800 150 150 150 150 1971 0 0 0 0 42 0 0 0 0 0 +406 1783720632644438100 DEPTH 31 1 0.80645310137414605 2 7 2 7 0 0 52 30 2570 23664801 81600 850.88148498535156 5.9045999999999994 1299.8596 120960 60229 1 0 5898240 4423680 4423680 4426399 4492800 163 150 174 281 1802 0 0 0 0 30 0 0 0 0 0 +407 1783720633714436400 DEPTH 16 1 0.79645729414993449 2 8 2 8 0 0 119 93 2521 23664879 81600 862.23565673828125 5.931 1068.8390999999999 120960 56639 1 0 5898240 4423680 4423680 4426479 4492800 156 150 150 150 1915 4 0 0 1 88 0 0 0 0 0 +408 1783720635077046700 DEPTH 44 1 0.78496859722744794 2 7 2 7 0 0 83 44 2553 23664824 81600 853.67889404296875 5.9398999999999997 1313.6436000000001 120960 57340 1 0 5898240 4423680 4423680 4426423 4492800 150 150 150 150 1953 0 0 0 0 44 0 0 0 0 0 +409 1783720636209260100 DEPTH 55 1 0.84488872714269059 4 14 1 15 1 0 92 139 2591 23664918 81600 858.55513000488281 5.9279000000000002 1054.8175000000001 120960 56743 1 0 5898240 4423680 4423680 4426515 4492800 154 150 150 150 1987 3 0 0 0 136 1 0 0 0 3 +410 1783720637262393500 DEPTH 47 1 0.7811426521578303 2 11 2 11 0 0 89 40 2571 23664879 81600 857.35723876953125 5.9426999999999994 1051.9936 120960 56879 1 0 5898240 4423680 4423680 4426479 4492800 156 150 150 150 1965 1 0 0 0 39 0 0 0 0 0 +411 1783720638572200100 DEPTH 13 1 0.85432654173762468 1 6 1 6 1 0 129 40 2516 23664788 81600 844.26399230957031 5.9805000000000001 1308.6088 120960 48322 1 0 5898240 4423680 4423680 4426388 4492800 176 150 157 165 1868 1 0 0 0 39 0 0 0 0 1 +412 1783720639668330300 DEPTH 55 1 0.86412805548479465 1 15 1 15 1 0 95 90 2630 23664911 81600 862.00306701660156 5.9373000000000005 1059.1715999999999 120960 46038 1 0 5898240 4423680 4423680 4426510 4492800 156 150 150 150 2024 4 0 1 0 85 0 0 0 0 4 +413 1783720641000073700 DEPTH 56 1 0.87338050514014143 2 5 2 5 0 0 117 24 2595 23664848 81600 843.37826538085938 5.9268000000000001 1330.1713 120960 47554 1 0 5898240 4423680 4423680 4426443 4492800 279 150 203 281 1682 1 0 0 0 23 0 0 0 0 0 +414 1783720642298995000 DEPTH 21 1 0.87989085457154648 0 10 0 10 1 0 119 65 2542 23664747 81600 846.18937683105469 5.9570000000000007 1286.9808 120960 37925 1 0 5898240 4423680 4423680 4426347 4492800 156 150 150 150 1936 0 0 0 0 65 0 0 0 0 1 +415 1783720643648656600 DEPTH 17 1 0.8790939718723767 0 7 0 7 1 0 107 41 2545 23664748 81600 844.85542297363281 6.0281000000000002 1348.3158000000001 120960 48460 1 0 5898240 4423680 4423680 4426343 4492800 209 150 233 405 1548 0 0 0 0 41 0 0 0 0 1 +416 1783720644712649500 DEPTH 50 1 0.82429708414711045 2 9 2 9 0 0 89 53 2562 23664823 81600 853.65760803222656 6.0281999999999991 1062.7125000000001 120960 60610 1 0 5898240 4423680 4423680 4426422 4492800 156 150 164 217 1875 1 0 0 0 52 0 0 0 0 0 +417 1783720646072348700 DEPTH 1 1 0.84407237188460638 1 9 1 8 1 0 78 72 2553 23664806 81600 850.50700378417969 5.9281999999999995 1287.5029999999999 120960 51466 1 0 5898240 4423680 4423680 4426405 4492800 168 150 170 193 1872 0 0 0 0 72 0 0 0 0 1 +418 1783720647395521600 DEPTH 54 1 0.7792911335769418 1 8 1 8 1 0 69 47 2546 23664808 81600 849.22355651855469 5.9554 1321.8751999999999 120960 59000 1 0 5898240 4423680 4423680 4426408 4492800 182 150 199 210 1805 0 0 0 0 47 0 0 0 0 1 +419 1783720648453670400 DEPTH 55 1 0.8613607273311561 1 15 1 15 1 0 98 61 2622 23664772 81600 855.25523376464844 6.1834000000000007 1056.8883000000001 120960 36552 1 1 5898240 4423680 4423680 4426372 4492800 155 150 150 150 2017 2 0 0 1 57 0 0 0 0 3 +420 1783720649735443000 DEPTH 53 1 0.8228051345679781 0 8 0 8 0 0 95 57 2512 23664856 81600 857.08763122558594 5.9184000000000001 1280.0472 120960 55633 1 0 5898240 4423680 4423680 4426454 4492800 150 150 150 150 1912 1 1 0 0 55 0 0 0 0 0 +421 1783720650819808200 DEPTH 8 1 0.82181826823841819 2 6 2 6 0 0 105 73 2508 23664886 81600 863.17037963867188 5.9237000000000002 1070.5715 120960 56478 1 0 5898240 4423680 4423680 4426486 4492800 180 156 156 164 1852 0 1 0 1 71 0 0 0 0 0 +422 1783720652110868500 DEPTH 21 1 0.81769269154525392 0 10 0 10 1 0 121 68 2554 23664919 81600 844.74267578125 5.9070999999999998 1289.7611999999999 120960 26540 1 0 5898240 4423680 4423680 4426519 4492800 168 150 150 150 1936 0 0 0 0 68 0 0 0 0 1 +423 1783720653437679000 DEPTH 56 1 0.82435857038864369 2 5 2 5 0 0 119 27 2596 23664925 81600 840.70759582519531 5.9258999999999995 1325.5032000000001 120960 37605 1 0 5898240 4423680 4423680 4426522 4492800 333 150 214 353 1546 0 0 0 0 27 0 0 0 0 0 +424 1783720654743474200 DEPTH 13 1 0.82956680581780839 1 6 1 6 0 0 129 46 2509 23664799 81600 841.0501708984375 5.9180999999999999 1304.6575 120960 37582 1 0 5898240 4423680 4423680 4426399 4492800 174 150 157 171 1857 1 0 0 0 45 0 0 0 0 0 +425 1783720656052930300 DEPTH 1 1 0.83875727423891977 1 8 1 8 1 0 81 75 2539 23664786 81600 843.51406860351562 5.9193999999999996 1272.8239000000001 120960 41144 1 0 5898240 4423680 4423680 4426384 4492800 200 150 175 238 1776 0 3 0 0 72 0 0 0 0 1 +426 1783720657364393800 DEPTH 41 1 0.77690618623787544 1 10 1 10 1 0 71 58 2548 23664961 81600 848.78483581542969 5.9279000000000011 1272.1736000000001 120960 63347 1 0 5898240 4423680 4423680 4426557 4492800 150 150 150 163 1935 0 0 0 0 58 0 0 0 0 2 +427 1783720657564934400 REFRESH 2 0 0.76803304545792872 2 13 2 13 1 0 56 20 430 3943905 55200 149.37190246582031 0.98609999999999998 184.07599999999999 20160 14809 0 0 983040 737280 737280 737504 748800 25 25 25 25 330 0 0 1 0 19 0 0 0 0 1 +428 1783720657760838400 REFRESH 21 0 0.7685954296654689 0 10 0 10 0 0 121 10 411 3943896 55200 150.15219116210938 0.98809999999999998 194.7543 20160 12070 0 0 983040 737280 737280 737496 748800 63 25 37 28 258 0 0 0 0 10 0 0 0 0 0 +429 1783720657970043400 REFRESH 23 0 0.76207092144765087 3 14 3 14 1 0 62 27 417 3943904 55200 149.87980651855469 0.98980000000000001 183.61789999999999 20160 14927 0 0 983040 737280 737280 737504 748800 25 25 25 25 317 0 0 0 0 27 0 0 0 0 1 +430 1783720658179031700 REFRESH 10 0 0.76714349374188295 1 11 1 11 0 0 68 22 426 3943893 55200 149.70077514648438 0.98180000000000001 180.56319999999999 20160 14773 0 0 983040 737280 737280 737493 748800 25 25 25 25 326 0 0 0 0 22 0 0 0 0 0 +431 1783720658385229300 REFRESH 7 0 0.76124145978772151 2 12 2 12 0 0 71 15 418 3943914 55200 148.8670654296875 0.9849 181.43000000000001 20160 14508 0 0 983040 737280 737280 737513 748800 25 25 35 28 305 0 0 0 0 15 0 0 0 0 0 +432 1783720658568889600 REFRESH 45 0 0.80119907382949573 1 12 1 12 0 0 69 16 410 3943901 55200 149.19679260253906 0.98909999999999998 182.40539999999999 20160 11932 0 0 983040 737280 737280 737500 748800 43 25 30 29 283 0 0 0 0 16 0 0 0 0 0 +433 1783720658766089900 REFRESH 40 0 0.76498171355605682 3 13 3 13 1 0 63 26 412 3943905 55200 149.02061462402344 0.98809999999999998 179.1337 20160 14837 0 0 983040 737280 737280 737505 748800 29 25 30 33 295 0 0 2 2 22 0 0 0 0 1 +434 1783720658984176600 REFRESH 13 0 0.79369260704119704 1 6 1 6 0 0 129 5 412 3943906 55200 150.08563232421875 0.99129999999999996 198.04570000000001 20160 12575 0 0 983040 737280 737280 737506 748800 142 25 36 94 115 1 0 0 0 4 0 0 0 0 0 +435 1783720659181225300 REFRESH 5 0 0.76151208362105827 2 12 2 11 1 0 46 19 412 3943908 55200 148.44210815429688 0.98570000000000002 178.9025 20160 14481 0 0 983040 737280 737280 737508 748800 34 25 30 33 290 0 0 0 1 18 0 0 0 0 1 +436 1783720659368761300 REFRESH 8 0 0.71679624025031774 2 6 2 6 0 0 105 11 418 3943905 55200 151.73631286621094 0.98670000000000002 186.45160000000001 20160 11985 0 0 983040 737280 737280 737504 748800 63 29 28 30 268 0 0 0 0 11 0 0 0 0 0 +437 1783720659577742300 REFRESH 27 0 0.75490130380397469 0 14 0 14 0 0 61 36 422 3943921 55200 150.56895446777344 0.98709999999999998 185.44800000000001 20160 14687 0 0 983040 737280 737280 737521 748800 26 25 26 27 318 1 0 0 1 34 0 0 0 0 0 +438 1783720659778853800 REFRESH 6 0 0.7627417121425536 3 14 3 14 0 0 61 17 418 3943873 55200 150.65394592285156 0.98999999999999999 184.18360000000001 20160 14624 0 0 983040 737280 737280 737473 748800 26 25 25 27 315 1 0 0 0 16 0 0 0 0 0 +439 1783720660001089800 REFRESH 1 0 0.87586996048201249 1 8 1 8 0 0 81 10 421 3943922 55200 149.4599609375 1.0219 196.21010000000001 20160 12679 0 0 983040 737280 737280 737522 748800 116 25 40 52 188 1 0 0 0 9 0 0 0 0 0 +440 1783720660236206400 REFRESH 17 0 0.94444550073748679 0 7 0 7 0 0 107 4 420 3943923 55200 150.28428649902344 0.98860000000000003 232.9342 20160 12705 0 0 983040 737280 737280 737523 748800 81 25 69 124 121 0 0 0 0 4 0 0 0 0 0 +441 1783720660443653600 REFRESH 20 0 0.75745540632929709 3 12 3 12 0 0 58 16 422 3943904 55200 149.09542846679688 0.98680000000000001 180.3536 20160 14582 0 0 983040 737280 737280 737504 748800 25 25 25 25 322 0 0 0 0 16 0 0 0 0 0 +442 1783720660653951600 REFRESH 43 0 0.75778959642497801 2 13 2 13 1 0 73 12 408 3943919 55200 149.28384399414062 0.99690000000000001 182.0592 20160 14549 0 0 983040 737280 737280 737519 748800 29 25 36 41 277 0 0 1 0 11 0 0 0 0 1 +443 1783720660854978600 REFRESH 46 0 0.76258358944391036 2 15 2 15 0 0 58 23 420 3943907 55200 149.82246398925781 0.99060000000000004 183.166 20160 14796 0 0 983040 737280 737280 737507 748800 26 25 26 25 318 0 0 1 0 22 0 0 0 0 0 +444 1783720661057992000 REFRESH 33 0 0.77520644398664018 1 9 1 9 0 0 87 16 420 3943905 55200 151.28166198730469 0.98699999999999999 186.85890000000001 20160 13598 0 0 983040 737280 737280 737505 748800 35 25 28 31 301 0 0 0 0 16 0 0 0 0 0 +445 1783720661262215700 REFRESH 9 0 0.82584445248213434 2 7 2 7 0 0 90 16 414 3943916 55200 150.50239562988281 0.9849 203.06290000000001 20160 12026 0 0 983040 737280 737280 737516 748800 25 25 25 25 314 0 0 0 0 16 0 0 0 0 0 +446 1783720661466314600 REFRESH 3 0 0.76222090041220969 3 11 3 11 0 0 80 12 409 3943911 55200 149.16403198242188 1.0009999999999999 180.7988 20160 14592 0 0 983040 737280 737280 737510 748800 25 25 27 26 306 0 0 0 0 12 0 0 0 0 0 +447 1783720661673138600 REFRESH 28 0 0.75777055361186807 2 13 2 13 0 0 76 20 398 3943885 55200 149.5521240234375 1.0051000000000001 182.21279999999999 20160 14389 0 0 983040 737280 737280 737485 748800 25 25 25 30 293 1 0 0 0 19 0 0 0 0 0 +448 1783720661879643300 REFRESH 30 0 0.76908846936297248 2 12 2 12 0 0 71 17 409 3943925 55200 148.9459228515625 0.98839999999999995 181.5916 20160 14367 0 0 983040 737280 737280 737525 748800 29 25 32 41 282 0 0 0 0 17 0 0 0 0 0 +449 1783720662065332800 REFRESH 47 0 0.77067498790303146 2 11 2 11 0 0 90 13 422 3943899 55200 149.62278747558594 0.98299999999999998 184.3099 20160 12146 0 0 983040 737280 737280 737499 748800 48 25 26 25 298 0 0 0 0 13 0 0 0 0 0 +450 1783720662270853600 REFRESH 31 0 0.79880015982110375 2 7 2 7 0 0 53 14 412 3943902 55200 149.32255554199219 1.0009999999999999 204.2672 20160 12603 0 0 983040 737280 737280 737502 748800 55 25 39 82 211 0 0 0 0 14 0 0 0 0 0 +451 1783720662527555500 REFRESH 11 0 0.81681016010580387 0 8 0 8 0 0 69 13 425 3943916 55200 149.26736450195312 0.98740000000000006 230.34559999999999 20160 12309 0 0 983040 737280 737280 737514 748800 102 25 43 102 153 0 0 0 0 13 0 0 0 0 0 +452 1783720662793418300 REFRESH 25 0 0.77093868485192829 3 11 3 11 1 0 69 10 417 3943936 55200 149.75692749023438 0.98660000000000003 182.96340000000001 20160 12086 0 0 983040 737280 737280 737536 748800 87 25 35 40 230 0 0 0 0 10 0 0 0 0 1 +453 1783720662997455400 REFRESH 15 0 0.75787664694292867 3 12 3 12 0 0 63 12 419 3943940 55200 149.41798400878906 0.9889 181.97640000000001 20160 14539 0 0 983040 737280 737280 737540 748800 25 25 26 25 318 1 0 0 0 11 0 0 0 0 0 +454 1783720663192901600 REFRESH 14 0 0.79752881025054256 0 12 0 12 0 0 77 9 417 3943923 55200 150.53645324707031 0.98909999999999998 194.01339999999999 20160 12284 0 0 983040 737280 737280 737523 748800 109 25 28 54 201 0 0 0 0 9 0 0 0 0 0 +455 1783720663390091100 REFRESH 0 0 0.76092329802701286 1 12 1 12 1 0 53 23 424 3943909 55200 149.34425354003906 0.98760000000000003 181.27789999999999 20160 14708 0 0 983040 737280 737280 737509 748800 26 25 25 25 323 1 0 0 0 22 0 0 0 0 1 +456 1783720663589230500 REFRESH 18 0 0.75890924559121653 4 15 4 15 1 0 53 22 425 3943907 55200 149.85626220703125 0.98699999999999999 183.06710000000001 20160 14631 0 0 983040 737280 737280 737507 748800 26 25 25 26 323 0 0 0 1 21 0 0 0 0 1 +457 1783720663782801900 REFRESH 41 0 0.76883922862530518 1 10 1 10 0 0 72 9 410 3943918 55200 148.08781433105469 0.98540000000000005 192.3878 20160 12016 0 0 983040 737280 737280 737518 748800 32 25 29 48 276 0 1 0 0 8 0 0 0 0 0 +458 1783720663994498300 REFRESH 44 0 0.77991293924883376 2 7 2 7 0 0 83 7 412 3943899 55200 149.91949462890625 1.0138 210.58260000000001 20160 12225 0 0 983040 737280 737280 737499 748800 45 25 25 26 291 0 0 0 0 7 0 0 0 0 0 +459 1783720664193802900 REFRESH 51 0 0.76091095571781864 3 15 3 15 0 0 61 27 410 3943903 55200 150.48789978027344 0.98680000000000001 182.75399999999999 20160 14775 0 0 983040 737280 737280 737503 748800 30 25 37 35 283 0 0 3 1 23 0 0 0 0 0 +460 1783720664422844300 REFRESH 56 0 0.96663723913888666 2 5 2 5 0 0 120 7 424 3943924 55200 150.00883483886719 0.9869 227.79130000000001 20160 12671 0 0 983040 737280 737280 737524 748800 109 25 57 107 126 0 0 0 0 7 0 0 0 0 0 +461 1783720664630807300 REFRESH 39 0 0.76250785502547003 2 12 2 12 0 0 85 14 405 3943901 55200 149.80812072753906 1.0247999999999999 182.65790000000001 20160 14528 0 0 983040 737280 737280 737500 748800 27 25 27 27 299 0 0 0 1 13 0 0 0 0 0 +462 1783720664816093400 REFRESH 55 0 1.0033392291684751 1 15 1 15 1 0 98 17 423 3943911 55200 150.42253112792969 0.98860000000000003 183.9838 20160 12024 0 0 983040 737280 737280 737511 748800 26 25 25 25 322 0 0 0 0 17 0 0 0 0 1 +463 1783720665025057800 REFRESH 35 0 0.76124381558591037 2 11 2 11 0 0 77 27 422 3943928 55200 150.79417419433594 0.98909999999999998 184.74170000000001 20160 14909 0 0 983040 737280 737280 737527 748800 29 25 36 25 307 0 1 1 1 24 0 0 0 0 0 +464 1783720665291256300 REFRESH 37 0 0.76942953324002994 2 13 2 13 1 0 56 20 406 3943914 55200 149.9842529296875 0.98670000000000002 181.84829999999999 20160 14681 0 0 983040 737280 737280 737514 748800 25 25 26 25 305 1 0 0 0 19 0 0 0 0 1 +465 1783720665479436500 REFRESH 16 0 0.78798797476686866 2 8 2 8 0 0 119 12 409 3943898 55200 149.72825622558594 0.98819999999999997 187.03120000000001 20160 11878 0 0 983040 737280 737280 737498 748800 75 27 27 33 247 0 0 0 0 12 0 0 0 0 0 +466 1783720665681959200 REFRESH 4 0 0.75597470724645732 1 13 1 13 0 0 36 7 417 3943901 55200 148.20147705078125 0.98519999999999996 177.85380000000001 20160 14746 0 0 983040 737280 737280 737501 748800 27 25 28 25 312 1 0 1 0 5 0 0 0 0 0 +467 1783720665878735700 REFRESH 42 0 0.76620681642218536 3 13 3 13 0 0 63 26 421 3943899 55200 149.06982421875 0.98780000000000001 182.4813 20160 14799 0 0 983040 737280 737280 737499 748800 25 25 28 26 317 0 0 1 0 25 0 0 0 0 0 +468 1783720666066559000 REFRESH 12 0 0.85150302261537947 3 8 3 8 0 0 109 10 408 3943895 55200 149.70060729980469 0.98680000000000001 186.7328 20160 12159 0 0 983040 737280 737280 737495 748800 56 25 41 33 253 0 0 0 0 10 0 0 0 0 0 +469 1783720666339318600 REFRESH 53 0 0.81866975210211035 0 8 0 8 0 0 95 8 421 3943902 55200 151.15382385253906 0.98550000000000004 188.92150000000001 20160 11964 0 0 983040 737280 737280 737502 748800 61 25 32 44 259 0 0 0 0 8 0 0 0 0 0 +470 1783720666537910900 REFRESH 19 0 0.7626927715376306 3 11 3 11 0 0 79 15 426 3943963 55200 150.002685546875 0.9879 182.90479999999999 20160 14386 0 0 983040 737280 737280 737562 748800 25 25 25 25 326 0 0 0 0 15 0 0 0 0 0 +471 1783720666720649600 REFRESH 50 0 0.81029476576582482 2 9 2 9 0 0 89 12 420 3943917 55200 149.31455993652344 0.98729999999999996 181.5204 20160 13264 0 0 983040 737280 737280 737517 748800 131 25 35 70 159 0 0 0 0 12 0 0 0 0 0 +472 1783720666917278400 REFRESH 48 0 0.74636571745136604 2 12 2 12 1 0 34 10 420 3943918 55200 149.27040100097656 0.98819999999999997 180.92689999999999 20160 14499 0 0 983040 737280 737280 737518 748800 27 25 35 35 298 0 0 0 0 10 0 0 0 0 1 +473 1783720667117459800 REFRESH 29 0 0.76275447637056171 2 12 2 12 0 0 72 14 421 3943924 55200 150.78195190429688 0.98560000000000003 184.3903 20160 14474 0 0 983040 737280 737280 737523 748800 25 25 25 25 321 0 0 0 0 14 0 0 0 0 0 +474 1783720667328173900 REFRESH 24 0 0.76646339318447443 3 13 3 13 0 0 64 33 418 3943898 55200 150.31500244140625 0.99080000000000001 183.99379999999999 20160 14802 0 0 983040 737280 737280 737498 748800 30 25 29 33 301 0 1 0 2 30 0 0 0 0 0 +475 1783720667538488500 REFRESH 22 0 0.75867743226653506 3 12 3 12 0 0 82 12 419 3943927 55200 149.03193664550781 0.98750000000000004 182.29990000000001 20160 14388 0 0 983040 737280 737280 737527 748800 25 25 25 25 319 0 0 0 0 12 0 0 0 0 0 +476 1783720667783802500 REFRESH 52 0 0.776355176173117 1 9 1 9 0 0 57 12 420 3943925 55200 148.99916076660156 0.98760000000000003 231.07480000000001 20160 13694 0 0 983040 737280 737280 737524 748800 77 25 47 79 192 0 0 0 0 12 0 0 0 0 0 +477 1783720667981158900 REFRESH 49 0 0.76828028187697417 3 10 3 10 0 0 79 21 416 3943919 55200 149.41285705566406 0.99399999999999999 180.947 20160 14443 0 0 983040 737280 737280 737519 748800 28 25 29 28 306 1 0 0 1 19 0 0 0 0 0 +478 1783720668178280200 REFRESH 36 0 0.76172516017180114 3 10 3 10 0 0 70 22 418 3943880 55200 151.28370666503906 0.98599999999999999 184.46539999999999 20160 14740 0 0 983040 737280 737280 737480 748800 25 25 25 26 317 0 0 0 0 22 0 0 0 0 0 +479 1783720668385786500 REFRESH 58 0 0.76997870051389483 2 13 2 13 0 0 64 33 418 3943890 55200 150.30067443847656 0.98609999999999998 182.5076 20160 14682 0 0 983040 737280 737280 737489 748800 26 25 27 25 315 0 0 1 0 32 0 0 0 0 0 +480 1783720668593616400 REFRESH 57 0 0.77001496708114614 2 13 2 13 1 0 66 28 413 3943917 55200 149.032958984375 0.99170000000000003 181.57149999999999 20160 14748 0 0 983040 737280 737280 737517 748800 25 25 27 32 304 0 0 0 0 28 0 0 0 0 1 +481 1783720668790450000 REFRESH 38 0 0.7617178577981063 4 14 4 14 0 0 50 18 418 3943899 55200 148.50662231445312 1.0751999999999999 181.35990000000001 20160 14731 0 0 983040 737280 737280 737499 748800 25 25 25 26 317 0 0 0 0 18 0 0 0 0 0 +482 1783720669014051400 REFRESH 54 0 0.77523909177198946 1 8 1 8 1 0 69 6 420 3943913 55200 149.81529235839844 0.9889 221.8939 20160 12714 0 0 983040 737280 737280 737513 748800 96 25 80 66 153 0 0 0 0 6 0 0 0 0 1 +483 1783720669212536300 REFRESH 26 0 0.7632464832999315 1 13 1 13 0 0 54 19 425 3943943 55200 149.27769470214844 0.98899999999999999 182.80600000000001 20160 14449 0 0 983040 737280 737280 737543 748800 28 25 30 46 296 0 0 0 0 19 0 0 0 0 0 +484 1783720669409114300 REFRESH 32 0 0.76684339655841227 2 14 2 14 1 0 58 30 420 3943929 55200 148.79743957519531 0.98429999999999995 180.72810000000001 20160 14802 0 0 983040 737280 737280 737529 748800 25 25 26 25 319 0 0 0 0 30 0 0 0 0 1 +485 1783720669617434600 REFRESH 34 0 0.77019566409101914 1 14 1 14 0 0 62 24 413 3943921 55200 149.20294189453125 0.98660000000000003 181.14510000000001 20160 14693 0 0 983040 737280 737280 737521 748800 27 26 25 29 306 1 0 0 0 23 0 0 0 0 0 +486 1783720670959896600 DEPTH 1 1 0.96065414599476184 1 8 1 8 1 0 84 85 2549 23664790 81600 857.02720642089844 5.9679000000000002 1300.3608999999999 120960 59595 1 0 5898240 4423680 4423680 4426390 4492800 190 150 162 182 1865 0 2 0 0 83 0 0 0 0 4 +487 1783720672016660400 DEPTH 55 1 0.96827723603724958 1 15 1 15 1 0 100 41 2628 23664796 81600 860.70675659179688 5.9659999999999993 1055.5817999999999 120960 57075 1 0 5898240 4423680 4423680 4426394 4492800 156 150 150 150 2022 0 1 0 0 40 0 0 0 0 2 +488 1783720673379366800 DEPTH 56 1 0.95626945922394069 2 5 2 5 0 0 121 22 2603 23664774 81600 854.00065612792969 5.9642999999999997 1346.2629999999999 120960 59096 1 0 5898240 4423680 4423680 4426372 4492800 286 150 214 305 1648 0 0 0 0 22 0 0 0 0 0 +489 1783720674727984600 DEPTH 17 1 0.93454414899648119 0 7 0 7 0 0 108 46 2532 23664930 81600 851.99136352539062 5.9382999999999999 1347.3317 120960 59778 1 0 5898240 4423680 4423680 4426529 4492800 207 150 238 405 1532 0 0 0 0 46 0 0 0 0 0 +490 1783720676088523700 DEPTH 13 1 0.93421217405880985 1 6 1 6 0 0 129 57 2512 23664815 81600 855.33053588867188 5.9161999999999999 1318.6966 120960 59619 1 0 5898240 4423680 4423680 4426415 4492800 181 150 159 161 1861 3 0 0 0 54 0 0 0 0 0 +491 1783720677401189800 DEPTH 21 1 0.93348211052988361 0 10 0 10 1 0 123 76 2556 23664847 81600 857.85386657714844 5.9603000000000002 1311.5317 120960 57395 1 1 5898240 4423680 4423680 4426447 4492800 179 150 150 150 1927 0 0 0 0 75 0 0 0 0 2 +492 1783720678441887100 DEPTH 5 1 0.85896449421360133 2 11 2 11 1 0 53 69 2517 23664889 81600 851.3565673828125 5.9280999999999997 1039.6248000000001 120960 70794 1 0 5898240 4423680 4423680 4426487 4492800 174 150 164 180 1849 0 0 0 0 69 0 0 0 0 4 +493 1783720679736830000 DEPTH 9 1 0.81581584720612133 2 7 2 7 0 0 92 26 2605 23664811 81600 856.64689636230469 5.9134000000000002 1293.7093 120960 57496 1 0 5898240 4423680 4423680 4426411 4492800 150 150 150 150 2005 0 0 0 0 26 0 0 0 0 0 +494 1783720680783638400 DEPTH 12 1 0.83462966106187797 3 8 3 8 0 0 113 91 2490 23664862 81600 852.197021484375 5.9245000000000001 1045.623 120960 57098 1 1 5898240 4423680 4423680 4426460 4492800 161 150 150 156 1873 0 0 0 0 90 0 0 0 0 0 +495 1783720681872573200 DEPTH 8 1 0.81325660435811697 2 6 2 5 1 0 116 84 2536 23664902 81600 864.20211791992188 5.9407999999999994 1072.1709000000001 120960 56585 1 0 5898240 4423680 4423680 4426502 4492800 192 156 156 179 1853 2 0 0 0 82 0 0 0 0 1 +496 1783720683218295900 DEPTH 11 1 0.81290008061274999 0 8 0 8 1 0 69 26 2593 23664835 81600 848.76614379882812 5.9452000000000007 1344.5949000000001 120960 58759 1 0 5898240 4423680 4423680 4426434 4492800 261 150 180 321 1681 0 0 1 0 25 0 0 1 0 3 +497 1783720684497022400 DEPTH 53 1 0.81213483237524864 0 8 0 8 1 0 95 52 2513 23664944 81600 854.49604797363281 5.9265999999999996 1277.4094 120960 56055 1 0 5898240 4423680 4423680 4426543 4492800 150 150 150 150 1913 0 0 0 0 52 0 0 0 0 1 +498 1783720685807818600 DEPTH 31 1 0.79177097880535663 2 7 2 7 0 0 53 19 2564 23664825 81600 849.11558532714844 5.9210000000000003 1309.5709999999999 120960 60348 1 0 5898240 4423680 4423680 4426425 4492800 186 150 185 278 1765 0 0 0 0 19 0 0 0 0 0 +499 1783720686893427800 DEPTH 45 1 0.78980730006247812 1 12 1 12 1 0 73 48 2549 23664770 81600 855.65531921386719 6.1215000000000002 1052.4622999999999 120960 58132 1 0 5898240 4423680 4423680 4426370 4492800 161 150 150 156 1932 0 0 0 0 48 0 0 0 0 2 +500 1783720688247841300 DEPTH 1 1 0.84683189647376311 1 8 1 8 0 0 89 76 2576 23664855 81600 847.206298828125 5.9279999999999999 1320.1603 120960 48076 1 0 5898240 4423680 4423680 4426454 4492800 197 150 152 168 1909 0 2 0 0 74 0 0 0 0 0 +501 1783720689578480600 DEPTH 14 1 0.78488603048780248 0 12 0 12 0 0 83 39 2572 23664786 81600 856.85215759277344 5.9798999999999998 1295.5868 120960 58069 1 0 5898240 4423680 4423680 4426385 4492800 154 150 150 150 1968 0 0 0 0 39 0 0 0 0 0 +502 1783720690662670900 DEPTH 8 1 0.87847492380949155 2 5 2 5 0 0 120 57 2525 23664881 81600 855.70809936523438 5.9963999999999995 1059.8344999999999 120960 45830 1 0 5898240 4423680 4423680 4426480 4492800 193 156 156 192 1828 1 1 0 0 55 0 0 0 0 0 +503 1783720691993727200 DEPTH 56 1 0.84944777054751397 2 5 2 5 0 0 121 17 2603 23664819 81600 846.718994140625 5.9172000000000002 1329.8018999999999 120960 48122 1 0 5898240 4423680 4423680 4426414 4492800 283 150 216 349 1605 0 0 0 0 17 0 0 0 0 0 +504 1783720693112091200 DEPTH 55 1 0.85642046924172222 1 15 1 15 1 0 100 32 2622 23664792 81600 852.08866882324219 5.9200999999999997 1047.5546999999999 120960 46128 1 0 5898240 4423680 4423680 4426390 4492800 156 150 150 150 2016 0 0 0 0 32 0 0 0 0 4 +505 1783720694449982500 DEPTH 17 1 0.84067099042561322 0 7 0 7 0 0 108 41 2539 23664798 81600 844.44021606445312 6.0835000000000008 1336.8154 120960 48283 1 0 5898240 4423680 4423680 4426395 4492800 200 150 256 457 1476 0 0 0 0 41 0 0 0 0 0 +506 1783720695785343500 DEPTH 13 1 0.83962041624621542 1 6 1 6 0 0 130 46 2524 23664914 81600 845.50398254394531 5.9978000000000007 1310.2705000000001 120960 48938 1 0 5898240 4423680 4423680 4426513 4492800 178 150 157 166 1873 1 0 1 0 44 0 0 0 0 0 +507 1783720696919227800 DEPTH 50 1 0.79695083541522971 2 9 2 9 0 0 92 62 2559 23664895 81600 855.18905639648438 5.9535000000000009 1075.4961000000001 120960 62274 1 0 5898240 4423680 4423680 4426494 4492800 156 150 168 227 1858 0 0 0 0 62 0 0 0 0 0 +508 1783720697995380100 DEPTH 16 1 0.77969811982140069 2 8 2 8 0 0 122 86 2508 23664841 81600 860.91618347167969 6.1205999999999996 1074.9839999999999 120960 55734 1 0 5898240 4423680 4423680 4426441 4492800 156 150 150 150 1902 1 0 0 0 85 0 0 0 0 0 +509 1783720699321078200 DEPTH 44 1 0.7721432485916917 2 7 2 7 0 0 83 42 2542 23664787 81600 854.5677490234375 5.9282000000000004 1324.3395 120960 57397 1 0 5898240 4423680 4423680 4426387 4492800 150 150 150 150 1942 0 0 0 0 42 0 0 0 0 0 +510 1783720700375701400 DEPTH 8 1 0.87393756318628324 2 5 2 5 0 0 125 72 2514 23664831 81600 850.57310485839844 5.9218000000000002 1053.4837 120960 35914 1 0 5898240 4423680 4423680 4426428 4492800 185 156 151 188 1834 0 1 0 0 71 0 0 0 0 0 +511 1783720701713730900 DEPTH 21 1 0.85968947966382836 0 10 0 10 1 0 125 54 2540 23664809 81600 849.61483764648438 5.9205999999999994 1304.6484 120960 46081 1 0 5898240 4423680 4423680 4426409 4492800 184 150 150 150 1906 0 0 0 0 54 0 0 0 0 3 +512 1783720702745132700 DEPTH 5 1 0.80400847578655465 2 11 2 11 1 0 59 47 2504 23664778 81600 842.61196899414062 5.956999999999999 1030.3083999999999 120960 58963 1 0 5898240 4423680 4423680 4426376 4492800 180 150 170 182 1822 0 0 0 0 47 0 0 0 0 1 +513 1783720704082326600 DEPTH 1 1 0.81312738084114489 1 8 1 8 1 0 92 73 2552 23664839 81600 844.35711669921875 6.0102000000000002 1318.5072 120960 38671 1 0 5898240 4423680 4423680 4426438 4492800 227 150 160 166 1849 0 0 0 0 73 0 0 0 0 2 +514 1783720705439517400 DEPTH 52 1 0.76999143279133364 1 9 1 9 1 0 58 47 2595 23664842 81600 844.99568176269531 5.9538000000000002 1337.1061999999999 120960 67621 1 0 5898240 4423680 4423680 4426442 4492800 195 150 203 221 1826 0 0 0 0 47 0 0 0 0 2 +515 1783720706594712000 DEPTH 33 1 0.76994393006958817 1 9 1 8 1 0 101 88 2549 23664817 81600 860.19754028320312 5.9337 1073.2457999999999 120960 67327 1 0 5898240 4423680 4423680 4426414 4492800 150 150 150 152 1947 3 2 3 0 80 0 0 0 0 2 +516 1783720707914003400 DEPTH 54 1 0.76649751980184289 1 8 1 8 1 0 73 41 2547 23664786 81600 849.77658081054688 5.9214000000000011 1318.0392999999999 120960 59050 1 0 5898240 4423680 4423680 4426386 4492800 210 150 206 217 1764 0 1 0 0 40 0 0 0 0 2 +517 1783720709232094400 DEPTH 56 1 0.8330698211943387 2 5 2 5 0 0 122 17 2606 23664827 81600 843.20268249511719 6.0352000000000006 1316.8886 120960 38065 1 0 5898240 4423680 4423680 4426423 4492800 290 150 215 381 1570 0 0 0 0 17 0 0 0 0 0 +518 1783720709439708300 REFRESH 58 0 0.76012669768394547 2 13 2 13 0 0 68 31 416 3943922 55200 149.8470458984375 0.98150000000000004 182.297 20160 14726 0 0 983040 737280 737280 737522 748800 26 25 27 26 312 0 0 1 0 30 0 0 0 0 0 +519 1783720709643516700 REFRESH 36 0 0.75382845890813543 3 10 3 10 0 0 72 23 419 3943902 55200 149.48658752441406 0.98660000000000003 182.80500000000001 20160 14788 0 0 983040 737280 737280 737502 748800 25 25 26 27 316 0 1 0 0 22 0 0 0 0 0 +520 1783720709848493300 REFRESH 6 0 0.75444624112158154 3 14 3 14 0 0 67 26 419 3943940 55200 150.00679016113281 0.98770000000000002 182.7304 20160 14758 0 0 983040 737280 737280 737539 748800 26 25 28 28 312 0 0 0 1 25 0 0 0 0 0 +521 1783720710039095800 REFRESH 53 0 0.79790854126553312 0 8 0 8 0 0 95 10 417 3943913 55200 149.59103393554688 0.9879 189.38579999999999 20160 11989 0 0 983040 737280 737280 737513 748800 51 26 31 32 277 0 0 0 0 10 0 0 0 0 0 +522 1783720710241198000 REFRESH 31 0 0.77458129923598051 2 7 2 6 1 0 54 9 415 3943940 55200 148.93568420410156 0.98040000000000005 201.0301 20160 12230 0 0 983040 737280 737280 737540 748800 74 25 39 85 192 0 0 0 0 9 0 0 0 0 1 +523 1783720710425016900 REFRESH 45 0 0.76822383312630083 1 12 1 12 0 0 73 14 413 3943906 55200 150.34466552734375 0.98470000000000002 182.6172 20160 12034 0 0 983040 737280 737280 737505 748800 47 25 29 29 283 0 0 0 0 14 0 0 0 0 0 +524 1783720710624249500 REFRESH 25 0 0.76202115624661615 3 11 3 11 0 0 71 12 421 3943897 55200 149.7620849609375 0.98880000000000001 183.81460000000001 20160 12253 0 0 983040 737280 737280 737497 748800 92 25 39 45 220 0 0 0 0 12 0 0 0 0 0 +525 1783720710818727900 REFRESH 40 0 0.75707575004351979 3 13 3 13 0 0 65 23 417 3943916 55200 148.74520874023438 0.98850000000000005 179.65729999999999 20160 14758 0 0 983040 737280 737280 737516 748800 29 25 33 35 295 0 0 1 1 21 0 0 0 0 0 +526 1783720711019311600 REFRESH 3 0 0.75498729157207889 3 11 3 11 0 0 83 21 409 3943892 55200 149.02476501464844 0.99619999999999997 184.81800000000001 20160 14289 0 0 983040 737280 737280 737492 748800 25 25 26 25 308 0 0 0 1 20 0 0 0 0 0 +527 1783720711228126700 REFRESH 18 0 0.75019861863227733 4 15 4 15 0 0 57 21 422 3943905 55200 150.13682556152344 0.98140000000000005 182.9263 20160 14740 0 0 983040 737280 737280 737505 748800 27 25 26 28 316 1 1 2 1 16 0 0 0 0 0 +528 1783720711463917400 REFRESH 11 0 0.80892175071399453 0 8 0 8 0 0 71 11 430 3943899 55200 150.21977233886719 0.99109999999999998 234.59129999999999 20160 12150 0 0 983040 737280 737280 737497 748800 123 25 41 103 138 1 0 0 0 10 0 0 0 0 0 +529 1783720711663025300 REFRESH 26 0 0.75482439809965485 1 13 1 13 0 0 54 18 423 3943915 55200 148.97561645507812 0.98870000000000002 181.76570000000001 20160 14332 0 0 983040 737280 737280 737513 748800 29 25 36 51 282 0 0 0 0 18 0 0 0 0 0 +530 1783720711865669500 REFRESH 35 0 0.75422146079903596 2 11 2 11 0 0 80 29 427 3943904 55200 149.81324768066406 0.98760000000000003 186.50030000000001 20160 14881 0 0 983040 737280 737280 737504 748800 28 25 37 25 312 0 0 1 1 27 0 0 0 0 0 +531 1783720712060505800 REFRESH 51 0 0.75222358438741832 3 15 3 15 1 0 63 22 410 3943893 55200 149.52447509765625 0.97970000000000002 181.81450000000001 20160 14702 0 0 983040 737280 737280 737493 748800 30 25 38 36 281 0 0 1 2 19 0 0 0 0 1 +532 1783720712243721300 REFRESH 55 0 0.9077057446838479 1 15 1 15 0 0 102 13 405 3943899 55200 150.29656982421875 0.98670000000000002 182.05199999999999 20160 12057 0 0 983040 737280 737280 737499 748800 26 25 25 25 304 0 0 0 0 13 0 0 0 0 0 +533 1783720712446901600 REFRESH 27 0 0.74891703521222275 0 14 0 14 0 0 68 33 420 3943882 55200 150.57994079589844 0.98629999999999995 184.5181 20160 14731 0 0 983040 737280 737280 737481 748800 26 25 25 27 317 0 0 0 0 33 0 0 0 0 0 +534 1783720712645866400 REFRESH 10 0 0.76144860151181737 1 11 1 11 0 0 73 24 419 3943901 55200 149.58489990234375 0.98540000000000005 181.57210000000001 20160 14736 0 0 983040 737280 737280 737500 748800 25 25 25 25 319 1 0 0 0 23 0 0 0 0 0 +535 1783720712845704000 REFRESH 2 0 0.76068984701819153 2 13 2 13 1 0 59 17 423 3943905 55200 150.18803405761719 0.98799999999999999 184.00909999999999 20160 14791 0 0 983040 737280 737280 737504 748800 25 25 25 26 322 0 0 1 1 15 0 0 0 0 1 +536 1783720713045059200 REFRESH 42 0 0.75738740197406484 3 13 3 13 0 0 67 29 423 3943910 55200 150.01087951660156 0.98899999999999999 182.90950000000001 20160 14742 0 0 983040 737280 737280 737509 748800 25 25 26 25 322 0 1 0 0 28 0 0 0 0 0 +537 1783720713279651400 REFRESH 17 0 0.92729356377577021 0 7 0 7 0 0 108 5 420 3943910 55200 149.67520141601562 0.98729999999999996 233.4032 20160 12998 0 0 983040 737280 737280 737510 748800 82 25 69 116 128 0 0 0 0 5 0 0 0 0 0 +538 1783720713488058600 REFRESH 32 0 0.75750064266819672 2 14 2 14 0 0 60 20 414 3943894 55200 149.98300170898438 0.98460000000000003 182.0822 20160 14681 0 0 983040 737280 737280 737494 748800 25 25 26 25 313 0 0 0 0 20 0 0 0 0 0 +539 1783720713670131100 REFRESH 5 0 0.83753928646308451 2 11 2 11 0 0 60 10 412 3943913 55200 148.59263610839844 0.98650000000000004 180.98050000000001 20160 12427 0 0 983040 737280 737280 737513 748800 62 25 42 43 240 0 0 0 1 9 0 0 0 0 0 +540 1783720713881654500 REFRESH 28 0 0.75097494833323841 2 13 2 13 0 0 82 20 410 3943890 55200 150.44300842285156 0.98809999999999998 183.82210000000001 20160 14493 0 0 983040 737280 737280 737489 748800 26 25 27 33 299 0 1 0 2 17 0 0 0 0 0 +541 1783720714066613500 REFRESH 8 0 1.0311501149343378 2 5 2 5 0 0 125 13 416 3943904 55200 150.41433715820312 0.98109999999999997 183.87729999999999 20160 11878 0 0 983040 737280 737280 737504 748800 43 27 28 28 290 0 0 0 0 13 0 0 0 0 0 +542 1783720714263672100 REFRESH 0 0 0.75456862318692475 1 12 1 12 0 0 54 10 428 3943924 55200 149.37712097167969 0.98360000000000003 181.08860000000001 20160 14716 0 0 983040 737280 737280 737524 748800 26 25 25 25 327 0 0 0 0 10 0 0 0 0 0 +543 1783720714463451800 REFRESH 19 0 0.75517596926790875 3 11 3 11 0 0 82 17 422 3943913 55200 149.42515563964844 0.98819999999999997 183.28720000000001 20160 14375 0 0 983040 737280 737280 737513 748800 25 25 25 25 322 1 0 0 0 16 0 0 0 0 0 +544 1783720714674357400 REFRESH 23 0 0.75494551748375638 3 14 3 14 0 0 63 23 420 3943912 55200 149.76512145996094 0.98380000000000001 182.74420000000001 20160 14743 0 0 983040 737280 737280 737512 748800 25 25 25 25 320 1 0 0 0 22 0 0 0 0 0 +545 1783720714885920400 REFRESH 24 0 0.75768000643474742 3 13 3 13 0 0 64 28 420 3943899 55200 149.42617797851562 0.98829999999999996 183.82159999999999 20160 14766 0 0 983040 737280 737280 737499 748800 30 25 28 33 304 0 0 1 0 27 0 0 0 0 0 +546 1783720715077076600 REFRESH 16 0 0.77186493427409197 2 8 2 8 0 0 123 11 412 3943911 55200 151.06048583984375 0.98550000000000004 189.93870000000001 20160 11975 0 0 983040 737280 737280 737511 748800 67 28 26 31 260 0 0 0 0 11 0 0 0 0 0 +547 1783720715283691900 REFRESH 4 0 0.74638156277729972 1 13 1 13 0 0 36 5 415 3943928 55200 148.80665588378906 1.0024999999999999 181.7629 20160 14804 0 0 983040 737280 737280 737528 748800 26 25 29 26 309 0 0 1 0 4 0 0 0 0 0 +548 1783720715483241800 REFRESH 7 0 0.75529187097531014 2 12 2 12 0 0 72 16 417 3943908 55200 149.92691040039062 0.98860000000000003 183.35589999999999 20160 14382 0 0 983040 737280 737280 737507 748800 26 25 33 29 304 0 0 0 0 16 0 0 0 0 0 +549 1783720715687578900 REFRESH 37 0 0.76117477795276356 2 13 2 13 1 0 59 20 416 3943885 55200 148.37043762207031 0.98819999999999997 180.85140000000001 20160 14735 0 0 983040 737280 737280 737485 748800 26 25 26 26 313 1 0 0 0 19 0 0 0 0 1 +550 1783720715886967200 REFRESH 57 0 0.76120122601298212 2 13 2 13 0 0 70 27 414 3943901 55200 148.9827880859375 1.0246999999999999 180.2944 20160 14661 0 0 983040 737280 737280 737501 748800 25 25 26 30 308 0 0 1 0 26 0 0 0 0 0 +551 1783720716116442900 REFRESH 56 0 0.93751193004127897 2 5 2 5 0 0 123 11 422 3943899 55200 149.90969848632812 0.98060000000000003 228.23140000000001 20160 12832 0 0 983040 737280 737280 737498 748800 116 25 67 116 98 0 0 1 0 10 0 0 0 0 0 +552 1783720716316163100 REFRESH 48 0 0.74069881391313985 2 12 2 12 0 0 35 4 416 3943902 55200 148.44210815429688 0.98529999999999995 178.18539999999999 20160 14300 0 0 983040 737280 737280 737502 748800 28 25 36 36 291 0 0 0 0 4 0 0 0 0 0 +553 1783720716499656300 REFRESH 12 0 0.82002831050013181 3 8 3 8 0 0 114 19 407 3943903 55200 150.08460998535156 0.98409999999999997 182.41399999999999 20160 12040 0 0 983040 737280 737280 737502 748800 75 25 47 34 226 0 0 0 0 19 0 0 0 0 0 +554 1783720716725577400 REFRESH 52 0 0.76419401462180891 1 9 1 9 0 0 59 10 422 3943900 55200 148.33868408203125 0.98450000000000004 224.5205 20160 12329 0 0 983040 737280 737280 737500 748800 98 25 52 85 162 0 0 1 0 9 0 0 0 0 0 +555 1783720716975717000 REFRESH 15 0 0.75134188461366258 3 12 3 12 0 0 64 11 422 3943914 55200 149.97299194335938 0.98729999999999996 181.4571 20160 14354 0 0 983040 737280 737280 737514 748800 25 25 26 25 321 0 0 0 0 11 0 0 0 0 0 +556 1783720717177767300 REFRESH 20 0 0.75138481374355803 3 12 3 12 0 0 60 17 416 3943900 55200 149.73747253417969 0.99399999999999999 181.98009999999999 20160 14547 0 0 983040 737280 737280 737500 748800 25 25 25 27 314 0 0 0 0 17 0 0 0 0 0 +557 1783720717379538300 REFRESH 49 0 0.7609534438756963 3 10 3 10 0 0 86 24 421 3943923 55200 150.03033447265625 0.99099999999999999 185.47659999999999 20160 14421 0 0 983040 737280 737280 737523 748800 32 25 32 31 301 1 0 0 0 23 0 0 0 0 0 +558 1783720717577618600 REFRESH 13 0 0.92599493860691795 1 6 1 6 0 0 131 5 418 3943934 55200 150.75840759277344 0.9859 196.98840000000001 20160 12672 0 0 983040 737280 737280 737534 748800 147 25 39 98 109 0 0 0 0 5 0 0 0 0 0 +559 1783720717776247900 REFRESH 29 0 0.75563208229185697 2 12 2 12 1 0 73 19 418 3943897 55200 150.17984008789062 0.98819999999999997 182.7105 20160 14236 0 0 983040 737280 737280 737497 748800 25 25 25 25 318 0 0 0 0 19 0 0 0 0 1 +560 1783720717982963700 REFRESH 44 0 0.7678943666922512 2 7 2 7 0 0 84 13 409 3943915 55200 149.50912475585938 0.98709999999999998 205.43119999999999 20160 12080 0 0 983040 737280 737280 737515 748800 81 25 35 30 238 1 0 0 0 12 0 0 0 0 0 +561 1783720718194496500 REFRESH 30 0 0.76219593027643284 2 12 2 12 0 0 74 14 403 3943913 55200 150.14501953125 0.98870000000000002 183.05350000000001 20160 14358 0 0 983040 737280 737280 737513 748800 30 25 34 43 271 0 0 1 0 13 0 0 0 0 0 +562 1783720718422186400 REFRESH 41 0 0.7622048145589605 1 10 1 10 0 0 73 12 409 3943940 55200 148.5137939453125 1.0241 193.57579999999999 20160 11906 0 0 983040 737280 737280 737539 748800 30 25 29 48 277 0 1 0 0 11 0 0 0 0 0 +563 1783720718617742800 REFRESH 21 0 0.88901628819991607 0 10 0 10 0 0 125 12 403 3943911 55200 149.55520629882812 0.98280000000000001 194.42019999999999 20160 12141 0 0 983040 737280 737280 737511 748800 59 25 31 28 260 0 0 0 0 12 0 0 0 0 0 +564 1783720718826798600 REFRESH 22 0 0.75163605585170457 3 12 3 12 1 0 85 17 414 3943926 55200 149.88185119628906 0.98629999999999995 183.38589999999999 20160 14383 0 0 983040 737280 737280 737526 748800 25 25 25 25 314 0 0 0 0 17 0 0 0 0 1 +565 1783720719011678800 REFRESH 33 0 0.88942224404324255 1 8 1 8 1 0 103 13 413 3943912 55200 149.20089721679688 0.98919999999999997 183.69630000000001 20160 12468 0 0 983040 737280 737280 737512 748800 38 25 28 29 293 0 1 0 0 12 0 0 0 0 1 +566 1783720719240194700 REFRESH 54 0 0.76757150483083603 1 8 1 8 0 0 73 14 421 3943925 55200 150.39077758789062 0.98880000000000001 227.31370000000001 20160 12330 0 0 983040 737280 737280 737525 748800 102 25 82 61 151 0 0 0 0 14 0 0 0 0 0 +567 1783720719429969000 REFRESH 50 0 0.78524290665970042 2 9 2 9 0 0 92 5 422 3943902 55200 150.20953369140625 0.98960000000000004 188.4768 20160 12848 0 0 983040 737280 737280 737502 748800 137 25 40 77 143 1 0 0 0 4 0 0 0 0 0 +568 1783720719654305400 REFRESH 34 0 0.76174820293298362 1 14 1 14 0 0 64 24 418 3943912 55200 150.150146484375 1.0429999999999999 183.68219999999999 20160 14694 0 0 983040 737280 737280 737512 748800 27 26 26 29 310 0 0 0 0 24 0 0 0 0 0 +569 1783720719849084700 REFRESH 39 0 0.75609743569017029 2 12 2 12 0 0 85 17 405 3943902 55200 149.18963623046875 0.98899999999999999 182.13849999999999 20160 14446 0 0 983040 737280 737280 737502 748800 27 25 27 28 298 0 0 0 0 17 0 0 0 0 0 +570 1783720720043852400 REFRESH 47 0 0.76327836236861479 2 11 2 11 0 0 91 9 424 3943908 55200 149.95660400390625 0.98460000000000003 182.8836 20160 12017 0 0 983040 737280 737280 737508 748800 41 25 26 25 307 0 0 0 0 9 0 0 0 0 0 +571 1783720720245303500 REFRESH 1 0 0.91891631652708405 1 8 1 8 0 0 92 10 418 3943903 55200 149.92588806152344 0.98350000000000004 200.43809999999999 20160 12018 0 0 983040 737280 737280 737503 748800 140 25 42 45 166 0 0 0 0 10 0 0 0 0 0 +572 1783720720453879100 REFRESH 46 0 0.75581377856830823 2 15 2 15 0 0 63 31 417 3943918 55200 150.00370788574219 0.99839999999999995 182.80289999999999 20160 14794 0 0 983040 737280 737280 737518 748800 26 25 26 25 315 0 0 0 1 30 0 0 0 0 0 +573 1783720720654669900 REFRESH 38 0 0.75357223080856761 4 14 4 14 0 0 55 22 411 3943925 55200 148.85273742675781 0.98899999999999999 180.18729999999999 20160 14712 0 0 983040 737280 737280 737525 748800 25 25 25 26 310 0 0 0 1 21 0 0 0 0 0 +574 1783720720863353600 REFRESH 14 0 0.77490722667122847 0 12 0 12 0 0 84 15 418 3943933 55200 149.92691040039062 0.98999999999999999 187.77719999999999 20160 12052 0 0 983040 737280 737280 737533 748800 128 25 28 51 186 0 0 0 0 15 0 0 0 0 0 +575 1783720721062681800 REFRESH 43 0 0.75223732218349937 2 13 2 13 1 0 73 15 416 3943909 55200 149.34938049316406 0.99080000000000001 183.614 20160 14457 0 0 983040 737280 737280 737509 748800 27 25 31 37 296 0 0 1 0 14 0 0 0 0 1 +576 1783720721266403900 REFRESH 9 0 0.80736631416032878 2 7 2 7 0 0 92 14 408 3943931 55200 149.6258544921875 0.98529999999999995 202.4813 20160 11966 0 0 983040 737280 737280 737531 748800 25 25 25 25 308 0 0 0 0 14 0 0 0 0 0 +577 1783720722331904100 DEPTH 8 1 1.0195030495257393 2 5 2 5 0 0 129 74 2487 23664862 81600 864.673583984375 5.9519000000000002 1064.3282999999999 120960 57220 1 0 5898240 4423680 4423680 4426462 4492800 184 156 150 166 1831 0 0 1 0 73 0 0 0 0 0 +578 1783720723714444600 DEPTH 56 1 0.9321785002238363 2 5 2 5 0 0 124 26 2605 23664886 81600 855.85101318359375 5.9219999999999997 1333.9117000000001 120960 60898 1 0 5898240 4423680 4423680 4426483 4492800 291 150 223 322 1619 0 0 0 0 26 0 0 0 0 0 +579 1783720725018738000 DEPTH 31 1 0.92764880315035025 2 6 2 6 0 0 55 26 2566 23664909 81600 849.38151550292969 5.9057000000000004 1302.6002000000001 120960 58993 1 0 5898240 4423680 4423680 4426503 4492800 218 150 191 307 1700 1 0 0 0 25 0 0 0 0 0 +580 1783720726413778800 DEPTH 17 1 0.91925138522583882 0 7 0 7 0 0 110 46 2537 23664880 81600 856.17337036132812 5.9302999999999999 1355.4786999999999 120960 61645 1 0 5898240 4423680 4423680 4426478 4492800 193 150 253 395 1546 2 0 0 0 44 0 0 0 0 0 +581 1783720727532717000 DEPTH 55 1 0.88198303427838076 1 15 1 15 1 0 106 22 2605 23664879 81600 860.70037841796875 5.9064000000000005 1053.3155999999999 120960 56638 1 0 5898240 4423680 4423680 4426477 4492800 156 150 150 150 1999 0 0 0 0 22 0 0 0 0 1 +582 1783720728847037800 DEPTH 13 1 0.90699734790776154 1 6 1 6 0 0 133 48 2514 23664769 81600 853.45651245117188 5.9636000000000005 1313.1958 120960 60465 1 0 5898240 4423680 4423680 4426367 4492800 178 150 159 159 1868 3 0 0 0 45 0 0 0 0 0 +583 1783720729883580700 DEPTH 5 1 0.82189477410203571 2 11 2 11 1 0 66 60 2509 23664903 81600 850.36126708984375 5.9220000000000006 1035.3661999999999 120960 62063 1 0 5898240 4423680 4423680 4426501 4492800 194 150 178 201 1786 0 0 0 1 59 0 0 0 0 2 +584 1783720731219997900 DEPTH 11 1 0.80553484856129964 0 8 0 8 0 0 73 23 2601 23664895 81600 853.03398132324219 5.9337000000000009 1335.2904000000001 120960 57538 1 0 5898240 4423680 4423680 4426494 4492800 333 150 190 340 1588 0 0 0 0 23 0 0 0 0 0 +585 1783720732588059100 DEPTH 21 1 0.83907716188105463 0 10 0 10 1 0 125 49 2528 23664892 81600 857.43257141113281 5.9760000000000009 1334.1375 120960 57171 1 0 5898240 4423680 4423680 4426492 4492800 186 150 150 150 1892 0 0 0 0 49 0 0 0 0 1 +586 1783720733653491300 DEPTH 8 1 0.84818708895419881 2 5 2 5 0 0 129 69 2504 23664917 81600 858.22439575195312 5.9183999999999992 1064.3696 120960 46402 1 0 5898240 4423680 4423680 4426515 4492800 186 156 150 172 1840 2 0 0 0 67 0 0 0 0 0 +587 1783720734744975500 DEPTH 33 1 0.85156661677182055 1 8 1 8 0 0 108 86 2531 23664784 81600 857.75257873535156 5.9496000000000002 1076.4003 120960 61957 1 0 5898240 4423680 4423680 4426384 4492800 151 150 150 150 1930 0 2 0 0 84 0 0 0 0 0 +588 1783720735805173700 DEPTH 12 1 0.80606151000910287 3 8 3 8 0 0 116 60 2504 23664894 81600 855.63127136230469 5.9226000000000001 1043.7766999999999 120960 56867 1 0 5898240 4423680 4423680 4426494 4492800 162 150 150 156 1886 0 0 0 0 60 0 0 0 0 0 +589 1783720737137437400 DEPTH 53 1 0.80489954637781069 0 8 0 8 1 0 96 66 2516 23664818 81600 855.84375 5.9241000000000001 1274.4445000000001 120960 55636 1 0 5898240 4423680 4423680 4426417 4492800 150 150 150 150 1916 0 0 0 0 66 0 0 0 0 1 +590 1783720738460935900 DEPTH 1 1 0.83871160105879361 1 8 1 8 1 0 93 71 2565 23664868 81600 856.6004638671875 5.9321999999999999 1322.4342999999999 120960 58118 1 0 5898240 4423680 4423680 4426467 4492800 218 150 153 156 1888 1 0 0 0 70 0 0 0 0 1 +591 1783720739513796700 DEPTH 45 1 0.76865489253851826 1 12 1 12 1 0 74 36 2548 23664732 81600 856.53460693359375 5.9115999999999991 1051.6806999999999 120960 56750 1 0 5898240 4423680 4423680 4426330 4492800 160 150 150 155 1933 0 2 0 0 34 0 0 0 0 3 +592 1783720740593728900 DEPTH 16 1 0.76475663926545734 2 8 2 8 0 0 129 70 2507 23664935 81600 861.66673278808594 6.0266000000000002 1078.7985000000001 120960 56829 1 0 5898240 4423680 4423680 4426535 4492800 156 150 150 150 1901 1 0 1 0 68 0 0 0 0 0 +593 1783720741931439700 DEPTH 56 1 0.82696386999972782 2 5 2 5 0 0 125 15 2612 23664807 81600 846.90538024902344 5.9149000000000003 1336.4806000000001 120960 50296 1 0 5898240 4423680 4423680 4426406 4492800 296 150 221 407 1538 0 0 0 0 15 0 0 0 0 0 +594 1783720742994177500 DEPTH 8 1 0.82772279066877597 2 5 2 5 0 0 131 64 2533 23664787 81600 853.07289123535156 5.9338999999999995 1061.6288999999999 120960 36729 1 0 5898240 4423680 4423680 4426384 4492800 168 156 150 156 1903 0 0 0 0 64 0 0 0 0 0 +595 1783720744298663100 DEPTH 31 1 0.82123278876224348 2 6 2 6 0 0 55 22 2566 23664803 81600 842.31503295898438 6.0034000000000001 1303.2589 120960 47599 1 0 5898240 4423680 4423680 4426400 4492800 261 150 193 337 1625 0 0 0 0 22 0 0 0 0 0 +596 1783720745644536900 DEPTH 17 1 0.82628260463135106 0 7 0 7 1 0 111 29 2537 23664793 81600 846.62689208984375 5.9299999999999997 1344.7317 120960 50051 1 0 5898240 4423680 4423680 4426391 4492800 184 150 255 497 1451 0 0 0 0 29 0 0 0 0 1 +597 1783720746992865700 DEPTH 13 1 0.81353084001268627 1 6 1 6 0 0 133 45 2516 23664842 81600 846.67465209960938 5.9361999999999995 1317.0119 120960 49813 1 0 5898240 4423680 4423680 4426438 4492800 188 150 161 163 1854 0 0 0 0 45 0 0 0 0 0 +598 1783720748078127400 DEPTH 50 1 0.76881795387659646 2 9 2 9 0 0 95 63 2549 23664803 81600 855.64724731445312 5.9391999999999996 1083.9069 120960 61815 1 0 5898240 4423680 4423680 4426403 4492800 157 150 168 246 1828 2 0 0 0 61 0 0 0 0 0 +599 1783720749431322400 DEPTH 44 1 0.76353013827531224 2 7 2 7 0 0 87 49 2554 23664920 81600 854.12660217285156 5.9321999999999999 1325.1455000000001 120960 56729 1 0 5898240 4423680 4423680 4426520 4492800 150 150 150 150 1954 0 0 0 0 49 0 0 0 0 0 +600 1783720750791480800 DEPTH 54 1 0.76312823498760174 1 8 1 8 0 0 76 33 2554 23664760 81600 850.171630859375 5.9451999999999998 1329.2760000000001 120960 58736 1 0 5898240 4423680 4423680 4426358 4492800 261 150 213 219 1711 0 0 0 0 33 0 0 0 0 0 +601 1783720751868104200 DEPTH 8 1 0.80802773791208793 2 5 2 5 1 0 134 52 2555 23664766 81600 850.29666137695312 5.9934000000000003 1055.3983000000001 120960 24844 1 0 5898240 4423680 4423680 4426365 4492800 163 156 150 150 1936 1 0 1 0 50 0 0 0 0 1 +602 1783720752918585900 DEPTH 55 1 0.8179677088289713 1 15 1 15 1 0 107 38 2591 23664793 81600 852.50627136230469 6.0076999999999998 1049.2692999999999 120960 45777 1 0 5898240 4423680 4423680 4426393 4492800 156 150 150 150 1985 0 0 1 0 37 0 0 0 0 1 +603 1783720754277231500 DEPTH 9 1 0.79822179361071433 2 7 2 6 1 0 92 24 2608 23664872 81600 857.97218322753906 5.9763000000000002 1296.0121999999999 120960 57313 1 0 5898240 4423680 4423680 4426470 4492800 150 150 150 150 2008 0 0 0 0 24 0 0 0 0 1 +604 1783720755565489000 DEPTH 14 1 0.76464562419551041 0 12 0 12 1 0 89 45 2570 23664889 81600 857.90870666503906 5.9102999999999994 1286.9553000000001 120960 57431 1 0 5898240 4423680 4423680 4426488 4492800 158 150 150 150 1962 0 0 0 0 45 0 0 0 0 1 +605 1783720756925535400 DEPTH 21 1 0.80094489634073285 0 10 0 10 1 0 127 39 2529 23664881 81600 850.654052734375 5.990499999999999 1326.3353999999999 120960 46405 1 0 5898240 4423680 4423680 4426481 4492800 197 150 150 156 1876 0 0 0 0 39 0 0 0 0 2 +606 1783720758291703400 DEPTH 52 1 0.75910069069538211 1 9 1 8 1 0 63 43 2585 23664814 81600 845.0721435546875 5.9343999999999992 1321.1195 120960 60790 1 0 5898240 4423680 4423680 4426412 4492800 226 150 226 249 1734 2 0 1 0 40 0 0 0 0 2 +607 1783720759359126500 DEPTH 33 1 0.81621484903735175 1 8 1 8 0 0 112 76 2508 23664896 81600 850.62568664550781 5.9432999999999998 1066.2086999999999 120960 50114 1 0 5898240 4423680 4423680 4426493 4492800 157 150 150 150 1901 0 0 3 0 73 0 0 0 0 0 +608 1783720760666199300 DEPTH 41 1 0.75541353773562459 1 10 1 10 0 0 77 45 2573 23664812 81600 851.54609680175781 5.9039000000000001 1283.2344000000001 120960 59503 1 0 5898240 4423680 4423680 4426410 4492800 150 150 150 174 1949 0 0 4 0 41 0 0 0 0 0 +609 1783720760864576000 REFRESH 42 0 0.74962680356694289 3 13 3 13 0 0 71 28 421 3943910 55200 149.50810241699219 0.98709999999999998 182.47810000000001 20160 14796 0 0 983040 737280 737280 737510 748800 25 25 25 25 321 0 0 0 0 28 0 0 0 0 0 +610 1783720761064862400 REFRESH 24 0 0.74965591851463065 3 13 3 13 0 0 66 21 422 3943898 55200 150.24639892578125 0.98329999999999995 184.2525 20160 14757 0 0 983040 737280 737280 737498 748800 33 25 29 33 302 1 0 0 0 20 0 0 0 0 0 +611 1783720761268403600 REFRESH 10 0 0.75534762264685718 1 11 1 11 0 0 74 21 421 3943909 55200 149.36370849609375 0.99019999999999997 187.3356 20160 14678 0 0 983040 737280 737280 737509 748800 25 25 26 25 320 0 0 0 0 21 0 0 0 0 0 +612 1783720761475128700 REFRESH 7 0 0.74819010274068576 2 12 2 12 0 0 73 18 420 3943931 55200 150.04261779785156 0.98760000000000003 183.678 20160 14213 0 0 983040 737280 737280 737531 748800 26 25 34 29 306 0 0 0 0 18 0 0 0 0 0 +613 1783720761676124100 REFRESH 38 0 0.74474308449632098 4 14 4 14 0 0 56 14 415 3943916 55200 148.92031860351562 0.98019999999999996 179.95009999999999 20160 14716 0 0 983040 737280 737280 737516 748800 25 25 26 27 312 0 0 0 0 14 0 0 0 0 0 +614 1783720761882908000 REFRESH 46 0 0.74704501077651075 2 15 2 15 0 0 64 23 416 3943909 55200 149.92282104492188 1.0073000000000001 184.95240000000001 20160 14799 0 0 983040 737280 737280 737509 748800 26 25 26 25 314 0 0 0 0 23 0 0 0 0 0 +615 1783720762077463300 REFRESH 40 0 0.74984600356632058 3 13 3 13 1 0 66 21 419 3943880 55200 149.07186889648438 0.98319999999999996 181.6507 20160 14639 0 0 983040 737280 737280 737480 748800 29 25 33 34 298 0 0 1 0 20 0 0 0 0 1 +616 1783720762276559800 REFRESH 49 0 0.75368276782788446 3 10 3 10 0 0 90 18 419 3943909 55200 149.57875061035156 0.9869 183.9751 20160 14377 0 0 983040 737280 737280 737509 748800 31 25 31 30 302 0 0 0 0 18 0 0 0 0 0 +617 1783720762476107200 REFRESH 37 0 0.75340267561465346 2 13 2 13 1 0 64 25 411 3943909 55200 149.09773254394531 0.98980000000000001 181.84739999999999 20160 14730 0 0 983040 737280 737280 737509 748800 28 25 27 27 304 0 0 0 0 25 0 0 0 0 1 +618 1783720762733750900 REFRESH 31 0 0.87635298552052188 2 6 2 6 0 0 56 12 412 3943897 55200 149.03208923339844 0.98680000000000001 208.0907 20160 12638 0 0 983040 737280 737280 737496 748800 88 25 38 81 180 0 0 0 0 12 0 0 0 0 0 +619 1783720762918785100 REFRESH 55 0 0.75602359794611917 1 15 1 15 0 0 107 14 411 3943911 55200 149.55520629882812 0.98809999999999998 183.8006 20160 12087 0 0 983040 737280 737280 737511 748800 26 25 25 25 310 0 0 0 0 14 0 0 0 0 0 +620 1783720763120034800 REFRESH 20 0 0.74425786565399066 3 12 3 12 0 0 62 20 415 3943907 55200 150.05491638183594 1.0880000000000001 184.9974 20160 14306 0 0 983040 737280 737280 737506 748800 25 25 25 28 312 0 0 0 0 20 0 0 0 0 0 +621 1783720763317240700 REFRESH 25 0 0.7542639536321295 3 11 3 11 0 0 72 8 418 3943892 55200 149.58592224121094 0.99009999999999998 181.95820000000001 20160 12058 0 0 983040 737280 737280 737492 748800 88 25 36 40 229 0 0 0 0 8 0 0 0 0 0 +622 1783720763505673700 REFRESH 14 0 0.68489487108406832 0 12 0 12 0 0 89 6 419 3943911 55200 149.79890441894531 0.98819999999999997 187.3107 20160 11987 0 0 983040 737280 737280 737511 748800 133 25 28 52 181 0 0 0 0 6 0 0 0 0 0 +623 1783720763737370000 REFRESH 52 0 0.79844812845503832 1 8 1 8 1 0 64 9 417 3943917 55200 149.16604614257812 0.98819999999999997 230.50880000000001 20160 11811 0 0 983040 737280 737280 737517 748800 124 25 55 79 134 1 0 0 0 8 0 0 0 0 1 +624 1783720763936147600 REFRESH 4 0 0.73553342271150424 1 13 1 13 0 0 38 6 419 3943907 55200 148.29055786132812 0.98670000000000002 179.6704 20160 14712 0 0 983040 737280 737280 737507 748800 27 25 32 26 309 0 0 0 0 6 0 0 0 0 0 +625 1783720764134056400 REFRESH 3 0 0.74890103387097495 3 11 3 11 0 0 84 22 416 3943924 55200 149.0882568359375 0.98809999999999998 181.46250000000001 20160 14316 0 0 983040 737280 737280 737523 748800 25 25 26 27 313 0 0 0 0 22 0 0 0 0 0 +626 1783720764362872100 REFRESH 54 0 0.75869989183231612 1 8 1 8 0 0 76 2 422 3943919 55200 150.36210632324219 1.0163 227.61680000000001 20160 12191 0 0 983040 737280 737280 737518 748800 117 25 87 65 128 0 0 0 0 2 0 0 0 0 0 +627 1783720764564659200 REFRESH 35 0 0.74868846400037647 2 11 2 11 0 0 82 37 423 3943900 55200 150.26380920410156 0.98650000000000004 183.50389999999999 20160 14766 0 0 983040 737280 737280 737499 748800 27 25 35 25 311 0 0 2 0 35 0 0 0 0 0 +628 1783720764781464700 REFRESH 1 0 0.88151609129247988 1 8 1 8 1 0 94 9 416 3943873 55200 150.44915771484375 0.98609999999999998 198.245 20160 12722 0 0 983040 737280 737280 737473 748800 160 25 46 50 135 1 0 0 0 8 0 0 0 0 1 +629 1783720764979629500 REFRESH 57 0 0.75356074517981009 2 13 2 13 0 0 71 17 417 3943917 55200 148.71653747558594 0.98270000000000002 181.2637 20160 14778 0 0 983040 737280 737280 737517 748800 25 25 26 31 310 0 0 0 0 17 0 0 0 0 0 +630 1783720765213552400 REFRESH 11 0 0.80200097279321669 0 8 0 8 0 0 73 6 424 3943925 55200 149.93919372558594 0.98729999999999996 232.81010000000001 20160 12002 0 0 983040 737280 737280 737525 748800 136 25 41 108 114 0 0 0 0 6 0 0 0 0 0 +631 1783720765408657500 REFRESH 51 0 0.74526311059856709 3 15 3 15 1 0 66 23 413 3943893 55200 149.37190246582031 1.0502 181.90639999999999 20160 14819 0 0 983040 737280 737280 737493 748800 29 25 42 32 285 0 0 4 0 19 0 0 0 0 1 +632 1783720765600667900 REFRESH 0 0 0.74879868147058071 1 12 1 12 0 0 56 16 426 3943913 55200 148.59571838378906 0.98550000000000004 179.98500000000001 20160 14684 0 0 983040 737280 737280 737513 748800 25 25 25 25 326 0 0 0 0 16 0 0 0 0 0 +633 1783720765799000600 REFRESH 29 0 0.74878962940379146 2 12 2 12 1 0 74 19 422 3943913 55200 150.20646667480469 0.99039999999999995 184.09739999999999 20160 14328 0 0 983040 737280 737280 737513 748800 25 25 25 25 322 0 0 0 0 19 0 0 0 0 1 +634 1783720766019942700 REFRESH 2 0 0.75368203911302334 2 13 2 13 0 0 62 24 425 3943928 55200 150.79731750488281 0.98150000000000004 182.8235 20160 14656 0 0 983040 737280 737280 737527 748800 25 25 25 27 323 0 1 2 1 20 0 0 0 0 0 +635 1783720766218440500 REFRESH 23 0 0.74766960756067902 3 14 3 14 0 0 65 25 415 3943927 55200 149.1568603515625 0.9798 182.078 20160 14745 0 0 983040 737280 737280 737526 748800 25 25 25 25 315 0 0 0 0 25 0 0 0 0 0 +636 1783720766416056100 REFRESH 48 0 0.729609928520358 2 12 2 12 0 0 37 7 417 3943897 55200 148.44621276855469 0.99050000000000005 182.4709 20160 14252 0 0 983040 737280 737280 737497 748800 32 25 42 46 272 0 0 0 0 7 0 0 0 0 0 +637 1783720766604531000 REFRESH 33 0 0.85241269962420729 1 8 1 8 0 0 116 17 414 3943928 55200 149.46917724609375 0.98870000000000002 186.91800000000001 20160 11864 0 0 983040 737280 737280 737528 748800 48 25 31 30 280 0 1 1 0 15 0 0 0 0 0 +638 1783720766805186700 REFRESH 27 0 0.74359560211234665 0 14 0 14 0 0 68 30 423 3943908 55200 149.40121459960938 0.9909 183.1165 20160 14714 0 0 983040 737280 737280 737508 748800 26 25 26 25 321 0 0 0 0 30 0 0 0 0 0 +639 1783720767020608500 REFRESH 44 0 0.7593712118497179 2 7 2 7 0 0 88 12 417 3943923 55200 149.78866577148438 0.98619999999999997 214.0796 20160 11941 0 0 983040 737280 737280 737523 748800 59 25 28 27 278 0 0 0 0 12 0 0 0 0 0 +640 1783720767301391900 REFRESH 19 0 0.74900050530758921 3 11 3 11 0 0 83 9 423 3943914 55200 149.88493347167969 0.99409999999999998 183.06309999999999 20160 14271 0 0 983040 737280 737280 737513 748800 25 25 25 25 323 0 0 0 0 9 0 0 0 0 0 +641 1783720767503214000 REFRESH 13 0 0.91071657002066719 1 6 1 6 0 0 133 5 412 3943912 55200 149.57977294921875 0.98809999999999998 200.60480000000001 20160 12751 0 0 983040 737280 737280 737512 748800 144 25 39 92 112 0 0 0 0 5 0 0 0 0 0 +642 1783720767701288200 REFRESH 15 0 0.7448524337941741 3 12 3 12 0 0 64 11 419 3943904 55200 149.71699523925781 0.98760000000000003 182.05029999999999 20160 14330 0 0 983040 737280 737280 737504 748800 25 25 26 25 318 0 0 0 0 11 0 0 0 0 0 +643 1783720767902966700 REFRESH 47 0 0.75404795271979741 2 11 2 11 0 0 91 14 420 3943897 55200 150.54643249511719 0.98750000000000004 183.27250000000001 20160 12097 0 0 983040 737280 737280 737496 748800 63 25 26 28 278 0 0 0 0 14 0 0 0 0 0 +644 1783720768101532700 REFRESH 9 0 0.94003551188554224 2 6 2 6 0 0 92 8 413 3943927 55200 150.75640869140625 0.9859 197.40369999999999 20160 12192 0 0 983040 737280 737280 737526 748800 26 25 25 25 312 0 0 0 0 8 0 0 0 0 0 +645 1783720768283612300 REFRESH 45 0 0.75950659781988639 1 12 1 12 0 0 75 15 410 3943914 55200 150.57305908203125 0.98250000000000004 180.97130000000001 20160 12074 0 0 983040 737280 737280 737514 748800 53 25 29 30 273 0 1 0 0 14 0 0 0 0 0 +646 1783720768481153400 REFRESH 18 0 0.74378838947177284 4 15 4 15 0 0 59 18 420 3943943 55200 150.39590454101562 0.98350000000000004 182.8409 20160 14843 0 0 983040 737280 737280 737541 748800 26 25 27 27 315 0 0 2 0 16 0 0 0 0 0 +647 1783720768683348000 REFRESH 36 0 0.74919759088910209 3 10 3 10 0 0 75 32 418 3943926 55200 150.35494995117188 0.98680000000000001 183.84530000000001 20160 14753 0 0 983040 737280 737280 737526 748800 25 25 26 27 315 0 0 0 0 32 0 0 0 0 0 +648 1783720768883644100 REFRESH 6 0 0.74829562181933085 3 14 3 14 0 0 70 24 417 3943895 55200 150.38362121582031 0.98599999999999999 182.83189999999999 20160 14725 0 0 983040 737280 737280 737495 748800 26 25 30 28 308 0 0 0 1 23 0 0 0 0 0 +649 1783720769116380800 REFRESH 56 0 0.92278181909488532 2 5 2 5 0 0 125 5 427 3943912 55200 150.97036743164062 0.98740000000000006 231.5103 20160 12819 0 0 983040 737280 737280 737511 748800 109 25 64 120 109 0 0 0 0 5 0 0 0 0 0 +650 1783720769310228900 REFRESH 41 0 0.74897496810616904 1 10 1 10 0 0 78 9 408 3943922 55200 149.07008361816406 0.98760000000000003 192.66460000000001 20160 12951 0 0 983040 737280 737280 737522 748800 39 25 30 56 258 0 0 0 0 9 0 0 0 0 0 +651 1783720769501027300 REFRESH 53 0 0.80177710116817569 0 8 0 8 1 0 97 13 418 3943942 55200 151.01542663574219 0.98880000000000001 189.67689999999999 20160 12003 0 0 983040 737280 737280 737542 748800 78 26 33 57 224 0 0 0 0 13 0 0 0 0 1 +652 1783720769699741900 REFRESH 39 0 0.74943431461431254 2 12 2 12 0 0 88 19 409 3943915 55200 150.3834228515625 0.98360000000000003 182.58199999999999 20160 14285 0 0 983040 737280 737280 737514 748800 28 25 27 28 301 0 0 2 3 14 0 0 0 0 0 +653 1783720769898255800 REFRESH 43 0 0.74540697683132007 2 13 2 13 0 0 74 16 412 3943916 55200 149.35653686523438 0.98960000000000004 182.80080000000001 20160 14359 0 0 983040 737280 737280 737516 748800 30 25 36 45 276 0 0 1 0 15 0 0 0 0 0 +654 1783720770094544600 REFRESH 26 0 0.74945998855842899 1 13 1 13 0 0 55 15 420 3943887 55200 149.61048889160156 0.98480000000000001 182.0488 20160 14172 0 0 983040 737280 737280 737487 748800 29 25 32 51 283 0 0 0 0 15 0 0 0 0 0 +655 1783720770281436500 REFRESH 8 0 0.9801548628273109 2 5 2 5 0 0 134 8 424 3943894 55200 151.48236083984375 0.98770000000000002 185.81139999999999 20160 12194 0 0 983040 737280 737280 737493 748800 31 27 26 27 313 0 0 0 0 8 0 0 0 0 0 +656 1783720770467608800 REFRESH 16 0 0.75849517404465483 2 8 2 8 0 0 129 7 410 3943933 55200 150.78912353515625 0.98599999999999999 185.09 20160 12080 0 0 983040 737280 737280 737533 748800 64 27 26 29 264 1 0 0 0 6 0 0 0 0 0 +657 1783720770677552200 REFRESH 58 0 0.75432497779912733 2 13 2 13 1 0 71 32 414 3943936 55200 149.8419189453125 0.97999999999999998 181.36449999999999 20160 14776 0 0 983040 737280 737280 737536 748800 26 25 26 25 312 0 0 1 0 31 0 0 0 0 1 +658 1783720770879717700 REFRESH 22 0 0.74554637174487659 3 12 3 12 0 0 85 19 416 3943895 55200 149.79890441894531 0.98719999999999997 184.56610000000001 20160 14328 0 0 983040 737280 737280 737495 748800 25 25 25 25 316 0 0 0 0 19 0 0 0 0 0 +659 1783720771083654900 REFRESH 32 0 0.75109027984894761 2 14 2 14 0 0 66 30 419 3943907 55200 149.82655334472656 0.99019999999999997 185.7379 20160 14670 0 0 983040 737280 737280 737507 748800 26 25 26 25 317 0 0 0 1 29 0 0 0 0 0 +660 1783720771284011600 REFRESH 21 0 0.83520503455146067 0 10 0 10 0 0 127 13 398 3943915 55200 150.0999755859375 0.98719999999999997 199.2072 20160 12233 0 0 983040 737280 737280 737515 748800 80 25 33 29 231 0 0 0 0 13 0 0 0 0 0 +661 1783720771466062700 REFRESH 5 0 0.80969003387376182 2 11 2 11 0 0 67 16 417 3943908 55200 148.91622924804688 1.0092000000000001 180.94990000000001 20160 11879 0 0 983040 737280 737280 737508 748800 55 25 40 46 251 1 0 0 0 15 0 0 0 0 0 +662 1783720771665460100 REFRESH 34 0 0.75446343760113632 1 14 1 14 0 0 67 18 414 3943882 55200 150.03231811523438 0.98640000000000005 182.96340000000001 20160 14683 0 0 983040 737280 737280 737481 748800 30 26 27 29 302 0 0 0 1 17 0 0 0 0 0 +663 1783720771894743400 REFRESH 17 0 0.91435397224867021 0 7 0 7 0 0 113 10 419 3943925 55200 148.87936401367188 0.9869 228.1532 20160 12456 0 0 983040 737280 737280 737525 748800 98 25 71 128 97 1 0 0 2 7 0 0 0 0 0 +664 1783720772079310500 REFRESH 12 0 0.79411924743719986 3 8 3 8 0 0 116 9 410 3943916 55200 150.44505310058594 0.9839 183.50399999999999 20160 11996 0 0 983040 737280 737280 737516 748800 83 25 50 34 218 0 0 0 0 9 0 0 0 0 0 +665 1783720772263776100 REFRESH 50 0 0.7595147861619822 2 9 2 9 0 0 95 11 420 3943911 55200 150.14707946777344 0.98660000000000003 183.24879999999999 20160 12393 0 0 983040 737280 737280 737511 748800 153 25 45 84 113 0 0 0 0 11 0 0 0 0 0 +666 1783720772470445900 REFRESH 28 0 0.74558748120243024 2 13 2 13 0 0 82 18 403 3943909 55200 150.01907348632812 0.9859 181.98519999999999 20160 14398 0 0 983040 737280 737280 737509 748800 26 25 29 39 284 0 0 0 0 18 0 0 0 0 0 +667 1783720772666236300 REFRESH 30 0 0.75554390687503381 2 12 2 12 0 0 75 16 406 3943902 55200 149.612548828125 0.98829999999999996 182.34289999999999 20160 14254 0 0 983040 737280 737280 737502 748800 32 25 38 54 257 0 0 0 3 13 0 0 0 0 0 +668 1783720773963717900 DEPTH 9 1 0.91007527858280157 2 6 2 6 0 0 92 22 2593 23664790 81600 856.887939453125 5.9184000000000001 1296.2585999999999 120960 57622 1 0 5898240 4423680 4423680 4426390 4492800 150 150 150 150 1993 0 0 0 0 22 0 0 0 0 0 +669 1783720775276325500 DEPTH 13 1 0.90272767067322945 1 6 1 6 0 0 134 44 2513 23664901 81600 856.39448547363281 5.9283000000000001 1311.3614 120960 61742 1 0 5898240 4423680 4423680 4426501 4492800 184 150 159 160 1860 0 0 0 0 44 0 0 0 0 0 +670 1783720776587796000 DEPTH 31 1 0.88330011581803125 2 6 2 6 0 0 57 15 2575 23664863 81600 850.68052673339844 5.9167999999999994 1310.1967999999999 120960 59069 1 0 5898240 4423680 4423680 4426457 4492800 301 150 193 325 1606 0 1 0 0 14 0 0 0 0 0 +671 1783720777945800100 DEPTH 1 1 0.86422082429058034 1 8 1 8 1 0 94 59 2574 23664827 81600 856.56123352050781 5.9150999999999998 1329.3468 120960 59376 1 0 5898240 4423680 4423680 4426427 4492800 277 150 156 159 1832 0 0 0 0 59 0 0 0 0 2 +672 1783720779282816800 DEPTH 52 1 0.86424312614185539 1 8 1 8 1 0 65 37 2588 23664912 81600 847.47337341308594 5.9405000000000001 1335.6793 120960 62354 1 0 5898240 4423680 4423680 4426511 4492800 283 150 224 248 1683 0 0 0 0 37 0 0 0 0 1 +673 1783720780650554200 DEPTH 56 1 0.90331158891717722 2 5 2 5 0 0 125 23 2608 23664773 81600 855.06747436523438 5.9977999999999998 1344.6815999999999 120960 61496 1 0 5898240 4423680 4423680 4426371 4492800 304 150 220 340 1594 0 0 0 1 22 0 0 0 0 0 +674 1783720781754315100 DEPTH 8 1 0.91000997733316979 2 5 2 5 0 0 135 64 2532 23664676 81600 864.58880615234375 5.9418000000000006 1070.0632000000001 120960 58090 1 0 5898240 4423680 4423680 4426274 4492800 163 156 150 151 1912 0 0 0 0 64 0 0 0 0 0 +675 1783720782864218900 DEPTH 33 1 0.83993177121214246 1 8 1 8 0 0 119 84 2524 23664806 81600 860.30180358886719 5.9886999999999997 1085.0673999999999 120960 56268 1 0 5898240 4423680 4423680 4426401 4492800 162 150 150 150 1912 0 0 0 0 84 0 0 0 0 0 +676 1783720783922393600 DEPTH 55 1 0.81681265563571892 1 15 1 15 0 0 110 25 2581 23664817 81600 859.18295288085938 5.9171000000000005 1056.8356000000001 120960 57204 1 0 5898240 4423680 4423680 4426417 4492800 156 150 150 150 1975 0 0 0 0 25 0 0 0 0 0 +677 1783720785255402300 DEPTH 53 1 0.79797467676621736 0 8 0 8 0 0 97 59 2522 23664808 81600 856.48744201660156 6.0028999999999995 1276.3434 120960 56478 1 0 5898240 4423680 4423680 4426408 4492800 151 150 150 151 1920 0 0 0 0 59 0 0 0 0 0 +678 1783720786607269600 DEPTH 11 1 0.79460384081383273 0 8 0 8 0 0 75 25 2601 23664841 81600 853.48988342285156 6.0294000000000008 1350.6778999999999 120960 57485 1 0 5898240 4423680 4423680 4426440 4492800 392 150 196 377 1486 0 0 0 0 25 0 0 0 0 0 +679 1783720787995858000 DEPTH 17 1 0.82150490564964651 0 7 0 7 0 0 114 31 2543 23664850 81600 856.58311462402344 6.0509000000000004 1362.4887000000001 120960 60107 1 0 5898240 4423680 4423680 4426445 4492800 201 150 255 455 1482 0 0 0 0 31 0 0 0 0 0 +680 1783720789371934600 DEPTH 44 1 0.7553937020374889 2 7 2 7 0 0 89 40 2562 23664857 81600 858.04951477050781 5.9157999999999999 1333.0606 120960 56882 1 0 5898240 4423680 4423680 4426453 4492800 150 150 150 150 1962 0 0 0 0 40 0 0 0 0 0 +681 1783720790421199400 DEPTH 45 1 0.75056535115428658 1 12 1 12 1 0 76 35 2549 23664853 81600 855.45419311523438 5.9203999999999999 1047.8397 120960 56407 1 0 5898240 4423680 4423680 4426451 4492800 165 150 150 156 1928 1 1 0 0 33 0 0 0 0 2 +682 1783720791508788100 DEPTH 10 1 0.74955430625432451 1 11 1 11 0 0 79 75 2585 23664753 81600 854.66502380371094 5.9665999999999997 1054.5199 120960 69723 1 0 5898240 4423680 4423680 4426353 4492800 150 150 150 150 1985 0 0 1 0 74 0 0 0 0 0 +683 1783720792586508000 DEPTH 49 1 0.74724092643660101 3 10 3 10 1 0 101 87 2567 23664871 81600 857.36666870117188 5.9289000000000005 1059.1279 120960 70282 1 0 5898240 4423680 4423680 4426471 4492800 150 150 156 150 1961 0 1 0 0 86 0 0 0 0 1 +684 1783720793922822700 DEPTH 9 1 0.81370499954502118 2 6 2 6 0 0 92 27 2604 23664825 81600 847.71846008300781 5.9738000000000007 1299.2116000000001 120960 47257 1 0 5898240 4423680 4423680 4426424 4492800 158 150 150 158 1988 1 0 0 0 26 0 0 0 0 0 +685 1783720795000127900 DEPTH 8 1 0.82249898232231111 2 5 2 5 1 0 135 47 2534 23664762 81600 855.23614501953125 5.9172999999999991 1060.8275000000001 120960 47700 1 0 5898240 4423680 4423680 4426360 4492800 162 157 150 150 1915 0 0 0 0 47 0 0 0 0 1 +686 1783720796346234000 DEPTH 21 1 0.82000635399682964 0 10 0 10 1 0 127 42 2528 23664909 81600 856.86528015136719 5.9355000000000002 1329.9543000000001 120960 58383 1 0 5898240 4423680 4423680 4426509 4492800 207 150 150 162 1859 2 0 0 0 40 1 0 0 0 1 +687 1783720797709802700 DEPTH 13 1 0.83018785890546543 1 6 1 6 0 0 136 43 2506 23664871 81600 845.02488708496094 5.9177999999999997 1308.5182 120960 51167 1 0 5898240 4423680 4423680 4426471 4492800 188 150 160 169 1839 1 0 0 0 42 0 0 0 0 0 +688 1783720798748637100 DEPTH 5 1 0.79607518438193303 2 11 2 11 0 0 69 47 2513 23664850 81600 852.02226257324219 5.9298000000000011 1037.7243000000001 120960 61531 1 0 5898240 4423680 4423680 4426450 4492800 248 150 192 206 1717 0 0 0 1 46 0 0 0 0 0 +689 1783720800084893300 DEPTH 56 1 0.81947551499576921 2 5 2 5 0 0 127 15 2607 23664774 81600 846.67091369628906 5.9351000000000003 1334.7483999999999 120960 50792 1 0 5898240 4423680 4423680 4426372 4492800 293 150 217 381 1566 0 0 0 0 15 0 0 0 0 0 +690 1783720801396384100 DEPTH 31 1 0.82068761783426747 2 6 2 6 0 0 58 21 2572 23664823 81600 840.50894165039062 5.9730000000000008 1310.0029 120960 48368 1 0 5898240 4423680 4423680 4426422 4492800 339 150 205 456 1422 0 0 0 0 21 0 0 0 0 0 +691 1783720802474028700 DEPTH 16 1 0.7489976507778372 2 8 2 8 0 0 132 75 2501 23664942 81600 863.39152526855469 5.9280999999999997 1076.5301999999999 120960 56613 1 0 5898240 4423680 4423680 4426540 4492800 156 150 150 150 1895 1 0 0 0 74 0 0 0 0 0 +692 1783720803807932200 DEPTH 1 1 0.80993744761288966 1 8 1 8 0 0 96 51 2581 23664865 81600 851.11233520507812 5.9279999999999999 1332.5009 120960 48135 1 0 5898240 4423680 4423680 4426465 4492800 271 150 157 167 1836 0 0 0 0 51 0 0 0 0 0 +693 1783720805125094800 DEPTH 52 1 0.81025177988667785 1 8 1 8 0 0 68 32 2591 23664779 81600 836.28387451171875 5.9295999999999998 1315.9113 120960 51019 1 0 5898240 4423680 4423680 4426377 4492800 386 150 233 340 1482 0 0 0 0 32 0 0 0 0 0 +694 1783720806476000000 DEPTH 17 1 0.80871245593991892 0 7 0 7 0 0 114 42 2540 23664926 81600 847.73779296875 5.9267000000000003 1349.8321000000001 120960 49173 1 0 5898240 4423680 4423680 4426524 4492800 205 150 239 479 1467 0 0 0 0 42 0 0 0 0 0 +695 1783720807531466800 DEPTH 12 1 0.78119823715172343 3 8 3 8 0 0 117 47 2519 23664819 81600 855.6483154296875 5.9158999999999997 1054.3126999999999 120960 56959 1 0 5898240 4423680 4423680 4426418 4492800 170 150 150 156 1893 0 0 0 0 47 0 0 0 0 0 +696 1783720808607563800 DEPTH 8 1 0.81962000858186934 2 5 2 5 0 0 136 46 2548 23664864 81600 855.33363342285156 5.9138999999999999 1060.1533999999999 120960 37142 1 0 5898240 4423680 4423680 4426464 4492800 165 159 150 153 1921 0 0 0 0 46 0 0 0 0 0 +697 1783720809691119200 DEPTH 50 1 0.75022796854499085 2 9 2 9 0 0 97 53 2548 23664840 81600 856.80096435546875 5.9479999999999995 1082.4232999999999 120960 59792 1 0 5898240 4423680 4423680 4426439 4492800 162 150 168 250 1818 0 0 0 1 52 0 0 0 0 0 +698 1783720810799732800 DEPTH 33 1 0.80813317660917194 1 8 1 8 1 0 120 69 2508 23664862 81600 853.19776916503906 6.0407000000000002 1078.2442000000001 120960 45434 1 0 5898240 4423680 4423680 4426462 4492800 162 150 150 150 1896 0 0 0 1 68 0 0 0 0 1 +699 1783720811925528000 DEPTH 30 1 0.74753205632410435 2 12 2 12 1 0 78 74 2526 23664795 81600 852.83686828613281 5.9446000000000003 1051.4539 120960 69891 1 0 5898240 4423680 4423680 4426393 4492800 152 150 152 161 1911 0 0 0 3 71 0 0 0 0 2 +700 1783720812128363200 REFRESH 51 0 0.73805620799197147 3 15 3 15 0 0 67 18 410 3943925 55200 149.85317993164062 0.98429999999999995 181.9058 20160 14688 0 0 983040 737280 737280 737525 748800 29 25 43 40 273 0 0 4 1 13 0 0 0 0 0 +701 1783720812327000900 REFRESH 34 0 0.74641293549249865 1 14 1 14 0 0 69 15 419 3943893 55200 149.82144165039062 0.9859 182.18719999999999 20160 14659 0 0 983040 737280 737280 737493 748800 29 26 25 29 310 0 0 0 0 15 0 0 0 0 0 +702 1783720812532671400 REFRESH 1 0 0.68549818341531799 1 8 1 8 0 0 96 5 421 3943901 55200 149.96479797363281 0.98819999999999997 204.54990000000001 20160 12303 0 0 983040 737280 737280 737501 748800 179 25 42 51 124 0 0 0 0 5 0 0 0 0 0 +703 1783720812763487100 REFRESH 17 0 0.74589399882838114 0 7 0 7 0 0 114 5 420 3943906 55200 150.37849426269531 0.98609999999999998 229.65450000000001 20160 13129 0 0 983040 737280 737280 737506 748800 80 25 63 111 141 0 0 0 0 5 0 0 0 0 0 +704 1783720812999478600 REFRESH 43 0 0.73845347630601721 2 13 2 13 0 0 78 19 414 3943911 55200 149.47225952148438 0.98550000000000004 182.1806 20160 14104 0 0 983040 737280 737280 737511 748800 30 25 32 43 284 0 0 0 0 19 0 0 0 0 0 +705 1783720813203769500 REFRESH 14 0 0.74321742198509644 0 12 0 12 0 0 89 9 417 3943907 55200 150.19110107421875 0.98540000000000005 189.21899999999999 20160 12066 0 0 983040 737280 737280 737507 748800 123 25 27 48 194 0 0 0 0 9 0 0 0 0 0 +706 1783720813413317400 REFRESH 44 0 0.75126350902956918 2 7 2 7 0 0 90 15 417 3943898 55200 150.108154296875 0.98729999999999996 208.3321 20160 11995 0 0 983040 737280 737280 737498 748800 76 25 32 29 255 0 0 0 0 15 0 0 0 0 0 +707 1783720813609323800 REFRESH 41 0 0.74226434523846918 1 10 1 10 0 0 79 11 412 3943900 55200 149.21830749511719 0.98719999999999997 194.82380000000001 20160 12857 0 0 983040 737280 737280 737499 748800 40 25 29 53 265 0 0 0 0 11 0 0 0 0 0 +708 1783720813840574600 REFRESH 56 0 0.8458827950190182 2 5 2 5 0 0 127 6 425 3943916 55200 150.466552734375 0.98709999999999998 229.71889999999999 20160 13083 0 0 983040 737280 737280 737515 748800 110 25 67 118 105 0 0 0 0 6 0 0 0 0 0 +709 1783720814050118900 REFRESH 18 0 0.73638556772201036 4 15 4 15 0 0 60 20 423 3943928 55200 150.58840942382812 0.98409999999999997 183.68109999999999 20160 14772 0 0 983040 737280 737280 737528 748800 26 25 28 28 316 0 0 1 0 19 0 0 0 0 0 +710 1783720814257654000 REFRESH 0 0 0.74312109893721356 1 12 1 12 0 0 57 11 424 3943929 55200 149.1435546875 0.98480000000000001 181.2824 20160 14606 0 0 983040 737280 737280 737529 748800 26 25 25 27 321 0 0 0 0 11 0 0 0 0 0 +711 1783720814456528600 REFRESH 42 0 0.74333547089594998 3 13 3 13 0 0 72 25 417 3943916 55200 149.11077880859375 0.98699999999999999 182.45769999999999 20160 14722 0 0 983040 737280 737280 737516 748800 25 25 26 25 316 0 0 1 0 24 0 0 0 0 0 +712 1783720814684635000 REFRESH 52 0 0.7773595404873217 1 8 1 8 1 0 70 13 424 3943905 55200 148.822021484375 0.98819999999999997 226.8648 20160 13483 0 0 983040 737280 737280 737505 748800 160 25 47 63 129 0 0 0 1 12 0 0 0 0 1 +713 1783720814898946200 REFRESH 31 0 0.83914253661936922 2 6 2 6 1 0 59 13 420 3943900 55200 148.54861450195312 1.0097 213.21539999999999 20160 12395 0 0 983040 737280 737280 737500 748800 105 25 42 88 160 0 0 0 0 13 0 0 0 0 1 +714 1783720815085468000 REFRESH 16 0 0.72296083890306628 2 8 2 8 0 0 132 8 414 3943915 55200 151.38800048828125 0.98009999999999997 185.4846 20160 11948 0 0 983040 737280 737280 737514 748800 87 33 26 31 237 0 0 0 0 8 0 0 0 0 0 +715 1783720815351646200 REFRESH 58 0 0.74679926761760773 2 13 2 13 0 0 75 24 416 3943918 55200 150.51673889160156 0.98819999999999997 182.99440000000001 20160 14658 0 0 983040 737280 737280 737518 748800 26 25 29 26 310 0 0 1 0 23 0 0 0 0 0 +716 1783720815566252500 REFRESH 9 0 0.8890187717969199 2 6 2 6 0 0 93 12 415 3943887 55200 149.48045349121094 1.0448999999999999 213.28800000000001 20160 12161 0 0 983040 737280 737280 737487 748800 29 25 26 26 309 0 0 0 1 11 0 0 0 0 0 +717 1783720815750348400 REFRESH 45 0 0.74227005924138745 1 12 2 11 1 0 78 12 410 3943890 55200 150.15321350097656 0.98760000000000003 182.68889999999999 20160 11972 0 0 983040 737280 737280 737490 748800 57 25 28 31 269 0 0 1 0 11 0 0 1 0 0 +718 1783720815960500800 REFRESH 28 0 0.73864814016158009 2 13 2 13 0 0 84 16 402 3943892 55200 150.656005859375 0.99270000000000003 184.70079999999999 20160 14161 0 0 983040 737280 737280 737491 748800 26 25 28 33 290 0 0 0 0 16 0 0 0 0 0 +719 1783720816145718200 REFRESH 50 0 0.71144760112312178 2 9 2 9 0 0 97 4 422 3943903 55200 150.15219116210938 0.98599999999999999 184.0847 20160 12088 0 0 983040 737280 737280 737502 748800 153 25 49 80 115 0 0 0 0 4 0 0 0 0 0 +720 1783720816350296500 REFRESH 38 0 0.73856371654772457 4 14 4 14 1 0 58 17 413 3943893 55200 149.56329345703125 0.98580000000000001 181.5248 20160 14773 0 0 983040 737280 737280 737493 748800 25 25 26 26 311 0 0 0 0 17 0 0 0 0 1 +721 1783720816543813900 REFRESH 48 0 0.72248684174111899 2 12 2 12 0 0 37 4 422 3943911 55200 148.19020080566406 0.9849 178.2413 20160 13996 0 0 983040 737280 737280 737511 748800 31 25 39 48 279 0 0 0 0 4 0 0 0 0 0 +722 1783720816752333000 REFRESH 53 0 0.79466624524677021 0 8 0 8 0 0 98 14 417 3943918 55200 150.434814453125 0.99139999999999995 192.00380000000001 20160 11953 0 0 983040 737280 737280 737517 748800 86 27 32 47 225 0 0 0 0 14 0 0 0 0 0 +723 1783720816956151200 REFRESH 13 0 0.89799199349763281 1 6 1 6 0 0 136 3 415 3943922 55200 149.66169738769531 1.0017 202.60149999999999 20160 12852 0 0 983040 737280 737280 737522 748800 140 25 40 92 118 0 0 0 0 3 0 0 0 0 0 +724 1783720817165317000 REFRESH 40 0 0.74375788611235638 3 13 3 13 0 0 67 20 414 3943912 55200 149.07904052734375 0.98609999999999998 180.40780000000001 20160 14718 0 0 983040 737280 737280 737512 748800 29 25 31 33 296 0 0 2 1 17 0 0 0 0 0 +725 1783720817367396000 REFRESH 15 0 0.73873854656412519 3 12 3 12 0 0 64 11 416 3943934 55200 149.496826171875 0.98809999999999998 182.13290000000001 20160 14153 0 0 983040 737280 737280 737533 748800 25 25 26 25 315 0 0 0 0 11 0 0 0 0 0 +726 1783720817567498400 REFRESH 36 0 0.74350371580517538 3 10 3 10 0 0 78 17 419 3943928 55200 149.9105224609375 0.99099999999999999 183.88679999999999 20160 14652 0 0 983040 737280 737280 737528 748800 25 25 26 27 316 1 0 1 0 15 0 0 0 0 0 +727 1783720817768241000 REFRESH 3 0 0.74326759993330616 3 11 3 11 0 0 85 21 414 3943899 55200 148.33868408203125 0.9919 181.4503 20160 14132 0 0 983040 737280 737280 737499 748800 26 25 28 27 308 0 0 0 0 21 0 0 0 0 0 +728 1783720817967499800 REFRESH 6 0 0.74129171387547088 3 14 3 14 1 0 72 23 417 3943893 55200 149.92486572265625 0.98629999999999995 183.5745 20160 14747 0 0 983040 737280 737280 737493 748800 26 25 31 31 304 0 0 0 2 21 0 0 0 0 1 +729 1783720818182094400 REFRESH 4 0 0.72731022621038011 1 13 1 13 0 0 39 9 417 3943908 55200 148.11135864257812 0.98750000000000004 181.0187 20160 14639 0 0 983040 737280 737280 737508 748800 31 25 37 29 295 0 0 0 0 9 0 0 0 0 0 +730 1783720818380181700 REFRESH 32 0 0.74385395267396759 2 14 2 14 1 0 69 20 421 3943902 55200 149.62693786621094 0.98599999999999999 181.46469999999999 20160 14655 0 0 983040 737280 737280 737502 748800 26 25 26 25 319 0 0 0 0 20 0 0 0 0 1 +731 1783720818588419700 REFRESH 2 0 0.74717600820135743 2 13 2 13 0 0 66 23 427 3943915 55200 149.70060729980469 0.98270000000000002 182.8502 20160 14723 0 0 983040 737280 737280 737515 748800 25 25 25 27 325 0 1 3 0 19 0 0 0 0 0 +732 1783720818786402600 REFRESH 22 0 0.73914405640931102 3 12 3 12 0 0 87 14 409 3943913 55200 149.71084594726562 0.98880000000000001 182.5668 20160 14099 0 0 983040 737280 737280 737513 748800 26 25 25 25 308 0 0 0 0 14 0 0 0 0 0 +733 1783720818982859800 REFRESH 8 0 0.95312147484404086 2 5 2 5 0 0 136 12 416 3943906 55200 151.30624389648438 0.99719999999999998 195.3004 20160 12393 0 0 983040 737280 737280 737506 748800 76 42 29 29 240 0 0 0 0 12 0 0 0 0 0 +734 1783720819167103400 REFRESH 49 0 0.74090094918110871 3 10 3 10 0 0 103 15 417 3943898 55200 150.5269775390625 0.99119999999999997 183.05699999999999 20160 13074 0 0 983040 737280 737280 737498 748800 32 25 29 30 301 0 0 0 0 15 0 0 0 0 0 +735 1783720819425042000 REFRESH 37 0 0.74751584410734928 2 13 2 13 1 0 68 22 407 3943915 55200 149.433349609375 0.98680000000000001 182.01669999999999 20160 14572 0 0 983040 737280 737280 737515 748800 27 25 26 28 301 1 0 0 0 21 0 0 0 0 1 +736 1783720819624341500 REFRESH 7 0 0.74317160147960293 2 12 2 12 0 0 73 15 415 3943896 55200 149.29533386230469 0.97929999999999995 181.36070000000001 20160 14257 0 0 983040 737280 737280 737496 748800 28 25 51 36 275 0 0 0 0 15 0 0 0 0 0 +737 1783720819877091600 REFRESH 54 0 0.7481997175981826 1 8 1 8 0 0 77 8 425 3943924 55200 149.6494140625 0.98660000000000003 227.06219999999999 20160 12128 0 0 983040 737280 737280 737523 748800 121 25 93 64 122 0 0 0 1 7 0 0 0 0 0 +738 1783720820080216400 REFRESH 19 0 0.74225205510313241 3 11 3 11 0 0 84 18 421 3943909 55200 150.16140747070312 0.98170000000000002 182.59129999999999 20160 14109 0 0 983040 737280 737280 737509 748800 25 25 25 25 321 0 0 0 0 18 0 0 0 0 0 +739 1783720820276456300 REFRESH 47 0 0.74694475479919253 2 11 2 11 0 0 92 15 421 3943900 55200 150.03042602539062 1.0206999999999999 182.4812 20160 12080 0 0 983040 737280 737280 737500 748800 44 25 26 25 301 0 0 0 0 15 0 0 0 0 0 +740 1783720820487011400 REFRESH 29 0 0.74332631550802275 2 12 2 12 0 0 75 19 419 3943918 55200 150.39283752441406 0.9899 185.91 20160 14168 0 0 983040 737280 737280 737518 748800 25 25 25 25 319 0 0 0 0 19 0 0 0 0 0 +741 1783720820703193600 REFRESH 26 0 0.74339637827682603 1 13 1 13 0 0 57 11 424 3943898 55200 148.73394775390625 0.98660000000000003 180.89230000000001 20160 14266 0 0 983040 737280 737280 737497 748800 29 25 34 50 286 0 0 0 0 11 0 0 0 0 0 +742 1783720820910172100 REFRESH 35 0 0.74392414390788475 2 11 2 11 0 0 84 22 421 3943917 55200 150.11532592773438 0.98650000000000004 183.66319999999999 20160 14611 0 0 983040 737280 737280 737516 748800 27 25 33 25 311 1 0 1 0 20 0 0 0 0 0 +743 1783720821119625600 REFRESH 39 0 0.74346966262693792 2 12 2 12 0 0 92 22 409 3943942 55200 149.42941284179688 0.99080000000000001 185.01240000000001 20160 14146 0 0 983040 737280 737280 737542 748800 28 25 26 26 304 0 0 2 1 19 0 0 0 0 0 +744 1783720821316332200 REFRESH 20 0 0.7392068024837688 3 12 3 12 0 0 64 10 413 3943900 55200 148.77593994140625 0.98670000000000002 181.18219999999999 20160 14161 0 0 983040 737280 737280 737500 748800 25 25 26 28 309 0 0 0 0 10 0 0 0 0 0 +745 1783720821529159500 REFRESH 55 0 0.79948732028549818 1 15 1 15 0 0 110 14 405 3943906 55200 150.16038513183594 0.97929999999999995 181.7868 20160 12121 0 0 983040 737280 737280 737506 748800 26 25 25 25 304 0 0 0 0 14 0 0 0 0 0 +746 1783720821726218600 REFRESH 57 0 0.74756740107796615 2 13 2 13 0 0 72 22 418 3943920 55200 148.89164733886719 1.0118 181.90960000000001 20160 14617 0 0 983040 737280 737280 737520 748800 25 25 27 31 310 0 0 0 0 22 0 0 0 0 0 +747 1783720821912703400 REFRESH 12 0 0.77071344207174586 3 8 3 8 0 0 117 13 412 3943917 55200 149.94943237304688 0.98829999999999996 184.9967 20160 12100 0 0 983040 737280 737280 737517 748800 84 25 39 31 233 0 0 0 0 13 0 0 0 0 0 +748 1783720822125620800 REFRESH 24 0 0.7442618201472988 3 13 4 12 1 0 71 24 418 3943892 55200 151.69842529296875 0.98780000000000001 187.5575 20160 14559 0 0 983040 737280 737280 737492 748800 30 25 28 31 304 0 0 0 1 23 0 0 0 0 1 +749 1783720822326175800 REFRESH 46 0 0.74155933425040832 2 15 2 15 0 0 67 24 417 3943886 55200 149.34732055664062 0.98729999999999996 183.96199999999999 20160 14706 0 0 983040 737280 737280 737486 748800 26 25 26 25 315 0 0 1 0 23 0 0 0 0 0 +750 1783720822509289300 REFRESH 30 0 0.74166771710708301 2 12 2 12 0 0 81 14 402 3943903 55200 149.43232727050781 0.98609999999999998 181.88720000000001 20160 12981 0 0 983040 737280 737280 737503 748800 32 25 32 39 274 0 0 0 1 13 0 0 0 0 0 +751 1783720822731144900 REFRESH 10 0 0.74411512148061687 1 11 1 11 0 0 80 16 418 3943896 55200 149.93408203125 0.99150000000000005 184.81370000000001 20160 14242 0 0 983040 737280 737280 737496 748800 25 25 26 25 317 0 0 1 0 15 0 0 0 0 0 +752 1783720822929688000 REFRESH 25 0 0.7456719717687823 3 11 3 11 0 0 72 6 423 3943908 55200 149.75999450683594 0.98740000000000006 183.47730000000001 20160 12161 0 0 983040 737280 737280 737508 748800 95 25 40 48 215 0 0 0 0 6 0 0 0 0 0 +753 1783720823111474900 REFRESH 5 0 0.78441810184962502 2 11 2 11 0 0 71 13 416 3943901 55200 149.19065856933594 0.98640000000000005 180.73779999999999 20160 13548 0 0 983040 737280 737280 737501 748800 93 25 42 47 209 0 0 0 1 12 0 0 0 0 0 +754 1783720823318800200 REFRESH 23 0 0.74170221256366931 3 14 3 14 0 0 67 21 412 3943900 55200 150.0528564453125 0.98770000000000002 184.0256 20160 14640 0 0 983040 737280 737280 737500 748800 25 25 25 25 312 0 0 0 0 21 0 0 0 0 0 +755 1783720823551889600 REFRESH 11 0 0.79223654727070469 0 8 0 8 0 0 75 6 427 3943953 55200 148.99711608886719 0.99519999999999997 231.9419 20160 12407 0 0 983040 737280 737280 737551 748800 153 25 45 109 95 0 0 0 1 5 0 0 0 0 0 +756 1783720823739841800 REFRESH 33 0 0.81796422133783331 1 8 1 7 1 0 120 14 410 3943919 55200 150.13888549804688 0.98919999999999997 186.77340000000001 20160 11920 0 0 983040 737280 737280 737519 748800 64 25 32 31 258 0 0 1 0 13 0 0 0 0 1 +757 1783720823981035700 REFRESH 27 0 0.73888983613811754 0 14 0 14 0 0 71 25 419 3943924 55200 150.63961791992188 1.0129999999999999 185.10400000000001 20160 14630 0 0 983040 737280 737280 737523 748800 26 25 26 25 317 0 0 0 0 25 0 0 0 0 0 +758 1783720824181504600 REFRESH 21 0 0.80698589089654071 0 10 0 10 0 0 127 6 401 3943917 55200 150.22079467773438 0.98709999999999998 199.387 20160 12181 0 0 983040 737280 737280 737517 748800 75 25 33 29 239 0 0 0 0 6 0 0 0 0 0 +759 1783720825283520800 DEPTH 8 1 0.94688080450062007 2 5 2 5 0 0 137 51 2534 23664752 81600 866.54864501953125 5.9243000000000006 1077.9621999999999 120960 59738 1 0 5898240 4423680 4423680 4426349 4492800 175 163 150 154 1892 0 0 0 0 51 0 0 0 0 0 +760 1783720826649591600 DEPTH 56 1 0.89895649530342192 2 5 2 5 0 0 128 27 2607 23664796 81600 855.91415405273438 5.9908999999999999 1346.05 120960 62386 1 0 5898240 4423680 4423680 4426394 4492800 305 150 228 354 1570 0 0 0 2 25 0 0 0 0 0 +761 1783720828055927900 DEPTH 17 1 0.89891551877929565 0 7 0 7 0 0 116 39 2541 23664816 81600 855.5888671875 5.9367000000000001 1356.0474999999999 120960 62429 1 0 5898240 4423680 4423680 4426415 4492800 212 150 253 434 1492 0 0 0 0 39 0 0 0 0 0 +762 1783720829376024500 DEPTH 13 1 0.88888184639759626 1 6 1 6 0 0 138 50 2514 23664927 81600 858.00003051757812 6.0827 1318.8443 120960 62387 1 0 5898240 4423680 4423680 4426525 4492800 194 150 162 170 1838 0 0 0 0 50 0 0 0 0 0 +763 1783720830673663900 DEPTH 9 1 0.87582322896034404 2 6 2 6 0 0 94 29 2593 23664882 81600 857.78614807128906 5.8977000000000004 1296.5682999999999 120960 57761 1 0 5898240 4423680 4423680 4426482 4492800 172 150 156 159 1956 4 1 0 1 23 0 0 0 0 0 +764 1783720831982236500 DEPTH 31 1 0.84901090042050109 2 6 2 6 0 0 60 13 2581 23664834 81600 848.31295776367188 5.9257 1306.8697999999999 120960 59394 1 0 5898240 4423680 4423680 4426434 4492800 399 150 208 386 1438 0 0 0 0 13 0 0 0 0 0 +765 1783720833308285400 DEPTH 52 1 0.82617633989788519 1 8 1 8 1 0 72 32 2591 23664844 81600 847.48597717285156 5.9215 1324.6759 120960 64554 1 0 5898240 4423680 4423680 4426444 4492800 476 150 233 247 1485 1 0 1 0 30 0 0 0 0 1 +766 1783720834651738400 DEPTH 1 1 0.81822657865312121 1 8 1 8 1 0 99 56 2582 23664861 81600 858.37062072753906 5.9408000000000003 1342.3323 120960 58979 1 0 5898240 4423680 4423680 4426460 4492800 308 150 160 184 1780 2 0 0 0 54 0 0 0 0 1 +767 1783720835735197400 DEPTH 33 1 0.81766420460252331 1 7 1 7 0 0 126 72 2494 23664913 81600 860.70565795898438 5.9093 1082.2816 120960 56287 1 0 5898240 4423680 4423680 4426512 4492800 166 150 150 150 1878 2 0 1 0 69 0 0 0 0 0 +768 1783720837019065200 DEPTH 53 1 0.79145550856563085 0 8 0 8 0 0 100 58 2525 23664840 81600 857.04483032226562 5.9177 1282.6766 120960 55900 1 0 5898240 4423680 4423680 4426439 4492800 150 150 150 150 1925 0 0 0 0 58 0 0 0 0 0 +769 1783720838093838000 DEPTH 45 1 0.78486536447292488 2 11 2 10 1 0 81 64 2573 23664855 81600 858.26345825195312 5.9456000000000007 1073.5659000000001 120960 56646 1 0 5898240 4423680 4423680 4426454 4492800 167 150 156 155 1945 0 0 2 0 62 0 0 0 0 4 +770 1783720839187104300 DEPTH 8 1 0.8008157116533271 2 5 2 5 0 0 137 48 2535 23664813 81600 857.51567077636719 6.0357000000000003 1065.0619999999999 120960 48928 1 0 5898240 4423680 4423680 4426412 4492800 166 161 150 154 1904 0 0 0 0 48 0 0 0 0 0 +771 1783720840249076600 DEPTH 55 1 0.78290633169285984 1 15 1 15 1 0 110 24 2577 23664847 81600 860.83706665039062 5.9188000000000001 1060.7965999999999 120960 57593 1 0 5898240 4423680 4423680 4426446 4492800 156 150 150 150 1971 1 0 0 0 23 0 0 0 0 2 +772 1783720841599785200 DEPTH 44 1 0.74803757198791254 2 7 2 7 0 0 91 24 2561 23664802 81600 858.47721862792969 5.9107000000000003 1332.154 120960 56906 1 0 5898240 4423680 4423680 4426400 4492800 150 150 150 150 1961 1 0 0 0 23 0 0 0 0 0 +773 1783720842978113200 DEPTH 54 1 0.74304118239719474 1 8 1 8 1 0 80 42 2563 23664848 81600 850.17388916015625 5.8983999999999996 1327.723 120960 57439 1 0 5898240 4423680 4423680 4426448 4492800 275 150 229 235 1674 0 0 0 0 42 0 0 0 0 1 +774 1783720844062430400 DEPTH 37 1 0.74019567598395719 2 13 1 13 1 0 73 117 2589 23664933 81600 859.25202941894531 5.9172000000000002 1058.2144000000001 120960 70234 1 0 5898240 4423680 4423680 4426532 4492800 155 150 150 150 1984 3 0 2 0 112 0 0 0 0 5 +775 1783720845430340800 DEPTH 56 1 0.79603735094063122 2 5 2 5 0 0 130 23 2610 23664782 81600 846.88461303710938 5.9203999999999999 1335.0673999999999 120960 52166 1 0 5898240 4423680 4423680 4426382 4492800 300 150 227 405 1528 0 0 0 1 22 0 0 0 0 0 +776 1783720846802868200 DEPTH 17 1 0.79681620740954096 0 7 0 7 1 0 117 38 2544 23664800 81600 848.58973693847656 5.9169 1349.7429999999999 120960 51223 1 0 5898240 4423680 4423680 4426399 4492800 181 150 243 464 1506 0 0 0 1 37 0 0 0 0 2 +777 1783720847874408400 DEPTH 24 1 0.78664142149256677 4 12 4 12 1 0 83 171 2568 23664798 81600 861.00428771972656 5.9337 1070.3059000000001 120960 70546 1 0 5898240 4423680 4423680 4426398 4492800 150 150 150 150 1968 3 4 0 1 163 0 0 0 0 2 +778 1783720848975948400 DEPTH 33 1 0.79812868267883907 1 7 1 7 0 0 128 82 2499 23664813 81600 854.72854614257812 5.9238 1078.6403 120960 45419 1 0 5898240 4423680 4423680 4426413 4492800 168 150 150 150 1881 2 0 0 0 80 0 0 0 0 0 +779 1783720850336622400 DEPTH 13 1 0.80719746034409512 1 6 1 6 0 0 139 41 2515 23664882 81600 846.98698425292969 5.976 1303.8802000000001 120960 51290 1 0 5898240 4423680 4423680 4426482 4492800 205 150 166 186 1808 0 0 0 0 41 0 0 0 0 0 +780 1783720851389699300 DEPTH 12 1 0.7606871952651646 3 8 3 8 0 0 120 61 2508 23664790 81600 854.04899597167969 5.9156999999999993 1051.9919 120960 57422 1 0 5898240 4423680 4423680 4426388 4492800 175 150 150 163 1870 0 0 0 0 61 0 0 0 0 0 +781 1783720852466087600 DEPTH 5 1 0.77293010404941043 2 11 2 11 0 0 76 50 2513 23664845 81600 851.62924194335938 5.9347000000000003 1048.6280999999999 120960 63533 1 0 5898240 4423680 4423680 4426441 4492800 343 150 196 232 1592 0 0 1 0 49 0 0 0 0 0 +782 1783720853542854400 DEPTH 58 1 0.74011652319265953 2 13 2 13 1 0 87 99 2598 23664787 81600 858.27165222167969 5.9211 1059.7496000000001 120960 70455 1 0 5898240 4423680 4423680 4426384 4492800 150 150 150 150 1998 0 1 0 0 98 0 0 0 0 4 +783 1783720854624282700 DEPTH 8 1 0.81517012398181399 2 5 2 5 0 0 138 49 2531 23664862 81600 853.47648620605469 6.0067000000000004 1064.6960999999999 120960 39605 1 0 5898240 4423680 4423680 4426460 4492800 188 165 152 165 1861 0 1 0 0 48 0 0 0 0 0 +784 1783720855927667700 DEPTH 9 1 0.82327610556741782 2 6 2 6 0 0 94 21 2608 23664912 81600 857.34996032714844 5.9291 1301.9909 120960 46848 1 0 5898240 4423680 4423680 4426511 4492800 185 150 156 157 1960 0 0 0 0 21 0 0 0 0 0 +785 1783720857268691600 DEPTH 21 1 0.79018620616408286 0 10 0 10 1 0 129 43 2532 23664719 81600 858.73822021484375 5.9169999999999998 1325.5376000000001 120960 58421 1 0 5898240 4423680 4423680 4426319 4492800 214 150 156 162 1850 0 0 0 0 43 0 0 0 0 1 +786 1783720858692412900 DEPTH 11 1 0.78503043838711373 0 8 0 8 1 0 76 30 2610 23664842 81600 852.94454956054688 6.0329000000000006 1370.6298999999999 120960 57933 1 0 5898240 4423680 4423680 4426441 4492800 454 150 203 374 1429 0 0 0 0 30 0 0 0 0 1 +787 1783720860004141500 DEPTH 31 1 0.81917979867141055 2 6 2 6 0 0 61 21 2580 23664893 81600 840.28802490234375 5.9218999999999999 1310.4793999999999 120960 48401 1 0 5898240 4423680 4423680 4426492 4492800 445 150 208 436 1341 0 2 0 0 19 0 0 0 0 0 +788 1783720861233167400 DEPTH 45 1 0.8194722733930615 2 10 2 8 1 0 85 107 2612 23664894 81600 850.48123168945312 6.0027999999999997 1227.7811999999999 120960 45689 1 0 5898240 4423680 4423680 4426494 4492800 150 150 150 150 2012 0 0 0 0 107 0 0 0 0 5 +789 1783720862550366100 DEPTH 52 1 0.80911911958461247 1 8 1 8 1 0 72 30 2601 23664841 81600 838.16117858886719 5.9074 1315.5286000000001 120960 53135 1 0 5898240 4423680 4423680 4426441 4492800 591 150 234 266 1360 1 0 1 0 28 0 0 0 0 1 +790 1783720863611256900 DEPTH 57 1 0.74029431091186026 2 13 2 13 1 0 81 114 2505 23664766 81600 854.39970397949219 5.9272999999999998 1043.7456999999999 120960 70177 1 0 5898240 4423680 4423680 4426360 4492800 150 150 152 183 1870 0 0 1 1 112 0 0 0 0 3 +791 1783720863804858500 REFRESH 47 0 0.73938315317127656 2 11 2 11 0 0 92 14 417 3943912 55200 149.25209045410156 0.98580000000000001 181.26150000000001 20160 12095 0 0 983040 737280 737280 737512 748800 58 25 26 25 283 0 0 0 0 14 0 0 0 0 0 +792 1783720864000148300 REFRESH 50 0 0.72817801936696047 2 9 2 9 0 0 97 8 421 3943907 55200 150.16447448730469 0.98550000000000004 182.8785 20160 12089 0 0 983040 737280 737280 737506 748800 146 25 49 77 124 0 0 0 0 8 0 0 0 0 0 +793 1783720864200092800 REFRESH 21 0 0.60855481904863962 0 10 0 10 0 0 129 12 413 3943900 55200 150.48191833496094 0.98850000000000005 198.75129999999999 20160 12299 0 0 983040 737280 737280 737499 748800 116 25 44 29 199 0 0 0 0 12 0 0 0 0 0 +794 1783720864383217400 REFRESH 37 0 0.787154185754811 1 13 1 13 0 0 75 16 417 3943915 55200 150.85772705078125 0.99270000000000003 182.0378 20160 13905 0 0 983040 737280 737280 737515 748800 35 25 27 31 299 0 0 0 0 16 0 0 0 0 0 +795 1783720864565553700 REFRESH 30 0 0.73504666039277144 2 12 2 12 0 0 82 11 400 3943931 55200 149.69343566894531 0.98109999999999997 181.17679999999999 20160 12845 0 0 983040 737280 737280 737531 748800 33 25 33 39 270 0 0 0 0 11 0 0 0 0 0 +796 1783720864745869500 REFRESH 5 0 0.66208955572893913 2 11 2 11 0 0 76 8 415 3943942 55200 149.25926208496094 0.99629999999999996 179.1558 20160 13234 0 0 983040 737280 737280 737541 748800 108 25 40 46 196 0 0 0 1 7 0 0 0 0 0 +797 1783720864944508300 REFRESH 28 0 0.73286487971913394 2 13 2 13 0 0 85 12 404 3943917 55200 150.35084533691406 0.98880000000000001 183.4299 20160 14180 0 0 983040 737280 737280 737517 748800 26 25 28 37 288 0 0 0 0 12 0 0 0 0 0 +798 1783720865140499500 REFRESH 25 0 0.73388283253917352 3 11 3 11 0 0 74 10 421 3943921 55200 150.32217407226562 0.98729999999999996 184.1454 20160 12351 0 0 983040 737280 737280 737521 748800 89 25 36 40 231 0 0 0 0 10 0 0 0 0 0 +799 1783720865375590800 REFRESH 17 0 0.87487773477357722 0 7 0 7 0 0 117 7 421 3943904 55200 150.18086242675781 0.99009999999999998 233.9494 20160 12998 0 0 983040 737280 737280 737504 748800 70 25 62 112 152 0 0 0 0 7 0 0 0 0 0 +800 1783720865571279600 REFRESH 0 0 0.73808629918396806 1 12 1 12 0 0 57 16 430 3943931 55200 148.97340393066406 0.98670000000000002 180.4162 20160 14571 0 0 983040 737280 737280 737531 748800 25 25 25 26 329 0 0 0 0 16 0 0 0 0 0 +801 1783720865803430700 REFRESH 56 0 0.89338601294952413 2 5 2 5 0 0 130 9 421 3943908 55200 150.31193542480469 0.98619999999999997 230.57220000000001 20160 13149 0 0 983040 737280 737280 737508 748800 110 25 71 121 94 0 0 0 1 8 0 0 0 0 0 +802 1783720866000337400 REFRESH 38 0 0.73221804097702781 4 14 4 14 0 0 62 19 416 3943893 55200 149.13740539550781 0.98839999999999995 181.30289999999999 20160 14667 0 0 983040 737280 737280 737493 748800 25 25 26 26 314 0 0 0 0 19 0 0 0 0 0 +803 1783720866197357500 REFRESH 10 0 0.73865038486741241 1 11 1 11 0 0 81 12 422 3943900 55200 149.04934692382812 0.98909999999999998 183.18029999999999 20160 14082 0 0 983040 737280 737280 737500 748800 25 25 26 25 321 0 1 1 0 10 0 0 0 0 0 +804 1783720866386765400 REFRESH 53 0 0.78814754117865504 0 8 0 8 0 0 100 6 414 3943890 55200 150.01702880859375 0.98819999999999997 188.1267 20160 12032 0 0 983040 737280 737280 737490 748800 98 28 32 48 208 0 0 0 0 6 0 0 0 0 0 +805 1783720866582144500 REFRESH 29 0 0.73718823023636848 2 12 2 12 0 0 76 12 418 3943921 55200 150.72665405273438 0.98919999999999997 183.7621 20160 14058 0 0 983040 737280 737280 737521 748800 25 25 25 25 318 0 0 0 0 12 0 0 0 0 0 +806 1783720866778930800 REFRESH 36 0 0.73821001925062824 3 10 3 10 0 0 79 25 417 3943890 55200 150.47798156738281 0.98599999999999999 182.6893 20160 14719 0 0 983040 737280 737280 737490 748800 26 25 26 30 310 1 0 0 0 24 0 0 0 0 0 +807 1783720866976816900 REFRESH 15 0 0.73301283942508932 3 12 3 12 0 0 64 12 413 3943911 55200 149.46406555175781 0.99990000000000001 180.94489999999999 20160 13933 0 0 983040 737280 737280 737511 748800 25 25 26 25 312 0 0 0 1 11 0 0 0 0 0 +808 1783720867173038700 REFRESH 2 0 0.74068730864425347 2 13 2 12 1 0 68 16 426 3943911 55200 150.51980590820312 0.98519999999999996 183.13849999999999 20160 14710 0 0 983040 737280 737280 737511 748800 25 25 26 27 323 0 0 2 0 14 0 0 1 0 0 +809 1783720867365815300 REFRESH 20 0 0.73306552547308712 3 12 3 12 0 0 65 15 415 3943904 55200 149.217529296875 0.98850000000000005 180.5232 20160 14089 0 0 983040 737280 737280 737504 748800 25 25 26 28 311 0 0 0 0 15 0 0 0 0 0 +810 1783720867580791000 REFRESH 44 0 0.7443905147291503 2 7 2 7 0 0 92 9 416 3943935 55200 150.40409851074219 0.98809999999999998 213.7296 20160 12258 0 0 983040 737280 737280 737534 748800 80 25 30 29 252 0 0 0 0 9 0 0 0 0 0 +811 1783720867788741500 REFRESH 41 0 0.73788600376751345 1 10 1 10 0 0 79 12 414 3943917 55200 149.27250671386719 0.99460000000000004 194.17310000000001 20160 12915 0 0 983040 737280 737280 737517 748800 33 25 29 46 281 0 0 1 0 11 0 0 0 0 0 +812 1783720867987378000 REFRESH 48 0 0.71300026271759487 2 12 2 12 1 0 38 9 417 3943901 55200 148.18202209472656 0.99229999999999996 181.1773 20160 13983 0 0 983040 737280 737280 737501 748800 29 25 37 38 288 0 0 0 0 9 0 0 0 0 1 +813 1783720868193358500 REFRESH 49 0 0.73561200161437235 3 10 3 10 0 0 105 19 417 3943893 55200 150.19725036621094 0.98719999999999997 183.7731 20160 13012 0 0 983040 737280 737280 737493 748800 33 25 29 31 299 0 0 0 0 19 0 0 0 0 0 +814 1783720868423207900 REFRESH 54 0 0.74065006748155027 1 8 1 8 1 0 80 9 421 3943917 55200 150.78912353515625 0.99390000000000001 228.66 20160 12021 0 0 983040 737280 737280 737517 748800 130 25 91 66 109 0 0 0 0 9 0 0 0 0 1 +815 1783720868624083900 REFRESH 43 0 0.73339579894595219 2 13 2 13 0 0 79 17 414 3943904 55200 150.10713195800781 0.98640000000000005 182.96350000000001 20160 13946 0 0 983040 737280 737280 737504 748800 31 25 34 44 280 0 0 0 0 17 0 0 0 0 0 +816 1783720868823921500 REFRESH 19 0 0.73650535429948594 3 11 3 11 0 0 84 14 425 3943915 55200 149.49478149414062 1.1781999999999999 183.8143 20160 13955 0 0 983040 737280 737280 737515 748800 25 25 25 25 325 0 0 0 0 14 0 0 0 0 0 +817 1783720869029236300 REFRESH 40 0 0.73763832501297844 3 13 3 13 0 0 67 17 416 3943925 55200 148.4267578125 0.98760000000000003 180.15280000000001 20160 14607 0 0 983040 737280 737280 737525 748800 29 25 34 45 283 0 0 1 2 14 0 0 0 0 0 +818 1783720869265868100 REFRESH 27 0 0.7331151307860756 0 14 0 14 0 0 73 19 423 3943897 55200 150.71743774414062 0.98440000000000005 183.81290000000001 20160 14665 0 0 983040 737280 737280 737496 748800 27 25 26 27 318 0 1 0 0 18 0 0 0 0 0 +819 1783720869466267000 REFRESH 6 0 0.73510056872567908 3 14 3 14 0 0 74 19 416 3943917 55200 149.5572509765625 1.0852999999999999 184.31989999999999 20160 14757 0 0 983040 737280 737280 737517 748800 26 25 32 31 302 0 0 0 1 18 0 0 0 0 0 +820 1783720869664408400 REFRESH 32 0 0.73767016730374269 2 14 2 14 1 0 71 25 415 3943924 55200 149.36781311035156 0.98939999999999995 180.48650000000001 20160 14568 0 0 983040 737280 737280 737524 748800 26 25 26 25 313 0 0 0 0 25 0 0 0 0 1 +821 1783720869865413300 REFRESH 16 0 0.73680069517780544 2 8 2 8 0 0 132 10 413 3943904 55200 150.614013671875 0.98219999999999996 184.69049999999999 20160 11889 0 0 983040 737280 737280 737504 748800 92 33 26 31 231 0 0 0 0 10 0 0 0 0 0 +822 1783720870065674100 REFRESH 46 0 0.7349391256472646 2 15 2 15 0 0 68 14 418 3943905 55200 150.64268493652344 0.98319999999999996 184.45160000000001 20160 14595 0 0 983040 737280 737280 737504 748800 26 25 26 25 316 0 1 0 0 13 0 0 0 0 0 +823 1783720870248818400 REFRESH 12 0 0.75158560037066158 3 8 3 8 0 0 122 13 411 3943884 55200 149.32479858398438 0.98380000000000001 182.08029999999999 20160 12193 0 0 983040 737280 737280 737483 748800 102 25 47 31 206 0 0 0 0 13 0 0 0 0 0 +824 1783720870454970500 REFRESH 1 0 0.8089648342311766 1 8 1 8 0 0 99 4 419 3943898 55200 150.44586181640625 0.98570000000000002 205.14150000000001 20160 12173 0 0 983040 737280 737280 737498 748800 176 25 43 52 123 0 0 0 0 4 0 0 0 0 0 +825 1783720870651879700 REFRESH 26 0 0.73766565831410491 1 13 1 13 0 0 57 5 420 3943921 55200 148.98381042480469 1.0925 181.62899999999999 20160 13992 0 0 983040 737280 737280 737521 748800 30 25 34 48 283 0 0 1 0 4 0 0 0 0 0 +826 1783720870850885100 REFRESH 3 0 0.73787552047060845 3 11 3 11 0 0 85 17 411 3943908 55200 148.98074340820312 0.98519999999999996 183.93199999999999 20160 13988 0 0 983040 737280 737280 737507 748800 25 25 27 29 305 0 0 0 0 17 0 0 0 0 0 +827 1783720871037413600 REFRESH 33 0 0.92095616099367617 1 7 1 7 0 0 129 13 409 3943900 55200 150.48704528808594 0.99009999999999998 185.34299999999999 20160 12056 0 0 983040 737280 737280 737500 748800 48 25 26 31 279 0 0 0 0 13 0 0 0 0 0 +828 1783720871221167400 REFRESH 57 0 0.73383756328012661 2 13 2 13 0 0 82 11 411 3943916 55200 149.97401428222656 0.98260000000000003 182.43940000000001 20160 13933 0 0 983040 737280 737280 737516 748800 28 25 27 35 296 0 0 0 0 11 0 0 0 0 0 +829 1783720871419615800 REFRESH 9 0 0.85213279430062827 2 6 2 6 0 0 95 7 426 3943921 55200 151.0328369140625 0.98409999999999997 197.38200000000001 20160 12273 0 0 983040 737280 737280 737521 748800 34 25 26 27 314 0 0 0 0 7 0 0 0 0 0 +830 1783720871647136100 REFRESH 7 0 0.73767937552598895 2 12 2 12 0 0 73 9 414 3943916 55200 149.8736572265625 0.98629999999999995 182.0325 20160 13796 0 0 983040 737280 737280 737516 748800 29 25 48 34 278 0 0 0 0 9 0 0 0 0 0 +831 1783720871846484100 REFRESH 34 0 0.74119981498553178 1 14 1 14 0 0 70 14 423 3943915 55200 149.56031799316406 0.99770000000000003 183.95679999999999 20160 14760 0 0 983040 737280 737280 737514 748800 28 25 25 29 316 0 0 1 0 13 0 0 0 0 0 +832 1783720872043381400 REFRESH 35 0 0.73880562641164116 2 11 2 11 0 0 85 19 417 3943904 55200 149.49990844726562 0.98770000000000002 180.446 20160 14574 0 0 983040 737280 737280 737504 748800 26 25 33 25 308 0 0 0 0 19 0 0 0 0 0 +833 1783720872273376600 REFRESH 11 0 0.78256648341011303 0 8 0 8 0 0 76 6 424 3943926 55200 150.11753845214844 0.98250000000000004 228.8639 20160 12428 0 0 983040 737280 737280 737526 748800 158 25 44 104 93 0 0 0 0 6 0 0 0 0 0 +834 1783720872455460300 REFRESH 55 0 0.76837612830207946 1 15 1 15 0 0 110 17 405 3943920 55200 150.49920654296875 0.98050000000000004 180.9521 20160 12180 0 0 983040 737280 737280 737520 748800 26 25 25 25 304 0 0 0 0 17 0 0 0 0 0 +835 1783720872665279900 REFRESH 42 0 0.7379549922602856 3 13 3 13 0 0 75 23 423 3943912 55200 149.570556640625 0.99450000000000005 181.77500000000001 20160 14601 0 0 983040 737280 737280 737512 748800 25 25 26 25 322 0 1 1 0 21 0 0 0 0 0 +836 1783720872853278400 REFRESH 45 0 1.083447662760048 2 8 2 7 1 0 87 9 422 3943896 55200 151.05535888671875 0.98740000000000006 186.68049999999999 20160 12098 0 0 983040 737280 737280 737494 748800 76 25 27 33 261 0 0 0 0 9 0 0 0 0 1 +837 1783720873113659100 REFRESH 13 0 0.88606402568248743 1 6 1 6 0 0 139 6 416 3943929 55200 150.63142395019531 0.98799999999999999 200.10149999999999 20160 13269 0 0 983040 737280 737280 737529 748800 146 25 42 95 108 0 0 0 0 6 0 0 0 0 0 +838 1783720873312364100 REFRESH 39 0 0.73796790648110078 2 12 2 12 0 0 94 14 408 3943906 55200 150.13273620605469 0.98799999999999999 183.6302 20160 13953 0 0 983040 737280 737280 737505 748800 30 25 29 29 295 0 0 0 0 14 0 0 0 0 0 +839 1783720873495237400 REFRESH 24 0 0.77917537529692638 4 12 4 12 0 0 86 24 411 3943896 55200 149.34732055664062 0.9869 181.56610000000001 20160 13904 0 0 983040 737280 737280 737496 748800 42 25 28 32 284 1 0 0 1 22 0 0 0 0 0 +840 1783720873703923300 REFRESH 22 0 0.73393912890163904 3 12 3 12 0 0 88 21 409 3943907 55200 150.52493286132812 0.98480000000000001 183.78190000000001 20160 13974 0 0 983040 737280 737280 737506 748800 25 25 25 26 308 0 0 0 0 21 0 0 0 0 0 +841 1783720873910121500 REFRESH 23 0 0.73537826407080342 3 14 3 14 0 0 69 21 422 3943876 55200 149.5889892578125 0.98719999999999997 182.64680000000001 20160 14652 0 0 983040 737280 737280 737476 748800 25 25 25 25 322 0 0 0 0 21 0 0 0 0 0 +842 1783720874147293700 REFRESH 31 0 0.83060689452370584 2 6 2 6 0 0 63 11 422 3943898 55200 149.40774536132812 1.0226999999999999 214.9709 20160 12199 0 0 983040 737280 737280 737498 748800 122 25 43 96 136 0 1 0 0 10 0 0 0 0 0 +843 1783720874372418200 REFRESH 52 0 0.81053184066874195 1 8 1 8 0 0 73 9 427 3943929 55200 148.0447998046875 0.98740000000000006 223.8913 20160 12029 0 0 983040 737280 737280 737529 748800 192 25 56 64 90 1 0 0 0 8 0 0 0 0 0 +844 1783720874567606600 REFRESH 4 0 0.72285595465222152 1 13 1 13 1 0 39 9 419 3943905 55200 148.28646850585938 0.98529999999999995 179.61099999999999 20160 14631 0 0 983040 737280 737280 737505 748800 32 25 40 29 293 0 0 0 0 9 0 0 0 0 1 +845 1783720874778035000 REFRESH 14 0 0.73643291921243947 0 12 0 12 1 0 89 12 418 3943914 55200 150.55564880371094 0.98650000000000004 188.61670000000001 20160 12162 0 0 983040 737280 737280 737514 748800 129 25 27 47 190 0 0 0 0 12 0 0 0 0 1 +846 1783720874978024400 REFRESH 18 0 0.7312955300627717 4 15 4 15 0 0 62 18 422 3943880 55200 150.68057250976562 0.98799999999999999 184.33510000000001 20160 14600 0 0 983040 737280 737280 737480 748800 26 25 29 29 313 1 0 1 0 16 0 0 0 0 0 +847 1783720875182188600 REFRESH 51 0 0.73322083793255599 3 15 3 15 0 0 68 26 411 3943926 55200 149.70675659179688 0.98809999999999998 182.09139999999999 20160 14662 0 0 983040 737280 737280 737526 748800 30 25 46 38 272 0 0 2 0 24 0 0 0 0 0 +848 1783720875367390300 REFRESH 58 0 0.73521946158974627 2 13 2 13 0 0 87 14 412 3943915 55200 149.85011291503906 0.98899999999999999 183.86709999999999 20160 13917 0 0 983040 737280 737280 737515 748800 28 25 25 26 308 0 0 0 0 14 0 0 0 0 0 +849 1783720875588217200 REFRESH 8 0 0.93065612538425291 2 5 2 5 0 0 139 8 419 3943902 55200 150.98265075683594 0.9869 184.9469 20160 12703 0 0 983040 737280 737280 737502 748800 36 29 26 27 301 0 0 0 0 8 0 0 0 0 0 +850 1783720876867758100 DEPTH 45 1 1.0576956966353539 2 7 2 7 1 0 88 64 2605 23664765 81600 856.5780029296875 5.9612000000000007 1253.2936 120960 56747 1 0 5898240 4423680 4423680 4426365 4492800 150 150 150 150 2005 0 0 0 0 64 0 0 0 0 1 +851 1783720878221762400 DEPTH 17 1 0.89031855749748878 0 7 0 7 1 0 117 31 2541 23664817 81600 857.20266723632812 5.9470999999999998 1352.8046999999999 120960 62174 1 0 5898240 4423680 4423680 4426415 4492800 190 150 241 422 1538 0 0 0 0 31 0 0 0 0 1 +852 1783720879582579700 DEPTH 56 1 0.89016272555206433 2 5 2 5 0 0 130 22 2609 23664851 81600 856.98849487304688 5.9102000000000006 1333.2941000000001 120960 63915 1 0 5898240 4423680 4423680 4426449 4492800 312 150 240 361 1546 0 0 0 0 22 0 0 0 0 0 +853 1783720880720142800 DEPTH 33 1 0.90486633169281994 1 7 1 7 0 0 129 84 2516 23664862 81600 861.51028442382812 5.9251000000000005 1077.596 120960 56616 1 0 5898240 4423680 4423680 4426460 4492800 169 150 150 151 1896 1 0 0 0 83 0 0 0 0 0 +854 1783720881788425500 DEPTH 2 1 0.83819279212046816 2 12 2 12 1 0 73 99 2606 23664916 81600 860.53135681152344 5.9218999999999999 1067.0467000000001 120960 70356 1 0 5898240 4423680 4423680 4426514 4492800 150 150 157 165 1984 0 1 5 0 93 0 0 1 0 1 +855 1783720882886845700 DEPTH 37 1 0.82134871935070819 1 13 1 12 1 0 79 118 2585 23664816 81600 860.34922790527344 5.9418000000000006 1058.6447000000001 120960 68918 1 0 5898240 4423680 4423680 4426414 4492800 154 150 150 150 1981 0 0 0 1 117 0 0 0 0 5 +856 1783720884208730500 DEPTH 9 1 0.83860229610322101 2 6 2 6 0 0 97 26 2603 23664827 81600 861.52078247070312 5.9519000000000002 1301.8035 120960 58159 1 0 5898240 4423680 4423680 4426425 4492800 193 150 156 168 1936 0 0 0 0 26 0 0 0 0 0 +857 1783720885570075700 DEPTH 1 1 0.79236252502759652 1 8 1 8 1 0 100 55 2593 23664784 81600 858.50723266601562 5.9295999999999998 1344.1496999999999 120960 57902 1 0 5898240 4423680 4423680 4426382 4492800 293 150 169 170 1811 0 0 0 0 55 0 0 0 0 1 +858 1783720886819252700 DEPTH 45 1 0.95180222798656833 2 7 2 7 0 0 90 56 2599 23664851 81600 847.62509155273438 5.9422000000000006 1247.9685999999999 120960 45219 1 0 5898240 4423680 4423680 4426450 4492800 150 150 150 150 1999 0 0 0 0 56 0 0 0 0 0 +859 1783720888155080000 DEPTH 13 1 0.85041515645148102 1 6 1 6 0 0 139 49 2513 23664822 81600 857.81977844238281 5.9291 1319.9439 120960 63021 1 0 5898240 4423680 4423680 4426420 4492800 202 150 162 189 1810 0 0 0 0 49 0 0 0 0 0 +860 1783720889480762400 DEPTH 53 1 0.78125148895739083 0 8 0 8 0 0 101 47 2521 23664819 81600 858.05204772949219 5.9724000000000004 1275.0083 120960 56558 1 0 5898240 4423680 4423680 4426415 4492800 150 150 150 151 1920 0 0 0 0 47 0 0 0 0 0 +861 1783720890825011400 DEPTH 11 1 0.77580259953567587 0 8 0 8 1 0 76 27 2618 23664802 81600 852.73704528808594 6.0345000000000004 1343.1682000000001 120960 58479 1 0 5898240 4423680 4423680 4426401 4492800 455 150 205 396 1412 0 0 0 0 27 0 0 0 0 1 +862 1783720892153251500 DEPTH 21 1 0.76876679507675327 0 10 0 10 1 0 129 39 2557 23664862 81600 858.9688720703125 5.9127999999999998 1327.1183000000001 120960 58903 1 0 5898240 4423680 4423680 4426462 4492800 229 150 162 163 1853 0 0 0 0 39 0 0 0 0 2 +863 1783720893228965100 DEPTH 8 1 0.81368212136904161 2 5 2 5 0 0 140 52 2536 23664799 81600 866.20327758789062 5.9208999999999996 1074.4803999999999 120960 61451 1 0 5898240 4423680 4423680 4426398 4492800 176 163 150 155 1892 0 0 0 0 52 0 0 0 0 0 +864 1783720894292812500 DEPTH 5 1 0.75104722165743221 2 11 2 11 1 0 79 50 2512 23664904 81600 853.40057373046875 5.9868000000000006 1042.3742 120960 63319 1 0 5898240 4423680 4423680 4426503 4492800 480 150 199 249 1434 2 0 0 0 48 2 0 0 0 1 +865 1783720895343408500 DEPTH 55 1 0.75454614068842796 1 15 1 15 0 0 111 23 2574 23664865 81600 859.65072631835938 5.9194999999999993 1049.3271999999999 120960 58456 1 0 5898240 4423680 4423680 4426465 4492800 156 150 150 150 1968 0 0 0 0 23 0 0 0 0 0 +866 1783720896597267700 DEPTH 45 1 0.91009104567955768 2 7 2 7 0 0 92 40 2587 23664822 81600 844.96266174316406 5.9241999999999999 1252.6309000000001 120960 35482 1 0 5898240 4423680 4423680 4426420 4492800 150 150 150 150 1987 0 0 0 0 40 0 0 0 0 0 +867 1783720897928814100 DEPTH 31 1 0.82221145070696189 2 6 2 6 0 0 65 19 2589 23664858 81600 852.98390197753906 5.9459000000000009 1317.0866000000001 120960 59210 1 0 5898240 4423680 4423680 4426455 4492800 482 150 217 434 1306 1 0 0 0 18 0 0 0 0 0 +868 1783720899300731100 DEPTH 17 1 0.80858366300120843 0 7 0 7 1 0 117 25 2539 23664771 81600 850.23954772949219 5.9474999999999998 1352.2118 120960 51037 1 0 5898240 4423680 4423680 4426367 4492800 205 150 239 444 1501 1 0 0 0 24 0 0 0 0 1 +869 1783720900628123000 DEPTH 52 1 0.79978313841758342 1 8 1 8 0 0 75 19 2603 23664789 81600 849.94853210449219 5.9509000000000007 1326.0841 120960 58857 1 0 5898240 4423680 4423680 4426385 4492800 741 150 256 248 1208 0 0 0 0 19 0 0 0 0 0 +870 1783720901951639400 DEPTH 56 1 0.81769354480898726 2 5 2 5 0 0 132 24 2602 23664822 81600 846.41880798339844 6.0224000000000002 1322.2783999999999 120960 52638 1 0 5898240 4423680 4423680 4426420 4492800 301 150 232 431 1488 1 0 0 0 23 0 0 0 0 0 +871 1783720902996805400 DEPTH 37 1 0.82139132108401802 1 12 1 12 1 0 83 84 2593 23664880 81600 850.93106079101562 5.9466000000000001 1043.9712999999999 120960 56788 1 0 5898240 4423680 4423680 4426480 4492800 154 150 150 150 1989 0 0 0 0 84 0 0 0 0 3 +872 1783720904109559800 DEPTH 33 1 0.83002136286573491 1 7 1 7 0 0 132 86 2518 23664795 81600 853.70892333984375 5.9195000000000002 1073.4983999999999 120960 46023 1 0 5898240 4423680 4423680 4426392 4492800 168 150 150 150 1900 0 0 0 0 86 0 0 0 0 0 +873 1783720905186746800 DEPTH 24 1 0.76790194686978031 4 12 4 12 1 0 92 100 2556 23664849 81600 858.29592895507812 5.9409000000000001 1055.4595999999999 120960 69009 1 0 5898240 4423680 4423680 4426445 4492800 150 150 150 150 1956 2 0 3 1 94 0 0 0 0 1 +874 1783720906482500000 DEPTH 45 1 0.87229233136355222 2 7 2 7 0 0 93 33 2598 23664870 81600 841.83843994140625 5.9287999999999998 1260.7765999999999 120960 24452 1 0 5898240 4423680 4423680 4426467 4492800 150 150 150 150 1998 0 0 0 0 33 0 0 0 0 0 +875 1783720907554766600 DEPTH 2 1 0.79328667297891087 2 12 2 12 0 0 74 73 2581 23664816 81600 852.32275390625 5.9341999999999997 1054.0545999999999 120960 58173 1 0 5898240 4423680 4423680 4426415 4492800 150 150 152 179 1950 0 1 5 0 67 0 0 0 0 0 +876 1783720908622023700 DEPTH 8 1 0.79919001270869716 2 5 2 5 0 0 145 83 2512 23664897 81600 859.509765625 5.9606999999999992 1065.9574 120960 50363 1 0 5898240 4423680 4423680 4426495 4492800 181 165 150 156 1860 0 0 0 0 83 0 0 0 0 0 +877 1783720909941844900 DEPTH 13 1 0.80911184535346403 1 6 1 6 0 0 139 39 2508 23664943 81600 849.55038452148438 5.9176000000000002 1303.0736999999999 120960 52004 1 0 5898240 4423680 4423680 4426542 4492800 195 150 162 212 1789 0 0 0 0 39 0 0 0 0 0 +878 1783720911260750200 DEPTH 9 1 0.79912495998255295 2 6 2 6 0 0 98 24 2603 23664914 81600 849.26300048828125 5.9260000000000002 1287.2134000000001 120960 47361 1 0 5898240 4423680 4423680 4426513 4492800 194 150 156 181 1922 0 0 0 0 24 0 0 0 0 0 +879 1783720912329387300 DEPTH 12 1 0.74335787377315898 3 8 3 8 0 0 122 64 2509 23664815 81600 854.7620849609375 5.9893999999999998 1050.4956999999999 120960 57827 1 0 5898240 4423680 4423680 4426414 4492800 187 150 150 156 1866 2 0 0 0 62 0 0 0 0 0 +880 1783720913723935000 DEPTH 44 1 0.74038236962615489 2 7 2 7 0 0 92 24 2586 23664802 81600 857.20037841796875 5.9350999999999994 1345.1874 120960 57367 1 0 5898240 4423680 4423680 4426401 4492800 150 150 150 150 1986 0 0 0 0 24 0 0 0 0 0 +881 1783720915051269700 DEPTH 54 1 0.73741918244645166 1 8 1 8 1 0 80 36 2565 23664849 81600 851.42716979980469 5.9079999999999995 1311.2760000000001 120960 58368 1 0 5898240 4423680 4423680 4426448 4492800 283 150 234 259 1639 0 1 0 0 35 0 0 0 0 1 +882 1783720915247631600 REFRESH 23 0 0.72856378801956456 3 14 3 14 0 0 73 20 420 3943932 55200 149.35653686523438 0.9819 180.37979999999999 20160 14581 0 0 983040 737280 737280 737532 748800 25 25 25 25 320 0 0 0 0 20 0 0 0 0 0 +883 1783720915443593000 REFRESH 47 0 0.73303836862867378 2 11 2 11 0 0 94 11 420 3943907 55200 149.96070861816406 0.98650000000000004 181.73150000000001 20160 12140 0 0 983040 737280 737280 737506 748800 56 25 26 25 288 0 0 0 0 11 0 0 0 0 0 +884 1783720915779618500 REFRESH 52 0 0.69067531163943441 1 8 1 8 0 0 75 6 428 3943925 55200 149.243896484375 0.98180000000000001 225.3749 20160 13666 0 0 983040 737280 737280 737525 748800 196 25 57 60 90 1 0 0 0 5 0 0 0 0 0 +885 1783720915960812800 REFRESH 5 0 0.72130104475718337 2 11 2 11 0 0 79 11 414 3943912 55200 147.74578857421875 0.99160000000000004 179.971 20160 12540 0 0 983040 737280 737280 737512 748800 139 25 39 48 163 0 0 0 0 11 0 0 0 0 0 +886 1783720916163183800 REFRESH 32 0 0.73140098741483284 2 14 2 14 0 0 74 25 414 3943917 55200 149.63609313964844 0.98640000000000005 180.5478 20160 14610 0 0 983040 737280 737280 737517 748800 26 25 27 25 311 0 0 0 0 25 0 0 0 0 0 +887 1783720916363779900 REFRESH 22 0 0.72778436283266845 3 12 3 12 0 0 90 20 416 3943897 55200 149.70060729980469 0.98729999999999996 184.8433 20160 13807 0 0 983040 737280 737280 737497 748800 26 25 25 26 314 0 2 0 0 18 0 0 0 0 0 +888 1783720916550454900 REFRESH 8 0 0.78493589292444399 2 5 2 5 0 0 146 6 414 3943922 55200 151.65338134765625 0.98909999999999998 185.58090000000001 20160 12961 0 0 983040 737280 737280 737522 748800 50 30 26 28 280 0 0 0 0 6 0 0 0 0 0 +889 1783720916732171500 REFRESH 57 0 0.72796447474818471 2 13 2 13 0 0 83 13 412 3943922 55200 149.23957824707031 0.98740000000000006 180.52760000000001 20160 13747 0 0 983040 737280 737280 737522 748800 28 25 27 38 294 0 0 0 1 12 0 0 0 0 0 +890 1783720916961718800 REFRESH 11 0 0.77350766996298348 0 8 0 8 0 0 76 5 428 3943905 55200 150.19314575195312 0.98850000000000005 228.50800000000001 20160 12268 0 0 983040 737280 737280 737505 748800 163 25 50 108 82 0 0 0 0 5 0 0 0 0 0 +891 1783720917161443000 REFRESH 27 0 0.72796560673364574 0 14 0 14 1 0 76 23 423 3943884 55200 150.42335510253906 0.99199999999999999 182.67619999999999 20160 14602 0 0 983040 737280 737280 737484 748800 26 25 26 25 321 0 0 0 0 23 0 0 0 0 1 +892 1783720917367548900 REFRESH 35 0 0.73337032177560979 2 11 2 11 0 0 88 17 419 3943905 55200 149.89106750488281 0.98860000000000003 182.92850000000001 20160 14603 0 0 983040 737280 737280 737505 748800 26 25 33 25 310 0 0 0 0 17 0 0 0 0 0 +893 1783720917567800500 REFRESH 13 0 0.78774690963874772 1 6 1 6 0 0 139 4 415 3943941 55200 149.95353698730469 0.98599999999999999 199.16929999999999 20160 13293 0 0 983040 737280 737280 737541 748800 136 25 40 92 122 0 0 0 0 4 0 0 0 0 0 +894 1783720917764631400 REFRESH 7 0 0.7308993984118376 2 12 2 12 0 0 75 14 420 3943919 55200 149.67263793945312 0.99580000000000002 181.43379999999999 20160 13777 0 0 983040 737280 737280 737518 748800 25 25 33 29 308 0 0 0 0 14 0 0 0 0 0 +895 1783720917950059800 REFRESH 45 0 0.96822000053933921 2 7 2 7 0 0 94 10 422 3943923 55200 149.23365783691406 0.98609999999999998 184.2611 20160 12171 0 0 983040 737280 737280 737523 748800 98 25 31 39 229 0 0 0 0 10 0 0 0 0 0 +896 1783720918153340700 REFRESH 26 0 0.7270237517340743 1 13 1 13 1 0 57 14 424 3943899 55200 150.05183410644531 0.98109999999999997 180.30719999999999 20160 13915 0 0 983040 737280 737280 737499 748800 30 25 40 54 275 0 0 0 0 14 0 0 0 0 1 +897 1783720918365666100 REFRESH 43 0 0.72797935722774576 2 13 2 13 1 0 81 19 409 3943897 55200 149.70573425292969 0.98880000000000001 181.87889999999999 20160 13856 0 0 983040 737280 737280 737497 748800 30 25 36 44 274 1 0 0 0 18 0 0 0 0 1 +898 1783720918564396400 REFRESH 48 0 0.70911911466790944 2 12 2 12 0 0 39 6 417 3943931 55200 149.25106811523438 0.98450000000000004 180.02979999999999 20160 13580 0 0 983040 737280 737280 737531 748800 29 25 34 38 291 0 0 0 1 5 0 0 0 0 0 +899 1783720918760842500 REFRESH 19 0 0.73121456558045117 3 11 3 11 1 0 85 12 421 3943916 55200 149.72927856445312 0.98660000000000003 182.67160000000001 20160 13874 0 0 983040 737280 737280 737516 748800 25 25 25 25 321 0 0 0 0 12 0 0 0 0 1 +900 1783720918942987100 REFRESH 55 0 0.74192853258340641 1 15 1 15 0 0 112 14 409 3943925 55200 150.11839294433594 0.99029999999999996 180.98169999999999 20160 12285 0 0 983040 737280 737280 737525 748800 26 25 25 25 308 0 0 0 0 14 0 0 0 0 0 +901 1783720919155298600 REFRESH 31 0 0.81456017651051793 2 6 2 6 0 0 67 12 425 3943904 55200 149.82652282714844 0.97989999999999999 211.25479999999999 20160 12706 0 0 983040 737280 737280 737504 748800 127 25 46 108 119 0 0 0 0 12 0 0 0 0 0 +902 1783720919359577400 REFRESH 29 0 0.73210499779194593 2 12 2 12 0 0 76 10 419 3943916 55200 150.73997497558594 0.99960000000000004 182.18770000000001 20160 13818 0 0 983040 737280 737280 737516 748800 25 25 25 25 319 0 0 0 0 10 0 0 0 0 0 +903 1783720919616666600 REFRESH 6 0 0.72918234873841603 3 14 3 14 0 0 75 21 417 3943889 55200 149.75794982910156 1.0129999999999999 181.73330000000001 20160 14795 0 0 983040 737280 737280 737489 748800 27 25 33 30 302 0 0 0 1 20 0 0 0 0 0 +904 1783720919813378300 REFRESH 50 0 0.72058340544743116 2 9 2 9 0 0 97 3 421 3943909 55200 150.04386901855469 1.0162 181.52070000000001 20160 12127 0 0 983040 737280 737280 737509 748800 148 25 47 78 123 0 0 0 0 3 0 0 0 0 0 +905 1783720920012133300 REFRESH 39 0 0.73222191748316789 2 12 2 12 0 0 98 18 410 3943907 55200 149.18759155273438 0.98599999999999999 181.8629 20160 13744 0 0 983040 737280 737280 737507 748800 30 25 28 30 297 0 0 1 1 16 0 0 0 0 0 +906 1783720920209951200 REFRESH 34 0 0.73509785724699395 1 14 1 14 0 0 73 22 421 3943907 55200 149.60844421386719 0.99670000000000003 180.7655 20160 14698 0 0 983040 737280 737280 737507 748800 28 25 25 29 314 1 0 1 0 20 0 0 0 0 0 +907 1783720920393622800 REFRESH 2 0 0.81711071776808031 2 12 2 12 0 0 76 16 422 3943924 55200 149.58181762695312 0.98340000000000005 182.60939999999999 20160 12609 0 0 983040 737280 737280 737524 748800 25 25 27 33 312 0 1 0 0 15 0 0 0 0 0 +908 1783720920624765600 REFRESH 1 0 0.78438019586484986 1 8 1 8 0 0 100 8 420 3943919 55200 150.71002197265625 0.98360000000000003 207.71019999999999 20160 12157 0 0 983040 737280 737280 737519 748800 173 25 43 50 129 0 0 0 0 8 0 0 0 0 0 +909 1783720920820653500 REFRESH 3 0 0.73244934692708996 3 11 3 11 0 0 86 16 411 3943899 55200 148.42268371582031 0.98899999999999999 180.26669999999999 20160 13958 0 0 983040 737280 737280 737499 748800 25 25 27 26 308 0 0 0 0 16 0 0 0 0 0 +910 1783720921020741400 REFRESH 25 0 0.7282215860151654 3 11 3 11 0 0 75 13 419 3943912 55200 150.181884765625 0.98519999999999996 183.7201 20160 12161 0 0 983040 737280 737280 737511 748800 93 25 40 43 218 0 0 0 0 13 0 0 0 0 0 +911 1783720921210461900 REFRESH 53 0 0.77872867363927012 0 8 0 8 0 0 101 10 418 3943892 55200 151.046142578125 0.98219999999999996 188.55690000000001 20160 12050 0 0 983040 737280 737280 737492 748800 103 31 34 47 203 0 0 0 0 10 0 0 0 0 0 +912 1783720921411562500 REFRESH 49 0 0.7309882389354021 3 10 3 10 0 0 105 15 417 3943893 55200 150.33549499511719 0.9849 182.13939999999999 20160 12813 0 0 983040 737280 737280 737493 748800 34 25 29 31 298 1 0 0 0 14 0 0 0 0 0 +913 1783720921615633700 REFRESH 20 0 0.72811477244170519 3 12 3 12 0 0 67 22 412 3943924 55200 148.89677429199219 0.98150000000000004 179.44 20160 13894 0 0 983040 737280 737280 737523 748800 25 25 26 26 310 0 0 0 0 22 0 0 0 0 0 +914 1783720921820741900 REFRESH 36 0 0.73377596520772415 3 10 3 10 1 0 80 21 418 3943916 55200 150.06105041503906 1.0169999999999999 182.89779999999999 20160 14640 0 0 983040 737280 737280 737515 748800 26 25 31 34 302 0 0 1 0 20 0 0 0 0 1 +915 1783720922048899200 REFRESH 56 0 0.88563787458731791 2 5 2 5 0 0 132 9 426 3943908 55200 150.26585388183594 0.98560000000000003 226.93989999999999 20160 13117 0 0 983040 737280 737280 737507 748800 108 25 72 123 98 0 0 0 0 9 0 0 0 0 0 +916 1783720922232297900 REFRESH 24 0 0.75786913018355151 4 12 4 12 0 0 94 19 404 3943903 55200 150.02316284179688 0.98629999999999995 182.11859999999999 20160 12541 0 0 983040 737280 737280 737503 748800 37 25 27 29 286 0 0 0 0 19 0 0 0 0 0 +917 1783720922463247200 REFRESH 17 0 0.88736048777225895 0 7 0 7 0 0 117 7 419 3943914 55200 150.27813720703125 0.98650000000000004 229.83629999999999 20160 13241 0 0 983040 737280 737280 737513 748800 76 25 69 118 131 0 0 0 0 7 0 0 0 0 0 +918 1783720922647699500 REFRESH 33 0 0.87682865344958538 1 7 1 7 1 0 132 13 415 3943917 55200 150.6507568359375 0.98180000000000001 183.41030000000001 20160 12000 0 0 983040 737280 737280 737517 748800 55 25 29 31 275 0 0 0 0 13 0 0 0 0 1 +919 1783720922853178100 REFRESH 15 0 0.72822379281312466 3 12 3 12 0 0 65 16 417 3943898 55200 149.69651794433594 0.98519999999999996 180.69239999999999 20160 13805 0 0 983040 737280 737280 737498 748800 25 25 26 25 316 0 0 0 0 16 0 0 0 0 0 +920 1783720923063894100 REFRESH 41 0 0.73370165971385992 1 10 1 10 0 0 79 13 410 3943910 55200 148.52198791503906 0.98599999999999999 191.9659 20160 12943 0 0 983040 737280 737280 737510 748800 50 25 30 60 245 0 0 0 0 13 0 0 0 0 0 +921 1783720923247414300 REFRESH 37 0 0.88839107827330777 1 12 1 12 0 0 84 14 418 3943926 55200 149.96786499023438 0.99419999999999997 181.86240000000001 20160 11987 0 0 983040 737280 737280 737526 748800 59 25 26 28 280 0 0 0 0 14 0 0 0 0 0 +922 1783720923441809300 REFRESH 40 0 0.73216158945722032 3 13 3 13 0 0 68 21 412 3943922 55200 148.75546264648438 0.98650000000000004 178.6489 20160 14578 0 0 983040 737280 737280 737522 748800 28 25 34 41 284 0 0 1 0 20 0 0 0 0 0 +923 1783720923638010600 REFRESH 10 0 0.73483734372481857 1 11 1 11 0 0 82 10 420 3943903 55200 148.40524291992188 0.98599999999999999 180.7663 20160 13797 0 0 983040 737280 737280 737503 748800 25 25 26 25 319 0 0 0 0 10 0 0 0 0 0 +924 1783720923833218100 REFRESH 9 0 0.82071351409455218 2 6 2 6 0 0 98 9 420 3943900 55200 149.93510437011719 0.98299999999999998 194.21950000000001 20160 12466 0 0 983040 737280 737280 737499 748800 34 25 26 28 307 0 0 0 0 9 0 0 0 0 0 +925 1783720924036291600 REFRESH 30 0 0.73053634225214015 2 12 2 12 0 0 82 14 404 3943907 55200 150.21232604980469 0.98909999999999998 181.95760000000001 20160 12686 0 0 983040 737280 737280 737506 748800 34 25 31 43 271 0 0 0 0 14 0 0 0 0 0 +926 1783720924236483300 REFRESH 42 0 0.73216571823834931 3 13 3 13 0 0 76 26 418 3943918 55200 149.87776184082031 0.98370000000000002 184.364 20160 14575 0 0 983040 737280 737280 737518 748800 25 25 26 27 315 0 0 1 1 24 0 0 0 0 0 +927 1783720924434832000 REFRESH 12 0 0.73559279633400154 3 8 3 8 0 0 122 11 407 3943926 55200 149.4334716796875 0.98599999999999999 180.89490000000001 20160 12205 0 0 983040 737280 737280 737526 748800 106 25 57 35 184 0 0 0 0 11 0 0 0 0 0 +928 1783720924634723600 REFRESH 38 0 0.72720760555869868 4 14 4 14 0 0 66 24 421 3943894 55200 149.21437072753906 0.99480000000000002 183.5917 20160 14601 0 0 983040 737280 737280 737494 748800 25 25 26 26 319 1 0 0 0 23 0 0 0 0 0 +929 1783720924842038800 REFRESH 18 0 0.72532184241531383 4 15 4 15 0 0 62 25 420 3943903 55200 150.07743835449219 0.98799999999999999 182.65309999999999 20160 14593 0 0 983040 737280 737280 737503 748800 26 25 27 26 316 2 0 0 0 23 0 0 0 0 0 +930 1783720925046609900 REFRESH 0 0 0.73409398329565656 1 12 1 12 0 0 57 14 425 3943910 55200 148.96025085449219 0.99609999999999999 179.63130000000001 20160 14664 0 0 983040 737280 737280 737510 748800 26 25 25 29 320 0 0 0 1 13 0 0 0 0 0 +931 1783720925246083500 REFRESH 46 0 0.72953790734336477 2 15 2 15 0 0 73 24 419 3943903 55200 149.36781311035156 0.98509999999999998 182.74860000000001 20160 14555 0 0 983040 737280 737280 737503 748800 26 25 26 25 317 0 0 2 0 22 0 0 0 0 0 +932 1783720925470069100 REFRESH 44 0 0.73725084262463891 2 7 2 7 0 0 92 10 413 3943898 55200 150.84442138671875 0.98580000000000001 222.85499999999999 20160 12248 0 0 983040 737280 737280 737498 748800 61 25 28 29 270 0 0 0 0 10 0 0 0 0 0 +933 1783720925664702400 REFRESH 4 0 0.7180753688114544 1 13 1 13 1 0 39 9 422 3943908 55200 148.47897338867188 0.98880000000000001 179.4204 20160 14498 0 0 983040 737280 737280 737508 748800 34 25 40 33 290 0 0 0 0 9 0 0 0 0 1 +934 1783720925871856300 REFRESH 14 0 0.73012931649740032 0 12 0 12 0 0 90 11 418 3943904 55200 149.98220825195312 0.98839999999999995 189.6267 20160 12434 0 0 983040 737280 737280 737504 748800 133 25 27 47 186 0 0 0 0 11 0 0 0 0 0 +935 1783720926075620600 REFRESH 58 0 0.7297230686135856 2 13 2 13 1 0 88 19 419 3943912 55200 149.54086303710938 0.98319999999999996 181.78980000000001 20160 13920 0 0 983040 737280 737280 737512 748800 26 25 25 26 317 0 0 0 0 19 0 0 0 0 1 +936 1783720926282662700 REFRESH 51 0 0.72736584132363213 3 15 3 15 1 0 70 25 412 3943915 55200 149.80403137207031 0.98939999999999995 182.63550000000001 20160 14582 0 0 983040 737280 737280 737515 748800 29 25 41 34 283 1 0 1 0 23 0 0 0 0 1 +937 1783720926512857200 REFRESH 54 0 0.73742356400729392 1 8 1 8 0 0 80 14 425 3943909 55200 148.9776611328125 0.98819999999999997 228.94710000000001 20160 12536 0 0 983040 737280 737280 737509 748800 138 25 86 62 114 0 0 0 0 14 0 0 0 0 0 +938 1783720926710541200 REFRESH 21 0 0.75986567625967216 0 10 0 10 0 0 131 13 413 3943912 55200 150.15936279296875 0.98540000000000005 196.3631 20160 12326 0 0 983040 737280 737280 737512 748800 103 25 39 31 215 1 0 0 0 12 0 0 0 0 0 +939 1783720926919103400 REFRESH 16 0 0.73311226504124605 2 8 2 8 1 0 133 14 411 3943910 55200 151.0347900390625 1.0135000000000001 189.84289999999999 20160 12069 0 0 983040 737280 737280 737510 748800 95 35 26 31 224 0 0 0 0 14 0 0 0 0 1 +940 1783720927124738500 REFRESH 28 0 0.72869407497861527 2 13 2 13 0 0 87 11 400 3943908 55200 150.60581970214844 0.98529999999999995 182.32069999999999 20160 13663 0 0 983040 737280 737280 737508 748800 27 25 28 36 284 0 0 0 0 11 0 0 0 0 0 +941 1783720928403645100 DEPTH 45 1 0.97768228850737116 2 7 2 7 0 0 95 33 2580 23664814 81600 857.81243896484375 5.9006999999999996 1251.3300999999999 120960 57273 1 0 5898240 4423680 4423680 4426413 4492800 150 150 156 150 1974 0 0 0 0 33 0 0 0 0 0 +942 1783720929503237300 DEPTH 8 1 0.90745361569040761 2 5 2 5 0 0 153 89 2503 23664832 81600 865.34860229492188 5.9271000000000003 1069.8844999999999 120960 62435 1 0 5898240 4423680 4423680 4426431 4492800 183 163 150 157 1850 0 0 0 0 89 0 0 0 0 0 +943 1783720930830548600 DEPTH 56 1 0.88244112735082791 2 5 2 5 0 0 133 25 2591 23664873 81600 855.81033325195312 5.9101999999999997 1326.1686999999999 120960 63845 1 0 5898240 4423680 4423680 4426472 4492800 311 150 236 404 1490 0 0 1 1 23 0 0 0 0 0 +944 1783720932168849300 DEPTH 17 1 0.8827171641457825 0 7 0 7 1 0 117 26 2547 23664764 81600 856.34083557128906 6.0500999999999996 1337.2258999999999 120960 63539 1 0 5898240 4423680 4423680 4426363 4492800 203 150 230 382 1582 0 0 0 0 26 0 0 0 0 2 +945 1783720933478494200 DEPTH 13 1 0.87078435812611854 1 6 1 6 0 0 139 40 2498 23664808 81600 857.94332885742188 5.9143999999999997 1308.3803 120960 63425 1 0 5898240 4423680 4423680 4426407 4492800 203 150 165 182 1798 0 0 0 0 40 0 0 0 0 0 +946 1783720934599322600 DEPTH 33 1 0.86445293618002106 1 7 1 7 0 0 136 65 2520 23664967 81600 859.75846862792969 5.9017999999999997 1077.347 120960 57463 1 0 5898240 4423680 4423680 4426567 4492800 173 150 150 150 1897 1 0 0 0 64 0 0 0 0 0 +947 1783720935671482200 DEPTH 37 1 0.86664770074104902 1 12 1 12 1 0 85 65 2584 23664866 81600 854.5379638671875 5.9107000000000003 1040.7838999999999 120960 59533 1 0 5898240 4423680 4423680 4426464 4492800 161 150 150 150 1973 0 0 0 0 65 0 0 0 0 2 +948 1783720937012956000 DEPTH 31 1 0.80763591327218753 2 6 2 6 0 0 72 28 2611 23664906 81600 852.35165405273438 5.9111000000000002 1305.7514000000001 120960 60314 1 0 5898240 4423680 4423680 4426505 4492800 525 150 234 487 1215 0 0 0 0 28 0 0 0 0 0 +949 1783720938319964100 DEPTH 9 1 0.81164765093730995 2 6 2 6 0 0 98 14 2603 23664828 81600 858.60865783691406 5.9501000000000008 1290.6215 120960 59093 1 0 5898240 4423680 4423680 4426427 4492800 194 150 156 168 1935 1 0 0 0 13 0 0 0 0 0 +950 1783720939378307800 DEPTH 2 1 0.80252384173400826 2 12 2 12 0 0 79 60 2584 23664846 81600 860.77320861816406 5.8980999999999995 1057.3197 120960 63652 1 0 5898240 4423680 4423680 4426446 4492800 150 150 155 201 1928 0 0 8 0 52 0 0 0 0 0 +951 1783720940649341800 DEPTH 45 1 0.79946432762782838 2 7 2 7 0 0 96 38 2586 23664780 81600 848.94181823730469 5.9632999999999994 1253.6032 120960 46860 1 0 5898240 4423680 4423680 4426379 4492800 150 150 156 150 1980 0 0 0 0 38 0 0 0 0 0 +952 1783720942013240300 DEPTH 52 1 0.77904279782805042 1 8 1 8 0 0 78 26 2615 23664892 81600 847.89013671875 5.9123000000000001 1327.9564 120960 61917 1 0 5898240 4423680 4423680 4426488 4492800 849 150 251 268 1097 0 0 1 0 25 0 0 0 0 0 +953 1783720943300389200 DEPTH 53 1 0.77609437371431667 0 8 0 8 0 0 102 46 2526 23664853 81600 858.90652465820312 5.9558 1272.4974 120960 56831 1 0 5898240 4423680 4423680 4426451 4492800 150 150 150 150 1926 0 0 0 0 46 0 0 0 0 0 +954 1783720944688969200 DEPTH 1 1 0.77397332863803114 1 8 1 8 1 0 100 42 2589 23664847 81600 857.46827697753906 5.9761999999999995 1343.1894 120960 58837 1 0 5898240 4423680 4423680 4426444 4492800 253 150 172 187 1827 0 0 0 0 42 0 0 0 0 2 +955 1783720946061614300 DEPTH 11 1 0.76671325344868646 0 8 0 8 1 0 77 26 2614 23664854 81600 852.75471496582031 5.9044999999999996 1338.8787 120960 58040 1 0 5898240 4423680 4423680 4426453 4492800 425 150 208 379 1452 1 0 0 0 25 1 0 0 0 1 +956 1783720947097537700 DEPTH 5 1 0.7518242003762281 2 11 2 11 1 0 82 67 2596 23664865 81600 850.93533325195312 5.8921000000000001 1034.8756000000001 120960 60881 1 0 5898240 4423680 4423680 4426462 4492800 455 150 158 206 1627 0 0 0 0 67 0 0 0 0 4 +957 1783720948152958700 DEPTH 8 1 0.80406939725357873 2 5 2 5 1 0 158 77 2486 23664801 81600 857.11325073242188 5.9375999999999998 1054.2533000000001 120960 51793 1 0 5898240 4423680 4423680 4426400 4492800 177 162 150 155 1842 0 0 0 0 77 0 0 0 0 1 +958 1783720949499575100 DEPTH 56 1 0.7802650656005975 2 5 2 5 0 0 133 31 2589 23664904 81600 847.77423095703125 5.9045000000000005 1319.3726999999999 120960 52441 1 0 5898240 4423680 4423680 4426504 4492800 300 150 231 450 1458 0 0 0 0 31 0 0 0 0 0 +959 1783720950892556600 DEPTH 17 1 0.78123992327363656 0 7 0 7 0 0 118 29 2536 23664851 81600 848.02008056640625 5.9356999999999998 1339.2461000000001 120960 52107 1 0 5898240 4423680 4423680 4426449 4492800 206 150 232 429 1519 0 0 0 0 29 0 0 0 0 0 +960 1783720951940857800 DEPTH 24 1 0.74848156774670593 4 12 4 11 1 0 98 102 2526 23664787 81600 856.9373779296875 5.9171000000000005 1046.9251999999999 120960 63415 1 0 5898240 4423680 4423680 4426386 4492800 150 150 150 150 1926 1 1 1 3 96 0 0 0 0 3 +961 1783720953240342200 DEPTH 13 1 0.77995971455170754 1 6 1 6 0 0 141 31 2511 23664859 81600 849.51637268066406 5.9087999999999994 1298.4292 120960 52489 1 0 5898240 4423680 4423680 4426457 4492800 194 150 160 181 1826 0 0 0 0 31 0 0 0 0 0 +962 1783720954573108200 DEPTH 44 1 0.73387450286101163 2 7 2 7 0 0 95 19 2580 23664804 81600 854.80201721191406 5.9123999999999999 1331.6092000000001 120960 57714 1 0 5898240 4423680 4423680 4426403 4492800 150 150 150 150 1980 0 0 0 0 19 0 0 0 0 0 +963 1783720955806490800 DEPTH 45 1 0.79385752609016114 2 7 2 7 0 0 97 39 2577 23664844 81600 844.97880554199219 5.9830999999999994 1232.2306000000001 120960 36980 1 0 5898240 4423680 4423680 4426444 4492800 150 150 156 150 1971 0 0 0 0 39 0 0 0 0 0 +964 1783720956860799800 DEPTH 55 1 0.73075534865092884 1 15 1 15 0 0 112 22 2571 23664832 81600 863.69149780273438 5.9320000000000004 1053.1692 120960 58413 1 0 5898240 4423680 4423680 4426432 4492800 156 150 150 150 1965 0 0 0 0 22 0 0 0 0 0 +965 1783720957939915100 DEPTH 33 1 0.79294757256675097 1 7 1 7 1 0 136 68 2519 23664836 81600 854.74591064453125 5.9133000000000004 1077.9119000000001 120960 46306 1 0 5898240 4423680 4423680 4426434 4492800 173 150 150 150 1896 2 0 0 0 66 0 0 0 0 1 +966 1783720959003723300 DEPTH 37 1 0.78675154843640804 1 12 1 12 1 0 88 46 2564 23664900 81600 845.51866149902344 5.9268999999999998 1036.7579000000001 120960 48527 1 0 5898240 4423680 4423680 4426499 4492800 164 150 150 150 1950 0 0 0 0 46 0 0 0 0 2 +967 1783720960335591200 DEPTH 21 1 0.75094146333717637 0 10 0 10 1 0 132 60 2565 23664849 81600 859.442138671875 5.9158999999999997 1311.6398999999999 120960 59276 1 0 5898240 4423680 4423680 4426449 4492800 242 150 167 165 1841 0 0 1 0 59 0 0 0 0 1 +968 1783720961654518700 DEPTH 54 1 0.73431960191142254 1 8 1 8 1 0 82 27 2565 23664776 81600 851.47026062011719 5.9034999999999993 1317.7688000000001 120960 59136 1 0 5898240 4423680 4423680 4426376 4492800 297 150 240 236 1642 1 0 0 0 26 0 0 0 0 1 +969 1783720962707637300 DEPTH 8 1 0.77080911284088971 2 5 2 5 0 0 163 63 2498 23664829 81600 855.43182373046875 5.9327000000000005 1052.0672999999999 120960 42012 1 0 5898240 4423680 4423680 4426428 4492800 169 162 150 156 1861 0 0 0 0 63 0 0 0 0 0 +970 1783720963782042700 DEPTH 10 1 0.72981177873614378 1 11 1 11 0 0 88 42 2594 23664881 81600 851.42378234863281 5.9134000000000002 1045.1255000000001 120960 68180 1 0 5898240 4423680 4423680 4426481 4492800 150 150 150 150 1994 0 0 0 0 42 0 0 0 0 0 +971 1783720964902267300 DEPTH 34 1 0.72921485760568816 1 14 1 13 1 0 80 114 2581 23664888 81600 856.74342346191406 5.9171000000000005 1043.4558999999999 120960 70258 1 0 5898240 4423680 4423680 4426487 4492800 155 150 154 163 1959 0 0 0 3 111 0 0 0 0 3 +972 1783720966224162100 DEPTH 41 1 0.72871235369676801 1 10 1 10 0 0 84 53 2565 23664863 81600 852.1407470703125 5.9032 1269.1751999999999 120960 60842 1 0 5898240 4423680 4423680 4426461 4492800 150 150 150 175 1940 0 1 0 0 52 0 0 0 0 0 +973 1783720966422196700 REFRESH 21 0 0.5523785101822396 0 10 0 10 0 0 134 17 415 3943878 55200 150.17575073242188 0.99170000000000003 196.8963 20160 12431 0 0 983040 737280 737280 737478 748800 114 25 44 33 199 0 1 0 0 16 0 0 0 0 0 +974 1783720966607488200 REFRESH 2 0 0.77882682488400468 2 12 2 12 0 0 80 14 423 3943904 55200 150.89337158203125 0.98740000000000006 183.99629999999999 20160 11927 0 0 983040 737280 737280 737503 748800 26 25 29 35 308 0 0 0 0 14 0 0 0 0 0 +975 1783720966814556300 REFRESH 46 0 0.72322899116782402 2 15 2 15 0 0 75 18 419 3943927 55200 150.11625671386719 0.98570000000000002 182.61959999999999 20160 14548 0 0 983040 737280 737280 737527 748800 27 25 26 25 316 0 0 1 0 17 0 0 0 0 0 +976 1783720967067221400 REFRESH 15 0 0.72263723165371307 3 12 3 12 0 0 65 11 415 3943882 55200 150.11943054199219 0.98440000000000005 181.19040000000001 20160 13717 0 0 983040 737280 737280 737482 748800 25 25 26 25 314 0 0 0 0 11 0 0 0 0 0 +977 1783720967295436600 REFRESH 56 0 0.81819632890229665 2 5 2 5 0 0 133 8 424 3943906 55200 149.38931274414062 0.98309999999999997 227.07730000000001 20160 13306 0 0 983040 737280 737280 737506 748800 107 25 69 121 102 0 0 0 0 8 0 0 0 0 0 +978 1783720967495171800 REFRESH 22 0 0.7228452398164662 3 12 3 12 0 0 91 18 407 3943908 55200 149.62995910644531 0.9839 183.84190000000001 20160 13648 0 0 983040 737280 737280 737508 748800 26 25 25 26 305 0 0 0 0 18 0 0 0 0 0 +979 1783720967691786300 REFRESH 19 0 0.72627471992874215 3 11 3 11 0 0 86 12 423 3943915 55200 150.11839294433594 0.98619999999999997 181.67859999999999 20160 13721 0 0 983040 737280 737280 737515 748800 25 25 25 25 323 0 0 0 0 12 0 0 0 0 0 +980 1783720967890835600 REFRESH 47 0 0.72711101742488826 2 11 2 11 0 0 95 17 423 3943905 55200 149.76716613769531 0.98729999999999996 181.2174 20160 12046 0 0 983040 737280 737280 737505 748800 61 25 26 25 286 0 0 1 0 16 0 0 0 0 0 +981 1783720968100362800 REFRESH 49 0 0.72601519292554917 3 10 3 10 0 0 105 20 416 3943901 55200 149.82144165039062 0.9819 181.60759999999999 20160 12492 0 0 983040 737280 737280 737501 748800 35 25 33 34 289 0 0 0 0 20 0 0 0 0 0 +982 1783720968305080500 REFRESH 30 0 0.72486879093184275 2 12 2 12 0 0 84 13 399 3943895 55200 149.87571716308594 0.97809999999999997 181.72030000000001 20160 12702 0 0 983040 737280 737280 737495 748800 41 25 41 50 242 0 0 0 0 13 0 0 0 0 0 +983 1783720968526339900 REFRESH 38 0 0.721106570559088 4 14 4 14 0 0 67 18 424 3943902 55200 148.44210815429688 0.98780000000000001 180.04589999999999 20160 14378 0 0 983040 737280 737280 737502 748800 25 25 27 26 321 1 0 0 0 17 0 0 0 0 0 +984 1783720968720088500 REFRESH 4 0 0.71284217155859397 1 13 1 13 1 0 39 6 427 3943920 55200 148.08575439453125 0.9849 178.9967 20160 14490 0 0 983040 737280 737280 737520 748800 30 25 37 32 303 0 0 0 0 6 0 0 0 0 1 +985 1783720968916068600 REFRESH 48 0 0.70239279804255284 2 12 2 12 0 0 41 7 422 3943940 55200 148.46771240234375 0.98699999999999999 179.27289999999999 20160 13767 0 0 983040 737280 737280 737540 748800 34 25 41 53 269 0 0 0 1 6 0 0 0 0 0 +986 1783720969114567900 REFRESH 28 0 0.72287638065277071 2 13 2 13 0 0 87 19 400 3943883 55200 150.4163818359375 0.99039999999999995 183.16560000000001 20160 13591 0 0 983040 737280 737280 737483 748800 27 25 28 32 288 0 0 0 0 19 0 0 0 0 0 +987 1783720969318211900 REFRESH 20 0 0.72284279758245784 3 12 3 12 0 0 67 15 411 3943932 55200 148.80461120605469 0.99760000000000004 179.11600000000001 20160 13613 0 0 983040 737280 737280 737532 748800 25 25 26 27 308 0 0 0 0 15 0 0 0 0 0 +988 1783720969551562600 REFRESH 17 0 0.8798903383660327 0 7 0 7 0 0 119 8 417 3943946 55200 150.19110107421875 0.98839999999999995 232.2047 20160 13204 0 0 983040 737280 737280 737546 748800 69 25 61 108 154 0 0 0 0 8 0 0 0 0 0 +989 1783720969750828800 REFRESH 57 0 0.72316957294585515 2 13 2 13 1 0 83 11 410 3943924 55200 148.890625 0.98750000000000004 184.87899999999999 20160 13599 0 0 983040 737280 737280 737524 748800 28 25 28 41 288 0 0 0 1 10 0 0 0 0 1 +990 1783720969934188400 REFRESH 55 0 0.71997737236735571 1 15 1 15 0 0 113 14 404 3943878 55200 150.04876708984375 0.98580000000000001 182.07660000000001 20160 12385 0 0 983040 737280 737280 737478 748800 26 25 25 25 303 0 0 0 0 14 0 0 0 0 0 +991 1783720970123107300 REFRESH 33 0 0.86206849373672378 1 7 1 7 0 0 138 11 410 3943917 55200 152.05375671386719 0.98450000000000004 187.78319999999999 20160 12135 0 0 983040 737280 737280 737517 748800 100 25 32 33 220 0 0 0 0 11 0 0 0 0 0 +992 1783720970325504400 REFRESH 32 0 0.72631040105725375 2 14 2 14 0 0 76 18 415 3943896 55200 150.19941711425781 0.98180000000000001 181.1848 20160 14491 0 0 983040 737280 737280 737496 748800 26 25 27 25 312 0 0 0 0 18 0 0 0 0 0 +993 1783720970530963000 REFRESH 26 0 0.72269948301939735 1 13 1 13 0 0 57 10 424 3943912 55200 149.18553161621094 0.98409999999999997 179.87639999999999 20160 13532 0 0 983040 737280 737280 737511 748800 29 25 36 51 283 0 0 0 0 10 0 0 0 0 0 +994 1783720970713160700 REFRESH 34 0 0.80712772621793483 1 13 1 13 0 0 82 15 419 3943904 55200 149.391357421875 0.98609999999999998 181.0916 20160 13564 0 0 983040 737280 737280 737503 748800 35 26 28 33 297 0 0 0 1 14 0 0 0 0 0 +995 1783720970910289500 REFRESH 9 0 0.80455041119374182 2 6 2 6 0 0 98 8 426 3943917 55200 151.23954772949219 0.98499999999999999 195.85409999999999 20160 12394 0 0 983040 737280 737280 737517 748800 40 25 26 29 306 0 0 0 0 8 0 0 0 0 0 +996 1783720971137403300 REFRESH 52 0 0.77197922788379514 1 8 1 8 0 0 78 2 435 3943914 55200 149.87161254882812 0.97989999999999999 225.9299 20160 13711 0 0 983040 737280 737280 737514 748800 211 25 55 59 85 0 0 0 0 2 0 0 0 0 0 +997 1783720971364413500 REFRESH 31 0 0.80121830686272566 2 6 2 6 0 0 72 7 428 3943911 55200 149.59007263183594 0.98529999999999995 210.9248 20160 12733 0 0 983040 737280 737280 737511 748800 128 25 51 112 112 0 0 0 0 7 0 0 0 0 0 +998 1783720971544005900 REFRESH 5 0 0.74290327631710051 2 11 2 11 1 0 84 11 415 3943929 55200 148.71347045898438 0.98070000000000002 178.5857 20160 12157 0 0 983040 737280 737280 737529 748800 174 25 37 47 132 0 0 1 0 10 0 0 0 0 1 +999 1783720971744264400 REFRESH 13 0 0.86930535845536194 1 6 1 6 0 0 141 7 416 3943917 55200 150.35699462890625 0.98019999999999996 199.17099999999999 20160 13439 0 0 983040 737280 737280 737517 748800 142 25 42 101 106 0 0 0 0 7 0 0 0 0 0 +1000 1783720971939534300 REFRESH 3 0 0.72746342596114244 3 11 3 11 0 0 86 15 409 3943925 55200 149.17497253417969 0.98980000000000001 181.88149999999999 20160 13754 0 0 983040 737280 737280 737524 748800 26 25 27 29 302 0 0 0 0 15 0 0 0 0 0 +1001 1783720972197221800 REFRESH 54 0 0.73133500430596943 1 8 1 8 0 0 82 11 421 3943940 55200 149.10272216796875 0.98650000000000004 227.27109999999999 20160 12377 0 0 983040 737280 737280 737540 748800 137 25 81 63 115 0 0 0 0 11 0 0 0 0 0 +1002 1783720972396016600 REFRESH 36 0 0.72914361196176025 3 10 3 10 0 0 82 18 420 3943921 55200 149.83576965332031 0.99260000000000004 183.43600000000001 20160 14564 0 0 983040 737280 737280 737521 748800 26 25 31 32 306 0 0 0 0 18 0 0 0 0 0 +1003 1783720972630278900 REFRESH 11 0 0.76518290775204656 0 8 0 8 0 0 77 8 433 3943895 55200 149.49580383300781 0.98719999999999997 233.23920000000001 20160 12192 0 0 983040 737280 737280 737495 748800 156 25 46 109 97 0 0 0 0 8 0 0 0 0 0 +1004 1783720972839100000 REFRESH 6 0 0.72394832525001418 3 14 3 14 0 0 77 18 416 3943902 55200 150.28553771972656 0.98029999999999995 181.93049999999999 20160 14583 0 0 983040 737280 737280 737502 748800 28 25 33 30 300 0 0 0 0 18 0 0 0 0 0 +1005 1783720973070939500 REFRESH 44 0 0.73077930118606926 2 7 2 7 0 0 96 12 417 3943934 55200 149.42002868652344 0.98750000000000004 230.65639999999999 20160 12102 0 0 983040 737280 737280 737534 748800 50 25 26 28 288 0 0 0 0 12 0 0 0 0 0 +1006 1783720973268227400 REFRESH 25 0 0.72253995505293511 3 11 3 11 0 0 75 4 421 3943876 55200 150.61318969726562 0.98570000000000002 181.8706 20160 12134 0 0 983040 737280 737280 737476 748800 87 25 35 40 234 0 0 0 0 4 0 0 0 0 0 +1007 1783720973450243100 REFRESH 10 0 0.72487668575826869 1 11 1 11 0 0 90 23 420 3943917 55200 148.53529357910156 0.99029999999999996 180.97380000000001 20160 12448 0 0 983040 737280 737280 737517 748800 25 25 28 25 317 1 1 0 0 21 0 0 0 0 0 +1008 1783720973639361700 REFRESH 45 0 0.90102137035751639 2 7 2 7 0 0 97 8 418 3943905 55200 150.94886779785156 0.98119999999999996 187.84790000000001 20160 12413 0 0 983040 737280 737280 737504 748800 105 25 32 40 216 0 0 0 0 8 0 0 0 0 0 +1009 1783720973847758500 REFRESH 1 0 0.76728035830769037 1 8 1 8 0 0 100 7 418 3943908 55200 150.38975524902344 1.0229999999999999 207.34119999999999 20160 12779 0 0 983040 737280 737280 737508 748800 174 25 43 51 125 0 0 0 0 7 0 0 0 0 0 +1010 1783720974037928100 REFRESH 53 0 0.77369940954360039 0 8 0 8 0 0 102 10 418 3943934 55200 150.49113464355469 0.98729999999999996 189.0324 20160 12141 0 0 983040 737280 737280 737534 748800 92 31 34 39 222 0 0 0 0 10 0 0 0 0 0 +1011 1783720974241732600 REFRESH 39 0 0.72752430624119979 2 12 2 12 0 0 101 14 411 3943895 55200 149.88082885742188 0.98719999999999997 182.99600000000001 20160 13554 0 0 983040 737280 737280 737495 748800 29 25 27 27 303 0 0 0 0 14 0 0 0 0 0 +1012 1783720974437575100 REFRESH 40 0 0.72670374376622082 3 13 3 13 0 0 70 14 417 3943916 55200 148.52403259277344 0.98609999999999998 180.87710000000001 20160 14406 0 0 983040 737280 737280 737516 748800 31 25 34 57 270 0 0 1 0 13 0 0 0 0 0 +1013 1783720974638055500 REFRESH 50 0 0.70842905498507625 2 9 2 9 0 0 97 8 422 3943915 55200 150.39077758789062 0.98140000000000005 183.03020000000001 20160 13103 0 0 983040 737280 737280 737515 748800 146 25 48 83 120 0 0 0 0 8 0 0 0 0 0 +1014 1783720974917734300 REFRESH 23 0 0.72395948310513614 3 14 3 14 0 0 76 24 414 3943910 55200 149.496826171875 0.9879 180.71360000000001 20160 14537 0 0 983040 737280 737280 737510 748800 25 25 25 25 314 1 0 0 0 23 0 0 0 0 0 +1015 1783720975123037000 REFRESH 35 0 0.72939534486332913 2 11 2 11 0 0 91 23 423 3943886 55200 150.31193542480469 0.98440000000000005 182.91999999999999 20160 14513 0 0 983040 737280 737280 737485 748800 26 25 33 25 314 0 0 0 0 23 0 0 0 0 0 +1016 1783720975322069600 REFRESH 18 0 0.71980258542605735 4 15 4 15 0 0 64 20 422 3943894 55200 150.70413208007812 0.99399999999999999 184.226 20160 14503 0 0 983040 737280 737280 737494 748800 26 25 29 26 316 1 0 0 1 18 0 0 0 0 0 +1017 1783720975505190600 REFRESH 24 0 0.84334076384394629 4 11 4 11 0 0 99 14 404 3943892 55200 149.47123718261719 0.98860000000000003 181.81780000000001 20160 11961 0 0 983040 737280 737280 737492 748800 37 25 25 27 290 1 0 0 0 13 0 0 0 0 0 +1018 1783720975703780200 REFRESH 29 0 0.72759543272288252 2 12 2 12 1 0 78 14 419 3943914 55200 150.72869873046875 0.98509999999999998 183.40459999999999 20160 13627 0 0 983040 737280 737280 737514 748800 25 25 25 25 319 0 0 0 0 14 0 0 0 0 1 +1019 1783720975905562900 REFRESH 58 0 0.72449145314374397 2 13 2 13 1 0 88 19 417 3943933 55200 153.523193359375 0.98760000000000003 187.32640000000001 20160 13674 0 0 983040 737280 737280 737533 748800 27 25 25 26 314 0 0 0 0 19 0 0 0 0 1 +1020 1783720976155332400 REFRESH 43 0 0.72362082964818497 2 13 2 13 0 0 81 21 411 3943940 55200 151.48748779296875 0.98480000000000001 183.4016 20160 13652 0 0 983040 737280 737280 737540 748800 29 25 33 40 284 0 0 0 0 21 0 0 0 0 0 +1021 1783720976370091800 REFRESH 12 0 0.72901164130258356 3 8 3 8 0 0 122 10 414 3943910 55200 154.22055053710938 0.98419999999999996 191.15819999999999 20160 12273 0 0 983040 737280 737280 737510 748800 108 25 60 35 186 1 0 0 0 9 0 0 0 0 0 +1022 1783720976584913500 REFRESH 51 0 0.72181787926882679 3 15 3 15 0 0 70 13 409 3943924 55200 157.59053039550781 0.99439999999999995 197.268 20160 14551 0 0 983040 737280 737280 737524 748800 30 25 45 38 271 0 0 0 0 13 0 0 0 0 0 +1023 1783720976794527700 REFRESH 27 0 0.72416101486503903 0 14 0 14 0 0 78 21 424 3943914 55200 157.02528381347656 1.0313000000000001 193.2336 20160 14629 0 0 983040 737280 737280 737514 748800 26 25 26 25 322 0 0 0 0 21 0 0 0 0 0 +1024 1783720976999777300 REFRESH 14 0 0.72419205441224022 0 12 0 12 0 0 90 6 422 3943911 55200 151.04818725585938 0.98980000000000001 190.0488 20160 12334 0 0 983040 737280 737280 737511 748800 131 25 27 47 192 0 0 0 0 6 0 0 0 0 0 +1025 1783720977209888200 REFRESH 16 0 0.72902658906684215 2 8 2 8 0 0 134 8 412 3943898 55200 152.80953979492188 1.0126999999999999 188.6739 20160 11936 0 0 983040 737280 737280 737498 748800 111 43 28 31 199 1 0 0 0 7 0 0 0 0 0 +1026 1783720977417763500 REFRESH 0 0 0.72956998102596482 1 12 1 12 1 0 57 13 423 3943898 55200 150.26687622070312 0.99850000000000005 182.54650000000001 20160 14359 0 0 983040 737280 737280 737498 748800 26 25 25 58 289 0 0 0 1 12 0 0 0 0 1 +1027 1783720977610909500 REFRESH 8 0 0.89822409203808129 2 5 2 5 0 0 163 11 414 3943921 55200 154.09356689453125 0.98609999999999998 191.65790000000001 20160 13207 0 0 983040 737280 737280 737521 748800 58 32 27 29 268 0 0 0 0 11 0 0 0 0 0 +1028 1783720977809539300 REFRESH 7 0 0.72682767523021541 2 12 2 12 0 0 76 13 417 3943932 55200 149.55110168457031 0.99299999999999999 182.48249999999999 20160 13731 0 0 983040 737280 737280 737532 748800 25 25 42 32 293 0 0 0 0 13 0 0 0 0 0 +1029 1783720978009897100 REFRESH 42 0 0.72694173403961515 3 13 3 13 0 0 78 20 423 3943902 55200 149.46115112304688 0.98860000000000003 183.83969999999999 20160 14578 0 0 983040 737280 737280 737502 748800 25 25 27 27 319 0 1 1 0 18 0 0 0 0 0 +1030 1783720978214078900 REFRESH 41 0 0.72405314622536276 1 10 1 10 0 0 85 10 416 3943931 55200 156.35968017578125 0.98499999999999999 202.40819999999999 20160 12834 0 0 983040 737280 737280 737531 748800 47 25 30 54 260 0 0 1 0 9 0 0 0 0 0 +1031 1783720978397520500 REFRESH 37 0 0.82934236448094134 1 12 1 12 1 0 89 19 407 3943921 55200 151.29804992675781 0.98319999999999996 182.05439999999999 20160 12636 0 0 983040 737280 737280 737521 748800 105 25 28 31 218 0 0 0 1 18 0 0 0 0 1 +1032 1783720979877397600 DEPTH 17 1 0.87668307742102702 0 7 0 7 0 0 120 40 2546 23664797 81600 943.44601440429688 5.9510999999999994 1461.5400999999999 120960 64108 1 0 5898240 4423680 4423680 4426396 4492800 217 150 238 386 1555 0 0 0 0 40 0 0 0 0 0 +1033 1783720981307044900 DEPTH 56 1 0.87458279232959368 2 5 2 5 0 0 134 26 2583 23664812 81600 882.47103881835938 6.0346000000000002 1365.8353 120960 64435 1 0 5898240 4423680 4423680 4426411 4492800 318 150 243 387 1485 0 0 0 0 26 0 0 0 0 0 +1034 1783720982859340000 DEPTH 45 1 0.87801448137796922 2 7 2 7 0 0 97 39 2561 23664833 81600 870.81805419921875 5.9306999999999999 1550.8669 120960 58766 1 0 5898240 4423680 4423680 4426432 4492800 150 150 156 150 1955 0 0 0 0 39 0 0 0 0 0 +1035 1783720984352804300 DEPTH 13 1 0.86555045116304585 1 6 1 6 0 0 143 28 2508 23664719 81600 952.71221923828125 16.675500000000003 1491.9413999999999 120960 64413 1 0 5898240 4423680 4423680 4426319 4492800 193 150 160 173 1832 0 0 0 0 28 0 0 0 0 0 +1036 1783720985595727100 DEPTH 33 1 0.85068285495698426 1 7 1 7 0 0 139 69 2526 23664867 81600 995.86041259765625 6.1242999999999999 1241.7121 120960 57782 1 0 5898240 4423680 4423680 4426465 4492800 174 150 150 150 1902 2 0 0 0 67 0 0 0 0 0 +1037 1783720986667588600 DEPTH 34 1 0.81160879726142543 1 13 1 13 1 0 83 89 2626 23664853 81600 876.08523559570312 5.9126000000000003 1070.684 120960 67790 1 0 5898240 4423680 4423680 4426452 4492800 152 150 151 151 2022 0 0 0 0 89 0 0 0 0 3 +1038 1783720987970602700 DEPTH 9 1 0.79592392704824655 2 6 2 6 1 0 99 21 2605 23664814 81600 881.50192260742188 5.9404000000000003 1301.8681999999999 120960 59273 1 0 5898240 4423680 4423680 4426411 4492800 194 150 156 175 1930 1 0 0 0 20 0 0 0 0 1 +1039 1783720989415106900 DEPTH 31 1 0.79214768074593489 2 6 2 6 0 0 73 22 2624 23664868 81600 922.19178771972656 5.9192 1427.059 120960 61128 1 0 5898240 4423680 4423680 4426466 4492800 543 150 248 493 1190 0 0 0 0 22 0 0 0 0 0 +1040 1783720990559738800 DEPTH 24 1 0.80491845629283898 4 11 4 11 0 0 103 82 2522 23664860 81600 926.23155212402344 5.9097 1124.3475000000001 120960 58005 1 0 5898240 4423680 4423680 4426456 4492800 150 150 150 150 1922 0 0 0 0 82 0 0 0 0 0 +1041 1783720991817870200 DEPTH 2 1 0.77694572300297549 2 12 2 12 0 0 82 51 2587 23664805 81600 1051.5077056884766 5.9451000000000001 1256.9492 120960 57973 1 0 5898240 4423680 4423680 4426404 4492800 150 150 153 215 1919 1 1 3 0 46 0 0 0 0 0 +1042 1783720992919065400 DEPTH 8 1 0.79526066744280588 2 5 2 5 0 0 167 67 2497 23664675 81600 902.66009521484375 5.8361000000000001 1099.9795999999999 120960 63623 1 0 5898240 4423680 4423680 4426275 4492800 168 161 150 155 1863 1 0 0 0 66 0 0 0 0 0 +1043 1783720994229987900 DEPTH 53 1 0.77100814921451388 0 8 0 8 1 0 102 56 2516 23664778 81600 873.28472900390625 5.8300000000000001 1284.5262 120960 57208 1 0 5898240 4423680 4423680 4426377 4492800 150 150 150 150 1916 0 0 0 0 56 0 0 0 0 1 +1044 1783720995646328300 DEPTH 11 1 0.76144231343432278 0 8 0 8 1 0 79 22 2626 23664910 81600 860.07566833496094 5.8425000000000002 1358.0272 120960 57594 1 0 5898240 4423680 4423680 4426510 4492800 463 150 210 398 1405 2 0 0 0 20 0 0 0 0 2 +1045 1783720997026282600 DEPTH 52 1 0.75745000684846209 1 8 1 8 0 0 80 14 2613 23664840 81600 866.71742248535156 5.8125 1343.7446 120960 64234 1 0 5898240 4423680 4423680 4426439 4492800 1043 150 259 289 872 0 0 0 0 14 0 0 0 0 0 +1046 1783720998473982700 DEPTH 1 1 0.75703254822197918 1 8 1 7 1 0 101 35 2598 23664927 81600 905.37472534179688 5.8528000000000002 1406.7885000000001 120960 60464 1 0 5898240 4423680 4423680 4426525 4492800 320 150 172 182 1774 0 0 0 0 35 0 0 0 0 1 +1047 1783720999889850900 DEPTH 21 1 0.73532320830692277 0 10 0 10 1 0 138 62 2564 23664896 81600 897.92819213867188 5.8977000000000004 1390.1672000000001 120960 59396 1 0 5898240 4423680 4423680 4426495 4492800 249 150 168 185 1812 0 0 0 0 62 0 0 0 0 2 +1048 1783721001278970900 DEPTH 17 1 0.78534577706430631 0 7 0 7 1 0 121 37 2551 23664810 81600 872.02407836914062 5.8707000000000003 1387.8362999999999 120960 53118 1 0 5898240 4423680 4423680 4426409 4492800 206 150 233 401 1561 0 0 0 0 37 0 0 0 0 1 +1049 1783721002704763300 DEPTH 56 1 0.78278653275113796 2 5 2 5 0 0 134 26 2590 23664868 81600 874.13374328613281 5.9058999999999999 1366.0889999999999 120960 53347 1 0 5898240 4423680 4423680 4426467 4492800 300 150 235 425 1480 0 0 0 0 26 0 0 0 0 0 +1050 1783721004012127800 DEPTH 45 1 0.76897033002423532 2 7 2 7 0 0 97 31 2574 23664950 81600 892.30354309082031 5.8384 1306.0446999999999 120960 48619 1 0 5898240 4423680 4423680 4426548 4492800 150 150 156 150 1968 0 0 1 0 30 0 0 0 0 0 +1051 1783721005391890000 DEPTH 13 1 0.77482105023269487 1 6 1 6 0 0 143 31 2506 23664938 81600 885.29158020019531 5.8616999999999999 1351.8679 120960 53857 1 0 5898240 4423680 4423680 4426538 4492800 194 150 161 201 1800 0 0 0 0 31 0 0 0 0 0 +1052 1783721006505672900 DEPTH 5 1 0.73448183162761871 2 11 2 11 1 0 87 54 2591 23664821 81600 888.42555236816406 6.3567999999999998 1094.6264000000001 120960 59650 1 0 5898240 4423680 4423680 4426418 4492800 342 150 162 222 1715 0 0 0 0 54 0 0 0 0 1 +1053 1783721007648647100 DEPTH 37 1 0.78286354372608269 1 12 1 12 0 0 89 25 2582 23664846 81600 946.36647033691406 5.9825999999999997 1141.6944000000001 120960 59269 1 0 5898240 4423680 4423680 4426445 4492800 191 150 150 150 1941 2 0 0 0 23 0 0 0 0 0 +1054 1783721009077037000 DEPTH 54 1 0.72865766939258825 1 8 1 8 0 0 83 33 2573 23664850 81600 923.56101989746094 6.1223000000000001 1409.1668999999999 120960 58651 1 0 5898240 4423680 4423680 4426450 4492800 345 150 240 276 1562 0 0 0 0 33 0 0 0 0 0 +1055 1783721010535553900 DEPTH 44 1 0.72785593581767916 2 7 2 7 0 0 97 27 2567 23664823 81600 915.05766296386719 5.9587000000000003 1412.8667 120960 57313 1 0 5898240 4423680 4423680 4426423 4492800 150 150 150 150 1967 0 0 0 0 27 0 0 0 0 0 +1056 1783721011767557300 DEPTH 33 1 0.78990029792713989 1 7 1 7 0 0 143 54 2500 23664892 81600 913.29168701171875 5.8569000000000004 1157.5861 120960 46833 1 0 5898240 4423680 4423680 4426492 4492800 174 150 150 150 1876 1 2 0 0 51 0 0 0 0 0 +1057 1783721012868425800 DEPTH 8 1 0.79242161087876106 2 5 2 5 0 0 173 63 2479 23664849 81600 910.082275390625 5.8411 1099.7082 120960 52947 1 0 5898240 4423680 4423680 4426448 4492800 172 162 150 161 1834 0 0 0 0 63 0 0 0 0 0 +1058 1783721014260046800 DEPTH 1 1 0.77028282689057925 1 7 1 7 1 0 104 41 2596 23664821 81600 900.57012939453125 5.8461999999999996 1390.0553 120960 50155 1 0 5898240 4423680 4423680 4426421 4492800 284 150 173 185 1804 1 1 0 0 39 0 0 0 0 1 +1059 1783721015338347600 DEPTH 34 1 0.76886037551855912 1 13 1 13 1 0 84 42 2618 23664892 81600 888.77371215820312 5.8406000000000002 1076.9562000000001 120960 55902 1 0 5898240 4423680 4423680 4426491 4492800 150 150 150 150 2018 0 0 0 0 42 0 0 0 0 4 +1060 1783721016456627700 DEPTH 35 1 0.72423515273952943 2 11 2 11 0 0 103 124 2551 23664775 81600 904.36813354492188 5.8459000000000003 1099.3788 120960 70481 1 0 5898240 4423680 4423680 4426372 4492800 150 150 167 150 1934 0 0 0 4 120 0 0 0 0 0 +1061 1783721017600924500 DEPTH 0 1 0.72423777132012046 1 12 1 12 1 0 61 53 2591 23664927 81600 925.48320007324219 5.8855000000000004 1118.1018999999999 120960 70345 1 0 5898240 4423680 4423680 4426524 4492800 150 150 150 152 1989 2 0 0 2 49 0 0 0 0 1 +1062 1783721018731833200 DEPTH 36 1 0.72424858808960124 3 10 3 10 1 0 84 92 2587 23664871 81600 908.96383666992188 5.8472 1104.2240999999999 120960 70316 1 0 5898240 4423680 4423680 4426469 4492800 153 150 150 151 1983 0 0 0 1 91 0 0 0 0 1 +1063 1783721019897522200 DEPTH 16 1 0.72243749117202727 2 8 2 8 0 0 136 71 2525 23664888 81600 900.08064270019531 5.8797999999999995 1119.8037999999999 120960 56743 1 0 5898240 4423680 4423680 4426488 4492800 156 150 150 150 1919 4 2 0 0 65 0 0 0 0 0 +1064 1783721020138707700 REFRESH 52 0 0.69174335123069985 1 8 1 8 0 0 80 4 432 3943902 55200 155.90296936035156 0.98480000000000001 239.39150000000001 20160 13175 0 0 983040 737280 737280 737502 748800 222 25 53 50 82 0 0 0 0 4 0 0 0 0 0 +1065 1783721020349032500 REFRESH 32 0 0.72089958899223627 2 14 2 14 0 0 78 21 418 3943915 55200 154.29837036132812 0.9869 187.45480000000001 20160 14375 0 0 983040 737280 737280 737515 748800 26 25 27 25 315 0 0 0 0 21 0 0 0 0 0 +1066 1783721020552591100 REFRESH 30 0 0.7199593693569315 2 12 2 12 0 0 85 15 404 3943886 55200 153.92579650878906 0.9768 187.07249999999999 20160 12586 0 0 983040 737280 737280 737486 748800 34 25 33 41 271 0 0 0 0 15 0 0 0 0 0 +1067 1783721020819472700 REFRESH 44 0 0.59451815277025277 2 7 2 7 0 0 97 9 412 3943911 55200 154.54412841796875 0.97460000000000002 238.4385 20160 12149 0 0 983040 737280 737280 737511 748800 52 25 26 28 281 0 0 0 0 9 0 0 0 0 0 +1068 1783721021026988200 REFRESH 25 0 0.71062727841677398 3 11 3 11 0 0 76 6 418 3943899 55200 157.93034362792969 1.0186999999999999 190.25890000000001 20160 12282 0 0 983040 737280 737280 737499 748800 89 25 35 41 228 0 0 0 0 6 0 0 0 0 0 +1069 1783721021236123600 REFRESH 9 0 0.79054906403709502 2 6 2 6 0 0 99 9 426 3943914 55200 155.89068603515625 0.98450000000000004 207.86959999999999 20160 12417 0 0 983040 737280 737280 737514 748800 34 25 26 28 313 1 0 0 0 8 0 0 0 0 0 +1070 1783721021450054700 REFRESH 38 0 0.71595025742186014 4 14 4 14 0 0 67 17 421 3943917 55200 155.64288330078125 0.97540000000000004 188.8638 20160 14387 0 0 983040 737280 737280 737517 748800 25 25 27 26 318 0 0 0 0 17 0 0 0 0 0 +1071 1783721021657837300 REFRESH 23 0 0.71825153923111507 3 14 3 14 0 0 79 24 417 3943901 55200 157.6048583984375 0.9758 191.23089999999999 20160 14418 0 0 983040 737280 737280 737500 748800 25 25 25 25 317 0 0 0 0 24 0 0 0 0 0 +1072 1783721021865927900 REFRESH 21 0 0.7281819091070465 0 10 0 10 0 0 139 14 418 3943922 55200 160.06758117675781 0.98229999999999995 206.82910000000001 20160 12487 0 0 983040 737280 737280 737522 748800 116 25 46 33 198 0 0 0 0 14 0 0 0 0 0 +1073 1783721022065624500 REFRESH 5 0 0.68628323457706053 2 11 2 11 0 0 87 6 405 3943899 55200 159.22688293457031 0.98140000000000005 191.1635 20160 13366 0 0 983040 737280 737280 737498 748800 183 25 39 43 115 0 0 0 0 6 0 0 0 0 0 +1074 1783721022294933100 REFRESH 31 0 0.78669660150854248 2 6 2 6 0 0 74 8 430 3943891 55200 160.4505615234375 0.97809999999999997 228.0522 20160 12494 0 0 983040 737280 737280 737491 748800 132 25 49 118 106 0 0 0 0 8 0 0 0 0 0 +1075 1783721022513885400 REFRESH 50 0 0.70164189250879061 2 9 2 9 0 0 99 10 419 3943910 55200 158.70463562011719 0.9859 193.03190000000001 20160 13065 0 0 983040 737280 737280 737510 748800 154 25 51 81 108 0 0 1 0 9 0 0 0 0 0 +1076 1783721022763113600 REFRESH 17 0 0.87423520342353767 0 7 0 7 0 0 121 5 420 3943930 55200 159.31085205078125 0.98180000000000001 247.6018 20160 13003 0 0 983040 737280 737280 737530 748800 70 25 68 122 135 0 0 0 0 5 0 0 0 0 0 +1077 1783721022958372600 REFRESH 8 0 0.83975194583658297 2 5 2 5 0 0 173 8 412 3943919 55200 160.04608154296875 1.0057 193.91669999999999 20160 13193 0 0 983040 737280 737280 737519 748800 60 31 26 28 267 0 0 0 0 8 0 0 0 0 0 +1078 1783721023155434900 REFRESH 2 0 0.76553381153742783 2 12 2 12 0 0 82 15 421 3943941 55200 161.53216552734375 0.98909999999999998 195.89259999999999 20160 11920 0 0 983040 737280 737280 737541 748800 26 25 27 39 304 1 0 0 0 14 0 0 0 0 0 +1079 1783721023397189600 REFRESH 56 0 0.87116618307384375 2 5 2 5 0 0 134 6 420 3943907 55200 159.81362915039062 0.97560000000000002 239.98429999999999 20160 13313 0 0 983040 737280 737280 737507 748800 112 25 71 121 91 0 0 0 0 6 0 0 0 0 0 +1080 1783721023602954300 REFRESH 58 0 0.71916294460753805 2 13 2 13 1 0 89 14 419 3943896 55200 157.87417602539062 0.98970000000000002 189.589 20160 13397 0 0 983040 737280 737280 737496 748800 27 25 25 26 316 0 0 0 0 14 0 0 0 0 1 +1081 1783721023810323400 REFRESH 26 0 0.71837028230455435 1 13 1 13 0 0 57 6 418 3943936 55200 159.70098876953125 0.97589999999999999 191.26599999999999 20160 13500 0 0 983040 737280 737280 737536 748800 30 25 35 48 280 0 0 0 1 5 0 0 0 0 0 +1082 1783721024020655300 REFRESH 6 0 0.71859001148428314 3 14 3 14 0 0 77 19 415 3943913 55200 160.99224853515625 0.97850000000000004 193.4913 20160 14411 0 0 983040 737280 737280 737512 748800 28 25 33 30 299 0 0 0 1 18 0 0 0 0 0 +1083 1783721024231749800 REFRESH 19 0 0.72184718170759465 3 11 3 11 0 0 87 12 422 3943895 55200 161.217529296875 0.97519999999999996 194.09280000000001 20160 13438 0 0 983040 737280 737280 737494 748800 25 25 25 25 322 0 0 0 0 12 0 0 0 0 0 +1084 1783721024440551500 REFRESH 22 0 0.71837657569732327 3 12 3 12 0 0 92 18 418 3943908 55200 159.29959106445312 0.97309999999999997 192.44540000000001 20160 13393 0 0 983040 737280 737280 737508 748800 25 25 25 26 317 0 0 0 0 18 0 0 0 0 0 +1085 1783721024654679000 REFRESH 13 0 0.86419911007960404 1 6 1 6 0 0 143 4 415 3943877 55200 160.15052795410156 0.97499999999999998 212.61940000000001 20160 13353 0 0 983040 737280 737280 737477 748800 132 25 41 98 119 0 0 0 0 4 0 0 0 0 0 +1086 1783721024871383800 REFRESH 12 0 0.72247013731614929 3 8 3 8 0 0 122 12 409 3943925 55200 158.6165771484375 0.98009999999999997 191.6748 20160 12164 0 0 983040 737280 737280 737525 748800 113 25 65 37 169 1 0 0 0 11 0 0 0 0 0 +1087 1783721025081628900 REFRESH 7 0 0.72162751071030873 2 12 2 12 1 0 78 13 413 3943904 55200 160.60723876953125 0.97550000000000003 193.53870000000001 20160 13482 0 0 983040 737280 737280 737504 748800 30 25 57 38 263 0 0 0 0 13 0 0 0 0 1 +1088 1783721025280606200 REFRESH 33 0 0.83012141685387664 1 7 1 7 0 0 143 10 414 3943884 55200 161.52780151367188 0.98140000000000005 197.39609999999999 20160 12393 0 0 983040 737280 737280 737484 748800 58 25 27 28 276 0 0 0 0 10 0 0 0 0 0 +1089 1783721025495376000 REFRESH 40 0 0.72132885994181728 3 13 3 13 0 0 71 20 417 3943894 55200 158.70976257324219 0.97240000000000004 189.03440000000001 20160 14489 0 0 983040 737280 737280 737494 748800 31 25 35 62 264 0 0 1 2 17 0 0 0 0 0 +1090 1783721025745392400 REFRESH 4 0 0.7057907321385416 1 13 1 13 0 0 39 3 421 3943912 55200 157.26387023925781 0.97370000000000001 187.6009 20160 14401 0 0 983040 737280 737280 737512 748800 30 25 34 29 303 0 0 0 0 3 0 0 0 0 0 +1091 1783721025940016000 REFRESH 36 0 0.7191410130245135 3 10 3 10 1 0 85 17 416 3943913 55200 157.85165405273438 0.99339999999999995 192.87219999999999 20160 13452 0 0 983040 737280 737280 737513 748800 28 25 33 33 297 0 0 0 0 17 0 0 0 0 1 +1092 1783721026131979600 REFRESH 34 0 0.78596170249758068 1 13 1 13 0 0 84 12 423 3943915 55200 158.202880859375 1.0001 190.55770000000001 20160 11862 0 0 983040 737280 737280 737515 748800 27 25 25 26 320 0 0 0 0 12 0 0 0 0 0 +1093 1783721026347125900 REFRESH 43 0 0.718548001895852 2 13 2 13 0 0 81 12 405 3943905 55200 159.77574157714844 0.98029999999999995 192.58690000000001 20160 13527 0 0 983040 737280 737280 737505 748800 34 25 37 50 259 0 0 0 0 12 0 0 0 0 0 +1094 1783721026590584100 REFRESH 54 0 0.72585192275490618 1 8 1 8 0 0 83 5 422 3943914 55200 159.83821105957031 0.9798 241.89779999999999 20160 12206 0 0 983040 737280 737280 737513 748800 150 25 75 68 104 0 0 0 0 5 0 0 0 0 0 +1095 1783721026785917000 REFRESH 24 0 0.80856525144822022 4 11 4 11 0 0 103 19 403 3943900 55200 159.57913208007812 0.98370000000000002 193.9975 20160 11824 0 0 983040 737280 737280 737499 748800 40 25 25 26 287 0 0 0 0 19 0 0 0 0 0 +1096 1783721027002858900 REFRESH 48 0 0.69746738056078517 2 12 2 12 1 0 43 7 417 3943929 55200 159.36717224121094 0.99280000000000002 191.00890000000001 20160 13444 0 0 983040 737280 737280 737529 748800 35 25 44 48 265 0 0 1 0 6 0 0 0 0 1 +1097 1783721027240651500 REFRESH 41 0 0.71972826293794245 1 10 1 10 0 0 86 6 410 3943900 55200 158.4517822265625 0.97099999999999997 203.3655 20160 12642 0 0 983040 737280 737280 737500 748800 42 25 30 45 268 0 0 1 0 5 0 0 0 0 0 +1098 1783721027456029100 REFRESH 14 0 0.71436140925656877 0 12 0 12 0 0 90 11 421 3943920 55200 158.83468627929688 0.97770000000000001 197.93989999999999 20160 12226 0 0 983040 737280 737280 737520 748800 135 25 26 47 188 0 0 0 0 11 0 0 0 0 0 +1099 1783721027663887000 REFRESH 49 0 0.72206870661285105 3 10 3 10 0 0 105 9 418 3943915 55200 158.90652465820312 0.97940000000000005 192.4171 20160 12594 0 0 983040 737280 737280 737515 748800 44 25 41 34 274 0 0 0 0 9 0 0 0 0 0 +1100 1783721027875038200 REFRESH 18 0 0.71454318500261294 4 15 4 15 0 0 65 17 417 3943904 55200 160.73727416992188 0.97589999999999999 194.69239999999999 20160 14370 0 0 983040 737280 737280 737503 748800 26 25 29 26 311 1 0 0 1 15 0 0 0 0 0 +1101 1783721028117857900 REFRESH 11 0 0.76006729312541976 0 8 0 8 0 0 79 7 427 3943910 55200 160.57769775390625 0.97370000000000001 241.59520000000001 20160 12433 0 0 983040 737280 737280 737510 748800 160 25 49 107 86 0 0 0 0 7 0 0 0 0 0 +1102 1783721028312007500 REFRESH 37 0 0.79799581827818677 1 12 1 12 0 0 90 13 413 3943931 55200 160.48434448242188 0.97470000000000001 192.50970000000001 20160 12263 0 0 983040 737280 737280 737530 748800 104 25 27 27 230 0 0 0 0 13 0 0 0 0 0 +1103 1783721028543554300 REFRESH 16 0 0.71829095541321819 2 8 2 8 0 0 136 8 413 3943917 55200 162.951171875 0.99329999999999996 198.3229 20160 12038 0 0 983040 737280 737280 737517 748800 108 55 27 32 191 1 0 0 0 7 0 0 0 0 0 +1104 1783721028752130100 REFRESH 29 0 0.72279084036229235 2 12 2 12 1 0 79 13 414 3943916 55200 159.19821166992188 0.97540000000000004 192.54429999999999 20160 13457 0 0 983040 737280 737280 737516 748800 25 25 25 25 314 0 0 0 0 13 0 0 0 0 1 +1105 1783721028962779600 REFRESH 10 0 0.72113801229866969 1 11 1 11 0 0 90 15 421 3943903 55200 158.29299926757812 0.98729999999999996 193.3526 20160 12510 0 0 983040 737280 737280 737503 748800 26 25 29 25 316 1 0 0 0 14 0 0 0 0 0 +1106 1783721029165344700 REFRESH 45 0 0.84209542281438787 2 7 2 7 0 0 99 9 411 3943942 55200 163.91885375976562 0.98519999999999996 201.20750000000001 20160 12420 0 0 983040 737280 737280 737541 748800 108 25 32 45 201 1 1 0 0 7 0 0 0 0 0 +1107 1783721029383322000 REFRESH 47 0 0.72191799370116971 2 11 2 11 0 0 95 13 417 3943909 55200 158.12095642089844 0.98309999999999997 192.22980000000001 20160 12088 0 0 983040 737280 737280 737508 748800 58 25 26 25 283 0 0 0 0 13 0 0 0 0 0 +1108 1783721029588737900 REFRESH 28 0 0.71866310106630127 2 13 2 13 1 0 90 18 396 3943905 55200 158.27967834472656 0.99280000000000002 190.45310000000001 20160 13382 0 0 983040 737280 737280 737505 748800 27 25 28 38 278 0 0 0 1 17 0 0 0 0 1 +1109 1783721029797135600 REFRESH 15 0 0.7186263079654035 3 12 3 12 0 0 66 13 411 3943914 55200 157.80146789550781 1.0029999999999999 191.5275 20160 13408 0 0 983040 737280 737280 737514 748800 25 25 26 25 310 0 0 0 0 13 0 0 0 0 0 +1110 1783721029991509600 REFRESH 35 0 0.71942476110353126 2 11 2 11 0 0 104 14 417 3943917 55200 158.96780395507812 0.99429999999999996 192.46010000000001 20160 13380 0 0 983040 737280 737280 737517 748800 26 25 36 25 305 0 0 0 0 14 0 0 0 0 0 +1111 1783721030210698100 REFRESH 27 0 0.71969358547865558 0 14 0 14 0 0 79 19 419 3943921 55200 159.857666015625 0.998 193.22980000000001 20160 14534 0 0 983040 737280 737280 737521 748800 26 25 25 25 318 0 0 1 0 18 0 0 0 0 0 +1112 1783721030407044800 REFRESH 0 0 0.71944508086386882 1 12 1 12 0 0 63 16 430 3943910 55200 157.96018981933594 1.0074000000000001 194.60720000000001 20160 13397 0 0 983040 737280 737280 737510 748800 26 25 25 29 325 0 0 0 0 16 0 0 0 0 0 +1113 1783721030628549800 REFRESH 1 0 0.89144694364242905 1 7 1 7 0 0 105 6 419 3943869 55200 159.42860412597656 0.98199999999999998 220.23410000000001 20160 12194 0 0 983040 737280 737280 737468 748800 188 25 47 57 102 0 0 0 0 6 0 0 0 0 0 +1114 1783721030846192000 REFRESH 57 0 0.71900566956746015 2 13 2 13 0 0 85 17 416 3943910 55200 157.8465576171875 0.99150000000000005 190.59049999999999 20160 13331 0 0 983040 737280 737280 737509 748800 28 25 27 38 298 0 0 1 0 16 0 0 0 0 0 +1115 1783721031052904600 REFRESH 46 0 0.71897028050429501 2 15 2 15 0 0 77 24 419 3943911 55200 156.7139892578125 0.97370000000000001 188.9562 20160 14455 0 0 983040 737280 737280 737511 748800 27 25 26 25 316 0 0 0 0 24 0 0 0 0 0 +1116 1783721031265240300 REFRESH 39 0 0.72299019215179539 2 12 2 12 0 0 106 21 408 3943934 55200 159.98976135253906 0.97909999999999997 194.01230000000001 20160 13388 0 0 983040 737280 737280 737534 748800 30 25 31 33 289 0 0 0 1 20 0 0 0 0 0 +1117 1783721031485381100 REFRESH 53 0 0.76887259094731897 0 8 0 8 0 0 103 12 418 3943903 55200 160.97283935546875 0.97940000000000005 200.95070000000001 20160 12308 0 0 983040 737280 737280 737503 748800 92 32 33 33 228 0 0 0 0 12 0 0 0 0 0 +1118 1783721031693495600 REFRESH 51 0 0.71674805789553486 3 15 3 15 0 0 72 16 411 3943902 55200 159.12959289550781 0.97829999999999995 190.89420000000001 20160 14495 0 0 983040 737280 737280 737502 748800 31 25 48 40 267 0 0 0 1 15 0 0 0 0 0 +1119 1783721031902584400 REFRESH 3 0 0.7231586172788399 3 11 3 11 0 0 86 14 400 3943901 55200 157.75640869140625 1.0017 191.9588 20160 13549 0 0 983040 737280 737280 737501 748800 26 25 27 28 294 0 0 0 0 14 0 0 0 0 0 +1120 1783721032111707500 REFRESH 20 0 0.71880845183584108 3 12 3 12 1 0 70 20 409 3943910 55200 159.33747863769531 0.98550000000000004 192.73390000000001 20160 13598 0 0 983040 737280 737280 737510 748800 26 25 27 28 303 0 0 0 0 20 0 0 0 0 1 +1121 1783721032322270300 REFRESH 42 0 0.72179552718589024 3 13 3 13 0 0 78 16 419 3943913 55200 159.04666137695312 0.98499999999999999 193.90479999999999 20160 14314 0 0 983040 737280 737280 737512 748800 25 25 29 30 310 0 0 1 0 15 0 0 0 0 0 +1122 1783721032535471000 REFRESH 55 0 0.71138080498104717 1 15 1 15 0 0 113 11 411 3943941 55200 158.75398254394531 0.99639999999999995 195.22030000000001 20160 12303 0 0 983040 737280 737280 737540 748800 26 25 25 25 310 0 0 0 0 11 0 0 0 0 0 +1123 1783721033684681800 DEPTH 8 1 0.88545678333622613 2 5 2 5 0 0 177 68 2457 23664701 81600 910.58642578125 5.8656000000000006 1102.6287 120960 64882 1 0 5898240 4423680 4423680 4426300 4492800 168 177 150 156 1806 0 0 0 0 68 0 0 0 0 0 +1124 1783721035111268200 DEPTH 17 1 0.86816196389151679 0 7 0 7 1 0 123 51 2532 23664897 81600 909.98294067382812 5.8901000000000003 1424.8811000000001 120960 63348 1 0 5898240 4423680 4423680 4426495 4492800 216 150 235 372 1559 0 0 0 0 51 0 0 0 0 2 +1125 1783721036540745000 DEPTH 56 1 0.86572798652496141 2 5 2 5 0 0 135 26 2579 23664886 81600 907.86407470703125 5.851 1388.7616 120960 64486 1 0 5898240 4423680 4423680 4426484 4492800 309 150 241 396 1483 0 0 0 0 26 0 0 0 0 0 +1126 1783721037948872100 DEPTH 13 1 0.85757073530073602 1 6 1 6 0 0 143 32 2515 23664922 81600 923.5968017578125 5.8759999999999994 1406.9304 120960 65184 1 0 5898240 4423680 4423680 4426522 4492800 189 150 159 178 1839 0 0 0 0 32 0 0 0 0 0 +1127 1783721039124707100 DEPTH 33 1 0.82119091446727011 1 7 1 7 0 0 144 50 2517 23664825 81600 925.08979797363281 5.9524999999999997 1161.5552 120960 58897 1 0 5898240 4423680 4423680 4426425 4492800 173 150 150 150 1894 2 0 0 0 48 0 0 0 0 0 +1128 1783721040236593600 DEPTH 24 1 0.79326994646855487 4 11 4 11 0 0 105 69 2517 23664908 81600 914.1422119140625 5.8945000000000007 1110.6332 120960 56366 1 0 5898240 4423680 4423680 4426507 4492800 152 150 150 150 1915 0 0 0 0 69 0 0 0 0 0 +1129 1783721041643708500 DEPTH 9 1 0.784117369625419 2 6 2 6 0 0 99 13 2604 23664870 81600 919.25527954101562 5.8660000000000005 1366.9069999999999 120960 59654 1 0 5898240 4423680 4423680 4426470 4492800 196 150 156 171 1931 0 0 0 0 13 0 0 0 0 0 +1130 1783721043081362200 DEPTH 31 1 0.77983281779970914 2 6 2 6 0 0 74 22 2620 23664831 81600 911.53738403320312 5.8870000000000005 1373.6424999999999 120960 60278 1 0 5898240 4423680 4423680 4426430 4492800 564 150 255 508 1143 0 0 0 0 22 0 0 0 0 0 +1131 1783721044440840500 DEPTH 45 1 0.82535917317046004 2 7 2 7 0 0 99 41 2580 23664809 81600 935.71275329589844 6.0450999999999997 1358.1692 120960 59976 1 0 5898240 4423680 4423680 4426408 4492800 150 150 156 150 1974 0 0 0 0 41 0 0 0 0 0 +1132 1783721045874941000 DEPTH 1 1 0.81193790276798472 1 7 1 7 0 0 106 40 2576 23664768 81600 941.52931213378906 5.9497 1432.8741 120960 59599 1 0 5898240 4423680 4423680 4426367 4492800 320 150 174 189 1743 2 0 0 0 38 0 0 0 0 0 +1133 1783721046982517500 DEPTH 37 1 0.78410858387423255 1 12 1 12 0 0 97 34 2589 23664939 81600 894.28581237792969 5.8626999999999994 1090.9925000000001 120960 58545 1 0 5898240 4423680 4423680 4426538 4492800 223 150 156 150 1910 0 0 0 0 34 0 0 0 0 0 +1134 1783721048083900100 DEPTH 34 1 0.77376431263150169 1 13 1 13 1 0 86 37 2621 23664935 81600 889.10044860839844 5.857499999999999 1080.0849000000001 120960 58541 1 0 5898240 4423680 4423680 4426531 4492800 150 150 150 150 2021 1 0 0 0 36 0 0 0 0 2 +1135 1783721049504976200 DEPTH 11 1 0.75533162546915578 0 8 0 8 1 0 80 30 2620 23664810 81600 908.47848510742188 5.8458000000000006 1404.9854 120960 58852 1 0 5898240 4423680 4423680 4426407 4492800 447 150 216 377 1430 0 0 1 0 29 0 0 0 0 3 +1136 1783721050685509400 DEPTH 2 1 0.75530596368260194 2 12 2 12 1 0 86 53 2584 23664821 81600 930.74034118652344 5.8904999999999994 1137.4215999999999 120960 56363 1 0 5898240 4423680 4423680 4426413 4492800 150 150 157 227 1900 2 0 3 0 48 0 0 0 0 2 +1137 1783721052098469400 DEPTH 52 1 0.74105164966347437 1 8 1 8 0 0 81 17 2621 23664912 81600 895.35591125488281 6.0941000000000001 1393.7565 120960 62950 1 0 5898240 4423680 4423680 4426509 4492800 1145 150 270 302 754 1 0 0 1 15 0 0 0 0 0 +1138 1783721053397995700 DEPTH 21 1 0.72201497229424394 0 10 0 10 0 0 144 68 2567 23664839 81600 860.70399475097656 5.8917999999999999 1298.4268999999999 120960 60067 1 0 5898240 4423680 4423680 4426439 4492800 256 150 171 171 1819 2 0 0 0 66 0 0 0 0 0 +1139 1783721054442336900 DEPTH 8 1 0.79314478771509134 2 5 2 5 0 0 177 62 2472 23664826 81600 858.27151489257812 5.8395999999999999 1043.2556999999999 120960 54099 1 0 5898240 4423680 4423680 4426423 4492800 168 170 150 152 1832 0 0 0 0 62 0 0 0 0 0 +1140 1783721055839222700 DEPTH 17 1 0.77737653915991023 0 7 0 7 1 0 123 49 2556 23664908 81600 870.33941650390625 5.8915999999999995 1348.9763 120960 52712 1 0 5898240 4423680 4423680 4426506 4492800 217 150 233 374 1582 0 0 0 0 49 0 0 0 0 2 +1141 1783721057157550400 DEPTH 56 1 0.77442505949441542 2 5 2 5 0 0 135 37 2574 23664782 81600 863.75306701660156 5.8812999999999995 1317.0808 120960 53280 1 0 5898240 4423680 4423680 4426381 4492800 288 150 217 467 1452 0 0 0 0 37 0 0 0 0 0 +1142 1783721058483219900 DEPTH 13 1 0.76723664531005364 1 6 1 6 0 0 144 36 2522 23664916 81600 862.01240539550781 5.8673999999999999 1302.6839 120960 53605 1 0 5898240 4423680 4423680 4426515 4492800 190 150 160 200 1822 0 0 0 0 36 0 0 0 0 0 +1143 1783721059770434100 DEPTH 53 1 0.76617429860097352 0 8 0 8 1 0 105 52 2520 23664885 81600 857.99925231933594 5.8727999999999998 1241.9956 120960 58211 1 0 5898240 4423680 4423680 4426483 4492800 151 150 150 153 1916 0 0 0 0 52 0 0 0 0 1 +1144 1783721061090022500 DEPTH 44 1 0.72107868232785721 2 7 2 7 0 0 97 19 2566 23664854 81600 856.29057312011719 5.8976000000000006 1318.2989 120960 57486 1 0 5898240 4423680 4423680 4426454 4492800 150 150 150 150 1966 0 0 0 0 19 0 0 0 0 0 +1145 1783721062424004200 DEPTH 54 1 0.71823460898689517 1 8 1 8 1 0 84 28 2571 23664763 81600 851.05633544921875 5.899 1304.8996999999999 120960 57923 1 0 5898240 4423680 4423680 4426363 4492800 334 150 228 311 1548 0 0 0 0 28 0 0 0 0 1 +1146 1783721063487444600 DEPTH 29 1 0.71759132297507966 2 12 2 12 1 0 85 68 2556 23664840 81600 862.06132507324219 5.8674999999999997 1046.6758 120960 67131 1 0 5898240 4423680 4423680 4426438 4492800 150 150 150 150 1956 0 0 0 0 68 0 0 0 0 1 +1147 1783721064619373700 DEPTH 33 1 0.76273120213275525 1 7 1 7 0 0 146 56 2524 23664874 81600 856.28662109375 5.8372000000000002 1081.6364000000001 120960 47438 1 0 5898240 4423680 4423680 4426470 4492800 174 150 150 150 1900 2 0 0 0 54 0 0 0 0 0 +1148 1783721065937241900 DEPTH 1 1 0.76813710565222648 1 7 1 7 0 0 106 38 2577 23664876 81600 851.57461547851562 5.8448000000000002 1316.8099999999999 120960 48913 1 0 5898240 4423680 4423680 4426473 4492800 365 150 174 190 1698 1 0 0 0 37 0 0 0 0 0 +1149 1783721067196205500 DEPTH 45 1 0.74101819156988191 2 7 2 7 0 0 99 37 2573 23664860 81600 851.60078430175781 5.8635000000000002 1220.6523999999999 120960 49125 1 0 5898240 4423680 4423680 4426457 4492800 150 150 156 150 1967 0 0 0 0 37 0 0 0 0 0 +1150 1783721068230765300 DEPTH 24 1 0.74908860784400477 4 11 4 11 0 0 107 83 2508 23664724 81600 851.01693725585938 5.8810000000000002 1033.4701 120960 45008 1 0 5898240 4423680 4423680 4426321 4492800 154 150 150 150 1904 3 0 0 0 80 0 0 0 0 0 +1151 1783721069304484700 DEPTH 3 1 0.71768918412857385 3 11 2 11 1 0 89 91 2570 23664903 81600 850.35919189453125 5.8594999999999997 1029.9131 120960 67498 1 0 5898240 4423680 4423680 4426502 4492800 150 150 150 150 1970 0 1 0 0 90 0 0 0 0 3 +1152 1783721070371103500 DEPTH 39 1 0.71759584134506138 2 12 2 12 1 0 110 84 2548 23664817 81600 855.10333251953125 5.8433999999999999 1040.72 120960 67092 1 0 5898240 4423680 4423680 4426416 4492800 150 150 150 159 1939 2 0 0 0 82 0 0 0 0 1 +1153 1783721071430316300 DEPTH 19 1 0.71706170887273724 3 11 3 11 1 0 90 55 2566 23664940 81600 859.95504760742188 5.8544999999999998 1043.0600999999999 120960 67119 1 0 5898240 4423680 4423680 4426540 4492800 150 150 150 150 1966 0 1 1 0 53 0 0 0 0 1 +1154 1783721072525621500 DEPTH 7 1 0.7168420411648343 2 12 2 12 0 0 85 85 2554 23664859 81600 856.38163757324219 5.8478000000000003 1036.8017 120960 66982 1 0 5898240 4423680 4423680 4426455 4492800 150 150 156 157 1941 0 1 0 0 84 0 0 0 0 0 +1155 1783721072711018100 REFRESH 16 0 0.71247172706625206 2 8 2 8 0 0 136 10 409 3943928 55200 150.20338439941406 0.98180000000000001 184.29349999999999 20160 11954 0 0 983040 737280 737280 737527 748800 89 45 27 31 217 0 0 0 0 10 0 0 0 0 0 +1156 1783721072917123000 REFRESH 47 0 0.71588949958395098 2 11 2 11 0 0 95 11 420 3943918 55200 150.60890197753906 0.97519999999999996 181.04490000000001 20160 12117 0 0 983040 737280 737280 737518 748800 55 25 26 25 289 0 0 0 0 11 0 0 0 0 0 +1157 1783721073173944700 REFRESH 58 0 0.71433998840122581 2 13 2 13 0 0 91 17 412 3943905 55200 149.36575317382812 0.9788 179.7089 20160 13166 0 0 983040 737280 737280 737505 748800 29 25 29 28 301 1 0 0 0 16 0 0 0 0 0 +1158 1783721073372569600 REFRESH 46 0 0.71333845623248804 2 15 2 15 0 0 78 22 417 3943924 55200 149.83270263671875 0.9778 180.75190000000001 20160 14442 0 0 983040 737280 737280 737524 748800 27 25 26 25 314 1 1 0 0 20 0 0 0 0 0 +1159 1783721073560933000 REFRESH 53 0 0.67344060017952811 0 8 0 8 0 0 105 13 414 3943896 55200 150.32730102539062 0.99109999999999998 187.1739 20160 12208 0 0 983040 737280 737280 737496 748800 106 38 36 44 190 2 0 0 0 11 0 0 0 0 0 +1160 1783721073766657600 REFRESH 15 0 0.7134736879993252 3 12 3 12 0 0 68 11 413 3943914 55200 150.05389404296875 0.99819999999999998 180.89920000000001 20160 13307 0 0 983040 737280 737280 737514 748800 25 25 26 25 312 0 0 0 0 11 0 0 0 0 0 +1161 1783721073962362100 REFRESH 30 0 0.71542983274836591 2 12 2 12 0 0 87 15 407 3943917 55200 148.72781372070312 0.99970000000000003 179.8546 20160 12498 0 0 983040 737280 737280 737517 748800 39 25 35 43 265 0 1 0 0 14 0 0 0 0 0 +1162 1783721074159423600 REFRESH 5 0 0.71545895464605391 2 11 2 11 1 0 87 12 410 3943923 55200 150.26995849609375 0.97799999999999998 180.14519999999999 20160 12979 0 0 983040 737280 737280 737522 748800 196 25 42 46 101 1 0 0 0 11 1 0 0 0 0 +1163 1783721074355568400 REFRESH 23 0 0.71342778939000229 3 14 3 14 0 0 79 17 416 3943922 55200 149.243896484375 0.97629999999999995 179.87379999999999 20160 14255 0 0 983040 737280 737280 737522 748800 25 25 25 25 316 0 0 0 0 17 0 0 0 0 0 +1164 1783721074552506600 REFRESH 12 0 0.71651341536599711 3 8 3 8 0 0 122 10 413 3943907 55200 149.68319702148438 0.99819999999999998 180.9812 20160 12208 0 0 983040 737280 737280 737505 748800 107 25 56 35 190 0 0 0 0 10 0 0 0 0 0 +1165 1783721074781733800 REFRESH 11 0 0.75390227144552935 0 8 0 8 0 0 81 8 430 3943940 55200 149.75283813476562 0.98340000000000005 228.1009 20160 12552 0 0 983040 737280 737280 737540 748800 152 25 52 98 103 0 0 0 1 7 0 0 0 0 0 +1166 1783721074985579100 REFRESH 40 0 0.71624446895044891 3 13 3 13 0 0 72 12 416 3943896 55200 149.28076171875 0.97929999999999995 178.6292 20160 14415 0 0 983040 737280 737280 737496 748800 32 25 43 66 250 0 0 0 1 11 0 0 0 0 0 +1167 1783721075183202600 REFRESH 27 0 0.71492761397228011 0 14 0 14 0 0 81 18 414 3943921 55200 149.97708129882812 0.97899999999999998 181.6189 20160 14274 0 0 983040 737280 737280 737521 748800 26 25 26 25 312 0 0 1 0 17 0 0 0 0 0 +1168 1783721075363336700 REFRESH 3 0 0.73764905794007762 2 11 2 11 1 0 90 14 406 3943910 55200 149.11283874511719 0.99690000000000001 179.0772 20160 12243 0 0 983040 737280 737280 737510 748800 26 25 27 27 301 0 0 0 0 14 0 0 0 0 1 +1169 1783721075545402300 REFRESH 24 0 0.70601929751598091 4 11 4 11 0 0 107 10 409 3943884 55200 149.96479797363281 0.98570000000000002 180.9376 20160 11818 0 0 983040 737280 737280 737484 748800 38 25 25 25 296 0 0 0 0 10 0 0 0 0 0 +1170 1783721075727238500 REFRESH 7 0 0.62151782877165185 2 12 2 12 0 0 86 13 417 3943908 55200 149.66764831542969 0.97919999999999996 180.73480000000001 20160 12131 0 0 983040 737280 737280 737507 748800 37 25 45 37 273 0 0 0 0 13 0 0 0 0 0 +1171 1783721075934013700 REFRESH 22 0 0.71377849927958126 3 12 3 12 0 0 95 18 416 3943932 55200 150.56573486328125 0.9778 181.78 20160 13358 0 0 983040 737280 737280 737532 748800 25 25 25 26 315 0 0 0 0 18 0 0 0 0 0 +1172 1783721076153332400 REFRESH 44 0 0.71820541125864379 2 7 2 7 0 0 97 8 414 3943930 55200 150.84339904785156 0.97750000000000004 218.1412 20160 12372 0 0 983040 737280 737280 737530 748800 71 25 32 29 257 0 0 0 0 8 0 0 0 0 0 +1173 1783721076356471600 REFRESH 48 0 0.69223140134565175 2 12 2 12 0 0 44 8 426 3943916 55200 148.16256713867188 0.9748 178.2509 20160 13179 0 0 983040 737280 737280 737516 748800 36 25 45 58 262 0 0 0 0 8 0 0 0 0 0 +1174 1783721076564657000 REFRESH 1 0 0.84562102725848665 1 7 1 7 0 0 106 9 417 3943937 55200 150.23207092285156 0.97150000000000003 207.0822 20160 12825 0 0 983040 737280 737280 737537 748800 173 25 48 50 121 0 0 0 0 9 0 0 0 0 0 +1175 1783721076789310900 REFRESH 54 0 0.71591358844755337 1 8 1 8 0 0 84 8 420 3943912 55200 149.56871032714844 0.98019999999999996 223.47569999999999 20160 12029 0 0 983040 737280 737280 737512 748800 148 25 74 65 108 0 0 0 0 8 0 0 0 0 0 +1176 1783721076985176700 REFRESH 42 0 0.71634309503888083 3 13 3 13 0 0 79 19 417 3943901 55200 149.20294189453125 0.97870000000000001 179.79069999999999 20160 14249 0 0 983040 737280 737280 737500 748800 25 25 28 28 311 0 0 0 0 19 0 0 0 0 0 +1177 1783721077168644300 REFRESH 8 0 0.88112158071091251 2 5 2 5 0 0 177 9 413 3943902 55200 151.63494873046875 0.99929999999999997 182.34379999999999 20160 13351 0 0 983040 737280 737280 737502 748800 37 29 26 27 294 0 0 0 0 9 0 0 0 0 0 +1178 1783721077350168400 REFRESH 37 0 0.77153635247928753 1 12 1 12 0 0 98 12 416 3943941 55200 149.93093872070312 0.97750000000000004 180.31720000000001 20160 12022 0 0 983040 737280 737280 737541 748800 152 25 29 27 183 1 0 0 0 11 0 0 0 0 0 +1179 1783721077566433400 REFRESH 41 0 0.71177529392954786 1 10 1 10 0 0 86 10 408 3943891 55200 149.40364074707031 0.97599999999999998 190.30119999999999 20160 12588 0 0 983040 737280 737280 737491 748800 65 25 30 61 227 0 0 0 0 10 0 0 0 0 0 +1180 1783721077764090500 REFRESH 35 0 0.71513417679684899 2 11 2 11 0 0 107 20 413 3943902 55200 149.97401428222656 0.97460000000000002 181.3066 20160 13296 0 0 983040 737280 737280 737502 748800 26 25 31 25 306 0 0 0 0 20 0 0 0 0 0 +1181 1783721077959443500 REFRESH 20 0 0.71379659239985083 3 12 3 12 0 0 72 18 415 3943950 55200 149.56031799316406 0.9788 179.2766 20160 13274 0 0 983040 737280 737280 737550 748800 26 25 25 27 312 0 0 0 0 18 0 0 0 0 0 +1182 1783721078189956400 REFRESH 17 0 0.86666663738577254 0 7 0 7 0 0 123 5 419 3943905 55200 150.95091247558594 0.97560000000000002 229.46350000000001 20160 13486 0 0 983040 737280 737280 737505 748800 65 25 59 109 161 0 0 0 0 5 0 0 0 0 0 +1183 1783721078405371100 REFRESH 31 0 0.77543037744120058 2 6 2 6 0 0 74 8 428 3943892 55200 149.77433776855469 0.97560000000000002 214.24889999999999 20160 12352 0 0 983040 737280 737280 737492 748800 136 25 54 112 101 0 0 0 0 8 0 0 0 0 0 +1184 1783721078611454200 REFRESH 55 0 0.70261247204766564 1 15 1 15 0 0 113 13 407 3943922 55200 150.4901123046875 0.98160000000000003 180.62690000000001 20160 12230 0 0 983040 737280 737280 737522 748800 26 25 25 25 306 0 0 0 0 13 0 0 0 0 0 +1185 1783721078793913800 REFRESH 39 0 0.71244251941567327 2 12 2 12 1 0 111 15 412 3943908 55200 149.7938232421875 0.97509999999999997 181.3023 20160 12290 0 0 983040 737280 737280 737508 748800 35 25 30 31 291 1 0 0 0 14 0 0 0 0 1 +1186 1783721078989393700 REFRESH 57 0 0.71413266733316894 2 13 2 13 0 0 87 16 415 3943911 55200 149.28799438476562 0.97699999999999998 179.2654 20160 13222 0 0 983040 737280 737280 737511 748800 28 25 27 39 296 0 0 0 1 15 0 0 0 0 0 +1187 1783721079184764600 REFRESH 9 0 0.77912025137042951 2 6 2 6 0 0 99 11 424 3943898 55200 150.72470092773438 0.97909999999999997 194.077 20160 12671 0 0 983040 737280 737280 737498 748800 38 25 26 29 306 0 0 0 0 11 0 0 0 0 0 +1188 1783721079391342300 REFRESH 28 0 0.71400228349715311 2 13 2 13 0 0 92 14 402 3943935 55200 150.76972961425781 0.99709999999999999 181.47989999999999 20160 13399 0 0 983040 737280 737280 737533 748800 26 25 27 33 291 0 0 0 0 14 0 0 0 0 0 +1189 1783721079569481000 REFRESH 34 0 0.762781839753496 1 13 1 13 0 0 86 10 413 3943905 55200 148.31718444824219 0.97799999999999998 177.00479999999999 20160 12114 0 0 983040 737280 737280 737505 748800 25 25 25 25 313 0 0 0 0 10 0 0 0 0 0 +1190 1783721079777295800 REFRESH 18 0 0.70964781606016114 4 15 4 15 0 0 70 21 419 3943929 55200 150.79014587402344 0.99929999999999997 182.09950000000001 20160 14324 0 0 983040 737280 737280 737529 748800 26 25 29 27 312 1 0 1 1 18 0 0 0 0 0 +1191 1783721079976042300 REFRESH 14 0 0.70950256533210487 0 12 0 12 0 0 90 7 422 3943908 55200 149.30125427246094 0.97699999999999998 184.529 20160 12337 0 0 983040 737280 737280 737508 748800 129 25 26 45 197 0 0 0 0 7 0 0 0 0 0 +1192 1783721080175274200 REFRESH 13 0 0.85711032013789068 1 6 1 6 0 0 144 4 414 3943900 55200 151.47724914550781 0.9839 198.12049999999999 20160 13328 0 0 983040 737280 737280 737498 748800 137 25 43 106 103 0 0 0 0 4 0 0 0 0 0 +1193 1783721080381206400 REFRESH 49 0 0.71685774383341072 3 10 3 10 0 0 110 18 418 3943933 55200 149.94636535644531 0.99980000000000002 180.99250000000001 20160 12408 0 0 983040 737280 737280 737532 748800 50 25 46 40 257 0 0 0 0 18 0 0 0 0 0 +1194 1783721080566054400 REFRESH 33 0 0.8052083184209049 1 7 1 7 0 0 146 14 418 3943917 55200 150.34162902832031 0.97270000000000001 183.5967 20160 12312 0 0 983040 737280 737280 737517 748800 58 25 27 28 280 0 0 0 0 14 0 0 0 0 0 +1195 1783721080814688600 REFRESH 52 0 0.73702484313425787 1 8 1 8 0 0 81 8 430 3943905 55200 149.47225952148438 0.97919999999999996 224.4753 20160 12401 0 0 983040 737280 737280 737505 748800 225 25 56 45 79 0 0 0 0 8 0 0 0 0 0 +1196 1783721080997109700 REFRESH 19 0 0.71214734992069118 3 11 3 11 0 0 91 13 420 3943903 55200 150.28941345214844 0.98170000000000002 181.30770000000001 20160 12288 0 0 983040 737280 737280 737502 748800 25 25 25 25 320 0 0 1 0 12 0 0 0 0 0 +1197 1783721081180514800 REFRESH 29 0 0.71269426799606683 2 12 2 12 1 0 85 13 418 3943918 55200 150.898681640625 0.97909999999999997 182.25919999999999 20160 12337 0 0 983040 737280 737280 737518 748800 25 25 25 25 318 0 0 0 0 13 0 0 0 0 1 +1198 1783721081387086200 REFRESH 36 0 0.71540870338764995 3 10 3 10 0 0 86 15 416 3943888 55200 150.18496704101562 1.0002 181.56720000000001 20160 13337 0 0 983040 737280 737280 737488 748800 29 25 31 31 300 1 0 0 0 14 0 0 0 0 0 +1199 1783721081572237300 REFRESH 45 0 0.7982570828630241 2 7 2 7 1 0 99 13 423 3943919 55200 149.44256591796875 0.99890000000000001 183.96940000000001 20160 12701 0 0 983040 737280 737280 737519 748800 112 25 34 47 205 0 0 0 0 13 0 0 0 0 1 +1200 1783721081777366300 REFRESH 32 0 0.71674010976723701 2 14 2 14 0 0 81 22 419 3943903 55200 149.254150390625 0.97850000000000004 179.7602 20160 14356 0 0 983040 737280 737280 737503 748800 26 25 27 25 316 0 0 0 0 22 0 0 0 0 0 +1201 1783721082002909600 REFRESH 56 0 0.86351764751022486 2 5 2 5 0 0 135 2 421 3943906 55200 149.2818603515625 0.97909999999999997 224.36930000000001 20160 13405 0 0 983040 737280 737280 737506 748800 114 25 71 121 90 0 0 0 0 2 0 0 0 0 0 +1202 1783721082225439100 REFRESH 6 0 0.71416087720388366 3 14 3 14 0 0 77 15 416 3943911 55200 149.91258239746094 0.99870000000000003 180.29640000000001 20160 14249 0 0 983040 737280 737280 737511 748800 28 25 34 31 298 0 0 0 1 14 0 0 0 0 0 +1203 1783721082420540600 REFRESH 38 0 0.7117547015867951 4 14 4 14 0 0 68 17 420 3943900 55200 148.78207397460938 0.97430000000000005 179.1568 20160 14302 0 0 983040 737280 737280 737500 748800 25 25 27 26 317 0 0 0 0 17 0 0 0 0 0 +1204 1783721082613251900 REFRESH 4 0 0.69626974572791722 1 13 1 13 0 0 39 4 418 3943911 55200 148.34892272949219 0.98219999999999996 177.17740000000001 20160 14280 0 0 983040 737280 737280 737511 748800 35 25 38 40 280 0 0 0 0 4 0 0 0 0 0 +1205 1783721082809065400 REFRESH 50 0 0.69811544667369307 2 9 2 9 0 0 100 8 420 3943912 55200 150.04774475097656 0.9798 182.49119999999999 20160 13129 0 0 983040 737280 737280 737510 748800 150 25 51 79 115 0 0 0 0 8 0 0 0 0 0 +1206 1783721083004025200 REFRESH 26 0 0.71075270714514394 1 13 1 13 0 0 59 15 426 3943931 55200 149.35142517089844 0.9738 179.37729999999999 20160 13310 0 0 983040 737280 737280 737530 748800 33 25 42 57 269 0 0 0 0 15 0 0 0 0 0 +1207 1783721083200107300 REFRESH 43 0 0.71433479983369708 2 13 2 13 1 0 81 17 410 3943902 55200 149.80403137207031 0.99580000000000002 180.58709999999999 20160 13279 0 0 983040 737280 737280 737502 748800 37 25 36 51 261 0 0 0 0 17 0 0 0 0 1 +1208 1783721083398284300 REFRESH 2 0 0.74808842953672117 2 12 2 12 0 0 86 13 419 3943878 55200 150.26995849609375 0.97219999999999995 182.023 20160 11885 0 0 983040 737280 737280 737477 748800 27 25 27 42 298 0 0 1 0 12 0 0 0 0 0 +1209 1783721083595938400 REFRESH 25 0 0.70273029994628189 3 11 3 11 0 0 76 10 421 3943902 55200 150.68569946289062 0.97729999999999995 181.5599 20160 12352 0 0 983040 737280 737280 737502 748800 103 25 41 44 208 0 0 0 0 10 0 0 0 0 0 +1210 1783721083793080800 REFRESH 10 0 0.71758187762510528 1 11 1 11 0 0 90 9 420 3943917 55200 149.19065856933594 1.0007999999999999 180.97880000000001 20160 12291 0 0 983040 737280 737280 737516 748800 26 25 28 25 316 0 0 0 0 9 0 0 0 0 0 +1211 1783721083993979700 REFRESH 51 0 0.71187464995245997 3 15 3 15 0 0 72 13 411 3943902 55200 149.19679260253906 0.97840000000000005 179.52809999999999 20160 14255 0 0 983040 737280 737280 737502 748800 31 25 47 37 271 0 0 0 0 13 0 0 0 0 0 +1212 1783721084190126400 REFRESH 0 0 0.71558575602993679 1 12 1 12 0 0 63 11 426 3943915 55200 150.01087951660156 1 180.03800000000001 20160 13167 0 0 983040 737280 737280 737514 748800 26 25 25 39 311 0 0 0 0 11 0 0 0 0 0 +1213 1783721084385911400 REFRESH 21 0 0.71636446988908031 0 10 0 10 0 0 144 9 419 3943922 55200 150.55258178710938 0.97499999999999998 194.6523 20160 12513 0 0 983040 737280 737280 737522 748800 122 25 51 34 187 0 0 0 0 9 0 0 0 0 0 +1214 1783721085446248300 DEPTH 8 1 0.8781474449771407 2 5 2 5 0 0 178 42 2484 23664888 81600 868.52717590332031 5.8738999999999999 1059.1885 120960 65302 1 0 5898240 4423680 4423680 4426488 4492800 168 158 150 154 1854 0 0 0 0 42 0 0 0 0 0 +1215 1783721086833597300 DEPTH 17 1 0.86077862382504544 0 7 0 7 1 0 128 55 2556 23664867 81600 858.11082458496094 5.8542999999999994 1340.2826 120960 65050 1 0 5898240 4423680 4423680 4426466 4492800 182 150 204 310 1710 0 0 0 0 55 0 0 0 0 3 +1216 1783721088154662400 DEPTH 1 1 0.83333076850059085 1 7 1 7 0 0 107 39 2583 23664862 81600 858.66256713867188 5.8545999999999996 1319.9748 120960 61294 1 0 5898240 4423680 4423680 4426462 4492800 257 150 174 181 1821 0 1 0 0 38 0 0 0 0 0 +1217 1783721089475472900 DEPTH 13 1 0.85065091132391246 1 6 1 6 0 0 145 33 2506 23664863 81600 859.80693054199219 5.8441999999999998 1290.5878 120960 64335 1 0 5898240 4423680 4423680 4426461 4492800 199 150 163 184 1810 0 0 0 0 33 0 0 0 0 0 +1218 1783721090541205300 DEPTH 3 1 0.80299172402683494 2 11 2 11 1 0 92 76 2590 23664769 81600 849.76530456542969 5.8368000000000002 1032.1222 120960 61364 1 0 5898240 4423680 4423680 4426369 4492800 150 150 150 150 1990 0 0 0 1 75 0 0 0 0 4 +1219 1783721091816504700 DEPTH 9 1 0.77417190197164076 2 6 2 6 0 0 99 11 2602 23664919 81600 864.02595520019531 5.8620999999999999 1274.2329999999999 120960 61022 1 0 5898240 4423680 4423680 4426519 4492800 201 150 159 180 1912 0 0 0 0 11 0 0 0 0 0 +1220 1783721093138430600 DEPTH 31 1 0.76911261397894071 2 6 2 6 0 0 76 19 2625 23664837 81600 855.70246887207031 5.9133000000000004 1302.4149 120960 60432 1 0 5898240 4423680 4423680 4426435 4492800 580 150 261 552 1082 0 1 0 0 18 0 0 0 0 0 +1221 1783721094412857400 DEPTH 53 1 0.76124905629090367 0 8 0 8 0 0 108 59 2517 23664889 81600 858.77816772460938 5.9048000000000007 1248.8726999999999 120960 58046 1 0 5898240 4423680 4423680 4426487 4492800 151 150 156 153 1907 0 0 0 0 59 0 0 0 0 0 +1222 1783721095777781600 DEPTH 56 1 0.81424129809059731 2 5 2 5 0 0 135 29 2581 23664817 81600 856.40858459472656 5.8315999999999999 1306.7075 120960 64228 1 0 5898240 4423680 4423680 4426416 4492800 284 150 223 361 1563 0 0 0 0 29 0 0 0 0 0 +1223 1783721096863516200 DEPTH 33 1 0.79805315135437604 1 7 1 7 0 0 146 40 2519 23664757 81600 864.80860900878906 5.8552 1084.5781999999999 120960 59474 1 0 5898240 4423680 4423680 4426356 4492800 174 150 150 150 1895 2 0 0 0 38 0 0 0 0 0 +1224 1783721098144363300 DEPTH 45 1 0.79230680120500896 2 7 2 7 1 0 100 38 2569 23664843 81600 860.03999328613281 5.8453999999999997 1237.8334 120960 60684 1 0 5898240 4423680 4423680 4426441 4492800 150 150 156 150 1963 0 0 0 0 38 0 0 0 0 1 +1225 1783721099189274700 DEPTH 37 1 0.75999349730151944 1 12 1 12 0 0 100 33 2566 23664907 81600 858.78057861328125 5.8591000000000006 1043.7652 120960 57367 1 0 5898240 4423680 4423680 4426507 4492800 250 150 156 152 1858 0 0 0 0 33 0 0 0 0 0 +1226 1783721100273837400 DEPTH 24 1 0.75448317465025172 4 11 4 11 0 0 113 93 2521 23664940 81600 860.84263610839844 5.8685 1043.0916999999999 120960 55544 1 0 5898240 4423680 4423680 4426539 4492800 153 150 150 150 1918 0 0 0 2 91 0 0 0 0 0 +1227 1783721101319155400 DEPTH 34 1 0.75233578334199092 1 13 1 13 1 0 88 35 2605 23664873 81600 850.84419250488281 5.8601999999999999 1030.4103 120960 57466 1 0 5898240 4423680 4423680 4426473 4492800 150 150 150 150 2005 1 0 0 0 34 0 0 0 0 2 +1228 1783721102710828300 DEPTH 11 1 0.75067871106920525 0 8 0 8 1 0 83 28 2615 23664877 81600 853.11653137207031 5.8680000000000003 1324.6914999999999 120960 59674 1 0 5898240 4423680 4423680 4426472 4492800 507 150 227 402 1329 0 0 0 0 28 0 0 0 0 1 +1229 1783721104067716300 DEPTH 52 1 0.73090968730816641 1 8 1 8 0 0 82 9 2618 23664805 81600 848.75418090820312 5.8403 1295.825 120960 60703 1 0 5898240 4423680 4423680 4426405 4492800 1190 150 299 298 681 0 0 0 0 9 0 0 0 0 0 +1230 1783721105115710100 DEPTH 8 1 0.7861380729981885 2 5 2 5 0 0 180 57 2497 23664787 81600 859.04364013671875 5.8720999999999997 1046.8975 120960 53728 1 0 5898240 4423680 4423680 4426386 4492800 168 158 150 152 1869 2 0 0 0 55 0 0 0 0 0 +1231 1783721106441303100 DEPTH 17 1 0.77056760067038088 0 7 0 7 0 0 131 47 2546 23664826 81600 849.00108337402344 5.8457999999999997 1324.4576 120960 54213 1 0 5898240 4423680 4423680 4426424 4492800 185 150 202 342 1667 0 0 0 0 47 0 0 0 0 0 +1232 1783721107722684000 DEPTH 13 1 0.75061998934974838 1 6 1 6 0 0 145 35 2506 23664762 81600 848.03733825683594 5.8584999999999994 1280.2620999999999 120960 53939 1 0 5898240 4423680 4423680 4426362 4492800 204 150 164 216 1772 0 0 0 1 34 0 0 0 0 0 +1233 1783721109041048800 DEPTH 44 1 0.71377099163523317 2 7 2 7 0 0 99 22 2560 23664798 81600 857.19308471679688 5.851 1317.1578 120960 58432 1 0 5898240 4423680 4423680 4426397 4492800 150 150 150 150 1960 0 0 0 0 22 0 0 0 0 0 +1234 1783721110358918800 DEPTH 1 1 0.7528385954593606 1 7 1 7 0 0 108 30 2583 23664880 81600 851.80119323730469 5.8380999999999998 1316.7991999999999 120960 50538 1 0 5898240 4423680 4423680 4426479 4492800 295 150 174 182 1782 0 0 0 0 30 0 0 0 0 0 +1235 1783721111426972100 DEPTH 49 1 0.71218336909406821 3 10 3 10 1 0 112 97 2569 23664831 81600 857.50213623046875 5.8624000000000001 1041.2465999999999 120960 61581 1 0 5898240 4423680 4423680 4426431 4492800 156 150 153 150 1960 0 0 0 0 97 0 0 0 0 1 +1236 1783721112756565800 DEPTH 54 1 0.71195321522581545 1 8 1 8 0 0 87 25 2572 23664925 81600 855.5506591796875 5.8578999999999999 1300.4576 120960 57828 1 0 5898240 4423680 4423680 4426525 4492800 361 150 235 295 1531 1 0 0 0 24 0 0 0 0 0 +1237 1783721113798583600 DEPTH 40 1 0.71132471046345125 3 13 3 13 1 0 75 51 2587 23664734 81600 848.72367858886719 5.8635999999999999 1024.414 120960 70120 1 0 5898240 4423680 4423680 4426330 4492800 150 150 169 167 1951 0 2 2 1 46 0 0 0 0 4 +1238 1783721115098373200 DEPTH 56 1 0.76372010273747837 2 5 2 5 0 0 135 38 2573 23664754 81600 846.90179443359375 5.8560000000000008 1298.5432000000001 120960 53416 1 0 5898240 4423680 4423680 4426354 4492800 299 150 215 424 1485 0 0 0 0 38 0 0 0 0 0 +1239 1783721116124802700 DEPTH 3 1 0.74984630346856318 2 11 2 11 1 0 94 80 2607 23664842 81600 844.49964904785156 5.8585000000000003 1025.3553999999999 120960 49621 1 0 5898240 4423680 4423680 4426441 4492800 150 150 150 150 2007 0 0 0 0 80 0 0 0 0 4 +1240 1783721117240018300 DEPTH 2 1 0.73875836723660404 2 12 2 12 0 0 89 52 2582 23664818 81600 867.65550231933594 5.8504999999999994 1055.7248 120960 55965 1 0 5898240 4423680 4423680 4426411 4492800 166 150 163 259 1844 0 0 0 0 52 0 0 0 0 0 +1241 1783721118307984400 DEPTH 10 1 0.71212105926903535 1 11 1 11 0 0 91 34 2580 23664848 81600 852.23162841796875 5.8357000000000001 1041.3034 120960 61254 1 0 5898240 4423680 4423680 4426448 4492800 151 150 151 150 1978 0 0 0 0 34 0 0 0 0 0 +1242 1783721119368051900 DEPTH 32 1 0.71137579279189456 2 14 2 14 1 0 88 85 2567 23664792 81600 853.39085388183594 5.8819999999999997 1033.6469 120960 70075 1 0 5898240 4423680 4423680 4426390 4492800 150 150 156 150 1961 0 1 0 1 83 0 0 0 0 1 +1243 1783721120442041200 DEPTH 42 1 0.71136117507601582 3 13 3 13 1 0 82 114 2584 23664808 81600 857.19723510742188 5.8588000000000005 1042.7376999999999 120960 70038 1 0 5898240 4423680 4423680 4426408 4492800 150 150 159 156 1969 1 1 2 0 110 0 0 0 0 1 +1244 1783721121540457400 DEPTH 12 1 0.71095094558350302 3 8 3 8 0 0 124 61 2511 23664894 81600 857.34559631347656 5.8613000000000008 1040.7068999999999 120960 58241 1 0 5898240 4423680 4423680 4426492 4492800 198 150 150 156 1857 0 0 0 0 61 0 0 0 0 0 +1245 1783721122606079500 DEPTH 36 1 0.71095139519394723 3 10 3 10 1 0 86 64 2590 23664887 81600 856.890380859375 5.9020000000000001 1048.3649 120960 66207 1 0 5898240 4423680 4423680 4426486 4492800 151 150 152 162 1975 0 0 0 0 64 0 0 0 0 1 +1246 1783721122803518800 REFRESH 25 0 0.69800117924677751 3 11 3 11 0 0 78 8 420 3943909 55200 151.08403015136719 0.97609999999999997 181.363 20160 12281 0 0 983040 737280 737280 737509 748800 100 25 39 41 215 0 0 0 0 8 0 0 0 0 0 +1247 1783721122996502500 REFRESH 4 0 0.68743257646689759 1 13 1 13 1 0 39 3 421 3943917 55200 147.73452758789062 0.97399999999999998 177.10749999999999 20160 14053 0 0 983040 737280 737280 737517 748800 35 25 39 31 291 0 0 0 0 3 0 0 0 0 1 +1248 1783721123212930700 REFRESH 21 0 0.7096709114309776 0 10 0 10 0 0 146 9 420 3943920 55200 151.14956665039062 0.97999999999999998 195.90440000000001 20160 12442 0 0 983040 737280 737280 737520 748800 132 25 60 34 169 0 0 0 0 9 0 0 0 0 0 +1249 1783721123401602700 REFRESH 53 0 0.75872145896203325 0 8 0 8 0 0 108 13 417 3943919 55200 149.83885192871094 0.97009999999999996 187.49170000000001 20160 12257 0 0 983040 737280 737280 737518 748800 90 33 35 32 227 0 0 0 0 13 0 0 0 0 0 +1250 1783721123606657300 REFRESH 23 0 0.70874472836275726 3 14 3 14 0 0 82 21 416 3943918 55200 150.09097290039062 0.99890000000000001 180.2842 20160 14080 0 0 983040 737280 737280 737518 748800 25 25 25 25 316 0 0 1 0 20 0 0 0 0 0 +1251 1783721123786828600 REFRESH 40 0 0.59616181572271876 3 13 3 13 0 0 76 11 418 3943917 55200 149.23878479003906 0.97860000000000003 179.01689999999999 20160 13028 0 0 983040 737280 737280 737517 748800 52 25 51 68 222 0 0 1 1 9 0 0 0 0 0 +1252 1783721123969434200 REFRESH 39 0 0.70822553464064897 2 12 2 12 0 0 114 16 412 3943903 55200 150.28831481933594 0.97919999999999996 181.4385 20160 12177 0 0 983040 737280 737280 737503 748800 40 25 30 29 288 0 0 0 0 16 0 0 0 0 0 +1253 1783721124180044000 REFRESH 1 0 0.75321477182682672 1 7 1 7 0 0 108 9 419 3943917 55200 151.38919067382812 0.98219999999999996 209.56309999999999 20160 13049 0 0 983040 737280 737280 737517 748800 166 25 45 50 133 0 0 0 0 9 0 0 0 0 0 +1254 1783721124360096300 REFRESH 32 0 0.57592218912838233 2 14 2 14 0 0 90 23 417 3943911 55200 149.25823974609375 0.97550000000000003 178.91030000000001 20160 12973 0 0 983040 737280 737280 737511 748800 26 25 27 25 314 0 0 0 0 23 0 0 0 0 0 +1255 1783721124542036500 REFRESH 42 0 0.5760833926661042 3 13 3 13 0 0 83 14 417 3943908 55200 150.08154296875 0.97819999999999996 180.79929999999999 20160 13017 0 0 983040 737280 737280 737508 748800 25 25 29 29 309 0 0 0 0 14 0 0 0 0 0 +1256 1783721124736001300 REFRESH 26 0 0.70656604899116859 1 13 1 13 0 0 60 9 421 3943913 55200 148.92626953125 0.99760000000000004 179.01339999999999 20160 13167 0 0 983040 737280 737280 737513 748800 33 25 41 58 264 0 0 0 0 9 0 0 0 0 0 +1257 1783721124917577400 REFRESH 36 0 0.57621861211176606 3 10 3 10 0 0 87 13 418 3943909 55200 149.70162963867188 0.99829999999999997 180.45580000000001 20160 12143 0 0 983040 737280 737280 737509 748800 31 25 31 34 297 0 0 0 0 13 0 0 0 0 0 +1258 1783721125124103100 REFRESH 6 0 0.70898268739728731 3 14 3 14 0 0 80 20 415 3943895 55200 150.96640014648438 0.97899999999999998 181.31030000000001 20160 14204 0 0 983040 737280 737280 737492 748800 28 25 34 33 295 0 0 1 1 18 0 0 0 0 0 +1259 1783721125318008600 REFRESH 0 0 0.71112056834717174 1 12 1 12 1 0 64 17 426 3943871 55200 148.34185791015625 0.97489999999999999 178.21700000000001 20160 13102 0 0 983040 737280 737280 737471 748800 26 25 25 45 305 0 0 0 0 17 0 0 0 0 1 +1260 1783721125514148200 REFRESH 27 0 0.71090016769561948 0 14 0 14 0 0 81 14 421 3943929 55200 149.55929565429688 0.97389999999999999 180.7166 20160 14183 0 0 983040 737280 737280 737529 748800 26 25 27 25 318 0 0 0 0 14 0 0 0 0 0 +1261 1783721125695539700 REFRESH 37 0 0.74922400082362861 1 12 1 12 0 0 101 9 414 3943928 55200 148.94898986816406 0.97799999999999998 180.22669999999999 20160 12055 0 0 983040 737280 737280 737528 748800 136 25 27 28 198 0 0 0 0 9 0 0 0 0 0 +1262 1783721125920615700 REFRESH 20 0 0.7093045714880658 3 12 3 12 1 0 74 18 415 3943928 55200 149.73542785644531 0.97819999999999996 180.54599999999999 20160 13318 0 0 983040 737280 737280 737528 748800 26 25 27 29 308 0 0 0 0 18 0 0 0 0 1 +1263 1783721126116581000 REFRESH 57 0 0.70955389622486198 2 13 2 13 1 0 88 17 418 3943933 55200 149.74156188964844 0.99790000000000001 179.83779999999999 20160 13034 0 0 983040 737280 737280 737533 748800 27 25 27 40 299 0 0 0 0 17 0 0 0 0 1 +1264 1783721126323731400 REFRESH 35 0 0.71119703122732392 2 11 2 11 0 0 108 15 416 3943916 55200 150.24946594238281 0.98040000000000005 181.0855 20160 13155 0 0 983040 737280 737280 737516 748800 26 25 31 25 309 0 0 0 0 15 0 0 0 0 0 +1265 1783721126520633600 REFRESH 47 0 0.71096907953382615 2 11 2 11 0 0 95 11 421 3943932 55200 150.08665466308594 0.97719999999999996 180.7842 20160 12079 0 0 983040 737280 737280 737532 748800 55 25 26 27 288 0 0 0 0 11 0 0 0 0 0 +1266 1783721126701986700 REFRESH 7 0 0.70756516505701184 2 12 2 12 0 0 87 13 416 3943925 55200 149.26847839355469 1.0016 180.27969999999999 20160 12138 0 0 983040 737280 737280 737525 748800 45 25 50 38 258 0 0 0 0 13 0 0 0 0 0 +1267 1783721126927353400 REFRESH 54 0 0.70985904955730816 1 8 1 8 0 0 87 5 422 3943923 55200 150.10917663574219 0.97860000000000003 224.13659999999999 20160 12551 0 0 983040 737280 737280 737523 748800 151 25 77 69 100 0 0 0 0 5 0 0 0 0 0 +1268 1783721127133241800 REFRESH 29 0 0.70847502313515287 2 12 2 12 0 0 85 14 416 3943925 55200 150.81269836425781 0.98150000000000004 181.4153 20160 12224 0 0 983040 737280 737280 737525 748800 25 25 25 25 316 0 0 0 0 14 0 0 0 0 0 +1269 1783721127310906300 REFRESH 34 0 0.74272547209428308 1 13 1 13 0 0 88 13 412 3943924 55200 147.96800231933594 0.97299999999999998 176.5487 20160 12130 0 0 983040 737280 737280 737524 748800 26 25 25 25 311 0 0 0 0 13 0 0 0 0 0 +1270 1783721127536602500 REFRESH 52 0 0.72626286117200656 1 8 1 8 1 0 82 11 433 3943910 55200 150.00985717773438 0.97009999999999996 224.52930000000001 20160 12031 0 0 983040 737280 737280 737510 748800 227 25 55 44 82 0 0 0 0 11 0 0 0 0 1 +1271 1783721127718235000 REFRESH 10 0 0.70792809857741346 1 11 1 11 0 0 93 10 422 3943921 55200 149.33158874511719 0.97689999999999999 180.53870000000001 20160 11939 0 0 983040 737280 737280 737521 748800 28 25 28 25 316 0 1 0 0 9 0 0 0 0 0 +1272 1783721127948318100 REFRESH 11 0 0.74938149175627655 0 8 0 8 0 0 84 8 431 3943919 55200 150.10575866699219 0.99739999999999995 229.00989999999999 20160 12508 0 0 983040 737280 737280 737517 748800 152 25 56 103 95 0 0 0 0 8 0 0 0 0 0 +1273 1783721128167428300 REFRESH 5 0 0.70983141670968608 2 11 2 11 0 0 87 7 406 3943913 55200 149.30604553222656 0.9849 178.1996 20160 13157 0 0 983040 737280 737280 737513 748800 183 25 38 41 119 0 0 0 0 7 0 0 0 0 0 +1274 1783721128351776900 REFRESH 33 0 0.79164382540929945 1 7 1 7 0 0 146 9 418 3943914 55200 150.59455871582031 0.97219999999999995 183.1953 20160 12471 0 0 983040 737280 737280 737514 748800 56 25 27 28 282 1 0 0 0 8 0 0 0 0 0 +1275 1783721128586819500 REFRESH 31 0 0.76542138811284344 2 6 2 6 0 0 76 13 431 3943874 55200 150.37542724609375 0.98460000000000003 215.11170000000001 20160 12732 0 0 983040 737280 737280 737474 748800 136 25 54 116 100 0 0 0 0 13 0 0 0 0 0 +1276 1783721128790879400 REFRESH 14 0 0.70178098654052368 0 12 0 12 0 0 90 12 420 3943910 55200 150.28749084472656 0.99960000000000004 186.8646 20160 12273 0 0 983040 737280 737280 737509 748800 137 25 27 47 184 0 0 0 0 12 0 0 0 0 0 +1277 1783721128970843500 REFRESH 3 0 0.77748804628920598 2 11 2 11 0 0 101 18 413 3943893 55200 148.96946716308594 0.98129999999999995 178.91800000000001 20160 12239 0 0 983040 737280 737280 737493 748800 32 25 26 25 305 0 0 0 0 18 0 0 0 0 0 +1278 1783721129154267200 REFRESH 49 0 0.70793463953531321 3 10 3 10 0 0 114 12 413 3943906 55200 151.75065612792969 0.97560000000000002 182.18960000000001 20160 11872 0 0 983040 737280 737280 737506 748800 38 25 28 31 291 0 0 0 0 12 0 0 0 0 0 +1279 1783721129336066500 REFRESH 12 0 0.70524530919049044 3 8 3 8 0 0 124 10 412 3943910 55200 149.77229309082031 0.97540000000000004 180.69130000000001 20160 12155 0 0 983040 737280 737280 737510 748800 116 26 60 40 170 0 0 0 0 10 0 0 0 0 0 +1280 1783721129555530700 REFRESH 41 0 0.70858890316193879 1 10 1 10 0 0 86 4 413 3943909 55200 149.65965270996094 1 194.8673 20160 12434 0 0 983040 737280 737280 737509 748800 43 25 29 43 273 0 0 0 0 4 0 0 0 0 0 +1281 1783721129752945300 REFRESH 55 0 0.69488996238039813 1 15 1 15 1 0 113 13 414 3943903 55200 150.70413208007812 0.98209999999999997 181.6335 20160 12333 0 0 983040 737280 737280 737503 748800 26 25 25 25 313 0 0 0 0 13 0 0 0 0 1 +1282 1783721129949765000 REFRESH 16 0 0.70987201188372451 2 8 2 8 1 0 137 11 414 3943893 55200 151.10246276855469 0.97889999999999999 183.69460000000001 20160 12035 0 0 983040 737280 737280 737493 748800 47 27 26 28 286 0 0 0 0 11 0 0 0 0 1 +1283 1783721130133581100 REFRESH 8 0 0.87451095649013832 2 5 2 5 0 0 180 9 413 3943928 55200 151.73017883300781 0.99939999999999996 182.67660000000001 20160 13421 0 0 983040 737280 737280 737528 748800 57 30 27 28 271 0 0 0 0 9 0 0 0 0 0 +1284 1783721130360153700 REFRESH 2 0 0.73024889493233225 2 12 2 12 0 0 91 16 423 3943919 55200 151.26629638671875 0.99980000000000002 182.93190000000001 20160 11937 0 0 983040 737280 737280 737518 748800 33 25 29 42 294 0 0 0 0 16 0 0 0 0 0 +1285 1783721130546219800 REFRESH 45 0 0.78430174541429021 2 7 2 7 0 0 100 11 420 3943891 55200 150.38975524902344 0.97460000000000002 184.8433 20160 12726 0 0 983040 737280 737280 737491 748800 107 25 31 43 214 0 0 0 0 11 0 0 0 0 0 +1286 1783721130775503300 REFRESH 56 0 0.85339037979280263 2 5 2 5 0 0 135 8 424 3943918 55200 151.33491516113281 0.98109999999999997 228.1371 20160 13477 0 0 983040 737280 737280 737518 748800 115 25 74 116 94 0 0 0 0 8 0 0 0 0 0 +1287 1783721130980630100 REFRESH 15 0 0.70964046002515579 3 12 3 12 0 0 69 11 411 3943940 55200 149.61561584472656 0.97540000000000004 180.12540000000001 20160 13088 0 0 983040 737280 737280 737540 748800 25 25 26 25 310 0 0 0 0 11 0 0 0 0 0 +1288 1783721131197722600 REFRESH 9 0 0.769902798364972 2 6 2 6 1 0 99 9 422 3943905 55200 151.90322875976562 1.0002 198.99369999999999 20160 12784 0 0 983040 737280 737280 737505 748800 35 25 27 29 306 0 0 0 0 9 0 0 0 0 1 +1289 1783721131404176500 REFRESH 50 0 0.69220110930119949 2 9 2 9 0 0 100 6 422 3943919 55200 149.15994262695312 0.98050000000000004 180.0703 20160 13099 0 0 983040 737280 737280 737519 748800 144 25 49 77 127 0 0 0 0 6 0 0 0 0 0 +1290 1783721131601910600 REFRESH 18 0 0.70511398058571795 4 15 4 15 0 0 73 14 419 3943911 55200 150.25970458984375 0.9829 182.27099999999999 20160 14129 0 0 983040 737280 737280 737511 748800 26 25 29 27 312 0 0 0 1 13 0 0 0 0 0 +1291 1783721131784240800 REFRESH 24 0 0.74394386520180444 4 11 4 11 0 0 113 11 411 3943907 55200 149.70162963867188 0.97670000000000001 181.23310000000001 20160 11874 0 0 983040 737280 737280 737507 748800 65 25 25 25 271 0 0 0 0 11 0 0 0 0 0 +1292 1783721132013383700 REFRESH 17 0 0.86025171629231423 0 7 0 7 0 0 132 11 415 3943913 55200 150.49842834472656 0.995 228.03489999999999 20160 13037 0 0 983040 737280 737280 737513 748800 73 25 72 113 132 0 0 0 0 11 0 0 0 0 0 +1293 1783721132211933400 REFRESH 13 0 0.85084909162888622 1 6 1 6 0 0 145 5 415 3943900 55200 151.04409790039062 0.97629999999999995 197.44820000000001 20160 13403 0 0 983040 737280 737280 737500 748800 141 25 47 104 98 0 0 0 0 5 0 0 0 0 0 +1294 1783721132417526800 REFRESH 30 0 0.71157939313428953 2 12 2 12 0 0 87 12 401 3943912 55200 149.73849487304688 0.97740000000000005 180.5907 20160 12300 0 0 983040 737280 737280 737512 748800 36 25 33 39 268 0 0 0 0 12 0 0 0 0 0 +1295 1783721132612655900 REFRESH 38 0 0.70709500742530396 4 14 4 14 0 0 69 14 420 3943911 55200 149.51132202148438 0.97270000000000001 179.11850000000001 20160 14249 0 0 983040 737280 737280 737510 748800 25 25 27 26 317 0 0 0 0 14 0 0 0 0 0 +1296 1783721132857608000 REFRESH 58 0 0.71058310209854758 2 13 2 13 0 0 92 17 417 3943923 55200 150.04365539550781 0.97529999999999994 180.52799999999999 20160 13182 0 0 983040 737280 737280 737523 748800 27 25 26 26 313 0 0 0 0 17 0 0 0 0 0 +1297 1783721133053894900 REFRESH 22 0 0.709901359518603 3 12 3 12 1 0 96 17 413 3943930 55200 148.90499877929688 0.99890000000000001 180.2809 20160 13274 0 0 983040 737280 737280 737530 748800 26 25 25 26 311 0 0 0 0 17 0 0 0 0 1 +1298 1783721133280853500 REFRESH 44 0 0.71161763793823507 2 7 2 7 0 0 100 9 414 3943912 55200 150.58329772949219 0.99770000000000003 225.77250000000001 20160 12434 0 0 983040 737280 737280 737512 748800 56 25 26 29 278 0 0 0 0 9 0 0 0 0 0 +1299 1783721133484291000 REFRESH 48 0 0.68892567933737148 2 12 2 12 0 0 44 3 425 3943903 55200 148.69810485839844 0.98260000000000003 178.33070000000001 20160 13101 0 0 983040 737280 737280 737503 748800 39 25 48 59 254 0 0 0 0 3 0 0 0 0 0 +1300 1783721133679732800 REFRESH 43 0 0.70998582412335409 2 13 2 13 0 0 84 15 406 3943927 55200 149.68115234375 0.97150000000000003 179.84979999999999 20160 13174 0 0 983040 737280 737280 737527 748800 33 25 33 45 270 0 0 0 0 15 0 0 0 0 0 +1301 1783721133876634700 REFRESH 46 0 0.70944944163454493 2 15 2 15 0 0 80 22 420 3943923 55200 149.60639953613281 0.97870000000000001 180.7561 20160 14140 0 0 983040 737280 737280 737523 748800 27 25 26 25 317 0 0 1 0 21 0 0 0 0 0 +1302 1783721134119658000 REFRESH 19 0 0.70827142709351298 3 11 3 11 0 0 93 14 424 3943885 55200 150.19314575195312 0.98199999999999998 181.39060000000001 20160 12299 0 0 983040 737280 737280 737485 748800 26 25 25 25 323 2 0 1 0 11 0 0 0 0 0 +1303 1783721134316599000 REFRESH 51 0 0.70720545196104501 3 15 3 13 1 0 74 18 415 3943923 55200 149.07801818847656 0.97770000000000001 180.24090000000001 20160 14197 0 0 983040 737280 737280 737523 748800 31 25 42 39 278 0 0 0 1 17 0 0 0 0 1 +1304 1783721134513897300 REFRESH 28 0 0.70996895774705404 2 13 2 13 0 0 94 11 408 3943936 55200 150.476806640625 1.0007999999999999 181.7338 20160 13174 0 0 983040 737280 737280 737535 748800 25 25 27 31 300 0 0 1 0 10 0 0 0 0 0 +1305 1783721135575130500 DEPTH 8 1 0.84165127981982046 2 5 2 5 0 0 185 43 2491 23664876 81600 867.99223327636719 5.8580999999999994 1060.0953999999999 120960 65947 1 0 5898240 4423680 4423680 4426475 4492800 168 160 150 167 1846 0 0 0 0 43 0 0 0 0 0 +1306 1783721136895447700 DEPTH 1 1 0.80369788293683742 1 7 1 7 1 0 108 43 2573 23664793 81600 860.0184326171875 5.8583999999999996 1319.2293 120960 62344 1 0 5898240 4423680 4423680 4426393 4492800 289 150 174 187 1773 0 0 0 0 43 0 0 0 0 1 +1307 1783721138208614400 DEPTH 56 1 0.81076082223105383 2 5 2 5 0 0 136 24 2574 23664808 81600 858.18637084960938 5.8526000000000007 1311.9122 120960 65011 1 0 5898240 4423680 4423680 4426407 4492800 309 150 228 371 1516 0 0 0 0 24 0 0 0 0 0 +1308 1783721139297320400 DEPTH 33 1 0.78452456076118426 1 7 1 7 0 0 146 56 2514 23664814 81600 864.27851867675781 5.8290999999999995 1087.5371 120960 59897 1 0 5898240 4423680 4423680 4426413 4492800 174 150 150 150 1890 3 0 0 0 53 0 0 0 0 0 +1309 1783721140331291200 DEPTH 3 1 0.76580899118226831 2 11 2 11 1 0 105 74 2599 23664752 81600 852.79220581054688 5.8657000000000004 1032.8588 120960 57446 1 0 5898240 4423680 4423680 4426349 4492800 150 150 150 150 1999 0 0 0 0 74 0 0 0 0 1 +1310 1783721141644617500 DEPTH 31 1 0.76172722675345317 2 6 2 6 0 0 81 31 2631 23664793 81600 853.50076293945312 5.8506999999999998 1287.7623000000001 120960 60723 1 0 5898240 4423680 4423680 4426392 4492800 583 150 257 559 1082 1 0 5 0 25 0 0 0 0 0 +1311 1783721142916381300 DEPTH 53 1 0.75659162247888945 0 8 0 8 0 0 109 52 2513 23664850 81600 857.49063110351562 5.8388 1245.8625999999999 120960 58065 1 0 5898240 4423680 4423680 4426448 4492800 152 150 156 153 1902 0 0 0 0 52 0 0 0 0 0 +1312 1783721144261552000 DEPTH 11 1 0.7459778237558099 0 8 0 8 1 0 85 16 2610 23664833 81600 851.30754089355469 5.8642000000000003 1320.4403 120960 59607 1 0 5898240 4423680 4423680 4426433 4492800 506 150 234 422 1298 0 0 0 0 16 0 0 0 0 1 +1313 1783721145594174900 DEPTH 17 1 0.81951148776328031 0 7 0 7 0 0 133 43 2546 23664827 81600 857.54229736328125 5.8443999999999994 1331.4690000000001 120960 63741 1 0 5898240 4423680 4423680 4426426 4492800 172 150 193 258 1773 0 0 0 0 43 0 0 0 0 0 +1314 1783721146885239900 DEPTH 13 1 0.8056168021200012 1 6 1 6 0 0 145 34 2506 23664829 81600 858.23458862304688 5.9177 1289.9394 120960 65114 1 0 5898240 4423680 4423680 4426427 4492800 193 150 160 193 1810 0 0 0 0 34 0 0 0 0 0 +1315 1783721148172091400 DEPTH 45 1 0.77347566633667197 2 7 2 7 1 0 102 30 2570 23664770 81600 860.73095703125 5.8315000000000001 1230.3495 120960 61112 1 0 5898240 4423680 4423680 4426370 4492800 150 150 156 150 1964 0 0 0 0 30 0 0 0 0 1 +1316 1783721149490236900 DEPTH 9 1 0.76799494087205955 2 6 2 6 0 0 99 12 2605 23664703 81600 866.33757019042969 5.8493000000000004 1278.0527 120960 61693 1 0 5898240 4423680 4423680 4426303 4492800 203 150 162 174 1916 0 0 0 0 12 0 0 0 0 0 +1317 1783721150558029800 DEPTH 51 1 0.79671270065503652 3 13 3 12 1 0 78 105 2569 23664830 81600 851.86212158203125 5.8342000000000001 1034.2084 120960 69543 1 0 5898240 4423680 4423680 4426429 4492800 156 150 167 157 1939 1 2 1 0 101 0 0 0 0 4 +1318 1783721151662374500 DEPTH 37 1 0.73852632786776451 1 12 1 12 0 0 102 28 2579 23664904 81600 858.11380004882812 5.9161999999999999 1044.9739 120960 57898 1 0 5898240 4423680 4423680 4426502 4492800 283 150 157 164 1825 1 0 0 0 27 0 0 0 0 0 +1319 1783721152721186800 DEPTH 34 1 0.73391196486743349 1 13 1 13 1 0 90 44 2576 23664871 81600 851.14695739746094 5.9032 1034.2351000000001 120960 56735 1 0 5898240 4423680 4423680 4426469 4492800 150 150 150 150 1976 1 0 1 0 42 0 0 0 0 2 +1320 1783721154061235900 DEPTH 52 1 0.72669824601307498 1 8 1 8 0 0 82 23 2621 23664831 81600 853.30009460449219 5.8354999999999997 1307.9105 120960 60575 1 0 5898240 4423680 4423680 4426428 4492800 1218 150 313 289 651 2 0 0 0 21 0 0 0 0 0 +1321 1783721155111202400 DEPTH 8 1 0.77988820015894944 2 5 2 5 0 0 188 64 2487 23664767 81600 859.43318176269531 5.8395000000000001 1048.8579 120960 55004 1 0 5898240 4423680 4423680 4426364 4492800 168 163 150 167 1839 0 0 0 0 64 0 0 0 0 0 +1322 1783721156183364700 DEPTH 51 1 0.7847146277087973 3 12 3 12 1 0 82 69 2591 23664860 81600 845.4793701171875 5.8398000000000003 1029.3910000000001 120960 57655 1 0 5898240 4423680 4423680 4426460 4492800 150 150 150 150 1991 0 1 0 0 68 0 0 0 0 1 +1323 1783721157486854200 DEPTH 56 1 0.76023213439280413 2 5 2 5 0 0 136 32 2573 23664817 81600 846.99356079101562 5.8409000000000004 1302.2944 120960 53714 1 0 5898240 4423680 4423680 4426417 4492800 297 150 222 420 1484 0 0 0 0 32 0 0 0 0 0 +1324 1783721158555169300 DEPTH 24 1 0.7338415041771984 4 11 4 11 0 0 114 74 2512 23664921 81600 859.22105407714844 5.8488000000000007 1041.2762 120960 55874 1 0 5898240 4423680 4423680 4426519 4492800 156 150 150 150 1906 2 0 0 0 72 0 0 0 0 0 +1325 1783721159636952900 DEPTH 2 1 0.72230031997300626 2 12 2 12 1 0 92 64 2579 23664886 81600 865.52549743652344 5.8655999999999997 1054.3081999999999 120960 56166 1 0 5898240 4423680 4423680 4426478 4492800 189 150 168 239 1833 0 0 0 0 64 0 0 0 0 1 +1326 1783721160716036900 DEPTH 35 1 0.70710293409321279 2 11 2 11 0 0 115 104 2552 23664815 81600 857.91856384277344 5.8738999999999999 1041.5065999999999 120960 65643 1 0 5898240 4423680 4423680 4426413 4492800 150 150 163 150 1939 1 1 0 0 102 0 0 0 0 0 +1327 1783721161788740700 DEPTH 0 1 0.70710816836561108 1 12 1 12 1 0 71 48 2583 23664856 81600 852.99041748046875 5.8614000000000006 1033.798 120960 65159 1 0 5898240 4423680 4423680 4426456 4492800 151 150 150 165 1967 0 0 1 0 47 0 0 0 0 2 +1328 1783721162876215900 DEPTH 27 1 0.7066754854353916 0 14 0 14 1 0 86 110 2575 23664837 81600 856.79936218261719 5.8547000000000002 1040.0201999999999 120960 70073 1 0 5898240 4423680 4423680 4426435 4492800 150 150 150 150 1975 0 5 0 0 105 0 0 0 0 1 +1329 1783721164233400500 DEPTH 1 1 0.7757083726072076 1 7 1 7 0 0 110 36 2581 23664887 81600 852.5389404296875 5.8747999999999996 1316.0808 120960 51101 1 0 5898240 4423680 4423680 4426487 4492800 281 150 174 198 1778 0 0 0 0 36 0 0 0 0 0 +1330 1783721165282149700 DEPTH 51 1 0.78196810160966912 3 12 3 12 1 0 82 53 2548 23664862 81600 842.32528686523438 5.8753000000000002 1023.0169 120960 47476 1 0 5898240 4423680 4423680 4426460 4492800 150 150 150 150 1948 0 0 1 0 52 0 0 0 0 3 +1331 1783721166610132600 DEPTH 17 1 0.78868724871027185 0 7 0 7 0 0 133 30 2552 23664836 81600 850.63578796386719 5.8719000000000001 1326.8927000000001 120960 52845 1 0 5898240 4423680 4423680 4426434 4492800 186 150 204 287 1725 0 0 0 0 30 0 0 0 0 0 +1332 1783721167896473400 DEPTH 13 1 0.77575880587463852 1 6 1 6 0 0 145 32 2507 23664862 81600 850.4874267578125 5.8666 1285.2782 120960 53799 1 0 5898240 4423680 4423680 4426460 4492800 191 150 161 197 1808 0 0 0 0 32 0 0 0 0 0 +1333 1783721168978866100 DEPTH 33 1 0.7788466279446824 1 7 1 7 0 0 147 50 2511 23664830 81600 857.58157348632812 5.8470000000000004 1081.2333000000001 120960 49293 1 0 5898240 4423680 4423680 4426427 4492800 174 150 150 150 1887 0 0 0 0 50 0 0 0 0 0 +1334 1783721170294360700 DEPTH 44 1 0.70819110725043122 2 7 2 7 0 0 101 25 2549 23664885 81600 856.648681640625 5.8517000000000001 1314.2969000000001 120960 58800 1 0 5898240 4423680 4423680 4426485 4492800 150 150 150 150 1949 0 0 0 0 25 0 0 0 0 0 +1335 1783721171355120600 DEPTH 30 1 0.70666440162898148 2 12 2 12 1 0 89 69 2516 23664896 81600 854.85121154785156 5.8468 1034.4636 120960 60343 1 0 5898240 4423680 4423680 4426493 4492800 150 150 154 165 1897 1 0 0 1 67 0 0 0 0 1 +1336 1783721172448090600 DEPTH 16 1 0.70651607697938656 2 8 2 8 1 0 141 53 2511 23664924 81600 864.07608032226562 5.8540000000000001 1064.2852 120960 57282 1 0 5898240 4423680 4423680 4426522 4492800 156 150 150 150 1905 0 0 0 0 53 0 0 0 0 1 +1337 1783721172672253300 REFRESH 52 0 0.64281525510150839 1 8 1 8 0 0 82 3 436 3943939 55200 148.4228515625 0.9788 222.95750000000001 20160 13818 0 0 983040 737280 737280 737539 748800 225 25 57 47 82 0 0 0 0 3 0 0 0 0 0 +1338 1783721172873988200 REFRESH 5 0 0.70089683592521457 2 11 2 11 0 0 87 14 406 3943884 55200 149.38829040527344 0.98080000000000001 178.10220000000001 20160 13228 0 0 983040 737280 737280 737484 748800 187 25 41 42 111 0 0 0 0 14 0 0 0 0 0 +1339 1783721173074335500 REFRESH 36 0 0.70256801764030552 3 10 3 10 0 0 88 13 420 3943893 55200 150.53952026367188 0.97519999999999996 181.82339999999999 20160 12254 0 0 983040 737280 737280 737492 748800 31 25 31 35 298 0 0 0 0 13 0 0 0 0 0 +1340 1783721173267508300 REFRESH 48 0 0.67957375997015745 2 12 2 12 0 0 46 9 425 3943895 55200 148.97152709960938 0.97570000000000001 178.17230000000001 20160 12863 0 0 983040 737280 737280 737495 748800 40 25 50 55 255 0 0 0 0 9 0 0 0 0 0 +1341 1783721173460286200 REFRESH 26 0 0.70199271285876652 1 13 1 13 0 0 60 8 419 3943912 55200 148.33357238769531 0.98170000000000002 177.6574 20160 12988 0 0 983040 737280 737280 737512 748800 33 25 38 52 271 0 0 0 0 8 0 0 0 0 0 +1342 1783721173658002500 REFRESH 15 0 0.70497256101668038 3 12 3 12 0 0 69 11 414 3943918 55200 149.77536010742188 0.98140000000000005 179.6551 20160 12981 0 0 983040 737280 737280 737518 748800 25 25 26 25 313 0 0 0 0 11 0 0 0 0 0 +1343 1783721173851445500 REFRESH 38 0 0.70205743640618345 4 14 4 14 0 0 69 10 417 3943928 55200 148.38169860839844 0.98370000000000002 177.50919999999999 20160 13985 0 0 983040 737280 737280 737528 748800 25 25 27 26 314 0 0 0 0 10 0 0 0 0 0 +1344 1783721174039016000 REFRESH 45 0 0.76585134552041756 2 7 2 7 0 0 103 4 420 3943925 55200 150.540283203125 1 186.3777 20160 12851 0 0 983040 737280 737280 737525 748800 108 25 31 45 211 0 0 0 0 4 0 0 0 0 0 +1345 1783721174256402500 REFRESH 31 0 0.75822285638152676 2 6 2 6 0 0 81 10 425 3943908 55200 150.22285461425781 0.9748 216.27950000000001 20160 12921 0 0 983040 737280 737280 737507 748800 137 25 54 113 96 0 0 0 0 10 0 0 0 0 0 +1346 1783721174506307200 REFRESH 54 0 0.70325671883474905 1 8 1 8 0 0 88 8 425 3943902 55200 149.84498596191406 0.97809999999999997 223.5333 20160 12592 0 0 983040 737280 737280 737501 748800 151 25 81 69 99 0 0 0 0 8 0 0 0 0 0 +1347 1783721174688001900 REFRESH 24 0 0.70438857066908911 4 11 4 11 0 0 114 9 405 3943897 55200 149.82655334472656 0.99890000000000001 180.5394 20160 11853 0 0 983040 737280 737280 737497 748800 71 27 25 26 256 0 0 0 0 9 0 0 0 0 0 +1348 1783721174867920000 REFRESH 51 0 0.85246225240979889 3 12 3 12 1 0 82 10 409 3943914 55200 149.29306030273438 0.999 178.71039999999999 20160 12001 0 0 983040 737280 737280 737514 748800 27 25 31 26 300 0 0 0 0 10 0 0 0 0 1 +1349 1783721175067158900 REFRESH 18 0 0.7002234238110201 4 15 4 15 0 0 75 14 420 3943897 55200 150.8616943359375 0.97640000000000005 182.18870000000001 20160 14043 0 0 983040 737280 737280 737497 748800 26 25 29 28 312 0 0 0 0 14 0 0 0 0 0 +1350 1783721175249607700 REFRESH 35 0 0.69269259198304223 2 11 2 11 0 0 117 11 416 3943917 55200 149.60231018066406 0.97499999999999998 181.3218 20160 12025 0 0 983040 737280 737280 737517 748800 30 25 35 25 301 1 0 0 0 10 0 0 0 0 0 +1351 1783721175455325900 REFRESH 49 0 0.7040110595758593 3 10 3 10 0 0 114 17 421 3943914 55200 149.63987731933594 0.97840000000000005 180.25059999999999 20160 11959 0 0 983040 737280 737280 737514 748800 38 25 29 32 297 0 0 0 0 17 0 0 0 0 0 +1352 1783721175652275500 REFRESH 58 0 0.70583933257031506 2 13 2 13 0 0 93 20 416 3943897 55200 149.79072570800781 0.99939999999999996 180.4074 20160 12889 0 0 983040 737280 737280 737497 748800 29 25 27 26 309 0 0 0 0 20 0 0 0 0 0 +1353 1783721175834243800 REFRESH 30 0 0.63170113154260821 2 12 2 12 0 0 89 10 408 3943901 55200 149.180419921875 0.98260000000000003 180.91810000000001 20160 11938 0 0 983040 737280 737280 737499 748800 61 25 35 43 244 0 0 0 0 10 0 0 0 0 0 +1354 1783721176015477400 REFRESH 42 0 0.70198755797206558 3 13 3 13 0 0 87 15 419 3943924 55200 149.56153869628906 0.99839999999999995 180.08670000000001 20160 12929 0 0 983040 737280 737280 737524 748800 25 25 31 29 309 0 0 1 0 14 0 0 0 0 0 +1355 1783721176237005800 REFRESH 21 0 0.70416613181579346 0 10 0 10 0 0 146 8 420 3943929 55200 151.58169555664062 0.97689999999999999 195.89940000000001 20160 12524 0 0 983040 737280 737280 737528 748800 123 25 50 33 189 0 0 0 0 8 0 0 0 0 0 +1356 1783721176420474200 REFRESH 16 0 0.66732245020519432 2 8 2 8 0 0 142 13 414 3943907 55200 150.54130554199219 0.99890000000000001 182.3751 20160 12164 0 0 983040 737280 737280 737507 748800 40 26 25 25 298 0 0 0 0 13 0 0 0 0 0 +1357 1783721176631238800 REFRESH 1 0 0.78836259992607205 1 7 1 7 0 0 110 11 420 3943894 55200 150.83424377441406 0.98070000000000002 209.67509999999999 20160 12813 0 0 983040 737280 737280 737494 748800 162 25 44 48 141 0 0 0 0 11 0 0 0 0 0 +1358 1783721176811474200 REFRESH 0 0 0.70278681259971221 1 12 1 12 0 0 71 8 426 3943903 55200 148.91606140136719 0.98350000000000004 179.11750000000001 20160 12038 0 0 983040 737280 737280 737503 748800 27 25 25 52 297 0 0 0 0 8 0 0 0 0 0 +1359 1783721177016766700 REFRESH 28 0 0.70527877317157417 2 13 2 13 0 0 96 12 400 3943909 55200 150.03645324707031 0.98089999999999999 180.84819999999999 20160 12779 0 0 983040 737280 737280 737508 748800 26 25 27 35 287 0 0 1 0 11 0 0 0 0 0 +1360 1783721177213387200 REFRESH 9 0 0.76375255474209958 2 6 2 6 0 0 99 11 421 3943904 55200 151.90835571289062 0.97840000000000005 195.5274 20160 12797 0 0 983040 737280 737280 737503 748800 36 25 27 29 304 0 0 0 0 11 0 0 0 0 0 +1361 1783721177419619900 REFRESH 43 0 0.70536794944356784 2 13 2 13 0 0 85 16 408 3943922 55200 150.25970458984375 0.97819999999999996 180.66290000000001 20160 12931 0 0 983040 737280 737280 737522 748800 47 25 38 59 239 0 0 0 0 16 0 0 0 0 0 +1362 1783721177616434500 REFRESH 29 0 0.70452187164906899 2 12 2 12 0 0 86 13 415 3943948 55200 150.36927795410156 0.98180000000000001 180.61109999999999 20160 12082 0 0 983040 737280 737280 737548 748800 26 25 25 25 314 0 0 0 0 13 0 0 0 0 0 +1363 1783721177812351000 REFRESH 19 0 0.70394333787307439 3 11 3 11 0 0 93 12 421 3943918 55200 149.82553100585938 0.97750000000000004 180.63069999999999 20160 12193 0 0 983040 737280 737280 737517 748800 25 25 25 25 321 0 0 0 0 12 0 0 0 0 0 +1364 1783721177993334400 REFRESH 37 0 0.7295394389987897 1 12 1 12 0 0 103 11 417 3943926 55200 149.17642211914062 0.98229999999999995 179.84620000000001 20160 12531 0 0 983040 737280 737280 737526 748800 159 25 28 30 175 0 0 0 0 11 0 0 0 0 0 +1365 1783721178229596800 REFRESH 34 0 0.72569314308763677 1 13 1 13 0 0 90 11 415 3943931 55200 149.56646728515625 0.97729999999999995 178.28489999999999 20160 11852 0 0 983040 737280 737280 737531 748800 28 25 25 25 312 0 0 0 1 10 0 0 0 0 0 +1366 1783721178424327200 REFRESH 57 0 0.70557047452373944 2 13 2 13 0 0 88 13 411 3943908 55200 148.97152709960938 0.98319999999999996 178.78639999999999 20160 12975 0 0 983040 737280 737280 737507 748800 28 25 29 43 286 0 0 0 0 13 0 0 0 0 0 +1367 1783721178607136000 REFRESH 27 0 0.70226336055216487 0 14 0 14 0 0 88 11 418 3943906 55200 150.26585388183594 0.98809999999999998 181.6728 20160 12784 0 0 983040 737280 737280 737505 748800 27 25 26 27 313 0 0 0 0 11 0 0 0 0 0 +1368 1783721178832751100 REFRESH 44 0 0.705888509393932 2 7 2 7 0 0 101 12 415 3943931 55200 153.38905334472656 0.98960000000000004 224.4487 20160 12424 0 0 983040 737280 737280 737531 748800 76 25 34 31 249 0 0 0 0 12 0 0 0 0 0 +1369 1783721179029479100 REFRESH 55 0 0.68765136690936657 1 15 1 15 0 0 113 9 417 3943898 55200 150.21157836914062 0.99919999999999998 181.94409999999999 20160 12374 0 0 983040 737280 737280 737498 748800 26 25 25 25 316 0 0 0 0 9 0 0 0 0 0 +1370 1783721179257849000 REFRESH 11 0 0.74498505656697223 0 8 0 8 0 0 85 10 426 3943937 55200 149.49990844726562 0.99960000000000004 227.2807 20160 12535 0 0 983040 737280 737280 737537 748800 155 25 58 94 94 0 0 0 0 10 0 0 0 0 0 +1371 1783721179438891300 REFRESH 32 0 0.70207108505724847 2 14 2 14 0 0 94 21 418 3943896 55200 149.34938049316406 0.9778 179.88919999999999 20160 12927 0 0 983040 737280 737280 737496 748800 27 25 27 26 313 0 0 0 0 21 0 0 0 0 0 +1372 1783721179646108100 REFRESH 12 0 0.70049183782900193 3 8 3 8 0 0 124 11 414 3943924 55200 150.37440490722656 0.97860000000000003 181.4033 20160 12156 0 0 983040 737280 737280 737524 748800 116 26 59 39 174 0 0 0 0 11 0 0 0 0 0 +1373 1783721179841659100 REFRESH 10 0 0.7047640076364905 1 11 1 11 0 0 93 14 417 3943920 55200 148.31922912597656 0.98209999999999997 179.95310000000001 20160 11849 0 0 983040 737280 737280 737520 748800 29 25 28 25 310 0 0 0 0 14 0 0 0 0 0 +1374 1783721180034298000 REFRESH 4 0 0.67930608250575641 1 13 1 13 0 0 39 4 416 3943903 55200 148.45645141601562 0.98009999999999997 178.00280000000001 20160 13986 0 0 983040 737280 737280 737503 748800 34 25 39 33 285 0 0 0 0 4 0 0 0 0 0 +1375 1783721180230193300 REFRESH 20 0 0.70540047371535675 3 12 3 12 0 0 77 19 418 3943929 55200 148.67762756347656 0.9738 179.8768 20160 12988 0 0 983040 737280 737280 737529 748800 26 25 25 27 315 0 0 0 0 19 0 0 0 0 0 +1376 1783721180416942800 REFRESH 33 0 0.77371929637128545 1 7 1 7 0 0 147 4 416 3943927 55200 151.15571594238281 0.97819999999999996 185.59309999999999 20160 12731 0 0 983040 737280 737280 737527 748800 87 25 27 31 246 0 0 0 0 4 0 0 0 0 0 +1377 1783721180655652100 REFRESH 47 0 0.70629916083653255 2 11 2 11 0 0 95 14 421 3943878 55200 150.508544921875 0.98209999999999997 181.23920000000001 20160 12126 0 0 983040 737280 737280 737477 748800 62 25 26 25 283 0 0 0 0 14 0 0 0 0 0 +1378 1783721180852565900 REFRESH 6 0 0.70490594415811003 3 14 3 14 1 0 82 16 416 3943905 55200 149.70265197753906 0.97850000000000004 180.65530000000001 20160 13998 0 0 983040 737280 737280 737505 748800 29 25 34 34 294 0 0 0 2 14 0 0 0 0 1 +1379 1783721181082848900 REFRESH 56 0 0.84994436720429745 2 5 2 5 0 0 137 10 424 3943900 55200 150.63655090332031 0.9859 229.02369999999999 20160 13425 0 0 983040 737280 737280 737500 748800 118 25 75 116 90 0 0 0 0 10 0 0 0 0 0 +1380 1783721181313221500 REFRESH 17 0 0.85806113826679753 0 7 0 7 0 0 133 5 414 3943916 55200 150.57305908203125 0.97599999999999998 229.2423 20160 13680 0 0 983040 737280 737280 737516 748800 80 25 74 119 116 0 0 0 0 5 0 0 0 0 0 +1381 1783721181519237100 REFRESH 23 0 0.70483275409314117 3 14 3 14 0 0 83 14 417 3943892 55200 149.90643310546875 0.99860000000000004 181.1163 20160 13929 0 0 983040 737280 737280 737492 748800 25 25 25 25 317 0 0 0 0 14 0 0 0 0 0 +1382 1783721181766011700 REFRESH 13 0 0.84601193766435778 1 6 1 6 0 0 145 6 416 3943885 55200 150.97343444824219 0.98099999999999998 198.29570000000001 20160 13451 0 0 983040 737280 737280 737485 748800 133 25 45 110 103 0 0 0 0 6 0 0 0 0 0 +1383 1783721181956305200 REFRESH 53 0 0.75458141121329303 0 8 0 8 0 0 110 10 414 3943922 55200 149.55827331542969 0.98399999999999999 189.06559999999999 20160 12521 0 0 983040 737280 737280 737522 748800 105 37 35 44 193 0 0 1 0 9 0 0 0 0 0 +1384 1783721182142927300 REFRESH 2 0 0.71642937646558935 2 12 2 12 0 0 93 9 422 3943906 55200 152.060546875 0.98899999999999999 185.4401 20160 11982 0 0 983040 737280 737280 737504 748800 37 25 28 45 287 0 0 0 0 9 0 0 0 0 0 +1385 1783721182325460700 REFRESH 3 0 0.7555571116960994 2 11 2 11 0 0 106 16 415 3943908 55200 150.1099853515625 0.98550000000000004 181.48429999999999 20160 12208 0 0 983040 737280 737280 737508 748800 31 25 25 25 309 0 0 0 0 16 0 0 0 0 0 +1386 1783721182513339800 REFRESH 8 0 0.86856183382197449 2 5 2 5 0 0 188 9 412 3943907 55200 152.56985473632812 0.98380000000000001 186.7285 20160 13324 0 0 983040 737280 737280 737507 748800 38 29 26 28 291 0 0 0 0 9 0 0 0 0 0 +1387 1783721182720228200 REFRESH 22 0 0.70567249229993401 3 12 3 12 0 0 98 20 414 3943902 55200 150.43455505371094 0.99909999999999999 182.0898 20160 12957 0 0 983040 737280 737280 737502 748800 25 25 25 26 313 0 0 0 0 20 0 0 0 0 0 +1388 1783721182935143100 REFRESH 14 0 0.69788139937389082 0 12 0 12 0 0 92 10 419 3943905 55200 150.14912414550781 0.97770000000000001 187.33539999999999 20160 12227 0 0 983040 737280 737280 737505 748800 137 25 26 51 180 0 0 0 0 10 0 0 0 0 0 +1389 1783721183131158600 REFRESH 39 0 0.70482566850936657 2 12 2 12 0 0 115 15 410 3943898 55200 149.62789916992188 0.98029999999999995 180.77699999999999 20160 12166 0 0 983040 737280 737280 737498 748800 35 25 30 30 290 0 0 0 0 15 0 0 0 0 0 +1390 1783721183328253200 REFRESH 7 0 0.70407294414374866 2 12 2 12 0 0 89 14 417 3943920 55200 150.29452514648438 0.97560000000000002 181.5556 20160 12075 0 0 983040 737280 737280 737519 748800 31 25 35 29 297 0 0 0 0 14 0 0 0 0 0 +1391 1783721183535533900 REFRESH 41 0 0.69956909864692962 1 10 1 10 0 0 87 8 411 3943908 55200 148.50253295898438 0.99850000000000005 190.6902 20160 12519 0 0 983040 737280 737280 737507 748800 61 25 30 57 238 0 0 0 0 8 0 0 0 0 0 +1392 1783721183729206700 REFRESH 40 0 0.7025882760178972 3 13 3 13 0 0 78 13 413 3943900 55200 148.7298583984375 0.99919999999999998 177.9855 20160 12982 0 0 983040 737280 737280 737500 748800 45 25 48 61 234 0 0 0 0 13 0 0 0 0 0 +1393 1783721183927263000 REFRESH 25 0 0.69279576337097137 3 11 3 11 0 0 79 9 422 3943921 55200 151.01644897460938 0.98040000000000005 182.16220000000001 20160 12302 0 0 983040 737280 737280 737520 748800 107 25 40 43 207 0 0 0 0 9 0 0 0 0 0 +1394 1783721184143983900 REFRESH 46 0 0.70498960159898183 2 15 2 15 0 0 81 21 424 3943905 55200 152.86067199707031 0.9819 184.62860000000001 20160 13982 0 0 983040 737280 737280 737504 748800 27 25 26 25 321 0 0 0 0 21 0 0 0 0 0 +1395 1783721184341752700 REFRESH 50 0 0.68488561566887873 2 9 2 9 0 0 100 10 422 3943903 55200 150.35516357421875 0.99790000000000001 181.65379999999999 20160 13097 0 0 983040 737280 737280 737501 748800 155 25 55 84 103 0 0 0 1 9 0 0 0 0 0 +1396 1783721185373701800 DEPTH 51 1 0.89557697035616535 3 12 3 12 1 0 82 41 2547 23664817 81600 851.37872314453125 5.8640999999999996 1030.7228 120960 57409 1 0 5898240 4423680 4423680 4426417 4492800 150 150 150 150 1947 0 0 0 0 41 0 0 0 0 2 +1397 1783721186740721200 DEPTH 1 1 0.78168766026185998 1 7 1 7 0 0 110 37 2573 23664861 81600 861.01773071289062 5.8742999999999999 1323.5264999999999 120960 62203 1 0 5898240 4423680 4423680 4426461 4492800 294 150 174 188 1767 0 0 0 0 37 0 0 0 0 0 +1398 1783721188054642700 DEPTH 56 1 0.78930327992978233 2 5 2 5 0 0 137 36 2578 23664851 81600 858.44538879394531 5.8660000000000005 1312.6873000000001 120960 64957 1 0 5898240 4423680 4423680 4426448 4492800 280 150 221 360 1567 0 0 0 0 36 0 0 0 0 0 +1399 1783721189413646500 DEPTH 17 1 0.79214807907619478 0 7 0 7 0 0 133 29 2553 23664776 81600 858.45086669921875 5.8903999999999996 1334.0124000000001 120960 65170 1 0 5898240 4423680 4423680 4426375 4492800 167 150 189 236 1811 0 0 0 0 29 0 0 0 0 0 +1400 1783721190740727000 DEPTH 9 1 0.75973030078156323 2 6 2 6 0 0 99 13 2599 23664849 81600 865.94633483886719 5.867 1274.5178000000001 120960 61842 1 0 5898240 4423680 4423680 4426448 4492800 207 150 162 176 1904 0 0 0 0 13 0 0 0 0 0 +1401 1783721192064350400 DEPTH 31 1 0.75508318445935907 2 6 2 6 0 0 88 29 2624 23664844 81600 855.33195495605469 5.9043000000000001 1292.3617999999999 120960 61507 1 0 5898240 4423680 4423680 4426440 4492800 588 150 266 533 1087 0 0 0 0 29 0 0 0 0 0 +1402 1783721193346044800 DEPTH 45 1 0.75077016463687241 2 7 2 7 0 0 103 26 2556 23664878 81600 862.09025573730469 5.8461999999999996 1229.0527 120960 62167 1 0 5898240 4423680 4423680 4426476 4492800 150 150 156 150 1950 0 0 0 0 26 0 0 0 0 0 +1403 1783721194715923500 DEPTH 11 1 0.74358660992793002 0 8 0 8 1 0 86 23 2614 23664823 81600 851.68194580078125 5.8521999999999998 1319.5259000000001 120960 59351 1 0 5898240 4423680 4423680 4426422 4492800 525 150 225 406 1308 0 1 0 0 22 0 0 0 0 2 +1404 1783721196032783300 DEPTH 13 1 0.8119194734002747 1 6 1 6 0 0 145 34 2511 23664942 81600 860.70687866210938 5.8997999999999999 1291.4897000000001 120960 65292 1 0 5898240 4423680 4423680 4426538 4492800 204 150 167 249 1741 0 0 0 0 34 0 0 0 0 0 +1405 1783721197089518200 DEPTH 8 1 0.80588877277352311 2 5 2 5 0 0 190 51 2492 23664904 81600 868.32182312011719 5.8596000000000004 1055.6030000000001 120960 65282 1 0 5898240 4423680 4423680 4426500 4492800 168 156 150 156 1862 0 0 0 0 51 0 0 0 0 0 +1406 1783721198195050700 DEPTH 33 1 0.76281513334082585 1 7 1 7 0 0 150 62 2508 23664775 81600 865.96080017089844 5.8391999999999999 1104.365 120960 61207 1 0 5898240 4423680 4423680 4426374 4492800 174 150 150 150 1884 0 0 0 0 62 0 0 0 0 0 +1407 1783721199234597200 DEPTH 37 1 0.72118439593893524 1 12 1 12 0 0 105 36 2588 23664843 81600 856.9189453125 5.8554000000000004 1038.3823 120960 59194 1 0 5898240 4423680 4423680 4426443 4492800 325 150 158 165 1790 5 0 0 0 31 0 0 0 0 0 +1408 1783721200266235800 DEPTH 34 1 0.71799822597665575 1 13 1 13 1 0 92 28 2568 23664784 81600 853.84132385253906 5.8720000000000008 1030.4534000000001 120960 56768 1 0 5898240 4423680 4423680 4426383 4492800 150 150 150 150 1968 0 1 1 0 26 0 0 0 0 1 +1409 1783721201310931500 DEPTH 24 1 0.715053140143879 4 11 4 11 0 0 118 62 2517 23664930 81600 859.92233276367188 5.9046000000000003 1043.598 120960 56704 1 0 5898240 4423680 4423680 4426529 4492800 155 150 150 150 1912 0 0 0 1 61 0 0 0 0 0 +1410 1783721202395814700 DEPTH 16 1 0.71274999602061562 2 8 2 8 0 0 143 60 2512 23664930 81600 865.15800476074219 5.8784999999999998 1066.9068 120960 57396 1 0 5898240 4423680 4423680 4426527 4492800 156 150 150 150 1906 0 0 0 0 60 0 0 0 0 0 +1411 1783721203736433000 DEPTH 52 1 0.7126646682738389 1 8 1 8 0 0 82 15 2624 23664835 81600 850.92044067382812 5.8408000000000007 1303.1301000000001 120960 63340 1 0 5898240 4423680 4423680 4426433 4492800 1249 150 321 340 564 2 0 0 0 13 0 0 0 0 0 +1412 1783721204765915800 DEPTH 51 1 0.78078770382154694 3 12 3 12 1 0 83 28 2539 23664862 81600 846.49967956542969 5.8568999999999996 1028.2639999999999 120960 46439 1 0 5898240 4423680 4423680 4426462 4492800 155 150 150 150 1934 0 0 0 0 28 0 0 0 0 2 +1413 1783721206017984800 DEPTH 53 1 0.75220418300277903 0 8 0 8 1 0 110 58 2516 23664844 81600 858.86497497558594 5.8515000000000006 1250.8417999999999 120960 59019 1 0 5898240 4423680 4423680 4426442 4492800 150 150 156 150 1910 0 0 1 0 57 0 0 0 0 1 +1414 1783721207048608000 DEPTH 3 1 0.74554996744478252 2 11 2 11 1 0 106 57 2567 23664956 81600 851.78982543945312 5.8536000000000001 1029.5003999999999 120960 57549 1 0 5898240 4423680 4423680 4426555 4492800 150 150 150 150 1967 0 0 0 0 57 0 0 0 0 3 +1415 1783721208410300800 DEPTH 56 1 0.7685948942969113 2 5 2 5 0 0 138 39 2576 23664774 81600 848.46031188964844 5.8583999999999996 1303.2388000000001 120960 53822 1 0 5898240 4423680 4423680 4426373 4492800 281 150 212 429 1504 0 0 0 0 39 0 0 0 0 0 +1416 1783721209734930500 DEPTH 17 1 0.77168425670259511 0 7 0 7 1 0 133 29 2547 23664844 81600 849.8564453125 5.8416000000000006 1323.4761000000001 120960 54205 1 0 5898240 4423680 4423680 4426442 4492800 169 150 193 277 1758 0 0 0 0 29 0 0 0 0 1 +1417 1783721210815591600 DEPTH 2 1 0.7082901678763398 2 12 2 12 1 0 95 54 2573 23664814 81600 864.15516662597656 5.8787000000000003 1050.8671999999999 120960 55956 1 0 5898240 4423680 4423680 4426409 4492800 210 150 175 259 1779 0 0 0 0 54 0 0 0 0 1 +1418 1783721212180357300 DEPTH 44 1 0.70377077337188909 2 7 2 7 0 0 102 25 2568 23664824 81600 857.39640808105469 5.8791000000000002 1320.7795000000001 120960 59233 1 0 5898240 4423680 4423680 4426421 4492800 150 150 150 150 1968 0 0 0 0 25 0 0 0 0 0 +1419 1783721213240280700 DEPTH 58 1 0.70143874964566 2 13 2 13 1 0 95 42 2609 23664864 81600 855.59568786621094 5.9184999999999999 1043.8166000000001 120960 64564 1 0 5898240 4423680 4423680 4426463 4492800 151 150 151 150 2007 0 2 0 0 40 0 0 0 0 3 +1420 1783721214324782700 DEPTH 8 1 0.76431961795222791 2 5 2 5 0 0 190 50 2493 23664809 81600 861.750244140625 5.8601999999999999 1053.3027 120960 54650 1 0 5898240 4423680 4423680 4426408 4492800 168 159 150 160 1856 0 0 0 0 50 0 0 0 0 0 +1421 1783721215652260000 DEPTH 1 1 0.76538153783308271 1 7 1 7 0 0 110 35 2590 23664899 81600 856.80841064453125 5.8963999999999999 1326.3807999999999 120960 51753 1 0 5898240 4423680 4423680 4426499 4492800 295 150 174 206 1765 0 0 0 0 35 0 0 0 0 0 +1422 1783721216971118900 DEPTH 13 1 0.7720888998259654 1 6 1 6 0 0 146 23 2505 23664842 81600 850.05322265625 5.8536999999999999 1282.7277999999999 120960 53620 1 0 5898240 4423680 4423680 4426441 4492800 191 150 165 249 1750 0 0 0 0 23 0 0 0 0 0 +1423 1783721218246119300 DEPTH 9 1 0.73579746938867885 2 6 2 6 0 0 99 16 2598 23664833 81600 858.04486083984375 5.8672999999999993 1273.9206999999999 120960 51137 1 0 5898240 4423680 4423680 4426433 4492800 209 150 162 175 1902 0 0 0 0 16 0 0 0 0 0 +1424 1783721219315628400 DEPTH 47 1 0.70113110880846707 2 11 2 11 1 0 97 34 2573 23664796 81600 859.50421142578125 5.8719999999999999 1043.9139 120960 57300 1 0 5898240 4423680 4423680 4426395 4492800 156 150 150 150 1967 0 0 0 0 34 0 0 0 0 1 +1425 1783721220384525500 DEPTH 57 1 0.70110838650764307 2 13 2 13 1 0 90 79 2543 23664890 81600 855.39088439941406 5.8596000000000004 1036.9744000000001 120960 64525 1 0 5898240 4423680 4423680 4426490 4492800 150 150 162 240 1841 0 0 0 1 78 0 0 0 0 1 +1426 1783721221471094200 DEPTH 10 1 0.70109733530290774 1 11 1 11 0 0 95 19 2576 23664834 81600 853.31033325195312 5.8607999999999993 1042.8044 120960 56418 1 0 5898240 4423680 4423680 4426434 4492800 153 150 150 150 1973 0 0 0 0 19 0 0 0 0 0 +1427 1783721222548331400 DEPTH 43 1 0.70100727050687839 2 13 2 13 1 0 87 96 2543 23664808 81600 856.73252868652344 5.8552 1037.7887000000001 120960 64200 1 0 5898240 4423680 4423680 4426408 4492800 150 150 154 170 1919 0 0 1 1 94 0 0 0 0 3 +1428 1783721222728855500 REFRESH 58 0 0.5367161142016329 2 13 2 13 0 0 98 14 413 3943917 55200 149.1619873046875 0.97840000000000005 179.2903 20160 12062 0 0 983040 737280 737280 737517 748800 27 25 26 26 309 0 1 0 1 12 0 0 0 0 0 +1429 1783721222934968400 REFRESH 25 0 0.6876128433419576 3 11 3 11 0 0 79 9 423 3943895 55200 150.57405090332031 0.97599999999999998 181.31229999999999 20160 12278 0 0 983040 737280 737280 737494 748800 109 25 42 43 204 0 0 0 0 9 0 0 0 0 0 +1430 1783721223128539700 REFRESH 4 0 0.67185588692072407 1 13 1 13 1 0 40 10 427 3943921 55200 148.83328247070312 0.98129999999999995 178.0771 20160 13899 0 0 983040 737280 737280 737521 748800 32 25 37 39 294 0 0 0 0 10 0 0 0 0 1 +1431 1783721223336875800 REFRESH 51 0 0.78828165989780197 3 12 3 12 1 0 83 10 409 3943902 55200 149.28895568847656 0.99550000000000005 178.91810000000001 20160 11858 0 0 983040 737280 737280 737502 748800 46 25 27 26 285 0 0 0 0 10 0 0 0 0 1 +1432 1783721223565666300 REFRESH 11 0 0.74216462520140813 0 8 0 8 0 0 87 7 430 3943873 55200 149.71186828613281 0.97929999999999995 227.70419999999999 20160 12473 0 0 983040 737280 737280 737473 748800 162 25 58 99 86 1 0 0 0 6 0 0 0 0 0 +1433 1783721223769400400 REFRESH 26 0 0.69668841160884876 1 13 1 13 0 0 61 9 425 3943923 55200 149.1937255859375 0.97789999999999999 178.63679999999999 20160 12744 0 0 983040 737280 737280 737523 748800 34 25 35 50 281 0 0 0 0 9 0 0 0 0 0 +1434 1783721223964052300 REFRESH 9 0 0.61198710008565693 2 6 2 6 0 0 99 6 422 3943910 55200 150.67852783203125 0.98040000000000005 193.28870000000001 20160 13180 0 0 983040 737280 737280 737510 748800 38 25 27 29 303 0 0 0 0 6 0 0 0 0 0 +1435 1783721224155177300 REFRESH 53 0 0.71980491103432265 0 8 0 8 0 0 110 11 417 3943925 55200 151.13215637207031 0.98240000000000005 189.87190000000001 20160 12538 0 0 983040 737280 737280 737525 748800 96 35 35 40 211 0 0 0 0 11 0 0 0 0 0 +1436 1783721224360938200 REFRESH 23 0 0.70009746878602552 3 14 3 14 0 0 84 14 419 3943921 55200 149.90438842773438 0.9788 180.94380000000001 20160 13775 0 0 983040 737280 737280 737521 748800 25 25 25 25 319 0 0 0 0 14 0 0 0 0 0 +1437 1783721224542151600 REFRESH 37 0 0.71330210944151928 1 12 1 12 0 0 105 16 411 3943916 55200 149.89619445800781 0.98040000000000005 180.0754 20160 12303 0 0 983040 737280 737280 737516 748800 135 25 28 28 195 0 0 0 0 16 0 0 0 0 0 +1438 1783721224764446600 REFRESH 8 0 0.79279838193658825 2 5 2 5 0 0 191 7 416 3943923 55200 151.41069030761719 0.98109999999999997 183.58920000000001 20160 13446 0 0 983040 737280 737280 737523 748800 64 30 27 28 267 0 0 0 0 7 0 0 0 0 0 +1439 1783721224959377400 REFRESH 18 0 0.69593980282459689 4 15 4 15 1 0 77 22 420 3943902 55200 150.40818786621094 0.98160000000000003 181.0034 20160 13879 0 0 983040 737280 737280 737501 748800 25 25 27 26 317 0 0 0 1 21 0 0 0 0 1 +1440 1783721225151905000 REFRESH 32 0 0.69774781860193602 2 14 2 14 0 0 96 18 417 3943905 55200 149.41798400878906 0.98229999999999995 179.73390000000001 20160 12651 0 0 983040 737280 737280 737505 748800 27 25 27 26 312 0 0 0 0 18 0 0 0 0 0 +1441 1783721225334208300 REFRESH 47 0 0.61595511811632309 2 11 2 11 0 0 98 11 423 3943923 55200 149.82759094238281 0.97389999999999999 181.1429 20160 12146 0 0 983040 737280 737280 737523 748800 59 25 26 25 288 0 0 0 0 11 0 0 0 0 0 +1442 1783721225530061300 REFRESH 38 0 0.69789005348652888 4 14 4 14 0 0 71 14 419 3943936 55200 150.42355346679688 0.98350000000000004 179.6191 20160 13710 0 0 983040 737280 737280 737536 748800 26 25 27 26 315 0 0 0 0 14 0 0 0 0 0 +1443 1783721225726505900 REFRESH 6 0 0.70031036463611418 3 14 3 14 0 0 82 16 416 3943903 55200 150.05183410644531 0.98050000000000004 180.548 20160 13909 0 0 983040 737280 737280 737501 748800 29 25 35 34 293 0 0 0 0 16 0 0 0 0 0 +1444 1783721225922589000 REFRESH 27 0 0.69846106168735222 0 14 0 14 0 0 88 14 416 3943889 55200 149.67910766601562 0.97989999999999999 180.13839999999999 20160 12777 0 0 983040 737280 737280 737489 748800 26 25 25 26 314 0 0 0 1 13 0 0 0 0 0 +1445 1783721226139758900 REFRESH 13 0 0.82216040584416805 1 6 1 6 0 0 146 2 415 3943913 55200 151.31356811523438 0.97929999999999995 199.0522 20160 13429 0 0 983040 737280 737280 737512 748800 130 25 47 108 105 0 0 0 0 2 0 0 0 0 0 +1446 1783721226336343500 REFRESH 36 0 0.69930221923822744 3 10 3 10 0 0 88 9 417 3943922 55200 149.62380981445312 0.97519999999999996 180.5428 20160 11940 0 0 983040 737280 737280 737522 748800 31 25 31 35 295 0 0 0 0 9 0 0 0 0 0 +1447 1783721226560912100 REFRESH 52 0 0.70998454910640996 1 8 1 8 0 0 82 5 434 3943908 55200 149.18655395507812 0.98099999999999998 223.3681 20160 13431 0 0 983040 737280 737280 737508 748800 226 25 59 43 81 0 0 0 0 5 0 0 0 0 0 +1448 1783721226743669100 REFRESH 10 0 0.66720469445431696 1 11 1 11 0 0 95 6 415 3943934 55200 149.67500305175781 0.98099999999999998 181.69059999999999 20160 11981 0 0 983040 737280 737280 737534 748800 31 25 29 25 305 0 0 0 0 6 0 0 0 0 0 +1449 1783721226940731300 REFRESH 22 0 0.70124793320610834 3 12 3 12 0 0 100 17 418 3943914 55200 150.33351135253906 0.9798 181.48060000000001 20160 12823 0 0 983040 737280 737280 737512 748800 26 25 25 26 316 0 0 0 1 16 0 0 0 0 0 +1450 1783721227124339800 REFRESH 2 0 0.70172009258618417 2 12 2 12 0 0 95 8 422 3943903 55200 151.00927734375 0.97799999999999998 182.52699999999999 20160 12014 0 0 983040 737280 737280 737503 748800 51 25 32 52 262 0 0 0 0 8 0 0 0 0 0 +1451 1783721227330892900 REFRESH 46 0 0.70027070766030408 2 15 2 15 1 0 82 17 416 3943908 55200 149.75456237792969 0.9819 181.5771 20160 13739 0 0 983040 737280 737280 737508 748800 27 25 26 25 313 0 0 0 0 17 0 0 0 0 1 +1452 1783721227539742600 REFRESH 41 0 0.69466924947913578 1 10 1 10 0 0 87 6 417 3943902 55200 148.88038635253906 0.97529999999999994 191.73519999999999 20160 12505 0 0 983040 737280 737280 737500 748800 55 25 30 51 256 0 0 0 0 6 0 0 0 0 0 +1453 1783721227750584100 REFRESH 21 0 0.69793798163991905 0 10 0 10 0 0 146 12 421 3943925 55200 149.96992492675781 0.98229999999999995 193.22370000000001 20160 12675 0 0 983040 737280 737280 737525 748800 129 25 59 33 175 0 0 0 0 12 0 0 0 0 0 +1454 1783721227946013200 REFRESH 39 0 0.70063894817545724 2 12 2 12 0 0 115 10 412 3943893 55200 149.2359619140625 0.98440000000000005 180.31319999999999 20160 11930 0 0 983040 737280 737280 737493 748800 33 25 30 30 294 0 0 0 0 10 0 0 0 0 0 +1455 1783721228140674400 REFRESH 0 0 0.69739114164156413 1 12 1 12 1 0 71 9 427 3943926 55200 149.18963623046875 0.98440000000000005 179.48820000000001 20160 12002 0 0 983040 737280 737280 737526 748800 31 25 25 54 292 0 0 0 0 9 0 0 0 0 1 +1456 1783721228322944100 REFRESH 43 0 0.69658943376522542 2 13 2 13 1 0 87 16 408 3943914 55200 150.18095397949219 0.99919999999999998 181.0992 20160 11984 0 0 983040 737280 737280 737514 748800 40 25 36 42 265 0 0 0 0 16 0 0 0 0 1 +1457 1783721228529113800 REFRESH 19 0 0.70016841175149891 3 11 3 11 0 0 96 15 422 3943919 55200 149.93510437011719 0.9839 180.62649999999999 20160 12084 0 0 983040 737280 737280 737519 748800 25 25 25 25 322 0 0 1 0 14 0 0 0 0 0 +1458 1783721228726398700 REFRESH 28 0 0.70131821735653943 2 13 2 13 0 0 96 13 405 3943918 55200 150.01600646972656 0.98209999999999997 181.71979999999999 20160 12810 0 0 983040 737280 737280 737517 748800 27 25 27 33 293 0 0 0 0 13 0 0 0 0 0 +1459 1783721228924184700 REFRESH 50 0 0.68169389374770173 2 9 2 9 0 0 101 6 423 3943913 55200 149.99040222167969 0.97750000000000004 180.61619999999999 20160 13057 0 0 983040 737280 737280 737512 748800 142 25 49 79 128 0 0 0 1 5 0 0 0 0 0 +1460 1783721229107068000 REFRESH 24 0 0.70730520625123838 4 11 4 11 0 0 118 11 405 3943895 55200 150.80653381347656 0.98460000000000003 181.72499999999999 20160 11932 0 0 983040 737280 737280 737494 748800 101 27 25 26 226 0 0 0 0 11 0 0 0 0 0 +1461 1783721229313629700 REFRESH 49 0 0.70063803407912029 3 10 3 10 0 0 114 10 409 3943889 55200 150.24333190917969 0.98399999999999999 181.78229999999999 20160 11958 0 0 983040 737280 737280 737489 748800 38 25 30 32 284 0 0 0 0 10 0 0 0 0 0 +1462 1783721229500126000 REFRESH 33 0 0.75905216334474612 1 7 1 7 0 0 150 6 416 3943909 55200 150.55667114257812 0.98109999999999997 185.37309999999999 20160 12951 0 0 983040 737280 737280 737509 748800 81 25 27 32 251 0 0 0 0 6 0 0 0 0 0 +1463 1783721229740515100 REFRESH 54 0 0.70047229545044354 1 8 1 8 0 0 88 3 425 3943911 55200 149.80403137207031 0.97319999999999995 223.952 20160 12656 0 0 983040 737280 737280 737511 748800 149 25 79 68 104 0 0 0 0 3 0 0 0 0 0 +1464 1783721229926890300 REFRESH 16 0 0.70842253353699025 2 8 2 8 0 0 143 6 412 3943933 55200 151.92985534667969 0.97670000000000001 185.28030000000001 20160 12216 0 0 983040 737280 737280 737533 748800 97 58 26 28 203 0 0 0 0 6 0 0 0 0 0 +1465 1783721230143724800 REFRESH 31 0 0.75215950691013411 2 6 2 6 0 0 88 8 429 3943904 55200 150.42037963867188 0.97760000000000002 215.69040000000001 20160 12935 0 0 983040 737280 737280 737503 748800 139 25 57 118 90 0 0 0 0 8 0 0 0 0 0 +1466 1783721230373664200 REFRESH 17 0 0.85139819442056208 0 7 0 7 0 0 133 7 414 3943922 55200 150.90684509277344 0.98880000000000001 228.75110000000001 20160 13343 0 0 983040 737280 737280 737522 748800 81 25 74 119 115 0 0 0 0 7 0 0 0 0 0 +1467 1783721230570005600 REFRESH 12 0 0.69602290413155465 3 8 3 8 0 0 125 16 412 3943919 55200 149.80915832519531 0.98060000000000003 180.63310000000001 20160 12157 0 0 983040 737280 737280 737518 748800 100 26 50 35 201 0 0 0 0 16 0 0 0 0 0 +1468 1783721230751042400 REFRESH 57 0 0.69687775532113094 2 13 2 13 0 0 90 14 415 3943893 55200 148.70220947265625 0.99939999999999996 179.8683 20160 12043 0 0 983040 737280 737280 737493 748800 29 25 30 42 289 0 0 0 0 14 0 0 0 0 0 +1469 1783721230931348600 REFRESH 3 0 0.73660319682499309 2 11 2 11 0 0 107 8 412 3943916 55200 149.42207336425781 0.98160000000000003 179.19710000000001 20160 12004 0 0 983040 737280 737280 737516 748800 31 25 25 25 306 0 0 0 0 8 0 0 0 0 0 +1470 1783721231118494500 REFRESH 45 0 0.74311977419152087 2 7 2 7 0 0 104 9 417 3943900 55200 151.43391418457031 0.98350000000000004 185.95349999999999 20160 13055 0 0 983040 737280 737280 737500 748800 115 25 34 49 194 0 0 0 0 9 0 0 0 0 0 +1471 1783721231333516500 REFRESH 1 0 0.76975826679868553 1 7 1 7 0 0 110 7 419 3943913 55200 150.50752258300781 0.98119999999999996 213.899 20160 13400 0 0 983040 737280 737280 737513 748800 164 25 44 58 128 0 0 0 0 7 0 0 0 0 0 +1472 1783721231547539800 REFRESH 14 0 0.69384176481458182 0 12 0 12 0 0 92 9 421 3943922 55200 151.03077697753906 0.97650000000000003 187.47380000000001 20160 12229 0 0 983040 737280 737280 737521 748800 136 25 26 51 183 0 0 0 0 9 0 0 0 0 0 +1473 1783721231740660800 REFRESH 5 0 0.6963441225254221 2 11 2 11 1 0 87 10 410 3943920 55200 148.08268737792969 0.97240000000000004 177.21010000000001 20160 13211 0 0 983040 737280 737280 737520 748800 197 25 43 44 101 0 0 0 0 10 0 0 0 0 1 +1474 1783721231960260500 REFRESH 44 0 0.70173183664853411 2 7 2 7 0 0 102 6 420 3943902 55200 150.25970458984375 0.98070000000000002 218.4127 20160 12539 0 0 983040 737280 737280 737502 748800 78 25 35 29 253 0 0 0 0 6 0 0 0 0 0 +1475 1783721232166099000 REFRESH 7 0 0.70019189727137743 2 12 2 12 0 0 89 13 415 3943918 55200 149.86752319335938 0.98319999999999996 180.4504 20160 12045 0 0 983040 737280 737280 737518 748800 33 25 36 29 292 0 1 0 0 12 0 0 0 0 0 +1476 1783721232360649800 REFRESH 40 0 0.69839966412220811 3 13 3 13 0 0 80 13 419 3943914 55200 148.80152893066406 0.98880000000000001 178.85319999999999 20160 12701 0 0 983040 737280 737280 737514 748800 46 25 52 67 229 0 0 0 0 13 0 0 0 0 0 +1477 1783721232556999000 REFRESH 35 0 0.69964238105420584 2 11 2 11 0 0 117 12 415 3943899 55200 149.30125427246094 0.97909999999999997 180.06649999999999 20160 12004 0 0 983040 737280 737280 737499 748800 28 25 33 25 304 0 0 0 0 12 0 0 0 0 0 +1478 1783721232753635700 REFRESH 55 0 0.68012609851443973 1 15 1 15 0 0 114 16 412 3943909 55200 150.49420166015625 0.9778 181.04589999999999 20160 12405 0 0 983040 737280 737280 737508 748800 26 25 25 25 311 0 0 0 0 16 0 0 0 0 0 +1479 1783721232950197000 REFRESH 30 0 0.69820359064118809 2 12 2 12 0 0 89 17 403 3943903 55200 149.27565002441406 0.98219999999999996 179.9392 20160 11974 0 0 983040 737280 737280 737503 748800 65 25 36 46 231 0 0 0 0 17 0 0 0 0 0 +1480 1783721233145611900 REFRESH 20 0 0.70150266192771238 3 12 3 12 0 0 78 18 414 3943918 55200 150.03135681152344 0.9819 179.44460000000001 20160 12831 0 0 983040 737280 737280 737518 748800 26 25 25 27 311 0 0 0 0 18 0 0 0 0 0 +1481 1783721233345271500 REFRESH 29 0 0.70097551190114182 2 12 2 12 0 0 89 12 418 3943910 55200 149.34835815429688 0.97960000000000003 182.63079999999999 20160 12040 0 0 983040 737280 737280 737510 748800 26 25 25 25 317 0 0 0 0 12 0 0 0 0 0 +1482 1783721233540492000 REFRESH 15 0 0.7015192598759975 3 12 3 12 0 0 70 11 417 3943897 55200 150.43276977539062 0.9708 181.4521 20160 12788 0 0 983040 737280 737280 737496 748800 25 25 26 25 316 0 0 0 0 11 0 0 0 0 0 +1483 1783721233767503400 REFRESH 42 0 0.69837255398371634 3 13 3 13 0 0 90 22 423 3943924 55200 150.13786315917969 0.97350000000000003 180.89599999999999 20160 12694 0 0 983040 737280 737280 737523 748800 25 25 30 30 313 0 0 1 1 20 0 0 0 0 0 +1484 1783721233959143100 REFRESH 48 0 0.67812340896165746 2 12 2 12 0 0 47 5 423 3943917 55200 148.71449279785156 0.97999999999999998 177.87549999999999 20160 12711 0 0 983040 737280 737280 737516 748800 40 25 50 54 254 0 0 0 0 5 0 0 0 0 0 +1485 1783721234138563900 REFRESH 34 0 0.71121478309281583 1 13 1 13 0 0 92 10 410 3943933 55200 149.718017578125 0.9839 178.2774 20160 12089 0 0 983040 737280 737280 737532 748800 28 25 25 25 307 0 0 1 1 8 0 0 0 0 0 +1486 1783721234367862400 REFRESH 56 0 0.84822815643593974 2 5 2 5 0 0 138 3 420 3943877 55200 151.47212219238281 0.97570000000000001 228.07570000000001 20160 13597 0 0 983040 737280 737280 737477 748800 117 25 73 123 82 0 0 0 0 3 0 0 0 0 0 +1487 1783721235425998900 DEPTH 8 1 0.85853071195922204 2 5 2 5 0 0 191 48 2489 23664823 81600 868.52784729003906 5.8340999999999994 1057.0251000000001 120960 66474 1 0 5898240 4423680 4423680 4426422 4492800 168 156 150 156 1859 0 0 0 0 48 0 0 0 0 0 +1488 1783721236718258100 DEPTH 13 1 0.83425336483630708 1 6 1 6 0 0 148 33 2506 23664764 81600 857.33485412597656 5.8684000000000003 1291.1578999999999 120960 65209 1 0 5898240 4423680 4423680 4426364 4492800 207 150 168 225 1756 0 0 0 0 33 0 0 0 0 0 +1489 1783721237420155600 DEPTH 51 1 0.82811347075903285 3 12 3 12 1 0 84 22 1697 15776591 58560 576.94309997558594 3.9227000000000003 700.67669999999998 80640 40457 0 0 3932160 2949120 2949120 2950991 2995200 109 100 100 100 1288 0 0 0 1 21 0 0 0 0 1 diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/run.tsv b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/run.tsv new file mode 100644 index 00000000..95d87264 --- /dev/null +++ b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/run.tsv @@ -0,0 +1,28 @@ +format szilassi-global-search-v3 +run_id b560c3b4-4e30-4b14-9d6a-34a123af2aba +node_id LOOKICH +seed 1887507795 +topology_from 0 +topology_to 58 +backend cuda-fp32 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-quality,full-refresh-every-5 +cpu_iterations_per_trial 50000 +degeneracy_weight 0.02 diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000001_771b10c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000001_771b10c7.szar new file mode 100644 index 00000000..ab72021f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000001_771b10c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000002_110c14e1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000002_110c14e1.szar new file mode 100644 index 00000000..196c46b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000002_110c14e1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000003_30a56e3e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000003_30a56e3e.szar new file mode 100644 index 00000000..30dd5494 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000003_30a56e3e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000004_66bb6ff1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000004_66bb6ff1.szar new file mode 100644 index 00000000..41522519 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000004_66bb6ff1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000005_94c826f6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000005_94c826f6.szar new file mode 100644 index 00000000..d5c2650d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000005_94c826f6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000006_14957581.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000006_14957581.szar new file mode 100644 index 00000000..e3b34a3a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000006_14957581.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000007_17783a64.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000007_17783a64.szar new file mode 100644 index 00000000..ed76a18f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000007_17783a64.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000008_66b5d87b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000008_66b5d87b.szar new file mode 100644 index 00000000..02c0d5a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000008_66b5d87b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000009_17b7f80f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000009_17b7f80f.szar new file mode 100644 index 00000000..ac749217 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000009_17b7f80f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000010_5dc05cd1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000010_5dc05cd1.szar new file mode 100644 index 00000000..840b9c57 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000010_5dc05cd1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000011_4b9868e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000011_4b9868e8.szar new file mode 100644 index 00000000..9adcce06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000011_4b9868e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000012_8d7c7793.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000012_8d7c7793.szar new file mode 100644 index 00000000..fdfbc879 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000012_8d7c7793.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000013_7d47d8ad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000013_7d47d8ad.szar new file mode 100644 index 00000000..16fae869 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000013_7d47d8ad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000014_2cb50b1a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000014_2cb50b1a.szar new file mode 100644 index 00000000..bb133af6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000014_2cb50b1a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000015_35eddc95.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000015_35eddc95.szar new file mode 100644 index 00000000..5aa2f48c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000015_35eddc95.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000016_617487a8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000016_617487a8.szar new file mode 100644 index 00000000..7615a304 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000016_617487a8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000017_5b63f884.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000017_5b63f884.szar new file mode 100644 index 00000000..06b032a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000017_5b63f884.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000018_e113d06d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000018_e113d06d.szar new file mode 100644 index 00000000..f5d32dd0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/archive/delta_00000000000000000018_e113d06d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000001_d44feeeb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000001_d44feeeb.szcp new file mode 100644 index 00000000..2f0f6a15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000001_d44feeeb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000002_0480b950.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000002_0480b950.szcp new file mode 100644 index 00000000..a228a9f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000002_0480b950.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000003_88f998f3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000003_88f998f3.szcp new file mode 100644 index 00000000..f05d6cad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000003_88f998f3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000004_34d187c6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000004_34d187c6.szcp new file mode 100644 index 00000000..42c9816c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000004_34d187c6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000005_d3b2728d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000005_d3b2728d.szcp new file mode 100644 index 00000000..01c1c42b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000005_d3b2728d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000006_dc00a9a0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000006_dc00a9a0.szcp new file mode 100644 index 00000000..0c2f97dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000006_dc00a9a0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000007_7c58a109.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000007_7c58a109.szcp new file mode 100644 index 00000000..f9a502df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000007_7c58a109.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000008_60a3ef84.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000008_60a3ef84.szcp new file mode 100644 index 00000000..7adc3f49 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000008_60a3ef84.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000009_d430f71a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000009_d430f71a.szcp new file mode 100644 index 00000000..6ad2a218 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000009_d430f71a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000010_8d07ba80.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000010_8d07ba80.szcp new file mode 100644 index 00000000..fea708d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000010_8d07ba80.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000011_6990879a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000011_6990879a.szcp new file mode 100644 index 00000000..f07d02e2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000011_6990879a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000012_d21416c2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000012_d21416c2.szcp new file mode 100644 index 00000000..e35fa84e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000012_d21416c2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000013_0cbc5fdf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000013_0cbc5fdf.szcp new file mode 100644 index 00000000..40d45124 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000013_0cbc5fdf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000014_e1512f8a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000014_e1512f8a.szcp new file mode 100644 index 00000000..15d06171 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000014_e1512f8a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000015_d8bf8781.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000015_d8bf8781.szcp new file mode 100644 index 00000000..eb5c9fc7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000015_d8bf8781.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000016_edfb4a47.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000016_edfb4a47.szcp new file mode 100644 index 00000000..671fe64a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000016_edfb4a47.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000017_caf7f99a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000017_caf7f99a.szcp new file mode 100644 index 00000000..257de1d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000017_caf7f99a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000018_92d91388.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000018_92d91388.szcp new file mode 100644 index 00000000..bb24d2ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_000/checkpoints/checkpoint_00000000000000000018_92d91388.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000001_7adc64a0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000001_7adc64a0.szar new file mode 100644 index 00000000..ea372916 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000001_7adc64a0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000002_734441eb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000002_734441eb.szar new file mode 100644 index 00000000..6bf18e1e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000002_734441eb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000003_7c53ddab.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000003_7c53ddab.szar new file mode 100644 index 00000000..f772c9fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000003_7c53ddab.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000004_318f698c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000004_318f698c.szar new file mode 100644 index 00000000..6589042e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000004_318f698c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000005_7f2f5bc8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000005_7f2f5bc8.szar new file mode 100644 index 00000000..f9a57d1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000005_7f2f5bc8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000006_aca5690d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000006_aca5690d.szar new file mode 100644 index 00000000..4db18a02 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000006_aca5690d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000007_9cb90fbc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000007_9cb90fbc.szar new file mode 100644 index 00000000..bbf72556 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000007_9cb90fbc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000008_ee7bfea4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000008_ee7bfea4.szar new file mode 100644 index 00000000..e7c45eab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000008_ee7bfea4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000009_6e0cf5b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000009_6e0cf5b8.szar new file mode 100644 index 00000000..a33b00d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000009_6e0cf5b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000010_a5e70086.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000010_a5e70086.szar new file mode 100644 index 00000000..bfb6e087 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000010_a5e70086.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000011_f5b4ab29.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000011_f5b4ab29.szar new file mode 100644 index 00000000..78aab022 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000011_f5b4ab29.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000012_56e57559.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000012_56e57559.szar new file mode 100644 index 00000000..2b328a10 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000012_56e57559.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000013_504ee594.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000013_504ee594.szar new file mode 100644 index 00000000..4ef60acf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000013_504ee594.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000014_c4e67405.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000014_c4e67405.szar new file mode 100644 index 00000000..a0c8be61 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000014_c4e67405.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000015_ee69040b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000015_ee69040b.szar new file mode 100644 index 00000000..acfb57c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000015_ee69040b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000016_76b080ac.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000016_76b080ac.szar new file mode 100644 index 00000000..3371d2dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000016_76b080ac.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000017_c0e7c8c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000017_c0e7c8c2.szar new file mode 100644 index 00000000..db2a087b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000017_c0e7c8c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000018_6a9edce6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000018_6a9edce6.szar new file mode 100644 index 00000000..9285a680 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000018_6a9edce6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000019_84cd48f2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000019_84cd48f2.szar new file mode 100644 index 00000000..69222fe5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000019_84cd48f2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000020_3f296243.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000020_3f296243.szar new file mode 100644 index 00000000..b7f04516 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000020_3f296243.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000021_8172a085.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000021_8172a085.szar new file mode 100644 index 00000000..1a39b35e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000021_8172a085.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000022_323eb4f5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000022_323eb4f5.szar new file mode 100644 index 00000000..038d9fee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000022_323eb4f5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000023_a48abfca.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000023_a48abfca.szar new file mode 100644 index 00000000..302ca7ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000023_a48abfca.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000024_fe7a5cda.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000024_fe7a5cda.szar new file mode 100644 index 00000000..b78f1fc2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000024_fe7a5cda.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000025_3b7c4fe6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000025_3b7c4fe6.szar new file mode 100644 index 00000000..0daa6f42 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000025_3b7c4fe6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000026_f6226edc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000026_f6226edc.szar new file mode 100644 index 00000000..1ccbace9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000026_f6226edc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000027_ad5e6fb3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000027_ad5e6fb3.szar new file mode 100644 index 00000000..81893fd5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/archive/delta_00000000000000000027_ad5e6fb3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000001_e3a31b4f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000001_e3a31b4f.szcp new file mode 100644 index 00000000..e60418aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000001_e3a31b4f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000002_6bce46f0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000002_6bce46f0.szcp new file mode 100644 index 00000000..5c67db0c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000002_6bce46f0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000003_b34b080b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000003_b34b080b.szcp new file mode 100644 index 00000000..7a40d13f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000003_b34b080b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000004_66d536ec.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000004_66d536ec.szcp new file mode 100644 index 00000000..d7c35744 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000004_66d536ec.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000005_1735657b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000005_1735657b.szcp new file mode 100644 index 00000000..18910dbd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000005_1735657b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000006_2105b081.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000006_2105b081.szcp new file mode 100644 index 00000000..85a194e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000006_2105b081.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000007_00a3ab55.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000007_00a3ab55.szcp new file mode 100644 index 00000000..26593db5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000007_00a3ab55.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000008_ffb6dba0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000008_ffb6dba0.szcp new file mode 100644 index 00000000..52549be0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000008_ffb6dba0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000009_17693fff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000009_17693fff.szcp new file mode 100644 index 00000000..3eaaa7c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000009_17693fff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000010_3dc5738b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000010_3dc5738b.szcp new file mode 100644 index 00000000..2b3fce54 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000010_3dc5738b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000011_e99f361e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000011_e99f361e.szcp new file mode 100644 index 00000000..53e15df4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000011_e99f361e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000012_bb32efa0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000012_bb32efa0.szcp new file mode 100644 index 00000000..3be1a5f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000012_bb32efa0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000013_a8ad29cc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000013_a8ad29cc.szcp new file mode 100644 index 00000000..8bbc4349 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000013_a8ad29cc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000014_019aa72c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000014_019aa72c.szcp new file mode 100644 index 00000000..ce0af2b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000014_019aa72c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000015_2c272ba4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000015_2c272ba4.szcp new file mode 100644 index 00000000..79e9d9d4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000015_2c272ba4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000016_79c3b4ff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000016_79c3b4ff.szcp new file mode 100644 index 00000000..9999a414 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000016_79c3b4ff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000017_f85c179d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000017_f85c179d.szcp new file mode 100644 index 00000000..8f94ec2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000017_f85c179d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000018_b5ea6f6e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000018_b5ea6f6e.szcp new file mode 100644 index 00000000..e6a67fd8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000018_b5ea6f6e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000019_e1a248db.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000019_e1a248db.szcp new file mode 100644 index 00000000..cb07b1a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000019_e1a248db.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000020_be88fbfc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000020_be88fbfc.szcp new file mode 100644 index 00000000..5ff06665 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000020_be88fbfc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000021_31df9bdb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000021_31df9bdb.szcp new file mode 100644 index 00000000..5ba5cff3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000021_31df9bdb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000022_8be7444a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000022_8be7444a.szcp new file mode 100644 index 00000000..ef850a82 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000022_8be7444a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000023_58c719b2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000023_58c719b2.szcp new file mode 100644 index 00000000..af87d44a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000023_58c719b2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000024_29c776bb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000024_29c776bb.szcp new file mode 100644 index 00000000..f1a45d09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000024_29c776bb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000025_da8488b3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000025_da8488b3.szcp new file mode 100644 index 00000000..8b2a34fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000025_da8488b3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000026_50e2cfc3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000026_50e2cfc3.szcp new file mode 100644 index 00000000..bfbc1a0b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000026_50e2cfc3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000027_20684e44.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000027_20684e44.szcp new file mode 100644 index 00000000..4c92725b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_001/checkpoints/checkpoint_00000000000000000027_20684e44.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000001_c182418f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000001_c182418f.szar new file mode 100644 index 00000000..eeec1e46 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000001_c182418f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000002_95baadf2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000002_95baadf2.szar new file mode 100644 index 00000000..82241e09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000002_95baadf2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000003_054c5570.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000003_054c5570.szar new file mode 100644 index 00000000..0279b96b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000003_054c5570.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000004_ddb4be93.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000004_ddb4be93.szar new file mode 100644 index 00000000..e241f7ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000004_ddb4be93.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000005_b4cfd8cd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000005_b4cfd8cd.szar new file mode 100644 index 00000000..ed1865f3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000005_b4cfd8cd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000006_ecbd2b5e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000006_ecbd2b5e.szar new file mode 100644 index 00000000..faa4d47d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000006_ecbd2b5e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000007_936ef5b6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000007_936ef5b6.szar new file mode 100644 index 00000000..1f181384 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000007_936ef5b6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000008_a30d6b26.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000008_a30d6b26.szar new file mode 100644 index 00000000..323159af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000008_a30d6b26.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000009_62507f5c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000009_62507f5c.szar new file mode 100644 index 00000000..765bc6f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000009_62507f5c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000010_6f5d7675.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000010_6f5d7675.szar new file mode 100644 index 00000000..9049549f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000010_6f5d7675.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000011_9f820a36.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000011_9f820a36.szar new file mode 100644 index 00000000..1d63af30 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000011_9f820a36.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000012_33d87442.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000012_33d87442.szar new file mode 100644 index 00000000..58f49360 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000012_33d87442.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000013_281e8e75.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000013_281e8e75.szar new file mode 100644 index 00000000..e4ef1c09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000013_281e8e75.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000014_eb810abb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000014_eb810abb.szar new file mode 100644 index 00000000..8fede0a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000014_eb810abb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000015_102e3eeb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000015_102e3eeb.szar new file mode 100644 index 00000000..52de26f1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000015_102e3eeb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000016_68745584.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000016_68745584.szar new file mode 100644 index 00000000..06de2f15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000016_68745584.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000017_a599000f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000017_a599000f.szar new file mode 100644 index 00000000..226e5ef9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000017_a599000f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000018_9ec996ad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000018_9ec996ad.szar new file mode 100644 index 00000000..43e46d9d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000018_9ec996ad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000019_bf38a6a2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000019_bf38a6a2.szar new file mode 100644 index 00000000..8b21d7ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000019_bf38a6a2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000020_9994efc5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000020_9994efc5.szar new file mode 100644 index 00000000..a7cff239 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000020_9994efc5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000021_ceb98a6d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000021_ceb98a6d.szar new file mode 100644 index 00000000..0ebb3c64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/archive/delta_00000000000000000021_ceb98a6d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000001_e1143989.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000001_e1143989.szcp new file mode 100644 index 00000000..cf8d571a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000001_e1143989.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000002_90efee39.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000002_90efee39.szcp new file mode 100644 index 00000000..01c5cb36 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000002_90efee39.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000003_e75d5702.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000003_e75d5702.szcp new file mode 100644 index 00000000..7ea74d2d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000003_e75d5702.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000004_8b1368c9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000004_8b1368c9.szcp new file mode 100644 index 00000000..dc7dabf3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000004_8b1368c9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000005_9cb54c20.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000005_9cb54c20.szcp new file mode 100644 index 00000000..53e5f3b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000005_9cb54c20.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000006_56c678ce.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000006_56c678ce.szcp new file mode 100644 index 00000000..cb231f2f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000006_56c678ce.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000007_d4d932a7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000007_d4d932a7.szcp new file mode 100644 index 00000000..c3fb082b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000007_d4d932a7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000008_8aa4031a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000008_8aa4031a.szcp new file mode 100644 index 00000000..c4b227a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000008_8aa4031a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000009_e0b04e55.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000009_e0b04e55.szcp new file mode 100644 index 00000000..e170691c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000009_e0b04e55.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000010_87d2d7f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000010_87d2d7f6.szcp new file mode 100644 index 00000000..51fb3c5c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000010_87d2d7f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000011_8a5d866e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000011_8a5d866e.szcp new file mode 100644 index 00000000..bab87725 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000011_8a5d866e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000012_8525997c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000012_8525997c.szcp new file mode 100644 index 00000000..99c94b35 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000012_8525997c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000013_91d8c62d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000013_91d8c62d.szcp new file mode 100644 index 00000000..eaa40d1b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000013_91d8c62d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000014_b1da8480.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000014_b1da8480.szcp new file mode 100644 index 00000000..e5d49cca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000014_b1da8480.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000015_3b3d284d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000015_3b3d284d.szcp new file mode 100644 index 00000000..65b4af1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000015_3b3d284d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000016_af393b9c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000016_af393b9c.szcp new file mode 100644 index 00000000..deb7d896 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000016_af393b9c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000017_53987916.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000017_53987916.szcp new file mode 100644 index 00000000..befe9711 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000017_53987916.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000018_144ba309.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000018_144ba309.szcp new file mode 100644 index 00000000..354c14ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000018_144ba309.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000019_42cf3f6a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000019_42cf3f6a.szcp new file mode 100644 index 00000000..dd0e28b0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000019_42cf3f6a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000020_84143994.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000020_84143994.szcp new file mode 100644 index 00000000..abefa1d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000020_84143994.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000021_37b607e0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000021_37b607e0.szcp new file mode 100644 index 00000000..b895ce79 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_002/checkpoints/checkpoint_00000000000000000021_37b607e0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000001_52eef5d9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000001_52eef5d9.szar new file mode 100644 index 00000000..6a92560b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000001_52eef5d9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000002_ff3bf414.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000002_ff3bf414.szar new file mode 100644 index 00000000..6efaf3f2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000002_ff3bf414.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000003_6045c589.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000003_6045c589.szar new file mode 100644 index 00000000..6a87b7bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000003_6045c589.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000004_e54b021d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000004_e54b021d.szar new file mode 100644 index 00000000..1b2c4e93 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000004_e54b021d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000005_7b2b4a6e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000005_7b2b4a6e.szar new file mode 100644 index 00000000..eb3d1506 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000005_7b2b4a6e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000006_0b84ef41.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000006_0b84ef41.szar new file mode 100644 index 00000000..ffbe4903 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000006_0b84ef41.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000007_44a53d78.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000007_44a53d78.szar new file mode 100644 index 00000000..3f8b5854 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000007_44a53d78.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000008_a652aa2d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000008_a652aa2d.szar new file mode 100644 index 00000000..634cc13a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000008_a652aa2d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000009_448806f9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000009_448806f9.szar new file mode 100644 index 00000000..d828c830 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000009_448806f9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000010_2775cc0e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000010_2775cc0e.szar new file mode 100644 index 00000000..381e62ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000010_2775cc0e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000011_59b18ff6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000011_59b18ff6.szar new file mode 100644 index 00000000..2dee7759 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000011_59b18ff6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000012_0dcede7c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000012_0dcede7c.szar new file mode 100644 index 00000000..52ec5995 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000012_0dcede7c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000013_a238092d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000013_a238092d.szar new file mode 100644 index 00000000..9de95dc1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000013_a238092d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000014_87eb365e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000014_87eb365e.szar new file mode 100644 index 00000000..ea7748f1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000014_87eb365e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000015_bcba1fd5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000015_bcba1fd5.szar new file mode 100644 index 00000000..ffe2761c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000015_bcba1fd5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000016_82bdad5f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000016_82bdad5f.szar new file mode 100644 index 00000000..966f5be6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000016_82bdad5f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000017_91851593.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000017_91851593.szar new file mode 100644 index 00000000..d0998df7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000017_91851593.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000018_4b8985fa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000018_4b8985fa.szar new file mode 100644 index 00000000..ea4cf58a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000018_4b8985fa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000019_24e209d4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000019_24e209d4.szar new file mode 100644 index 00000000..e1b6dd9e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000019_24e209d4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000020_557540af.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000020_557540af.szar new file mode 100644 index 00000000..a7c655d6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/archive/delta_00000000000000000020_557540af.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000001_c2e8fbcb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000001_c2e8fbcb.szcp new file mode 100644 index 00000000..f8623dbf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000001_c2e8fbcb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000002_62f6f703.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000002_62f6f703.szcp new file mode 100644 index 00000000..000da008 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000002_62f6f703.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000003_383ac5b7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000003_383ac5b7.szcp new file mode 100644 index 00000000..8a9fa4ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000003_383ac5b7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000004_07053e46.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000004_07053e46.szcp new file mode 100644 index 00000000..b3e73a54 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000004_07053e46.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000005_149420cf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000005_149420cf.szcp new file mode 100644 index 00000000..28e09317 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000005_149420cf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000006_321c2666.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000006_321c2666.szcp new file mode 100644 index 00000000..35964326 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000006_321c2666.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000007_a0fffd40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000007_a0fffd40.szcp new file mode 100644 index 00000000..0518aee4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000007_a0fffd40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000008_2bae2c2a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000008_2bae2c2a.szcp new file mode 100644 index 00000000..8f84716d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000008_2bae2c2a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000009_a3976073.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000009_a3976073.szcp new file mode 100644 index 00000000..e0fe73ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000009_a3976073.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000010_dd7cead2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000010_dd7cead2.szcp new file mode 100644 index 00000000..12bad586 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000010_dd7cead2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000011_2e50549d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000011_2e50549d.szcp new file mode 100644 index 00000000..707d49cb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000011_2e50549d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000012_c4886259.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000012_c4886259.szcp new file mode 100644 index 00000000..5ded6f10 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000012_c4886259.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000013_f691b980.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000013_f691b980.szcp new file mode 100644 index 00000000..a0b5a7ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000013_f691b980.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000014_74fcdbda.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000014_74fcdbda.szcp new file mode 100644 index 00000000..dc05560c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000014_74fcdbda.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000015_e91d7400.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000015_e91d7400.szcp new file mode 100644 index 00000000..a2725c3f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000015_e91d7400.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000016_1afc4e1b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000016_1afc4e1b.szcp new file mode 100644 index 00000000..f5bce0eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000016_1afc4e1b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000017_005e9bd4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000017_005e9bd4.szcp new file mode 100644 index 00000000..85341a7d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000017_005e9bd4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000018_ec761fa1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000018_ec761fa1.szcp new file mode 100644 index 00000000..01a73c85 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000018_ec761fa1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000019_e13272f5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000019_e13272f5.szcp new file mode 100644 index 00000000..ce55328b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000019_e13272f5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000020_a0e549de.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000020_a0e549de.szcp new file mode 100644 index 00000000..cb474f55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_003/checkpoints/checkpoint_00000000000000000020_a0e549de.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000001_76ed0fa2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000001_76ed0fa2.szar new file mode 100644 index 00000000..57bcb6d1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000001_76ed0fa2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000002_870ed621.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000002_870ed621.szar new file mode 100644 index 00000000..16b3e9b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000002_870ed621.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000003_4cbc5cd3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000003_4cbc5cd3.szar new file mode 100644 index 00000000..a200131b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000003_4cbc5cd3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000004_f33681ff.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000004_f33681ff.szar new file mode 100644 index 00000000..1f383741 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000004_f33681ff.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000005_090987d2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000005_090987d2.szar new file mode 100644 index 00000000..57462658 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000005_090987d2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000006_068d72e7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000006_068d72e7.szar new file mode 100644 index 00000000..a632deba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000006_068d72e7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000007_fc99261d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000007_fc99261d.szar new file mode 100644 index 00000000..a8cb27a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000007_fc99261d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000008_2d031204.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000008_2d031204.szar new file mode 100644 index 00000000..5065e20e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000008_2d031204.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000009_6a6308bd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000009_6a6308bd.szar new file mode 100644 index 00000000..a24f3a69 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000009_6a6308bd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000010_4715906a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000010_4715906a.szar new file mode 100644 index 00000000..c81e07a5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000010_4715906a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000011_c3f590ad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000011_c3f590ad.szar new file mode 100644 index 00000000..a90a6c1b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000011_c3f590ad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000012_f18e5f59.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000012_f18e5f59.szar new file mode 100644 index 00000000..b5994328 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000012_f18e5f59.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000013_9bb4f616.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000013_9bb4f616.szar new file mode 100644 index 00000000..418e2023 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000013_9bb4f616.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000014_a69bbdb8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000014_a69bbdb8.szar new file mode 100644 index 00000000..83df9060 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000014_a69bbdb8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000015_91d4221f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000015_91d4221f.szar new file mode 100644 index 00000000..1f451eda Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000015_91d4221f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000016_33d594f5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000016_33d594f5.szar new file mode 100644 index 00000000..859eeab9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/archive/delta_00000000000000000016_33d594f5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000001_b1af2ed1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000001_b1af2ed1.szcp new file mode 100644 index 00000000..46c521d4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000001_b1af2ed1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000002_2a63f6e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000002_2a63f6e5.szcp new file mode 100644 index 00000000..1e7cb537 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000002_2a63f6e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000003_9bf33899.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000003_9bf33899.szcp new file mode 100644 index 00000000..2fb38174 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000003_9bf33899.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000004_d526a0d7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000004_d526a0d7.szcp new file mode 100644 index 00000000..47d80f5d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000004_d526a0d7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000005_071d53b9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000005_071d53b9.szcp new file mode 100644 index 00000000..992bb5f9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000005_071d53b9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000006_56e9eea2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000006_56e9eea2.szcp new file mode 100644 index 00000000..426f9e22 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000006_56e9eea2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000007_38337436.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000007_38337436.szcp new file mode 100644 index 00000000..a3dccb18 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000007_38337436.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000008_ab5f2066.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000008_ab5f2066.szcp new file mode 100644 index 00000000..b40fdd17 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000008_ab5f2066.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000009_62a0a9c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000009_62a0a9c4.szcp new file mode 100644 index 00000000..98d6cb3a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000009_62a0a9c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000010_4863944f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000010_4863944f.szcp new file mode 100644 index 00000000..5ffab331 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000010_4863944f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000011_e9ec3910.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000011_e9ec3910.szcp new file mode 100644 index 00000000..5294f2b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000011_e9ec3910.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000012_3bc58f58.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000012_3bc58f58.szcp new file mode 100644 index 00000000..bc734752 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000012_3bc58f58.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000013_b519b83b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000013_b519b83b.szcp new file mode 100644 index 00000000..6b4757df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000013_b519b83b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000014_5f371d97.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000014_5f371d97.szcp new file mode 100644 index 00000000..56876a7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000014_5f371d97.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000015_d84ec0fa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000015_d84ec0fa.szcp new file mode 100644 index 00000000..c47d107a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000015_d84ec0fa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000016_3ee03118.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000016_3ee03118.szcp new file mode 100644 index 00000000..a63f9e89 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_004/checkpoints/checkpoint_00000000000000000016_3ee03118.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000001_3fdba84d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000001_3fdba84d.szar new file mode 100644 index 00000000..bcd465da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000001_3fdba84d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000002_0d7ba849.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000002_0d7ba849.szar new file mode 100644 index 00000000..fbd5afb7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000002_0d7ba849.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000003_a2cdb322.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000003_a2cdb322.szar new file mode 100644 index 00000000..1ca6b48d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000003_a2cdb322.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000004_f38e2826.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000004_f38e2826.szar new file mode 100644 index 00000000..163064d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000004_f38e2826.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000005_226f0a81.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000005_226f0a81.szar new file mode 100644 index 00000000..2f1fd49f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000005_226f0a81.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000006_b9888706.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000006_b9888706.szar new file mode 100644 index 00000000..85c30c31 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000006_b9888706.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000007_2eabab5e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000007_2eabab5e.szar new file mode 100644 index 00000000..147785d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000007_2eabab5e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000008_da9d8dc7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000008_da9d8dc7.szar new file mode 100644 index 00000000..b38033d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000008_da9d8dc7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000009_5407642e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000009_5407642e.szar new file mode 100644 index 00000000..6128f94b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000009_5407642e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000010_93549bf7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000010_93549bf7.szar new file mode 100644 index 00000000..e6fac768 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000010_93549bf7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000011_53472acf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000011_53472acf.szar new file mode 100644 index 00000000..11585609 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000011_53472acf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000012_ff16c981.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000012_ff16c981.szar new file mode 100644 index 00000000..c9956009 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000012_ff16c981.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000013_2c3c0ae4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000013_2c3c0ae4.szar new file mode 100644 index 00000000..c9d3b66f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000013_2c3c0ae4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000014_4bd73f95.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000014_4bd73f95.szar new file mode 100644 index 00000000..dc43a65b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000014_4bd73f95.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000015_819fe9e7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000015_819fe9e7.szar new file mode 100644 index 00000000..e33fe8ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000015_819fe9e7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000016_507c82e3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000016_507c82e3.szar new file mode 100644 index 00000000..148cab71 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000016_507c82e3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000017_8425c0a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000017_8425c0a3.szar new file mode 100644 index 00000000..50a0e44e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000017_8425c0a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000018_9bcb0545.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000018_9bcb0545.szar new file mode 100644 index 00000000..f7303a18 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000018_9bcb0545.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000019_a0a532a0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000019_a0a532a0.szar new file mode 100644 index 00000000..16feb410 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000019_a0a532a0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000020_60881133.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000020_60881133.szar new file mode 100644 index 00000000..eedf42de Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000020_60881133.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000021_d43490a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000021_d43490a6.szar new file mode 100644 index 00000000..a5ff5664 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000021_d43490a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000022_bc20a99f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000022_bc20a99f.szar new file mode 100644 index 00000000..522bdd14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/archive/delta_00000000000000000022_bc20a99f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000001_ad73ed9d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000001_ad73ed9d.szcp new file mode 100644 index 00000000..8a4abf32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000001_ad73ed9d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000002_100d94a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000002_100d94a8.szcp new file mode 100644 index 00000000..192faaa3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000002_100d94a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000003_2507c5ee.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000003_2507c5ee.szcp new file mode 100644 index 00000000..918afed6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000003_2507c5ee.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000004_dbbafcc9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000004_dbbafcc9.szcp new file mode 100644 index 00000000..c1c94d08 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000004_dbbafcc9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000005_b4e080b3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000005_b4e080b3.szcp new file mode 100644 index 00000000..dfe9f7a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000005_b4e080b3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000006_385dd826.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000006_385dd826.szcp new file mode 100644 index 00000000..1dfb09c1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000006_385dd826.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000007_5f7d9b20.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000007_5f7d9b20.szcp new file mode 100644 index 00000000..03b1dab9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000007_5f7d9b20.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000008_94ac8417.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000008_94ac8417.szcp new file mode 100644 index 00000000..ea0317d4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000008_94ac8417.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000009_d5abf6c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000009_d5abf6c4.szcp new file mode 100644 index 00000000..0b430460 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000009_d5abf6c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000010_b35128ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000010_b35128ca.szcp new file mode 100644 index 00000000..f4d61bd2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000010_b35128ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000011_9b5853f4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000011_9b5853f4.szcp new file mode 100644 index 00000000..aa6b0642 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000011_9b5853f4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000012_9312c688.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000012_9312c688.szcp new file mode 100644 index 00000000..e56d70af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000012_9312c688.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000013_45fe4874.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000013_45fe4874.szcp new file mode 100644 index 00000000..324ac825 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000013_45fe4874.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000014_548e3dc4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000014_548e3dc4.szcp new file mode 100644 index 00000000..843317d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000014_548e3dc4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000015_ae000128.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000015_ae000128.szcp new file mode 100644 index 00000000..c911c143 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000015_ae000128.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000016_fcb03922.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000016_fcb03922.szcp new file mode 100644 index 00000000..146ac9b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000016_fcb03922.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000017_fc471206.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000017_fc471206.szcp new file mode 100644 index 00000000..970a592d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000017_fc471206.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000018_ff500bdc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000018_ff500bdc.szcp new file mode 100644 index 00000000..bfd1a644 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000018_ff500bdc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000019_dea8bc2c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000019_dea8bc2c.szcp new file mode 100644 index 00000000..8d83fb62 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000019_dea8bc2c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000020_b7f4b19d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000020_b7f4b19d.szcp new file mode 100644 index 00000000..9f55ba04 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000020_b7f4b19d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000021_9f1f3dd0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000021_9f1f3dd0.szcp new file mode 100644 index 00000000..68503e8b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000021_9f1f3dd0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000022_6d9efc39.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000022_6d9efc39.szcp new file mode 100644 index 00000000..7e8bc6f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_005/checkpoints/checkpoint_00000000000000000022_6d9efc39.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000001_440174b7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000001_440174b7.szar new file mode 100644 index 00000000..ba147f28 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000001_440174b7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000002_48b50013.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000002_48b50013.szar new file mode 100644 index 00000000..4770c056 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000002_48b50013.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000003_fb337d0a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000003_fb337d0a.szar new file mode 100644 index 00000000..1a6b81a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000003_fb337d0a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000004_62becd86.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000004_62becd86.szar new file mode 100644 index 00000000..0225603e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000004_62becd86.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000005_6a875d82.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000005_6a875d82.szar new file mode 100644 index 00000000..21b41104 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000005_6a875d82.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000006_d1535ec8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000006_d1535ec8.szar new file mode 100644 index 00000000..90d609b6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000006_d1535ec8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000007_c1dbce50.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000007_c1dbce50.szar new file mode 100644 index 00000000..5867efec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000007_c1dbce50.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000008_a4b9b5a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000008_a4b9b5a6.szar new file mode 100644 index 00000000..6e0e8b20 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000008_a4b9b5a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000009_dee28133.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000009_dee28133.szar new file mode 100644 index 00000000..69d2a261 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000009_dee28133.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000010_cb5449db.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000010_cb5449db.szar new file mode 100644 index 00000000..db807027 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000010_cb5449db.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000011_3acc0432.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000011_3acc0432.szar new file mode 100644 index 00000000..c642b1f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000011_3acc0432.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000012_22a7a61f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000012_22a7a61f.szar new file mode 100644 index 00000000..b6a255a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000012_22a7a61f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000013_f16cfb1e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000013_f16cfb1e.szar new file mode 100644 index 00000000..2d652c7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000013_f16cfb1e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000014_6264ab07.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000014_6264ab07.szar new file mode 100644 index 00000000..fbc04e6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000014_6264ab07.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000015_e8a0d7f1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000015_e8a0d7f1.szar new file mode 100644 index 00000000..3c19a5f1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000015_e8a0d7f1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000016_3188482c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000016_3188482c.szar new file mode 100644 index 00000000..32194cc1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/archive/delta_00000000000000000016_3188482c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000001_59be56f5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000001_59be56f5.szcp new file mode 100644 index 00000000..bc5be7fa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000001_59be56f5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000002_e1b2d636.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000002_e1b2d636.szcp new file mode 100644 index 00000000..d1e180ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000002_e1b2d636.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000003_cb633e9f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000003_cb633e9f.szcp new file mode 100644 index 00000000..7a7bb2e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000003_cb633e9f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000004_6338d73e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000004_6338d73e.szcp new file mode 100644 index 00000000..4dfdd170 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000004_6338d73e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000005_12772647.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000005_12772647.szcp new file mode 100644 index 00000000..02569615 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000005_12772647.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000006_cad335ac.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000006_cad335ac.szcp new file mode 100644 index 00000000..d5caeaaf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000006_cad335ac.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000007_45324338.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000007_45324338.szcp new file mode 100644 index 00000000..f3f013e6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000007_45324338.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000008_85002f18.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000008_85002f18.szcp new file mode 100644 index 00000000..cd4ea6c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000008_85002f18.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000009_b859b4c8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000009_b859b4c8.szcp new file mode 100644 index 00000000..0a2d8f92 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000009_b859b4c8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000010_bddf9db6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000010_bddf9db6.szcp new file mode 100644 index 00000000..60c93b63 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000010_bddf9db6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000011_83b8be67.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000011_83b8be67.szcp new file mode 100644 index 00000000..46c066a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000011_83b8be67.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000012_d5b623ff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000012_d5b623ff.szcp new file mode 100644 index 00000000..12c9997f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000012_d5b623ff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000013_e19150f0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000013_e19150f0.szcp new file mode 100644 index 00000000..df4130a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000013_e19150f0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000014_9de94a9e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000014_9de94a9e.szcp new file mode 100644 index 00000000..81fbe5d1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000014_9de94a9e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000015_0e59cc2c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000015_0e59cc2c.szcp new file mode 100644 index 00000000..ae66e13e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000015_0e59cc2c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000016_9ed290b5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000016_9ed290b5.szcp new file mode 100644 index 00000000..bda812ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_006/checkpoints/checkpoint_00000000000000000016_9ed290b5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000001_15ee7ad4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000001_15ee7ad4.szar new file mode 100644 index 00000000..61b6f4fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000001_15ee7ad4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000002_f7e68eeb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000002_f7e68eeb.szar new file mode 100644 index 00000000..87b0f129 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000002_f7e68eeb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000003_28471cd4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000003_28471cd4.szar new file mode 100644 index 00000000..800e98e4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000003_28471cd4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000004_a593f92a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000004_a593f92a.szar new file mode 100644 index 00000000..83624b75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000004_a593f92a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000005_28b9f85b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000005_28b9f85b.szar new file mode 100644 index 00000000..71833314 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000005_28b9f85b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000006_e7ebcba5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000006_e7ebcba5.szar new file mode 100644 index 00000000..0c1c42ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000006_e7ebcba5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000007_864c5838.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000007_864c5838.szar new file mode 100644 index 00000000..a76716ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000007_864c5838.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000008_96e6a904.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000008_96e6a904.szar new file mode 100644 index 00000000..44495a8a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000008_96e6a904.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000009_098b1ad6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000009_098b1ad6.szar new file mode 100644 index 00000000..ced7c440 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000009_098b1ad6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000010_b106600d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000010_b106600d.szar new file mode 100644 index 00000000..de755b61 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000010_b106600d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000011_47650447.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000011_47650447.szar new file mode 100644 index 00000000..d75fe1aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000011_47650447.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000012_f32d65d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000012_f32d65d0.szar new file mode 100644 index 00000000..0b434c0c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000012_f32d65d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000013_1812fab8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000013_1812fab8.szar new file mode 100644 index 00000000..bb055258 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000013_1812fab8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000014_b9647fe5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000014_b9647fe5.szar new file mode 100644 index 00000000..57b621a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000014_b9647fe5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000015_1d4cff97.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000015_1d4cff97.szar new file mode 100644 index 00000000..29f639bb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000015_1d4cff97.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000016_0c75be9c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000016_0c75be9c.szar new file mode 100644 index 00000000..44b82561 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000016_0c75be9c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000017_333881a9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000017_333881a9.szar new file mode 100644 index 00000000..6f714586 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000017_333881a9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000018_1f76f8d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000018_1f76f8d0.szar new file mode 100644 index 00000000..1ea2985b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/archive/delta_00000000000000000018_1f76f8d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000001_cc7adb02.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000001_cc7adb02.szcp new file mode 100644 index 00000000..5b98ee2f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000001_cc7adb02.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000002_16359ac8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000002_16359ac8.szcp new file mode 100644 index 00000000..faeb4e35 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000002_16359ac8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000003_0424a9e7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000003_0424a9e7.szcp new file mode 100644 index 00000000..559a815c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000003_0424a9e7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000004_4f04901e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000004_4f04901e.szcp new file mode 100644 index 00000000..94697fc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000004_4f04901e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000005_87909cec.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000005_87909cec.szcp new file mode 100644 index 00000000..8a6d0d32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000005_87909cec.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000006_e7a0d09e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000006_e7a0d09e.szcp new file mode 100644 index 00000000..59cd1c9a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000006_e7a0d09e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000007_757e084a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000007_757e084a.szcp new file mode 100644 index 00000000..ba138daf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000007_757e084a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000008_28ef1894.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000008_28ef1894.szcp new file mode 100644 index 00000000..df9d079c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000008_28ef1894.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000009_3c17189a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000009_3c17189a.szcp new file mode 100644 index 00000000..2dc06632 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000009_3c17189a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000010_9ffb1161.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000010_9ffb1161.szcp new file mode 100644 index 00000000..a625e815 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000010_9ffb1161.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000011_b51539a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000011_b51539a8.szcp new file mode 100644 index 00000000..aee981ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000011_b51539a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000012_c545f6fb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000012_c545f6fb.szcp new file mode 100644 index 00000000..a0e7fca9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000012_c545f6fb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000013_76cf9007.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000013_76cf9007.szcp new file mode 100644 index 00000000..807df3fd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000013_76cf9007.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000014_e3ebcd59.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000014_e3ebcd59.szcp new file mode 100644 index 00000000..827b0f80 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000014_e3ebcd59.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000015_dd4123f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000015_dd4123f6.szcp new file mode 100644 index 00000000..19034df0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000015_dd4123f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000016_58945dcf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000016_58945dcf.szcp new file mode 100644 index 00000000..021c3b77 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000016_58945dcf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000017_04e9dab8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000017_04e9dab8.szcp new file mode 100644 index 00000000..2bc5785f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000017_04e9dab8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000018_83a28e9b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000018_83a28e9b.szcp new file mode 100644 index 00000000..b48c24bf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_007/checkpoints/checkpoint_00000000000000000018_83a28e9b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000001_0e03f76d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000001_0e03f76d.szar new file mode 100644 index 00000000..e927cf59 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000001_0e03f76d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000002_d402c0c4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000002_d402c0c4.szar new file mode 100644 index 00000000..1609552b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000002_d402c0c4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000003_a82a1083.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000003_a82a1083.szar new file mode 100644 index 00000000..bde74820 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000003_a82a1083.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000004_bf36505d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000004_bf36505d.szar new file mode 100644 index 00000000..15d711bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000004_bf36505d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000005_74c61875.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000005_74c61875.szar new file mode 100644 index 00000000..d521bd5a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000005_74c61875.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000006_c98d16b2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000006_c98d16b2.szar new file mode 100644 index 00000000..624e8e70 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000006_c98d16b2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000007_3f93726f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000007_3f93726f.szar new file mode 100644 index 00000000..b27e2ee8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000007_3f93726f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000008_9a6360b6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000008_9a6360b6.szar new file mode 100644 index 00000000..3c3959b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000008_9a6360b6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000009_34f1cb4d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000009_34f1cb4d.szar new file mode 100644 index 00000000..e5bd8d29 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000009_34f1cb4d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000010_5e528dec.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000010_5e528dec.szar new file mode 100644 index 00000000..ddf570a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000010_5e528dec.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000011_0ea0875c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000011_0ea0875c.szar new file mode 100644 index 00000000..72b8c92e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000011_0ea0875c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000012_e6140f06.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000012_e6140f06.szar new file mode 100644 index 00000000..5ba8130f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000012_e6140f06.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000013_d93bbb54.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000013_d93bbb54.szar new file mode 100644 index 00000000..4d44c107 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000013_d93bbb54.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000014_c674fcf5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000014_c674fcf5.szar new file mode 100644 index 00000000..9195407e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000014_c674fcf5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000015_3ed2c173.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000015_3ed2c173.szar new file mode 100644 index 00000000..15df0e70 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000015_3ed2c173.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000016_13b24eb6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000016_13b24eb6.szar new file mode 100644 index 00000000..3dbeb4fa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000016_13b24eb6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000017_c6b8405f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000017_c6b8405f.szar new file mode 100644 index 00000000..49cebc54 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000017_c6b8405f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000018_d95bc447.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000018_d95bc447.szar new file mode 100644 index 00000000..d1b0513f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000018_d95bc447.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000019_3acead65.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000019_3acead65.szar new file mode 100644 index 00000000..1d538556 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000019_3acead65.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000020_3ae3009b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000020_3ae3009b.szar new file mode 100644 index 00000000..9658f1e0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000020_3ae3009b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000021_61efe7ce.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000021_61efe7ce.szar new file mode 100644 index 00000000..a936431c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000021_61efe7ce.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000022_c0798fcf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000022_c0798fcf.szar new file mode 100644 index 00000000..ed85b640 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000022_c0798fcf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000023_cc88e01e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000023_cc88e01e.szar new file mode 100644 index 00000000..42cba5b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000023_cc88e01e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000024_13b0815a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000024_13b0815a.szar new file mode 100644 index 00000000..671c08b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000024_13b0815a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000025_97fc2dc3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000025_97fc2dc3.szar new file mode 100644 index 00000000..619619e0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000025_97fc2dc3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000026_0f242b44.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000026_0f242b44.szar new file mode 100644 index 00000000..33b152dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000026_0f242b44.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000027_ec1fd9d2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000027_ec1fd9d2.szar new file mode 100644 index 00000000..f92817d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000027_ec1fd9d2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000028_6240eb9b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000028_6240eb9b.szar new file mode 100644 index 00000000..198d4b0b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000028_6240eb9b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000029_e24b20d7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000029_e24b20d7.szar new file mode 100644 index 00000000..db1ceb8e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/archive/delta_00000000000000000029_e24b20d7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000001_1a0a0b1e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000001_1a0a0b1e.szcp new file mode 100644 index 00000000..4d061dff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000001_1a0a0b1e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000002_d7f5b4a0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000002_d7f5b4a0.szcp new file mode 100644 index 00000000..5763dd1d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000002_d7f5b4a0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000003_cc57a940.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000003_cc57a940.szcp new file mode 100644 index 00000000..514b570b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000003_cc57a940.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000004_5181abd8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000004_5181abd8.szcp new file mode 100644 index 00000000..34461550 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000004_5181abd8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000005_7432cb31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000005_7432cb31.szcp new file mode 100644 index 00000000..9780e64e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000005_7432cb31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000006_f4539851.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000006_f4539851.szcp new file mode 100644 index 00000000..3ab5c47b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000006_f4539851.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000007_6aa66f11.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000007_6aa66f11.szcp new file mode 100644 index 00000000..0c7aa1b6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000007_6aa66f11.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000008_e128dcc9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000008_e128dcc9.szcp new file mode 100644 index 00000000..72c94c0d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000008_e128dcc9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000009_be511889.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000009_be511889.szcp new file mode 100644 index 00000000..b07ed8df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000009_be511889.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000010_926fde75.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000010_926fde75.szcp new file mode 100644 index 00000000..7b833387 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000010_926fde75.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000011_2251319c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000011_2251319c.szcp new file mode 100644 index 00000000..6f20130f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000011_2251319c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000012_dcc0554a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000012_dcc0554a.szcp new file mode 100644 index 00000000..abed4e22 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000012_dcc0554a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000013_abd13abd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000013_abd13abd.szcp new file mode 100644 index 00000000..5fd44bbe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000013_abd13abd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000014_8486db32.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000014_8486db32.szcp new file mode 100644 index 00000000..440094ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000014_8486db32.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000015_62ad5fe8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000015_62ad5fe8.szcp new file mode 100644 index 00000000..02b68ace Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000015_62ad5fe8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000016_339f2935.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000016_339f2935.szcp new file mode 100644 index 00000000..7afd8dd8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000016_339f2935.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000017_14b894f1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000017_14b894f1.szcp new file mode 100644 index 00000000..40ec13f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000017_14b894f1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000018_92783e45.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000018_92783e45.szcp new file mode 100644 index 00000000..ebfc99d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000018_92783e45.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000019_6ad332aa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000019_6ad332aa.szcp new file mode 100644 index 00000000..b409a110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000019_6ad332aa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000020_d0cce59b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000020_d0cce59b.szcp new file mode 100644 index 00000000..9a72f156 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000020_d0cce59b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000021_9f847efc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000021_9f847efc.szcp new file mode 100644 index 00000000..83a2f143 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000021_9f847efc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000022_6752dda8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000022_6752dda8.szcp new file mode 100644 index 00000000..ef8a1d17 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000022_6752dda8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000023_3f5b2514.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000023_3f5b2514.szcp new file mode 100644 index 00000000..a1d52dbe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000023_3f5b2514.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000024_d77f3ad9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000024_d77f3ad9.szcp new file mode 100644 index 00000000..e50c0074 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000024_d77f3ad9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000025_71c10118.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000025_71c10118.szcp new file mode 100644 index 00000000..c644659f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000025_71c10118.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000026_9c9e6b30.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000026_9c9e6b30.szcp new file mode 100644 index 00000000..4e39f1e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000026_9c9e6b30.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000027_9e9f983d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000027_9e9f983d.szcp new file mode 100644 index 00000000..dcf70be6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000027_9e9f983d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000028_91377a51.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000028_91377a51.szcp new file mode 100644 index 00000000..a2c24a54 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000028_91377a51.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000029_5f2c6076.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000029_5f2c6076.szcp new file mode 100644 index 00000000..5896bf8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_008/checkpoints/checkpoint_00000000000000000029_5f2c6076.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000001_a51ea237.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000001_a51ea237.szar new file mode 100644 index 00000000..230b7022 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000001_a51ea237.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000002_4627867b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000002_4627867b.szar new file mode 100644 index 00000000..92d2f8ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000002_4627867b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000003_38c3daae.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000003_38c3daae.szar new file mode 100644 index 00000000..6ab27c31 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000003_38c3daae.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000004_aa86a77e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000004_aa86a77e.szar new file mode 100644 index 00000000..af88a008 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000004_aa86a77e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000005_cbbc8cf3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000005_cbbc8cf3.szar new file mode 100644 index 00000000..ee3f2411 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000005_cbbc8cf3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000006_27eddd8e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000006_27eddd8e.szar new file mode 100644 index 00000000..b2676ed9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000006_27eddd8e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000007_23d527c0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000007_23d527c0.szar new file mode 100644 index 00000000..83ce5781 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000007_23d527c0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000008_479a19db.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000008_479a19db.szar new file mode 100644 index 00000000..887cc5d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000008_479a19db.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000009_2a3ed07b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000009_2a3ed07b.szar new file mode 100644 index 00000000..96bd3f62 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000009_2a3ed07b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000010_4b055074.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000010_4b055074.szar new file mode 100644 index 00000000..406acb08 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000010_4b055074.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000011_d826262e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000011_d826262e.szar new file mode 100644 index 00000000..f532faa3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000011_d826262e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000012_09037c0e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000012_09037c0e.szar new file mode 100644 index 00000000..1865c021 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000012_09037c0e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000013_2c2bbd33.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000013_2c2bbd33.szar new file mode 100644 index 00000000..4ded7ae5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000013_2c2bbd33.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000014_729affdf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000014_729affdf.szar new file mode 100644 index 00000000..1be0669a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000014_729affdf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000015_33de0214.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000015_33de0214.szar new file mode 100644 index 00000000..07976d55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000015_33de0214.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000016_a24ea9b1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000016_a24ea9b1.szar new file mode 100644 index 00000000..36792830 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000016_a24ea9b1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000017_b93f838d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000017_b93f838d.szar new file mode 100644 index 00000000..1db68a26 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000017_b93f838d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000018_8eedea28.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000018_8eedea28.szar new file mode 100644 index 00000000..44a773d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000018_8eedea28.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000019_6b5196db.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000019_6b5196db.szar new file mode 100644 index 00000000..188084e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000019_6b5196db.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000020_139de90f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000020_139de90f.szar new file mode 100644 index 00000000..db6058a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000020_139de90f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000021_2f69cd45.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000021_2f69cd45.szar new file mode 100644 index 00000000..c8e486ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000021_2f69cd45.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000022_fcf970a8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000022_fcf970a8.szar new file mode 100644 index 00000000..9adff0b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000022_fcf970a8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000023_b9c0beee.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000023_b9c0beee.szar new file mode 100644 index 00000000..086d3835 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000023_b9c0beee.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000024_af970618.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000024_af970618.szar new file mode 100644 index 00000000..c3ba0067 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000024_af970618.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000025_01625a44.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000025_01625a44.szar new file mode 100644 index 00000000..fb8d9c0f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000025_01625a44.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000026_a1fae56c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000026_a1fae56c.szar new file mode 100644 index 00000000..be1b2cb5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000026_a1fae56c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000027_e4edbc3d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000027_e4edbc3d.szar new file mode 100644 index 00000000..e36b774f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000027_e4edbc3d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000028_dfb9b6e0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000028_dfb9b6e0.szar new file mode 100644 index 00000000..8ba52eb6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000028_dfb9b6e0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000029_411735d2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000029_411735d2.szar new file mode 100644 index 00000000..3479d99c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/archive/delta_00000000000000000029_411735d2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000001_f89c3f0d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000001_f89c3f0d.szcp new file mode 100644 index 00000000..2b56117d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000001_f89c3f0d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000002_028bf5dd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000002_028bf5dd.szcp new file mode 100644 index 00000000..4b92fdd1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000002_028bf5dd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000003_91608528.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000003_91608528.szcp new file mode 100644 index 00000000..5aa30112 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000003_91608528.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000004_6cebded6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000004_6cebded6.szcp new file mode 100644 index 00000000..957df398 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000004_6cebded6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000005_5727e924.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000005_5727e924.szcp new file mode 100644 index 00000000..0c3f851c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000005_5727e924.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000006_51dcf1f4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000006_51dcf1f4.szcp new file mode 100644 index 00000000..4f49f283 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000006_51dcf1f4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000007_cccc7bc3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000007_cccc7bc3.szcp new file mode 100644 index 00000000..795a1b46 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000007_cccc7bc3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000008_bf64bc1d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000008_bf64bc1d.szcp new file mode 100644 index 00000000..8cdb2164 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000008_bf64bc1d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000009_81242f27.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000009_81242f27.szcp new file mode 100644 index 00000000..900c828c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000009_81242f27.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000010_e1f1171e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000010_e1f1171e.szcp new file mode 100644 index 00000000..d1e62300 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000010_e1f1171e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000011_7ff251be.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000011_7ff251be.szcp new file mode 100644 index 00000000..fa963474 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000011_7ff251be.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000012_5d48dd34.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000012_5d48dd34.szcp new file mode 100644 index 00000000..d281717f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000012_5d48dd34.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000013_954b9c43.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000013_954b9c43.szcp new file mode 100644 index 00000000..b43e8454 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000013_954b9c43.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000014_3a0a57ba.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000014_3a0a57ba.szcp new file mode 100644 index 00000000..ee557f75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000014_3a0a57ba.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000015_28e3dc09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000015_28e3dc09.szcp new file mode 100644 index 00000000..5a1f14ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000015_28e3dc09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000016_3a2f0f97.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000016_3a2f0f97.szcp new file mode 100644 index 00000000..4496ff06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000016_3a2f0f97.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000017_b85796ba.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000017_b85796ba.szcp new file mode 100644 index 00000000..6f9b0e14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000017_b85796ba.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000018_af8440ee.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000018_af8440ee.szcp new file mode 100644 index 00000000..457ca878 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000018_af8440ee.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000019_cd7bd0f1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000019_cd7bd0f1.szcp new file mode 100644 index 00000000..524511be Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000019_cd7bd0f1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000020_658c8f8f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000020_658c8f8f.szcp new file mode 100644 index 00000000..ff68b9b0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000020_658c8f8f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000021_d14e0072.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000021_d14e0072.szcp new file mode 100644 index 00000000..98d34f44 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000021_d14e0072.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000022_8b0dc232.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000022_8b0dc232.szcp new file mode 100644 index 00000000..48c86e34 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000022_8b0dc232.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000023_bb6a7884.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000023_bb6a7884.szcp new file mode 100644 index 00000000..049e3a93 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000023_bb6a7884.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000024_7657ddbb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000024_7657ddbb.szcp new file mode 100644 index 00000000..605d0b8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000024_7657ddbb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000025_5a5c204a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000025_5a5c204a.szcp new file mode 100644 index 00000000..52d69e06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000025_5a5c204a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000026_ef740566.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000026_ef740566.szcp new file mode 100644 index 00000000..df48a50c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000026_ef740566.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000027_e0cbaf0b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000027_e0cbaf0b.szcp new file mode 100644 index 00000000..956a87cc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000027_e0cbaf0b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000028_b909d046.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000028_b909d046.szcp new file mode 100644 index 00000000..075d83a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000028_b909d046.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000029_30f096f5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000029_30f096f5.szcp new file mode 100644 index 00000000..7a48a3f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_009/checkpoints/checkpoint_00000000000000000029_30f096f5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000001_d733281f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000001_d733281f.szar new file mode 100644 index 00000000..f745715c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000001_d733281f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000002_5c03d65c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000002_5c03d65c.szar new file mode 100644 index 00000000..96d59a73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000002_5c03d65c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000003_a39b0597.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000003_a39b0597.szar new file mode 100644 index 00000000..29fd4165 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000003_a39b0597.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000004_f42ff2b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000004_f42ff2b9.szar new file mode 100644 index 00000000..c1aff4c0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000004_f42ff2b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000005_fa8c2afa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000005_fa8c2afa.szar new file mode 100644 index 00000000..74555cb6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000005_fa8c2afa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000006_e4131ee8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000006_e4131ee8.szar new file mode 100644 index 00000000..10d0551c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000006_e4131ee8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000007_b4fb8fc3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000007_b4fb8fc3.szar new file mode 100644 index 00000000..05147904 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000007_b4fb8fc3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000008_afd95388.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000008_afd95388.szar new file mode 100644 index 00000000..84340085 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000008_afd95388.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000009_e333fb30.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000009_e333fb30.szar new file mode 100644 index 00000000..26be63b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000009_e333fb30.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000010_bbe49f90.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000010_bbe49f90.szar new file mode 100644 index 00000000..de34e0dd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000010_bbe49f90.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000011_00bf1bfb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000011_00bf1bfb.szar new file mode 100644 index 00000000..0108b4f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000011_00bf1bfb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000012_b4a589bb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000012_b4a589bb.szar new file mode 100644 index 00000000..834c4fc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000012_b4a589bb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000013_6b900ec0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000013_6b900ec0.szar new file mode 100644 index 00000000..716c7cbd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000013_6b900ec0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000014_fb960846.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000014_fb960846.szar new file mode 100644 index 00000000..a5613aec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000014_fb960846.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000015_ffcd4218.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000015_ffcd4218.szar new file mode 100644 index 00000000..bd2db85f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000015_ffcd4218.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000016_9f584999.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000016_9f584999.szar new file mode 100644 index 00000000..8d503142 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000016_9f584999.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000017_572bf6cf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000017_572bf6cf.szar new file mode 100644 index 00000000..8ef80520 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000017_572bf6cf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000018_bef69d33.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000018_bef69d33.szar new file mode 100644 index 00000000..e4a86056 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000018_bef69d33.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000019_75c8fbed.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000019_75c8fbed.szar new file mode 100644 index 00000000..d7a309a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000019_75c8fbed.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000020_63cea4a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000020_63cea4a6.szar new file mode 100644 index 00000000..eff1ad6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/archive/delta_00000000000000000020_63cea4a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000001_e38c91fa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000001_e38c91fa.szcp new file mode 100644 index 00000000..022248c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000001_e38c91fa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000002_7f08f476.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000002_7f08f476.szcp new file mode 100644 index 00000000..7aeecc39 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000002_7f08f476.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000003_f13ba542.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000003_f13ba542.szcp new file mode 100644 index 00000000..cd91c2ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000003_f13ba542.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000004_52eca618.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000004_52eca618.szcp new file mode 100644 index 00000000..009bd4ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000004_52eca618.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000005_2a0459fd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000005_2a0459fd.szcp new file mode 100644 index 00000000..8466381e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000005_2a0459fd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000006_90ef062a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000006_90ef062a.szcp new file mode 100644 index 00000000..ec9cdc49 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000006_90ef062a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000007_f43902b3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000007_f43902b3.szcp new file mode 100644 index 00000000..9719a4a3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000007_f43902b3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000008_adb15a09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000008_adb15a09.szcp new file mode 100644 index 00000000..3f4691a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000008_adb15a09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000009_4bb4aed2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000009_4bb4aed2.szcp new file mode 100644 index 00000000..1a97a5ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000009_4bb4aed2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000010_d747b060.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000010_d747b060.szcp new file mode 100644 index 00000000..49c31fcf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000010_d747b060.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000011_81f709c5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000011_81f709c5.szcp new file mode 100644 index 00000000..76231b2d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000011_81f709c5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000012_71e061f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000012_71e061f7.szcp new file mode 100644 index 00000000..7c37be05 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000012_71e061f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000013_d6a72a15.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000013_d6a72a15.szcp new file mode 100644 index 00000000..179c7977 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000013_d6a72a15.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000014_ad277048.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000014_ad277048.szcp new file mode 100644 index 00000000..b6672f86 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000014_ad277048.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000015_ee359b1b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000015_ee359b1b.szcp new file mode 100644 index 00000000..b153c4a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000015_ee359b1b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000016_eaa9d4b1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000016_eaa9d4b1.szcp new file mode 100644 index 00000000..0372312c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000016_eaa9d4b1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000017_c0ab8eff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000017_c0ab8eff.szcp new file mode 100644 index 00000000..8ec1ae10 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000017_c0ab8eff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000018_09a254d1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000018_09a254d1.szcp new file mode 100644 index 00000000..8414f117 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000018_09a254d1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000019_80deaa7d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000019_80deaa7d.szcp new file mode 100644 index 00000000..c3ca32ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000019_80deaa7d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000020_fbfeab99.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000020_fbfeab99.szcp new file mode 100644 index 00000000..7754c0a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_010/checkpoints/checkpoint_00000000000000000020_fbfeab99.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000001_3b259d78.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000001_3b259d78.szar new file mode 100644 index 00000000..0d3a6f07 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000001_3b259d78.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000002_2f8c4d2e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000002_2f8c4d2e.szar new file mode 100644 index 00000000..1e41f4b0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000002_2f8c4d2e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000003_e81647a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000003_e81647a6.szar new file mode 100644 index 00000000..5129a9a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000003_e81647a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000004_099f3eb4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000004_099f3eb4.szar new file mode 100644 index 00000000..dbefa045 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000004_099f3eb4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000005_f051d853.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000005_f051d853.szar new file mode 100644 index 00000000..6d9296a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000005_f051d853.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000006_b272bce6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000006_b272bce6.szar new file mode 100644 index 00000000..7ad3ad41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000006_b272bce6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000007_44170a36.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000007_44170a36.szar new file mode 100644 index 00000000..f963e16c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000007_44170a36.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000008_741b5235.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000008_741b5235.szar new file mode 100644 index 00000000..eb1c2539 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000008_741b5235.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000009_6a730b88.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000009_6a730b88.szar new file mode 100644 index 00000000..4de91156 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000009_6a730b88.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000010_f1753409.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000010_f1753409.szar new file mode 100644 index 00000000..a412646d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000010_f1753409.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000011_3d3aa1d5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000011_3d3aa1d5.szar new file mode 100644 index 00000000..d7334648 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000011_3d3aa1d5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000012_1b6c2255.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000012_1b6c2255.szar new file mode 100644 index 00000000..0fb0248b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000012_1b6c2255.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000013_6a3bc6df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000013_6a3bc6df.szar new file mode 100644 index 00000000..b84a316a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000013_6a3bc6df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000014_8309b4c9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000014_8309b4c9.szar new file mode 100644 index 00000000..1d769b3b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000014_8309b4c9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000015_d40082e1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000015_d40082e1.szar new file mode 100644 index 00000000..8a14444f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000015_d40082e1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000016_5be13e92.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000016_5be13e92.szar new file mode 100644 index 00000000..74715009 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000016_5be13e92.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000017_5a328445.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000017_5a328445.szar new file mode 100644 index 00000000..0fe48e50 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000017_5a328445.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000018_046e6794.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000018_046e6794.szar new file mode 100644 index 00000000..4ac7b68c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000018_046e6794.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000019_c6284f1f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000019_c6284f1f.szar new file mode 100644 index 00000000..36299c58 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000019_c6284f1f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000020_3413b7a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000020_3413b7a6.szar new file mode 100644 index 00000000..d20a9ce4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000020_3413b7a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000021_c1c8eb1f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000021_c1c8eb1f.szar new file mode 100644 index 00000000..bec2472a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000021_c1c8eb1f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000022_404b81cc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000022_404b81cc.szar new file mode 100644 index 00000000..3810970e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000022_404b81cc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000023_81d913e6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000023_81d913e6.szar new file mode 100644 index 00000000..1aa95958 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000023_81d913e6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000024_ad3d74a5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000024_ad3d74a5.szar new file mode 100644 index 00000000..5713729c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000024_ad3d74a5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000025_0f5294fe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000025_0f5294fe.szar new file mode 100644 index 00000000..ba2cd05d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000025_0f5294fe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000026_94ed7529.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000026_94ed7529.szar new file mode 100644 index 00000000..2395cac8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000026_94ed7529.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000027_81899144.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000027_81899144.szar new file mode 100644 index 00000000..887fc5ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000027_81899144.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000028_c0e6b038.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000028_c0e6b038.szar new file mode 100644 index 00000000..017d748f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000028_c0e6b038.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000029_2a73f852.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000029_2a73f852.szar new file mode 100644 index 00000000..74866a21 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/archive/delta_00000000000000000029_2a73f852.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000001_28d68aa1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000001_28d68aa1.szcp new file mode 100644 index 00000000..9cf3e095 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000001_28d68aa1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000002_9f97667e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000002_9f97667e.szcp new file mode 100644 index 00000000..6c28d8c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000002_9f97667e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000003_ce384cb3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000003_ce384cb3.szcp new file mode 100644 index 00000000..b81417e6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000003_ce384cb3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000004_a11bfc57.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000004_a11bfc57.szcp new file mode 100644 index 00000000..c90e440c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000004_a11bfc57.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000005_791690c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000005_791690c3.szcp new file mode 100644 index 00000000..77f90f96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000005_791690c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000006_0a052f7b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000006_0a052f7b.szcp new file mode 100644 index 00000000..6f03372f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000006_0a052f7b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000007_290528e8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000007_290528e8.szcp new file mode 100644 index 00000000..df972877 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000007_290528e8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000008_9bc55e31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000008_9bc55e31.szcp new file mode 100644 index 00000000..8927c44e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000008_9bc55e31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000009_01cda878.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000009_01cda878.szcp new file mode 100644 index 00000000..cfda4e79 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000009_01cda878.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000010_3a88c3c9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000010_3a88c3c9.szcp new file mode 100644 index 00000000..2e21f518 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000010_3a88c3c9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000011_33534ec3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000011_33534ec3.szcp new file mode 100644 index 00000000..cca8ec75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000011_33534ec3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000012_6ffe34ed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000012_6ffe34ed.szcp new file mode 100644 index 00000000..084bb73b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000012_6ffe34ed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000013_846dc1e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000013_846dc1e5.szcp new file mode 100644 index 00000000..eb45ad51 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000013_846dc1e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000014_5bdaa1d4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000014_5bdaa1d4.szcp new file mode 100644 index 00000000..b4f31d1f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000014_5bdaa1d4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000015_14d39182.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000015_14d39182.szcp new file mode 100644 index 00000000..a356e1b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000015_14d39182.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000016_a14915f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000016_a14915f6.szcp new file mode 100644 index 00000000..07ae60c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000016_a14915f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000017_fc4beadc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000017_fc4beadc.szcp new file mode 100644 index 00000000..31fb2b75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000017_fc4beadc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000018_44ee4745.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000018_44ee4745.szcp new file mode 100644 index 00000000..cc9b189c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000018_44ee4745.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000019_239dadee.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000019_239dadee.szcp new file mode 100644 index 00000000..f756dae3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000019_239dadee.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000020_b44c745a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000020_b44c745a.szcp new file mode 100644 index 00000000..ad668d60 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000020_b44c745a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000021_e25c2eea.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000021_e25c2eea.szcp new file mode 100644 index 00000000..078ad261 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000021_e25c2eea.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000022_c402bfab.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000022_c402bfab.szcp new file mode 100644 index 00000000..6027b235 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000022_c402bfab.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000023_9b06214f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000023_9b06214f.szcp new file mode 100644 index 00000000..64c5714b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000023_9b06214f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000024_ef2ea9e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000024_ef2ea9e3.szcp new file mode 100644 index 00000000..f3beb866 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000024_ef2ea9e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000025_4b7a813d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000025_4b7a813d.szcp new file mode 100644 index 00000000..b9b5d745 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000025_4b7a813d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000026_30c96276.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000026_30c96276.szcp new file mode 100644 index 00000000..70482257 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000026_30c96276.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000027_f7aa8d7f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000027_f7aa8d7f.szcp new file mode 100644 index 00000000..5e95d8ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000027_f7aa8d7f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000028_e4c5188f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000028_e4c5188f.szcp new file mode 100644 index 00000000..77d42f04 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000028_e4c5188f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000029_7afbea5d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000029_7afbea5d.szcp new file mode 100644 index 00000000..4f209120 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_011/checkpoints/checkpoint_00000000000000000029_7afbea5d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000001_42ecdd7a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000001_42ecdd7a.szar new file mode 100644 index 00000000..087697fc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000001_42ecdd7a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000002_3aae5f01.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000002_3aae5f01.szar new file mode 100644 index 00000000..9d2c5401 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000002_3aae5f01.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000003_90eb3b7b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000003_90eb3b7b.szar new file mode 100644 index 00000000..78bc598c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000003_90eb3b7b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000004_3cacba65.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000004_3cacba65.szar new file mode 100644 index 00000000..276e77b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000004_3cacba65.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000005_1f895953.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000005_1f895953.szar new file mode 100644 index 00000000..ae2e5a7f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000005_1f895953.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000006_d67f6c4f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000006_d67f6c4f.szar new file mode 100644 index 00000000..9446ac85 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000006_d67f6c4f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000007_b9738a5a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000007_b9738a5a.szar new file mode 100644 index 00000000..1e87e844 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000007_b9738a5a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000008_29b708da.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000008_29b708da.szar new file mode 100644 index 00000000..fc4e4f72 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000008_29b708da.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000009_98f84159.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000009_98f84159.szar new file mode 100644 index 00000000..5cb8a35e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000009_98f84159.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000010_608e3665.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000010_608e3665.szar new file mode 100644 index 00000000..878da34c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000010_608e3665.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000011_06bc76e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000011_06bc76e5.szar new file mode 100644 index 00000000..cadcfb6f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000011_06bc76e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000012_ecce962a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000012_ecce962a.szar new file mode 100644 index 00000000..70382ca8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000012_ecce962a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000013_5aaaed51.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000013_5aaaed51.szar new file mode 100644 index 00000000..f3090a12 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000013_5aaaed51.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000014_f31f60c5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000014_f31f60c5.szar new file mode 100644 index 00000000..7ac1b584 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000014_f31f60c5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000015_2bd885bc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000015_2bd885bc.szar new file mode 100644 index 00000000..5bb53887 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000015_2bd885bc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000016_7bc62f46.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000016_7bc62f46.szar new file mode 100644 index 00000000..e28af721 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000016_7bc62f46.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000017_5cf1922b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000017_5cf1922b.szar new file mode 100644 index 00000000..55f7c4cc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000017_5cf1922b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000018_c0eb2028.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000018_c0eb2028.szar new file mode 100644 index 00000000..d1bfd008 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000018_c0eb2028.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000019_4c742489.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000019_4c742489.szar new file mode 100644 index 00000000..d587ef4f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000019_4c742489.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000020_06bdc3c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000020_06bdc3c7.szar new file mode 100644 index 00000000..acbe44da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000020_06bdc3c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000021_c335590d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000021_c335590d.szar new file mode 100644 index 00000000..5e41d183 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000021_c335590d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000022_de0c7703.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000022_de0c7703.szar new file mode 100644 index 00000000..5d0948d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000022_de0c7703.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000023_6bc1d1dd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000023_6bc1d1dd.szar new file mode 100644 index 00000000..a7029a67 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000023_6bc1d1dd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000024_c7660455.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000024_c7660455.szar new file mode 100644 index 00000000..f8c25a94 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/archive/delta_00000000000000000024_c7660455.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000001_56008e01.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000001_56008e01.szcp new file mode 100644 index 00000000..40219b98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000001_56008e01.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000002_6d193570.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000002_6d193570.szcp new file mode 100644 index 00000000..824e0e1d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000002_6d193570.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000003_1aad4371.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000003_1aad4371.szcp new file mode 100644 index 00000000..11d4fc38 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000003_1aad4371.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000004_78e63422.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000004_78e63422.szcp new file mode 100644 index 00000000..7663399e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000004_78e63422.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000005_74186d6d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000005_74186d6d.szcp new file mode 100644 index 00000000..234b1cfc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000005_74186d6d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000006_ab39818c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000006_ab39818c.szcp new file mode 100644 index 00000000..9c3d0f4f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000006_ab39818c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000007_452ab71e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000007_452ab71e.szcp new file mode 100644 index 00000000..0dd2f247 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000007_452ab71e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000008_3643d6d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000008_3643d6d3.szcp new file mode 100644 index 00000000..7668abb6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000008_3643d6d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000009_59104cc2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000009_59104cc2.szcp new file mode 100644 index 00000000..1f6a36c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000009_59104cc2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000010_24abb9ac.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000010_24abb9ac.szcp new file mode 100644 index 00000000..134b23dd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000010_24abb9ac.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000011_1eb80351.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000011_1eb80351.szcp new file mode 100644 index 00000000..ef6ae0db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000011_1eb80351.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000012_c59d87e9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000012_c59d87e9.szcp new file mode 100644 index 00000000..25f2abe1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000012_c59d87e9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000013_6ac70b6e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000013_6ac70b6e.szcp new file mode 100644 index 00000000..05c8bb1c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000013_6ac70b6e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000014_16cc6421.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000014_16cc6421.szcp new file mode 100644 index 00000000..13695795 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000014_16cc6421.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000015_a0765ff3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000015_a0765ff3.szcp new file mode 100644 index 00000000..fa92e33f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000015_a0765ff3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000016_a56f2b77.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000016_a56f2b77.szcp new file mode 100644 index 00000000..e1743219 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000016_a56f2b77.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000017_cbfc10b8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000017_cbfc10b8.szcp new file mode 100644 index 00000000..10b74e58 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000017_cbfc10b8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000018_a7d72042.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000018_a7d72042.szcp new file mode 100644 index 00000000..b8132ccf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000018_a7d72042.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000019_0f029dcd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000019_0f029dcd.szcp new file mode 100644 index 00000000..b4c6506b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000019_0f029dcd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000020_cada994f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000020_cada994f.szcp new file mode 100644 index 00000000..475161fa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000020_cada994f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000021_65e0e3bc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000021_65e0e3bc.szcp new file mode 100644 index 00000000..4a01b0e6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000021_65e0e3bc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000022_608036c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000022_608036c3.szcp new file mode 100644 index 00000000..df05f0f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000022_608036c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000023_18b20dca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000023_18b20dca.szcp new file mode 100644 index 00000000..9495fdc9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000023_18b20dca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000024_27fdceed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000024_27fdceed.szcp new file mode 100644 index 00000000..4a60c6bb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_012/checkpoints/checkpoint_00000000000000000024_27fdceed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000001_31815476.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000001_31815476.szar new file mode 100644 index 00000000..7dd2905c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000001_31815476.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000002_95b76b42.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000002_95b76b42.szar new file mode 100644 index 00000000..ec2feb03 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000002_95b76b42.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000003_47c3bcec.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000003_47c3bcec.szar new file mode 100644 index 00000000..8e38bba4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000003_47c3bcec.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000004_5470adb8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000004_5470adb8.szar new file mode 100644 index 00000000..2e0dd4ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000004_5470adb8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000005_df6b4916.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000005_df6b4916.szar new file mode 100644 index 00000000..b2e9b288 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000005_df6b4916.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000006_018351c5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000006_018351c5.szar new file mode 100644 index 00000000..69555e13 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000006_018351c5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000007_4444dc39.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000007_4444dc39.szar new file mode 100644 index 00000000..a5253860 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000007_4444dc39.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000008_f26926f2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000008_f26926f2.szar new file mode 100644 index 00000000..7c8c33bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000008_f26926f2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000009_6ba054d6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000009_6ba054d6.szar new file mode 100644 index 00000000..fc6145ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000009_6ba054d6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000010_0374fc4a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000010_0374fc4a.szar new file mode 100644 index 00000000..dae3101b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000010_0374fc4a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000011_8b53ed2c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000011_8b53ed2c.szar new file mode 100644 index 00000000..505e46f1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000011_8b53ed2c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000012_c9cbfa6a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000012_c9cbfa6a.szar new file mode 100644 index 00000000..521aee0d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000012_c9cbfa6a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000013_bf0273ae.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000013_bf0273ae.szar new file mode 100644 index 00000000..be891ac0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000013_bf0273ae.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000014_5a84fcb5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000014_5a84fcb5.szar new file mode 100644 index 00000000..7024e3ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000014_5a84fcb5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000015_0641223d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000015_0641223d.szar new file mode 100644 index 00000000..8774bc3f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000015_0641223d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000016_7a604192.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000016_7a604192.szar new file mode 100644 index 00000000..0cb6fcc7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000016_7a604192.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000017_6dd4b6e6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000017_6dd4b6e6.szar new file mode 100644 index 00000000..ee45fad0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000017_6dd4b6e6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000018_e350c261.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000018_e350c261.szar new file mode 100644 index 00000000..9099dade Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000018_e350c261.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000019_1fa80d04.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000019_1fa80d04.szar new file mode 100644 index 00000000..046c00ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000019_1fa80d04.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000020_bcc2ef3b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000020_bcc2ef3b.szar new file mode 100644 index 00000000..4714e0eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000020_bcc2ef3b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000021_00e04163.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000021_00e04163.szar new file mode 100644 index 00000000..655d1e8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000021_00e04163.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000022_8b15e59b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000022_8b15e59b.szar new file mode 100644 index 00000000..924e3e2b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000022_8b15e59b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000023_7c529d08.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000023_7c529d08.szar new file mode 100644 index 00000000..07cbe677 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000023_7c529d08.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000024_7d65e3d3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000024_7d65e3d3.szar new file mode 100644 index 00000000..39afff20 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000024_7d65e3d3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000025_a20d012e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000025_a20d012e.szar new file mode 100644 index 00000000..07e1b595 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000025_a20d012e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000026_f4d55957.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000026_f4d55957.szar new file mode 100644 index 00000000..03784436 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000026_f4d55957.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000027_cf1531b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000027_cf1531b9.szar new file mode 100644 index 00000000..af9e9597 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000027_cf1531b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000028_fc71991d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000028_fc71991d.szar new file mode 100644 index 00000000..4d86b26a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000028_fc71991d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000029_3c004187.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000029_3c004187.szar new file mode 100644 index 00000000..d290a9e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/archive/delta_00000000000000000029_3c004187.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000001_c3c30411.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000001_c3c30411.szcp new file mode 100644 index 00000000..b8911a3b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000001_c3c30411.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000002_9f526576.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000002_9f526576.szcp new file mode 100644 index 00000000..b12e115d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000002_9f526576.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000003_f8dbd845.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000003_f8dbd845.szcp new file mode 100644 index 00000000..2a33954a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000003_f8dbd845.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000004_78bf4052.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000004_78bf4052.szcp new file mode 100644 index 00000000..bd0d08a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000004_78bf4052.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000005_6e76bfb9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000005_6e76bfb9.szcp new file mode 100644 index 00000000..673ed5a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000005_6e76bfb9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000006_95f921f1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000006_95f921f1.szcp new file mode 100644 index 00000000..ba9e4773 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000006_95f921f1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000007_2fb16b36.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000007_2fb16b36.szcp new file mode 100644 index 00000000..6c225f16 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000007_2fb16b36.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000008_5e59f2e6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000008_5e59f2e6.szcp new file mode 100644 index 00000000..a37c279a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000008_5e59f2e6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000009_1db36ebf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000009_1db36ebf.szcp new file mode 100644 index 00000000..7f5ecc16 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000009_1db36ebf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000010_7b0490c9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000010_7b0490c9.szcp new file mode 100644 index 00000000..dda4c8df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000010_7b0490c9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000011_3775d8e0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000011_3775d8e0.szcp new file mode 100644 index 00000000..dba200af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000011_3775d8e0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000012_e6ba7312.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000012_e6ba7312.szcp new file mode 100644 index 00000000..e6efb89d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000012_e6ba7312.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000013_70ee6a91.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000013_70ee6a91.szcp new file mode 100644 index 00000000..0cbb851a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000013_70ee6a91.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000014_10eb2d11.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000014_10eb2d11.szcp new file mode 100644 index 00000000..f1f443c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000014_10eb2d11.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000015_21660ba0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000015_21660ba0.szcp new file mode 100644 index 00000000..a310e9cf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000015_21660ba0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000016_11721969.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000016_11721969.szcp new file mode 100644 index 00000000..85673d45 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000016_11721969.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000017_c0ce23c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000017_c0ce23c3.szcp new file mode 100644 index 00000000..b6f8798d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000017_c0ce23c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000018_5651fb0b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000018_5651fb0b.szcp new file mode 100644 index 00000000..3df8cce1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000018_5651fb0b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000019_6c9ac7f8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000019_6c9ac7f8.szcp new file mode 100644 index 00000000..e4f819d2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000019_6c9ac7f8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000020_e94ffa6d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000020_e94ffa6d.szcp new file mode 100644 index 00000000..b45bb32d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000020_e94ffa6d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000021_bbc43d2f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000021_bbc43d2f.szcp new file mode 100644 index 00000000..f22f639f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000021_bbc43d2f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000022_eeee53fa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000022_eeee53fa.szcp new file mode 100644 index 00000000..ccbc7f65 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000022_eeee53fa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000023_e9efbf52.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000023_e9efbf52.szcp new file mode 100644 index 00000000..1bdcdfc3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000023_e9efbf52.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000024_bd1bcb50.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000024_bd1bcb50.szcp new file mode 100644 index 00000000..ac7b3457 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000024_bd1bcb50.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000025_8b748dfa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000025_8b748dfa.szcp new file mode 100644 index 00000000..d249d13d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000025_8b748dfa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000026_19d04fd9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000026_19d04fd9.szcp new file mode 100644 index 00000000..7e22b71a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000026_19d04fd9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000027_f132275e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000027_f132275e.szcp new file mode 100644 index 00000000..c51318a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000027_f132275e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000028_3f845df1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000028_3f845df1.szcp new file mode 100644 index 00000000..73fc7ca7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000028_3f845df1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000029_95f45300.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000029_95f45300.szcp new file mode 100644 index 00000000..30d5bacd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_013/checkpoints/checkpoint_00000000000000000029_95f45300.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000001_462dede5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000001_462dede5.szar new file mode 100644 index 00000000..ba380583 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000001_462dede5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000002_db8ff2aa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000002_db8ff2aa.szar new file mode 100644 index 00000000..cdc0f5c1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000002_db8ff2aa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000003_9bd24632.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000003_9bd24632.szar new file mode 100644 index 00000000..b09ac4ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000003_9bd24632.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000004_b894f18c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000004_b894f18c.szar new file mode 100644 index 00000000..7958c372 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000004_b894f18c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000005_2c89e0ff.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000005_2c89e0ff.szar new file mode 100644 index 00000000..f969572e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000005_2c89e0ff.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000006_e2b71aff.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000006_e2b71aff.szar new file mode 100644 index 00000000..3bb61d15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000006_e2b71aff.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000007_5b4d648b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000007_5b4d648b.szar new file mode 100644 index 00000000..62d233e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000007_5b4d648b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000008_d7c9db51.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000008_d7c9db51.szar new file mode 100644 index 00000000..d9fc1e21 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000008_d7c9db51.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000009_b23fdc36.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000009_b23fdc36.szar new file mode 100644 index 00000000..7235d28d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000009_b23fdc36.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000010_e5982951.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000010_e5982951.szar new file mode 100644 index 00000000..7ef53234 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000010_e5982951.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000011_13117cde.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000011_13117cde.szar new file mode 100644 index 00000000..5482310b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000011_13117cde.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000012_6add2a96.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000012_6add2a96.szar new file mode 100644 index 00000000..5cd72bc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000012_6add2a96.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000013_de9468ae.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000013_de9468ae.szar new file mode 100644 index 00000000..2dcef452 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000013_de9468ae.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000014_2d80d8e2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000014_2d80d8e2.szar new file mode 100644 index 00000000..85c97543 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000014_2d80d8e2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000015_2080b85b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000015_2080b85b.szar new file mode 100644 index 00000000..e685ecbb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000015_2080b85b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000016_423f3f13.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000016_423f3f13.szar new file mode 100644 index 00000000..07ca67b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000016_423f3f13.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000017_321620c3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000017_321620c3.szar new file mode 100644 index 00000000..219106d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000017_321620c3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000018_8fc61ea3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000018_8fc61ea3.szar new file mode 100644 index 00000000..007d896f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000018_8fc61ea3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000019_7eef0da7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000019_7eef0da7.szar new file mode 100644 index 00000000..a30f7842 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000019_7eef0da7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000020_c4c15001.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000020_c4c15001.szar new file mode 100644 index 00000000..ff26dfaf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000020_c4c15001.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000021_448bb89a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000021_448bb89a.szar new file mode 100644 index 00000000..ce8d65ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000021_448bb89a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000022_ec704e0b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000022_ec704e0b.szar new file mode 100644 index 00000000..e19bb95d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/archive/delta_00000000000000000022_ec704e0b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000001_5d152752.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000001_5d152752.szcp new file mode 100644 index 00000000..dcb182a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000001_5d152752.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000002_898f2f39.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000002_898f2f39.szcp new file mode 100644 index 00000000..0a448135 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000002_898f2f39.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000003_06ba90d8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000003_06ba90d8.szcp new file mode 100644 index 00000000..529a6305 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000003_06ba90d8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000004_9cab916d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000004_9cab916d.szcp new file mode 100644 index 00000000..40e7de26 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000004_9cab916d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000005_10bd53c9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000005_10bd53c9.szcp new file mode 100644 index 00000000..1ab874e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000005_10bd53c9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000006_a35d3500.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000006_a35d3500.szcp new file mode 100644 index 00000000..22580c5c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000006_a35d3500.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000007_7d1ff342.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000007_7d1ff342.szcp new file mode 100644 index 00000000..0209f07f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000007_7d1ff342.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000008_a2674b9b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000008_a2674b9b.szcp new file mode 100644 index 00000000..8fd327ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000008_a2674b9b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000009_6609fd13.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000009_6609fd13.szcp new file mode 100644 index 00000000..e625ff66 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000009_6609fd13.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000010_d0d6cef0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000010_d0d6cef0.szcp new file mode 100644 index 00000000..5c97b3bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000010_d0d6cef0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000011_872fd00f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000011_872fd00f.szcp new file mode 100644 index 00000000..b9d96d6d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000011_872fd00f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000012_fffe0bf1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000012_fffe0bf1.szcp new file mode 100644 index 00000000..b898f340 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000012_fffe0bf1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000013_7ef94c37.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000013_7ef94c37.szcp new file mode 100644 index 00000000..8b07c66d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000013_7ef94c37.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000014_eb81b09c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000014_eb81b09c.szcp new file mode 100644 index 00000000..0c947845 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000014_eb81b09c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000015_3bc5f2dc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000015_3bc5f2dc.szcp new file mode 100644 index 00000000..c5a8ddbd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000015_3bc5f2dc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000016_058e02e4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000016_058e02e4.szcp new file mode 100644 index 00000000..2e31af6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000016_058e02e4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000017_fbf0cd36.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000017_fbf0cd36.szcp new file mode 100644 index 00000000..1ba5fc64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000017_fbf0cd36.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000018_a9e4db2a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000018_a9e4db2a.szcp new file mode 100644 index 00000000..74cf6fb9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000018_a9e4db2a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000019_c0671794.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000019_c0671794.szcp new file mode 100644 index 00000000..832e7faa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000019_c0671794.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000020_a00bd742.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000020_a00bd742.szcp new file mode 100644 index 00000000..b75b6a22 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000020_a00bd742.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000021_c2484c89.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000021_c2484c89.szcp new file mode 100644 index 00000000..c662a6ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000021_c2484c89.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000022_b1dbe882.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000022_b1dbe882.szcp new file mode 100644 index 00000000..7561370d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_014/checkpoints/checkpoint_00000000000000000022_b1dbe882.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000001_0a65cdc6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000001_0a65cdc6.szar new file mode 100644 index 00000000..621aaa0d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000001_0a65cdc6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000002_aa7af833.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000002_aa7af833.szar new file mode 100644 index 00000000..12ca3fbd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000002_aa7af833.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000003_b0ea7ae3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000003_b0ea7ae3.szar new file mode 100644 index 00000000..be73a0eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000003_b0ea7ae3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000004_2dc3291d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000004_2dc3291d.szar new file mode 100644 index 00000000..d184f9e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000004_2dc3291d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000005_2dcacceb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000005_2dcacceb.szar new file mode 100644 index 00000000..d63b1eb1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000005_2dcacceb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000006_6234a967.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000006_6234a967.szar new file mode 100644 index 00000000..2f2fff7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000006_6234a967.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000007_9ffbd457.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000007_9ffbd457.szar new file mode 100644 index 00000000..bc0edd2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000007_9ffbd457.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000008_ffaa621d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000008_ffaa621d.szar new file mode 100644 index 00000000..679c42ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000008_ffaa621d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000009_65cc2d82.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000009_65cc2d82.szar new file mode 100644 index 00000000..794477f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000009_65cc2d82.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000010_0a1ae286.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000010_0a1ae286.szar new file mode 100644 index 00000000..ff6972f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000010_0a1ae286.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000011_9b55e080.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000011_9b55e080.szar new file mode 100644 index 00000000..4b4a59d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000011_9b55e080.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000012_83a11962.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000012_83a11962.szar new file mode 100644 index 00000000..26516cb7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000012_83a11962.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000013_a550ba3e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000013_a550ba3e.szar new file mode 100644 index 00000000..3b71a0a3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000013_a550ba3e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000014_639f439d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000014_639f439d.szar new file mode 100644 index 00000000..91f837ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000014_639f439d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000015_456eb81d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000015_456eb81d.szar new file mode 100644 index 00000000..b9cd12e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000015_456eb81d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000016_dff4203f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000016_dff4203f.szar new file mode 100644 index 00000000..f92b10d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000016_dff4203f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000017_bc9a43df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000017_bc9a43df.szar new file mode 100644 index 00000000..a7fbb62d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/archive/delta_00000000000000000017_bc9a43df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000001_710c24bd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000001_710c24bd.szcp new file mode 100644 index 00000000..89ae8da7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000001_710c24bd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000002_a6255ecf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000002_a6255ecf.szcp new file mode 100644 index 00000000..7e83b047 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000002_a6255ecf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000003_8252c729.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000003_8252c729.szcp new file mode 100644 index 00000000..88b030d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000003_8252c729.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000004_d0f41119.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000004_d0f41119.szcp new file mode 100644 index 00000000..08a07aa5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000004_d0f41119.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000005_2a4e000d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000005_2a4e000d.szcp new file mode 100644 index 00000000..1ec10459 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000005_2a4e000d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000006_f79c141c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000006_f79c141c.szcp new file mode 100644 index 00000000..ed020e29 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000006_f79c141c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000007_20309c6e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000007_20309c6e.szcp new file mode 100644 index 00000000..ee88ca7c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000007_20309c6e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000008_54a3fd31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000008_54a3fd31.szcp new file mode 100644 index 00000000..b92174ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000008_54a3fd31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000009_e9c4da98.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000009_e9c4da98.szcp new file mode 100644 index 00000000..65750054 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000009_e9c4da98.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000010_9b0fabfa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000010_9b0fabfa.szcp new file mode 100644 index 00000000..294264aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000010_9b0fabfa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000011_1a5644ef.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000011_1a5644ef.szcp new file mode 100644 index 00000000..d107c520 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000011_1a5644ef.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000012_53e89eb6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000012_53e89eb6.szcp new file mode 100644 index 00000000..67fa8963 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000012_53e89eb6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000013_79bd4f0c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000013_79bd4f0c.szcp new file mode 100644 index 00000000..93d5fedf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000013_79bd4f0c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000014_2321af40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000014_2321af40.szcp new file mode 100644 index 00000000..23b2ef27 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000014_2321af40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000015_8ff017cf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000015_8ff017cf.szcp new file mode 100644 index 00000000..f7f58899 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000015_8ff017cf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000016_ce2bd57d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000016_ce2bd57d.szcp new file mode 100644 index 00000000..8c0c4d9f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000016_ce2bd57d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000017_20914e4e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000017_20914e4e.szcp new file mode 100644 index 00000000..cf75df14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_015/checkpoints/checkpoint_00000000000000000017_20914e4e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000001_de2575eb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000001_de2575eb.szar new file mode 100644 index 00000000..893ef446 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000001_de2575eb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000002_b34e8a65.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000002_b34e8a65.szar new file mode 100644 index 00000000..fd61c610 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000002_b34e8a65.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000003_caa6379d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000003_caa6379d.szar new file mode 100644 index 00000000..c44747da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000003_caa6379d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000004_29e687c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000004_29e687c7.szar new file mode 100644 index 00000000..a4b294ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000004_29e687c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000005_8461df57.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000005_8461df57.szar new file mode 100644 index 00000000..3496d336 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000005_8461df57.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000006_3d8b05b4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000006_3d8b05b4.szar new file mode 100644 index 00000000..d3f6efe5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000006_3d8b05b4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000007_663cc17e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000007_663cc17e.szar new file mode 100644 index 00000000..55b24d06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000007_663cc17e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000008_f207cb9c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000008_f207cb9c.szar new file mode 100644 index 00000000..864b6bb5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000008_f207cb9c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000009_5da5dfdc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000009_5da5dfdc.szar new file mode 100644 index 00000000..7236488b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000009_5da5dfdc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000010_1a047124.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000010_1a047124.szar new file mode 100644 index 00000000..c42045c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000010_1a047124.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000011_e81404d6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000011_e81404d6.szar new file mode 100644 index 00000000..32217f31 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000011_e81404d6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000012_4a86f3ef.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000012_4a86f3ef.szar new file mode 100644 index 00000000..63db4d6d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000012_4a86f3ef.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000013_d5ad379d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000013_d5ad379d.szar new file mode 100644 index 00000000..70bf43c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000013_d5ad379d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000014_e773c70d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000014_e773c70d.szar new file mode 100644 index 00000000..0612d53d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000014_e773c70d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000015_9cc6110b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000015_9cc6110b.szar new file mode 100644 index 00000000..85103f6c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000015_9cc6110b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000016_8c4f83b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000016_8c4f83b9.szar new file mode 100644 index 00000000..2fe0d02e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000016_8c4f83b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000017_bdd49024.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000017_bdd49024.szar new file mode 100644 index 00000000..1e2fa9ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000017_bdd49024.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000018_d55b507a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000018_d55b507a.szar new file mode 100644 index 00000000..c5c2bbee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000018_d55b507a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000019_72f72684.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000019_72f72684.szar new file mode 100644 index 00000000..1cc2c697 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000019_72f72684.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000020_545d4fe3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000020_545d4fe3.szar new file mode 100644 index 00000000..6ed102cc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000020_545d4fe3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000021_792edf0f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000021_792edf0f.szar new file mode 100644 index 00000000..aa426c95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000021_792edf0f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000022_45c4dc7a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000022_45c4dc7a.szar new file mode 100644 index 00000000..dd1560fa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000022_45c4dc7a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000023_59e25975.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000023_59e25975.szar new file mode 100644 index 00000000..c9be5106 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000023_59e25975.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000024_4b3436e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000024_4b3436e8.szar new file mode 100644 index 00000000..09debdfe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000024_4b3436e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000025_e6dfaea2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000025_e6dfaea2.szar new file mode 100644 index 00000000..7714e99a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/archive/delta_00000000000000000025_e6dfaea2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000001_03f78c1c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000001_03f78c1c.szcp new file mode 100644 index 00000000..6d6571e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000001_03f78c1c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000002_52e5e805.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000002_52e5e805.szcp new file mode 100644 index 00000000..2f671f2c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000002_52e5e805.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000003_bb5401e2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000003_bb5401e2.szcp new file mode 100644 index 00000000..e3511582 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000003_bb5401e2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000004_dab20c00.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000004_dab20c00.szcp new file mode 100644 index 00000000..fdf1d725 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000004_dab20c00.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000005_46de176e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000005_46de176e.szcp new file mode 100644 index 00000000..84460b4c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000005_46de176e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000006_0eb85c69.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000006_0eb85c69.szcp new file mode 100644 index 00000000..981e4301 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000006_0eb85c69.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000007_473ee821.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000007_473ee821.szcp new file mode 100644 index 00000000..09eb633b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000007_473ee821.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000008_44ab2e3f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000008_44ab2e3f.szcp new file mode 100644 index 00000000..c23ce83b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000008_44ab2e3f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000009_2dad7c73.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000009_2dad7c73.szcp new file mode 100644 index 00000000..78ded79b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000009_2dad7c73.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000010_be7c6947.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000010_be7c6947.szcp new file mode 100644 index 00000000..d2119625 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000010_be7c6947.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000011_0628e2b2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000011_0628e2b2.szcp new file mode 100644 index 00000000..1f0825d4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000011_0628e2b2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000012_7f5a1c61.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000012_7f5a1c61.szcp new file mode 100644 index 00000000..30d65d41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000012_7f5a1c61.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000013_aed43ce1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000013_aed43ce1.szcp new file mode 100644 index 00000000..bfd17059 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000013_aed43ce1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000014_63751d5e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000014_63751d5e.szcp new file mode 100644 index 00000000..bf835d91 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000014_63751d5e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000015_2abe1d50.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000015_2abe1d50.szcp new file mode 100644 index 00000000..20647302 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000015_2abe1d50.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000016_8e31f9b6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000016_8e31f9b6.szcp new file mode 100644 index 00000000..e9e9a890 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000016_8e31f9b6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000017_da232022.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000017_da232022.szcp new file mode 100644 index 00000000..31f9108c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000017_da232022.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000018_6269d698.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000018_6269d698.szcp new file mode 100644 index 00000000..077f5f0f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000018_6269d698.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000019_bb4eaa7b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000019_bb4eaa7b.szcp new file mode 100644 index 00000000..1879eba6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000019_bb4eaa7b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000020_04c506e1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000020_04c506e1.szcp new file mode 100644 index 00000000..b25397d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000020_04c506e1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000021_e6fe682f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000021_e6fe682f.szcp new file mode 100644 index 00000000..f0b7e885 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000021_e6fe682f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000022_0553410e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000022_0553410e.szcp new file mode 100644 index 00000000..bac3eaec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000022_0553410e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000023_e8bb0f6f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000023_e8bb0f6f.szcp new file mode 100644 index 00000000..2775060f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000023_e8bb0f6f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000024_e9d14e63.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000024_e9d14e63.szcp new file mode 100644 index 00000000..e033327b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000024_e9d14e63.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000025_024ff41e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000025_024ff41e.szcp new file mode 100644 index 00000000..b7604aa4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_016/checkpoints/checkpoint_00000000000000000025_024ff41e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000001_7e0fc82c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000001_7e0fc82c.szar new file mode 100644 index 00000000..bf0c36c1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000001_7e0fc82c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000002_ed936412.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000002_ed936412.szar new file mode 100644 index 00000000..3dff2092 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000002_ed936412.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000003_62ac5ba6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000003_62ac5ba6.szar new file mode 100644 index 00000000..b2a9c366 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000003_62ac5ba6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000004_e93f7510.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000004_e93f7510.szar new file mode 100644 index 00000000..46ecd7a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000004_e93f7510.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000005_8d139a08.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000005_8d139a08.szar new file mode 100644 index 00000000..258f7fcf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000005_8d139a08.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000006_41061a10.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000006_41061a10.szar new file mode 100644 index 00000000..95a01d78 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000006_41061a10.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000007_f78df6a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000007_f78df6a3.szar new file mode 100644 index 00000000..63939407 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000007_f78df6a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000008_7aa08e1f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000008_7aa08e1f.szar new file mode 100644 index 00000000..a75130cd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000008_7aa08e1f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000009_53327115.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000009_53327115.szar new file mode 100644 index 00000000..62429197 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000009_53327115.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000010_96aab179.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000010_96aab179.szar new file mode 100644 index 00000000..e08181ff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000010_96aab179.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000011_3e648c5d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000011_3e648c5d.szar new file mode 100644 index 00000000..d4cee054 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000011_3e648c5d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000012_f2d36f65.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000012_f2d36f65.szar new file mode 100644 index 00000000..454118a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000012_f2d36f65.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000013_d5a3f93d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000013_d5a3f93d.szar new file mode 100644 index 00000000..36be99af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000013_d5a3f93d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000014_309a1092.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000014_309a1092.szar new file mode 100644 index 00000000..4915d796 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000014_309a1092.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000015_7519ccb8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000015_7519ccb8.szar new file mode 100644 index 00000000..d711b92e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000015_7519ccb8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000016_3bf303cb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000016_3bf303cb.szar new file mode 100644 index 00000000..c240d0c8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000016_3bf303cb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000017_7a0c59e6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000017_7a0c59e6.szar new file mode 100644 index 00000000..83558768 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000017_7a0c59e6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000018_2b89b7be.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000018_2b89b7be.szar new file mode 100644 index 00000000..2d610cef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000018_2b89b7be.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000019_4899098d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000019_4899098d.szar new file mode 100644 index 00000000..107c7975 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000019_4899098d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000020_5deeeae2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000020_5deeeae2.szar new file mode 100644 index 00000000..691d8301 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000020_5deeeae2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000021_aa2bb114.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000021_aa2bb114.szar new file mode 100644 index 00000000..7aabf297 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000021_aa2bb114.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000022_02a96abe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000022_02a96abe.szar new file mode 100644 index 00000000..739ddb2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000022_02a96abe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000023_320c5e90.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000023_320c5e90.szar new file mode 100644 index 00000000..00475166 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000023_320c5e90.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000024_c0fd98b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000024_c0fd98b9.szar new file mode 100644 index 00000000..298496b4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000024_c0fd98b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000025_144eff4e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000025_144eff4e.szar new file mode 100644 index 00000000..a74e5b84 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000025_144eff4e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000026_42318a40.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000026_42318a40.szar new file mode 100644 index 00000000..9b75a731 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000026_42318a40.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000027_3096e0e6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000027_3096e0e6.szar new file mode 100644 index 00000000..1467e35e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000027_3096e0e6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000028_c2816736.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000028_c2816736.szar new file mode 100644 index 00000000..fb1eaf0a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000028_c2816736.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000029_169506ec.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000029_169506ec.szar new file mode 100644 index 00000000..aa2ab543 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/archive/delta_00000000000000000029_169506ec.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000001_5cc26d27.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000001_5cc26d27.szcp new file mode 100644 index 00000000..92901be2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000001_5cc26d27.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000002_8701b556.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000002_8701b556.szcp new file mode 100644 index 00000000..b58052ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000002_8701b556.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000003_7d6dd9df.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000003_7d6dd9df.szcp new file mode 100644 index 00000000..246a6c5e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000003_7d6dd9df.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000004_6e5de2b4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000004_6e5de2b4.szcp new file mode 100644 index 00000000..81b7eee4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000004_6e5de2b4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000005_f444cd2a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000005_f444cd2a.szcp new file mode 100644 index 00000000..e21b1410 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000005_f444cd2a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000006_29327bc0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000006_29327bc0.szcp new file mode 100644 index 00000000..fd081a7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000006_29327bc0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000007_ece6cfb1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000007_ece6cfb1.szcp new file mode 100644 index 00000000..e721523e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000007_ece6cfb1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000008_e355a7ed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000008_e355a7ed.szcp new file mode 100644 index 00000000..ab53ef20 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000008_e355a7ed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000009_7deb667a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000009_7deb667a.szcp new file mode 100644 index 00000000..ace0a42e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000009_7deb667a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000010_4b7f8d19.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000010_4b7f8d19.szcp new file mode 100644 index 00000000..bffb6369 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000010_4b7f8d19.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000011_8883ada1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000011_8883ada1.szcp new file mode 100644 index 00000000..9f550a7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000011_8883ada1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000012_b8e0efe5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000012_b8e0efe5.szcp new file mode 100644 index 00000000..f2cbc079 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000012_b8e0efe5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000013_9cbde40e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000013_9cbde40e.szcp new file mode 100644 index 00000000..ebf1f018 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000013_9cbde40e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000014_f1e93161.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000014_f1e93161.szcp new file mode 100644 index 00000000..54637906 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000014_f1e93161.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000015_ddc25ccf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000015_ddc25ccf.szcp new file mode 100644 index 00000000..c525c98d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000015_ddc25ccf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000016_ccfe29a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000016_ccfe29a8.szcp new file mode 100644 index 00000000..102db708 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000016_ccfe29a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000017_f36798cc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000017_f36798cc.szcp new file mode 100644 index 00000000..8504882f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000017_f36798cc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000018_a2ef65ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000018_a2ef65ca.szcp new file mode 100644 index 00000000..b92880c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000018_a2ef65ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000019_0163130b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000019_0163130b.szcp new file mode 100644 index 00000000..9b5cf7a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000019_0163130b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000020_8be287f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000020_8be287f7.szcp new file mode 100644 index 00000000..9f238357 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000020_8be287f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000021_48c0dea5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000021_48c0dea5.szcp new file mode 100644 index 00000000..78c4926f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000021_48c0dea5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000022_1243af72.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000022_1243af72.szcp new file mode 100644 index 00000000..d11e5e41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000022_1243af72.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000023_34e9bb5a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000023_34e9bb5a.szcp new file mode 100644 index 00000000..12f2b8b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000023_34e9bb5a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000024_7ee16a08.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000024_7ee16a08.szcp new file mode 100644 index 00000000..a79afbd7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000024_7ee16a08.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000025_93bf3c87.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000025_93bf3c87.szcp new file mode 100644 index 00000000..9fb8357b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000025_93bf3c87.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000026_65befc40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000026_65befc40.szcp new file mode 100644 index 00000000..45f3a706 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000026_65befc40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000027_4ecca774.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000027_4ecca774.szcp new file mode 100644 index 00000000..a88a2d3b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000027_4ecca774.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000028_32bb2285.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000028_32bb2285.szcp new file mode 100644 index 00000000..5429b20e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000028_32bb2285.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000029_b8003eb6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000029_b8003eb6.szcp new file mode 100644 index 00000000..5aa9b05e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_017/checkpoints/checkpoint_00000000000000000029_b8003eb6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000001_f2d0c997.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000001_f2d0c997.szar new file mode 100644 index 00000000..d52655c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000001_f2d0c997.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000002_2b1ff825.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000002_2b1ff825.szar new file mode 100644 index 00000000..5c45c045 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000002_2b1ff825.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000003_d42a5e2d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000003_d42a5e2d.szar new file mode 100644 index 00000000..29b55db5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000003_d42a5e2d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000004_f68d333d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000004_f68d333d.szar new file mode 100644 index 00000000..5739635b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000004_f68d333d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000005_e502fa4a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000005_e502fa4a.szar new file mode 100644 index 00000000..74b78aaf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000005_e502fa4a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000006_fa0d8066.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000006_fa0d8066.szar new file mode 100644 index 00000000..b82cfc14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000006_fa0d8066.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000007_2dcc1870.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000007_2dcc1870.szar new file mode 100644 index 00000000..4a5b4bef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000007_2dcc1870.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000008_e2c551d9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000008_e2c551d9.szar new file mode 100644 index 00000000..8d8e54eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000008_e2c551d9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000009_35d48d7a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000009_35d48d7a.szar new file mode 100644 index 00000000..e7b79ad4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000009_35d48d7a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000010_b630aec0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000010_b630aec0.szar new file mode 100644 index 00000000..81e312fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000010_b630aec0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000011_1c24f859.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000011_1c24f859.szar new file mode 100644 index 00000000..8cd05362 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000011_1c24f859.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000012_8f76db36.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000012_8f76db36.szar new file mode 100644 index 00000000..fa5e6c03 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000012_8f76db36.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000013_ba572c63.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000013_ba572c63.szar new file mode 100644 index 00000000..6cad7693 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000013_ba572c63.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000014_752d21e0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000014_752d21e0.szar new file mode 100644 index 00000000..7cd93b23 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000014_752d21e0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000015_f15b3759.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000015_f15b3759.szar new file mode 100644 index 00000000..224a462e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000015_f15b3759.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000016_26a5d994.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000016_26a5d994.szar new file mode 100644 index 00000000..60b590b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/archive/delta_00000000000000000016_26a5d994.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000001_181dec45.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000001_181dec45.szcp new file mode 100644 index 00000000..c0bf1327 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000001_181dec45.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000002_12ebf443.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000002_12ebf443.szcp new file mode 100644 index 00000000..ded26672 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000002_12ebf443.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000003_68354d40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000003_68354d40.szcp new file mode 100644 index 00000000..7b7c9fd3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000003_68354d40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000004_b6ad865e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000004_b6ad865e.szcp new file mode 100644 index 00000000..194f91db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000004_b6ad865e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000005_66f6b03a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000005_66f6b03a.szcp new file mode 100644 index 00000000..b0495e85 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000005_66f6b03a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000006_20e3afe7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000006_20e3afe7.szcp new file mode 100644 index 00000000..cdf01e1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000006_20e3afe7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000007_d3176a31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000007_d3176a31.szcp new file mode 100644 index 00000000..6ae1ad03 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000007_d3176a31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000008_843e6b60.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000008_843e6b60.szcp new file mode 100644 index 00000000..9d33e4bb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000008_843e6b60.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000009_0f4b143a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000009_0f4b143a.szcp new file mode 100644 index 00000000..11a55ea9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000009_0f4b143a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000010_3543cc8d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000010_3543cc8d.szcp new file mode 100644 index 00000000..593aac53 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000010_3543cc8d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000011_965a09cf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000011_965a09cf.szcp new file mode 100644 index 00000000..aac6b9c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000011_965a09cf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000012_ee5e6a0f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000012_ee5e6a0f.szcp new file mode 100644 index 00000000..b207e90a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000012_ee5e6a0f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000013_06d34b09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000013_06d34b09.szcp new file mode 100644 index 00000000..1e6a5d03 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000013_06d34b09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000014_38363558.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000014_38363558.szcp new file mode 100644 index 00000000..065742d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000014_38363558.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000015_0551b7e9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000015_0551b7e9.szcp new file mode 100644 index 00000000..badb5d2b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000015_0551b7e9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000016_58b86886.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000016_58b86886.szcp new file mode 100644 index 00000000..5c62989d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_018/checkpoints/checkpoint_00000000000000000016_58b86886.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000001_d7a0ac37.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000001_d7a0ac37.szar new file mode 100644 index 00000000..5625de32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000001_d7a0ac37.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000002_0f9170a0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000002_0f9170a0.szar new file mode 100644 index 00000000..f579cfac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000002_0f9170a0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000003_7a941677.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000003_7a941677.szar new file mode 100644 index 00000000..5ec10858 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000003_7a941677.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000004_9fb78050.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000004_9fb78050.szar new file mode 100644 index 00000000..d994ee10 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000004_9fb78050.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000005_2ccc3c24.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000005_2ccc3c24.szar new file mode 100644 index 00000000..44ce838e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000005_2ccc3c24.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000006_d9576c78.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000006_d9576c78.szar new file mode 100644 index 00000000..7e1a4895 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000006_d9576c78.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000007_32bf796f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000007_32bf796f.szar new file mode 100644 index 00000000..34d47551 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000007_32bf796f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000008_e5382188.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000008_e5382188.szar new file mode 100644 index 00000000..67ef4f5d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000008_e5382188.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000009_a70259dc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000009_a70259dc.szar new file mode 100644 index 00000000..207a67ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000009_a70259dc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000010_e5f8ea26.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000010_e5f8ea26.szar new file mode 100644 index 00000000..eb613d95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000010_e5f8ea26.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000011_8425a2f9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000011_8425a2f9.szar new file mode 100644 index 00000000..615a74ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000011_8425a2f9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000012_28872d0d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000012_28872d0d.szar new file mode 100644 index 00000000..48b961e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000012_28872d0d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000013_ea2b7e7d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000013_ea2b7e7d.szar new file mode 100644 index 00000000..4af32595 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000013_ea2b7e7d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000014_8fb0e9c1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000014_8fb0e9c1.szar new file mode 100644 index 00000000..d7538e89 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000014_8fb0e9c1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000015_d869d874.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000015_d869d874.szar new file mode 100644 index 00000000..45ac57f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000015_d869d874.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000016_fd919936.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000016_fd919936.szar new file mode 100644 index 00000000..5f34b3f9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000016_fd919936.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000017_02f87153.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000017_02f87153.szar new file mode 100644 index 00000000..0b56caf0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000017_02f87153.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000018_4dbab6f2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000018_4dbab6f2.szar new file mode 100644 index 00000000..b79d84e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/archive/delta_00000000000000000018_4dbab6f2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000001_5997cbbe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000001_5997cbbe.szcp new file mode 100644 index 00000000..7e3ca418 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000001_5997cbbe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000002_391fbbc5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000002_391fbbc5.szcp new file mode 100644 index 00000000..3cf4f677 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000002_391fbbc5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000003_8d8ee4ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000003_8d8ee4ca.szcp new file mode 100644 index 00000000..099fe9c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000003_8d8ee4ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000004_048ca4c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000004_048ca4c4.szcp new file mode 100644 index 00000000..581b8a36 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000004_048ca4c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000005_df4ddc15.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000005_df4ddc15.szcp new file mode 100644 index 00000000..6bb7a254 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000005_df4ddc15.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000006_b85a805e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000006_b85a805e.szcp new file mode 100644 index 00000000..c66e73ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000006_b85a805e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000007_afa4f6d9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000007_afa4f6d9.szcp new file mode 100644 index 00000000..b791c92f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000007_afa4f6d9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000008_df97eccb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000008_df97eccb.szcp new file mode 100644 index 00000000..cdb6291b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000008_df97eccb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000009_c64561ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000009_c64561ca.szcp new file mode 100644 index 00000000..f3298a12 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000009_c64561ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000010_0e5b25f4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000010_0e5b25f4.szcp new file mode 100644 index 00000000..6f52e7d6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000010_0e5b25f4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000011_dfe764ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000011_dfe764ca.szcp new file mode 100644 index 00000000..14ab8e59 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000011_dfe764ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000012_9c5691bb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000012_9c5691bb.szcp new file mode 100644 index 00000000..e90afcec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000012_9c5691bb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000013_0f072832.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000013_0f072832.szcp new file mode 100644 index 00000000..e1cb6d47 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000013_0f072832.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000014_27eb1463.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000014_27eb1463.szcp new file mode 100644 index 00000000..d7e3d52d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000014_27eb1463.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000015_42bbb941.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000015_42bbb941.szcp new file mode 100644 index 00000000..bf88e95f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000015_42bbb941.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000016_d1b1feb8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000016_d1b1feb8.szcp new file mode 100644 index 00000000..2380e0c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000016_d1b1feb8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000017_344f63e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000017_344f63e3.szcp new file mode 100644 index 00000000..ecd2b230 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000017_344f63e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000018_b89255b5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000018_b89255b5.szcp new file mode 100644 index 00000000..82d215c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_019/checkpoints/checkpoint_00000000000000000018_b89255b5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000001_21718beb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000001_21718beb.szar new file mode 100644 index 00000000..9122c3aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000001_21718beb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000002_dd128f13.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000002_dd128f13.szar new file mode 100644 index 00000000..6272d051 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000002_dd128f13.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000003_c8438a81.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000003_c8438a81.szar new file mode 100644 index 00000000..26ca4336 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000003_c8438a81.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000004_ae03e865.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000004_ae03e865.szar new file mode 100644 index 00000000..0233006a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000004_ae03e865.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000005_09ffa23a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000005_09ffa23a.szar new file mode 100644 index 00000000..6ed01131 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000005_09ffa23a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000006_31f886d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000006_31f886d0.szar new file mode 100644 index 00000000..684ba9a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000006_31f886d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000007_2f7d1053.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000007_2f7d1053.szar new file mode 100644 index 00000000..701dd01c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000007_2f7d1053.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000008_c6f23e06.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000008_c6f23e06.szar new file mode 100644 index 00000000..e1f64a3c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000008_c6f23e06.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000009_286e858d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000009_286e858d.szar new file mode 100644 index 00000000..482db406 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000009_286e858d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000010_5f5a723b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000010_5f5a723b.szar new file mode 100644 index 00000000..5dca2351 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000010_5f5a723b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000011_a866a51f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000011_a866a51f.szar new file mode 100644 index 00000000..4dc2d774 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000011_a866a51f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000012_75642679.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000012_75642679.szar new file mode 100644 index 00000000..8c80720a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000012_75642679.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000013_01d927de.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000013_01d927de.szar new file mode 100644 index 00000000..d03adf55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000013_01d927de.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000014_0558969d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000014_0558969d.szar new file mode 100644 index 00000000..a5a9da88 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000014_0558969d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000015_15329720.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000015_15329720.szar new file mode 100644 index 00000000..aea256bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000015_15329720.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000016_0d0ef8b7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000016_0d0ef8b7.szar new file mode 100644 index 00000000..8c8e15f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000016_0d0ef8b7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000017_dd088df6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000017_dd088df6.szar new file mode 100644 index 00000000..8b465e13 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/archive/delta_00000000000000000017_dd088df6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000001_abeed878.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000001_abeed878.szcp new file mode 100644 index 00000000..05e47e25 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000001_abeed878.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000002_48c0c26e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000002_48c0c26e.szcp new file mode 100644 index 00000000..db6289ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000002_48c0c26e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000003_06f313d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000003_06f313d3.szcp new file mode 100644 index 00000000..49753cf4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000003_06f313d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000004_9556e3a4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000004_9556e3a4.szcp new file mode 100644 index 00000000..73148f15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000004_9556e3a4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000005_26acd9e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000005_26acd9e3.szcp new file mode 100644 index 00000000..8689fc3b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000005_26acd9e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000006_80058d73.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000006_80058d73.szcp new file mode 100644 index 00000000..88acfb32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000006_80058d73.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000007_ae1b8273.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000007_ae1b8273.szcp new file mode 100644 index 00000000..c9bc5da6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000007_ae1b8273.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000008_824c2733.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000008_824c2733.szcp new file mode 100644 index 00000000..6ce3dccf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000008_824c2733.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000009_52c0434b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000009_52c0434b.szcp new file mode 100644 index 00000000..67c687cf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000009_52c0434b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000010_9887b051.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000010_9887b051.szcp new file mode 100644 index 00000000..3fdd453a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000010_9887b051.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000011_b32d286d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000011_b32d286d.szcp new file mode 100644 index 00000000..1fbb23e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000011_b32d286d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000012_fb96a22f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000012_fb96a22f.szcp new file mode 100644 index 00000000..f16df966 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000012_fb96a22f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000013_8c3503ae.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000013_8c3503ae.szcp new file mode 100644 index 00000000..317a3329 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000013_8c3503ae.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000014_985ed3fb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000014_985ed3fb.szcp new file mode 100644 index 00000000..9c7d8359 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000014_985ed3fb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000015_9edb8dcd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000015_9edb8dcd.szcp new file mode 100644 index 00000000..4bb4288e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000015_9edb8dcd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000016_a5bdfd3a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000016_a5bdfd3a.szcp new file mode 100644 index 00000000..7f02775b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000016_a5bdfd3a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000017_4aa409ae.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000017_4aa409ae.szcp new file mode 100644 index 00000000..ba536850 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_020/checkpoints/checkpoint_00000000000000000017_4aa409ae.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000001_5676a0a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000001_5676a0a7.szar new file mode 100644 index 00000000..18e5927d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000001_5676a0a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000002_5b58cd53.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000002_5b58cd53.szar new file mode 100644 index 00000000..834a852a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000002_5b58cd53.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000003_ae751358.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000003_ae751358.szar new file mode 100644 index 00000000..da4c0a62 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000003_ae751358.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000004_33f90132.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000004_33f90132.szar new file mode 100644 index 00000000..a1ee2b89 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000004_33f90132.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000005_fe18c3d2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000005_fe18c3d2.szar new file mode 100644 index 00000000..c8de6e64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000005_fe18c3d2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000006_e2cba8de.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000006_e2cba8de.szar new file mode 100644 index 00000000..afd1912a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000006_e2cba8de.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000007_4f879bd5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000007_4f879bd5.szar new file mode 100644 index 00000000..746c08dd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000007_4f879bd5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000008_870cd8e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000008_870cd8e5.szar new file mode 100644 index 00000000..1f39b07b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000008_870cd8e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000009_e206f359.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000009_e206f359.szar new file mode 100644 index 00000000..662da923 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000009_e206f359.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000010_b5ac8a6d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000010_b5ac8a6d.szar new file mode 100644 index 00000000..f250dedf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000010_b5ac8a6d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000011_9174e7cb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000011_9174e7cb.szar new file mode 100644 index 00000000..7ed46d17 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000011_9174e7cb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000012_277fccae.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000012_277fccae.szar new file mode 100644 index 00000000..b42d7cdf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000012_277fccae.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000013_7ac4b1a4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000013_7ac4b1a4.szar new file mode 100644 index 00000000..48a218cb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000013_7ac4b1a4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000014_73f0b20c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000014_73f0b20c.szar new file mode 100644 index 00000000..4aeaf93f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000014_73f0b20c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000015_540d0baa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000015_540d0baa.szar new file mode 100644 index 00000000..827cca29 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000015_540d0baa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000016_fceb22c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000016_fceb22c7.szar new file mode 100644 index 00000000..67ab105c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000016_fceb22c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000017_be03f3dd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000017_be03f3dd.szar new file mode 100644 index 00000000..a4318354 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000017_be03f3dd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000018_e9eba83d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000018_e9eba83d.szar new file mode 100644 index 00000000..19cb4dab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000018_e9eba83d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000019_22609d6c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000019_22609d6c.szar new file mode 100644 index 00000000..85e02a7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000019_22609d6c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000020_454f7e98.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000020_454f7e98.szar new file mode 100644 index 00000000..45d52fe1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000020_454f7e98.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000021_4ddb156c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000021_4ddb156c.szar new file mode 100644 index 00000000..b342dcbf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000021_4ddb156c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000022_6599d52e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000022_6599d52e.szar new file mode 100644 index 00000000..3a0ba3b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000022_6599d52e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000023_543573b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000023_543573b8.szar new file mode 100644 index 00000000..84d74f0f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000023_543573b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000024_bcb36a62.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000024_bcb36a62.szar new file mode 100644 index 00000000..3b30e0c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/archive/delta_00000000000000000024_bcb36a62.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000001_a7e4415a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000001_a7e4415a.szcp new file mode 100644 index 00000000..82df46b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000001_a7e4415a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000002_526eb89c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000002_526eb89c.szcp new file mode 100644 index 00000000..3112fac6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000002_526eb89c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000003_a6f2c69d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000003_a6f2c69d.szcp new file mode 100644 index 00000000..ca43de16 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000003_a6f2c69d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000004_6ea811e7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000004_6ea811e7.szcp new file mode 100644 index 00000000..e7f88420 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000004_6ea811e7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000005_9367df1c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000005_9367df1c.szcp new file mode 100644 index 00000000..1ce82e8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000005_9367df1c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000006_a0fa22ff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000006_a0fa22ff.szcp new file mode 100644 index 00000000..d1c63bef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000006_a0fa22ff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000007_b0af1a7a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000007_b0af1a7a.szcp new file mode 100644 index 00000000..fc795dc9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000007_b0af1a7a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000008_f8e1619d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000008_f8e1619d.szcp new file mode 100644 index 00000000..38d4c6fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000008_f8e1619d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000009_326fda67.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000009_326fda67.szcp new file mode 100644 index 00000000..1fbc13eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000009_326fda67.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000010_53b200b6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000010_53b200b6.szcp new file mode 100644 index 00000000..83fac1b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000010_53b200b6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000011_76ca324b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000011_76ca324b.szcp new file mode 100644 index 00000000..31168efa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000011_76ca324b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000012_94019971.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000012_94019971.szcp new file mode 100644 index 00000000..96767b4b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000012_94019971.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000013_fb16ac0f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000013_fb16ac0f.szcp new file mode 100644 index 00000000..8b35d8ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000013_fb16ac0f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000014_5844cf1e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000014_5844cf1e.szcp new file mode 100644 index 00000000..27f2b15d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000014_5844cf1e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000015_30454c82.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000015_30454c82.szcp new file mode 100644 index 00000000..edd75e8d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000015_30454c82.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000016_44d473f2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000016_44d473f2.szcp new file mode 100644 index 00000000..cfc5ede8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000016_44d473f2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000017_10df0641.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000017_10df0641.szcp new file mode 100644 index 00000000..2e26af80 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000017_10df0641.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000018_3b320475.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000018_3b320475.szcp new file mode 100644 index 00000000..db7b4381 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000018_3b320475.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000019_e566db89.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000019_e566db89.szcp new file mode 100644 index 00000000..3b63e156 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000019_e566db89.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000020_ab871963.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000020_ab871963.szcp new file mode 100644 index 00000000..2d3cf41d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000020_ab871963.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000021_7554bda2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000021_7554bda2.szcp new file mode 100644 index 00000000..95fbf1ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000021_7554bda2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000022_7f091a1e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000022_7f091a1e.szcp new file mode 100644 index 00000000..57801008 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000022_7f091a1e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000023_56998ebc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000023_56998ebc.szcp new file mode 100644 index 00000000..68a11de5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000023_56998ebc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000024_8902e02a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000024_8902e02a.szcp new file mode 100644 index 00000000..c615672f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_021/checkpoints/checkpoint_00000000000000000024_8902e02a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000001_c802b829.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000001_c802b829.szar new file mode 100644 index 00000000..7c8ed683 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000001_c802b829.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000002_d786dabf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000002_d786dabf.szar new file mode 100644 index 00000000..4d0681c8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000002_d786dabf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000003_1d647a4d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000003_1d647a4d.szar new file mode 100644 index 00000000..5382d660 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000003_1d647a4d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000004_a58e29ed.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000004_a58e29ed.szar new file mode 100644 index 00000000..10fa1814 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000004_a58e29ed.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000005_66b26d1b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000005_66b26d1b.szar new file mode 100644 index 00000000..da729a64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000005_66b26d1b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000006_e938c00a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000006_e938c00a.szar new file mode 100644 index 00000000..c4165297 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000006_e938c00a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000007_1c75c2b3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000007_1c75c2b3.szar new file mode 100644 index 00000000..d7746f85 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000007_1c75c2b3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000008_a9433e03.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000008_a9433e03.szar new file mode 100644 index 00000000..a246d343 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000008_a9433e03.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000009_5e2b9c11.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000009_5e2b9c11.szar new file mode 100644 index 00000000..33722e9f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000009_5e2b9c11.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000010_aecf032c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000010_aecf032c.szar new file mode 100644 index 00000000..7ced7f3d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000010_aecf032c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000011_a718c979.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000011_a718c979.szar new file mode 100644 index 00000000..3128f431 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000011_a718c979.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000012_bca1ae11.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000012_bca1ae11.szar new file mode 100644 index 00000000..c4d2ee96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000012_bca1ae11.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000013_ba20c6da.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000013_ba20c6da.szar new file mode 100644 index 00000000..c96d2de7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000013_ba20c6da.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000014_5645a5a6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000014_5645a5a6.szar new file mode 100644 index 00000000..854eba61 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000014_5645a5a6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000015_b8d0a19a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000015_b8d0a19a.szar new file mode 100644 index 00000000..8d0522ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000015_b8d0a19a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000016_ad9fe996.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000016_ad9fe996.szar new file mode 100644 index 00000000..ff7bf3b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000016_ad9fe996.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000017_5de8c6ca.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000017_5de8c6ca.szar new file mode 100644 index 00000000..2e8d07ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/archive/delta_00000000000000000017_5de8c6ca.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000001_980776d7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000001_980776d7.szcp new file mode 100644 index 00000000..a8fdf451 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000001_980776d7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000002_b780cd4c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000002_b780cd4c.szcp new file mode 100644 index 00000000..e27ab3dd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000002_b780cd4c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000003_09a65f95.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000003_09a65f95.szcp new file mode 100644 index 00000000..024f720c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000003_09a65f95.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000004_534da1f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000004_534da1f7.szcp new file mode 100644 index 00000000..64aa6159 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000004_534da1f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000005_492a2ef1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000005_492a2ef1.szcp new file mode 100644 index 00000000..4571a2c8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000005_492a2ef1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000006_f586ae52.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000006_f586ae52.szcp new file mode 100644 index 00000000..ba406646 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000006_f586ae52.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000007_7a782ca5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000007_7a782ca5.szcp new file mode 100644 index 00000000..d4e1fef6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000007_7a782ca5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000008_7e6d5e3b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000008_7e6d5e3b.szcp new file mode 100644 index 00000000..388dd77a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000008_7e6d5e3b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000009_2e4d08e4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000009_2e4d08e4.szcp new file mode 100644 index 00000000..aead4561 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000009_2e4d08e4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000010_d27037f3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000010_d27037f3.szcp new file mode 100644 index 00000000..7609e2ab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000010_d27037f3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000011_a7f029f3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000011_a7f029f3.szcp new file mode 100644 index 00000000..32bb8140 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000011_a7f029f3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000012_0b40dbfd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000012_0b40dbfd.szcp new file mode 100644 index 00000000..b8305208 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000012_0b40dbfd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000013_af309fe0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000013_af309fe0.szcp new file mode 100644 index 00000000..88ed2fe5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000013_af309fe0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000014_debffc53.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000014_debffc53.szcp new file mode 100644 index 00000000..e477d964 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000014_debffc53.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000015_b5d26182.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000015_b5d26182.szcp new file mode 100644 index 00000000..85bf513f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000015_b5d26182.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000016_43a6d306.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000016_43a6d306.szcp new file mode 100644 index 00000000..15fc949c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000016_43a6d306.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000017_02153433.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000017_02153433.szcp new file mode 100644 index 00000000..3874014b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_022/checkpoints/checkpoint_00000000000000000017_02153433.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000001_e62b9608.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000001_e62b9608.szar new file mode 100644 index 00000000..f146541f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000001_e62b9608.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000002_f99a9341.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000002_f99a9341.szar new file mode 100644 index 00000000..59a4679c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000002_f99a9341.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000003_217f2af9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000003_217f2af9.szar new file mode 100644 index 00000000..58a49ca5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000003_217f2af9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000004_967259d3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000004_967259d3.szar new file mode 100644 index 00000000..722660f0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000004_967259d3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000005_4665bea1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000005_4665bea1.szar new file mode 100644 index 00000000..436fa7ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000005_4665bea1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000006_49f1d30b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000006_49f1d30b.szar new file mode 100644 index 00000000..5b758611 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000006_49f1d30b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000007_ad74b5f4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000007_ad74b5f4.szar new file mode 100644 index 00000000..d3dd6919 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000007_ad74b5f4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000008_4f2230b3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000008_4f2230b3.szar new file mode 100644 index 00000000..b1bfb1ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000008_4f2230b3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000009_9afc3861.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000009_9afc3861.szar new file mode 100644 index 00000000..81a599c9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000009_9afc3861.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000010_13175204.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000010_13175204.szar new file mode 100644 index 00000000..ddd55cf8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000010_13175204.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000011_ab2cfc97.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000011_ab2cfc97.szar new file mode 100644 index 00000000..d0c1c2a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000011_ab2cfc97.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000012_d7091a91.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000012_d7091a91.szar new file mode 100644 index 00000000..0bb297b2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000012_d7091a91.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000013_7c825454.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000013_7c825454.szar new file mode 100644 index 00000000..49ee36ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000013_7c825454.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000014_a8660914.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000014_a8660914.szar new file mode 100644 index 00000000..029f7283 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000014_a8660914.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000015_73e797fb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000015_73e797fb.szar new file mode 100644 index 00000000..0e45daa3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000015_73e797fb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000016_92800f3e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000016_92800f3e.szar new file mode 100644 index 00000000..9a3c3e6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/archive/delta_00000000000000000016_92800f3e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000001_28a1e83d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000001_28a1e83d.szcp new file mode 100644 index 00000000..99e4cb95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000001_28a1e83d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000002_34a04222.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000002_34a04222.szcp new file mode 100644 index 00000000..61260836 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000002_34a04222.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000003_f4675fd5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000003_f4675fd5.szcp new file mode 100644 index 00000000..a5980c69 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000003_f4675fd5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000004_93f530c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000004_93f530c4.szcp new file mode 100644 index 00000000..fa3d99ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000004_93f530c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000005_ad837e8c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000005_ad837e8c.szcp new file mode 100644 index 00000000..24d8276f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000005_ad837e8c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000006_496092bc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000006_496092bc.szcp new file mode 100644 index 00000000..87c2a896 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000006_496092bc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000007_a400fdf1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000007_a400fdf1.szcp new file mode 100644 index 00000000..c459a864 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000007_a400fdf1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000008_0e7286c1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000008_0e7286c1.szcp new file mode 100644 index 00000000..ea978939 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000008_0e7286c1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000009_9c57f091.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000009_9c57f091.szcp new file mode 100644 index 00000000..93782e2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000009_9c57f091.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000010_96456b5a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000010_96456b5a.szcp new file mode 100644 index 00000000..084d08f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000010_96456b5a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000011_5a8cd564.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000011_5a8cd564.szcp new file mode 100644 index 00000000..c4ca7f1f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000011_5a8cd564.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000012_6179e297.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000012_6179e297.szcp new file mode 100644 index 00000000..597f7522 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000012_6179e297.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000013_6116c407.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000013_6116c407.szcp new file mode 100644 index 00000000..98abd2c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000013_6116c407.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000014_86d55750.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000014_86d55750.szcp new file mode 100644 index 00000000..54dee1ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000014_86d55750.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000015_a1feadea.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000015_a1feadea.szcp new file mode 100644 index 00000000..9331b9b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000015_a1feadea.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000016_dced90c1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000016_dced90c1.szcp new file mode 100644 index 00000000..a8965800 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_023/checkpoints/checkpoint_00000000000000000016_dced90c1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000001_511e2728.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000001_511e2728.szar new file mode 100644 index 00000000..d5b2d473 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000001_511e2728.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000002_b7d00946.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000002_b7d00946.szar new file mode 100644 index 00000000..267ce9c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000002_b7d00946.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000003_e1627997.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000003_e1627997.szar new file mode 100644 index 00000000..0008963b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000003_e1627997.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000004_6c1f6c90.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000004_6c1f6c90.szar new file mode 100644 index 00000000..c779b038 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000004_6c1f6c90.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000005_9c19662a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000005_9c19662a.szar new file mode 100644 index 00000000..6b6cd68a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000005_9c19662a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000006_d7c56f86.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000006_d7c56f86.szar new file mode 100644 index 00000000..504a9412 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000006_d7c56f86.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000007_17acb981.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000007_17acb981.szar new file mode 100644 index 00000000..ea1801ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000007_17acb981.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000008_39b09ffd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000008_39b09ffd.szar new file mode 100644 index 00000000..d193c7b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000008_39b09ffd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000009_490f43b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000009_490f43b8.szar new file mode 100644 index 00000000..1c5b6391 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000009_490f43b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000010_b6fa82b1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000010_b6fa82b1.szar new file mode 100644 index 00000000..b3840e2d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000010_b6fa82b1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000011_5625bfbc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000011_5625bfbc.szar new file mode 100644 index 00000000..3819b9e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000011_5625bfbc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000012_d7cb8a86.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000012_d7cb8a86.szar new file mode 100644 index 00000000..16297c50 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000012_d7cb8a86.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000013_1fe71db1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000013_1fe71db1.szar new file mode 100644 index 00000000..507ef7e2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000013_1fe71db1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000014_d1b3d6be.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000014_d1b3d6be.szar new file mode 100644 index 00000000..51e14c13 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000014_d1b3d6be.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000015_919ae2df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000015_919ae2df.szar new file mode 100644 index 00000000..3585cf4a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000015_919ae2df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000016_e0bc731f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000016_e0bc731f.szar new file mode 100644 index 00000000..6fb6f741 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000016_e0bc731f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000017_d326ddf5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000017_d326ddf5.szar new file mode 100644 index 00000000..86c43132 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000017_d326ddf5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000018_3fb186fb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000018_3fb186fb.szar new file mode 100644 index 00000000..657acae6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000018_3fb186fb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000019_adb55077.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000019_adb55077.szar new file mode 100644 index 00000000..1647c833 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000019_adb55077.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000020_b2ca439f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000020_b2ca439f.szar new file mode 100644 index 00000000..fd1d4d55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000020_b2ca439f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000021_3ade13a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000021_3ade13a7.szar new file mode 100644 index 00000000..ed4a6e7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000021_3ade13a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000022_82129c94.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000022_82129c94.szar new file mode 100644 index 00000000..e663d791 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/archive/delta_00000000000000000022_82129c94.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000001_089a70f2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000001_089a70f2.szcp new file mode 100644 index 00000000..b350a201 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000001_089a70f2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000002_7af69017.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000002_7af69017.szcp new file mode 100644 index 00000000..5386f744 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000002_7af69017.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000003_e18519fa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000003_e18519fa.szcp new file mode 100644 index 00000000..fcd48aba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000003_e18519fa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000004_38b7541f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000004_38b7541f.szcp new file mode 100644 index 00000000..f09f6c87 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000004_38b7541f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000005_1b0aa0e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000005_1b0aa0e3.szcp new file mode 100644 index 00000000..74ad98f9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000005_1b0aa0e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000006_8f051cc8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000006_8f051cc8.szcp new file mode 100644 index 00000000..0bae15d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000006_8f051cc8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000007_672af031.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000007_672af031.szcp new file mode 100644 index 00000000..f8f46ee1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000007_672af031.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000008_556ae541.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000008_556ae541.szcp new file mode 100644 index 00000000..af6d52d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000008_556ae541.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000009_669e60f9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000009_669e60f9.szcp new file mode 100644 index 00000000..218e0598 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000009_669e60f9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000010_eafe224e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000010_eafe224e.szcp new file mode 100644 index 00000000..3fd6fdcb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000010_eafe224e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000011_63b4f905.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000011_63b4f905.szcp new file mode 100644 index 00000000..3d70eb6c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000011_63b4f905.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000012_b7eae90a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000012_b7eae90a.szcp new file mode 100644 index 00000000..c7a49c1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000012_b7eae90a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000013_cb71d5e7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000013_cb71d5e7.szcp new file mode 100644 index 00000000..e5a4051a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000013_cb71d5e7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000014_a8378019.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000014_a8378019.szcp new file mode 100644 index 00000000..0c5755aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000014_a8378019.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000015_67d4aca1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000015_67d4aca1.szcp new file mode 100644 index 00000000..8fe297ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000015_67d4aca1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000016_e913e429.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000016_e913e429.szcp new file mode 100644 index 00000000..3080fe5a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000016_e913e429.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000017_a3495da5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000017_a3495da5.szcp new file mode 100644 index 00000000..8fc8029b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000017_a3495da5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000018_2c6f6086.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000018_2c6f6086.szcp new file mode 100644 index 00000000..7d6e9a50 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000018_2c6f6086.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000019_26c5c7b4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000019_26c5c7b4.szcp new file mode 100644 index 00000000..3542bb64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000019_26c5c7b4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000020_8644da37.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000020_8644da37.szcp new file mode 100644 index 00000000..50c2f6ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000020_8644da37.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000021_8586d102.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000021_8586d102.szcp new file mode 100644 index 00000000..e95e7371 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000021_8586d102.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000022_7fcf5709.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000022_7fcf5709.szcp new file mode 100644 index 00000000..e9e0acf6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_024/checkpoints/checkpoint_00000000000000000022_7fcf5709.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000001_63dfcc72.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000001_63dfcc72.szar new file mode 100644 index 00000000..c61dc253 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000001_63dfcc72.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000002_a928b258.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000002_a928b258.szar new file mode 100644 index 00000000..fcf0bca9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000002_a928b258.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000003_71e34327.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000003_71e34327.szar new file mode 100644 index 00000000..263cff14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000003_71e34327.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000004_20dcdbab.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000004_20dcdbab.szar new file mode 100644 index 00000000..2c93867a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000004_20dcdbab.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000005_f106265d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000005_f106265d.szar new file mode 100644 index 00000000..d6ba34ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000005_f106265d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000006_0919e4fa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000006_0919e4fa.szar new file mode 100644 index 00000000..9bd86765 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000006_0919e4fa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000007_51dc293d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000007_51dc293d.szar new file mode 100644 index 00000000..c82b035c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000007_51dc293d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000008_ff536ce3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000008_ff536ce3.szar new file mode 100644 index 00000000..59a8cfbb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000008_ff536ce3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000009_99bccb3b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000009_99bccb3b.szar new file mode 100644 index 00000000..dc678f49 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000009_99bccb3b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000010_0f094e7d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000010_0f094e7d.szar new file mode 100644 index 00000000..e196c5b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000010_0f094e7d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000011_d0a039cb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000011_d0a039cb.szar new file mode 100644 index 00000000..aca3024a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000011_d0a039cb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000012_45e9f9d7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000012_45e9f9d7.szar new file mode 100644 index 00000000..d108454b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000012_45e9f9d7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000013_cd92645e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000013_cd92645e.szar new file mode 100644 index 00000000..0f809b05 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000013_cd92645e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000014_d5d22cee.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000014_d5d22cee.szar new file mode 100644 index 00000000..a25a1834 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000014_d5d22cee.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000015_a0318996.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000015_a0318996.szar new file mode 100644 index 00000000..b6988ba8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000015_a0318996.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000016_200bd211.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000016_200bd211.szar new file mode 100644 index 00000000..8fb9da2d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000016_200bd211.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000017_ab601efa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000017_ab601efa.szar new file mode 100644 index 00000000..677ce9fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000017_ab601efa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000018_dff82647.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000018_dff82647.szar new file mode 100644 index 00000000..e5c1b4ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000018_dff82647.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000019_d64d04bc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000019_d64d04bc.szar new file mode 100644 index 00000000..fb449521 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000019_d64d04bc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000020_8d344f17.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000020_8d344f17.szar new file mode 100644 index 00000000..058bc38f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/archive/delta_00000000000000000020_8d344f17.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000001_e4d20167.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000001_e4d20167.szcp new file mode 100644 index 00000000..560226bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000001_e4d20167.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000002_7151c95e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000002_7151c95e.szcp new file mode 100644 index 00000000..d513a044 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000002_7151c95e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000003_02add45d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000003_02add45d.szcp new file mode 100644 index 00000000..46f55d52 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000003_02add45d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000004_29f06a8e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000004_29f06a8e.szcp new file mode 100644 index 00000000..25927f28 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000004_29f06a8e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000005_7926a661.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000005_7926a661.szcp new file mode 100644 index 00000000..d817217a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000005_7926a661.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000006_b98ba51e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000006_b98ba51e.szcp new file mode 100644 index 00000000..daca34c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000006_b98ba51e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000007_f6cc64e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000007_f6cc64e5.szcp new file mode 100644 index 00000000..90584429 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000007_f6cc64e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000008_2669bb17.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000008_2669bb17.szcp new file mode 100644 index 00000000..d8941c6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000008_2669bb17.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000009_2f5d0dc2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000009_2f5d0dc2.szcp new file mode 100644 index 00000000..1f6be778 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000009_2f5d0dc2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000010_66366843.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000010_66366843.szcp new file mode 100644 index 00000000..3dfadf1f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000010_66366843.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000011_a3dae116.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000011_a3dae116.szcp new file mode 100644 index 00000000..b9cddf5c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000011_a3dae116.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000012_cd55c531.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000012_cd55c531.szcp new file mode 100644 index 00000000..af49719c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000012_cd55c531.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000013_8005731b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000013_8005731b.szcp new file mode 100644 index 00000000..32a6088c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000013_8005731b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000014_1fbf7bc5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000014_1fbf7bc5.szcp new file mode 100644 index 00000000..723c9075 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000014_1fbf7bc5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000015_e2976869.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000015_e2976869.szcp new file mode 100644 index 00000000..ce97f651 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000015_e2976869.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000016_f49fd6be.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000016_f49fd6be.szcp new file mode 100644 index 00000000..dc8716bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000016_f49fd6be.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000017_7bd52f07.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000017_7bd52f07.szcp new file mode 100644 index 00000000..9a55dbdd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000017_7bd52f07.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000018_7ba98478.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000018_7ba98478.szcp new file mode 100644 index 00000000..01c30f4e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000018_7ba98478.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000019_3f96ec1d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000019_3f96ec1d.szcp new file mode 100644 index 00000000..8a5b71df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000019_3f96ec1d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000020_d6bc0043.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000020_d6bc0043.szcp new file mode 100644 index 00000000..e828aed6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_025/checkpoints/checkpoint_00000000000000000020_d6bc0043.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000001_c989412d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000001_c989412d.szar new file mode 100644 index 00000000..db919f22 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000001_c989412d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000002_09e06da6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000002_09e06da6.szar new file mode 100644 index 00000000..da237ee8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000002_09e06da6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000003_657d9694.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000003_657d9694.szar new file mode 100644 index 00000000..f3ddf6b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000003_657d9694.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000004_83502f2e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000004_83502f2e.szar new file mode 100644 index 00000000..0c5620fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000004_83502f2e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000005_5d4b7d3c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000005_5d4b7d3c.szar new file mode 100644 index 00000000..af8d06df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000005_5d4b7d3c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000006_ae1e98ed.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000006_ae1e98ed.szar new file mode 100644 index 00000000..45d11850 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000006_ae1e98ed.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000007_a17c40e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000007_a17c40e8.szar new file mode 100644 index 00000000..1f3b5fbf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000007_a17c40e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000008_8344f1c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000008_8344f1c2.szar new file mode 100644 index 00000000..091da62c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000008_8344f1c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000009_617e512b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000009_617e512b.szar new file mode 100644 index 00000000..9635868e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000009_617e512b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000010_3420a9e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000010_3420a9e5.szar new file mode 100644 index 00000000..380da3fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000010_3420a9e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000011_dfbf2a97.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000011_dfbf2a97.szar new file mode 100644 index 00000000..34d05b64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000011_dfbf2a97.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000012_b196cc1e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000012_b196cc1e.szar new file mode 100644 index 00000000..88f8727b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000012_b196cc1e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000013_9e20d256.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000013_9e20d256.szar new file mode 100644 index 00000000..47b62022 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000013_9e20d256.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000014_52923afd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000014_52923afd.szar new file mode 100644 index 00000000..a7835a80 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000014_52923afd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000015_0fc07986.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000015_0fc07986.szar new file mode 100644 index 00000000..9a472c24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000015_0fc07986.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000016_4e5db67e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000016_4e5db67e.szar new file mode 100644 index 00000000..3dcac356 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000016_4e5db67e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000017_3a5e817d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000017_3a5e817d.szar new file mode 100644 index 00000000..6aef83ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/archive/delta_00000000000000000017_3a5e817d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000001_09352546.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000001_09352546.szcp new file mode 100644 index 00000000..18726f86 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000001_09352546.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000002_d9e20255.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000002_d9e20255.szcp new file mode 100644 index 00000000..c71229f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000002_d9e20255.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000003_71123e1c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000003_71123e1c.szcp new file mode 100644 index 00000000..38abd0a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000003_71123e1c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000004_f3864bcf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000004_f3864bcf.szcp new file mode 100644 index 00000000..2c12cef3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000004_f3864bcf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000005_702a6cd3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000005_702a6cd3.szcp new file mode 100644 index 00000000..a6be42d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000005_702a6cd3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000006_549eefe8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000006_549eefe8.szcp new file mode 100644 index 00000000..fb7a971b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000006_549eefe8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000007_0d74c868.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000007_0d74c868.szcp new file mode 100644 index 00000000..9305d715 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000007_0d74c868.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000008_a5d8e6d2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000008_a5d8e6d2.szcp new file mode 100644 index 00000000..899c0486 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000008_a5d8e6d2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000009_e8119467.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000009_e8119467.szcp new file mode 100644 index 00000000..f042bc07 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000009_e8119467.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000010_b9e4252d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000010_b9e4252d.szcp new file mode 100644 index 00000000..11686686 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000010_b9e4252d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000011_50e08425.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000011_50e08425.szcp new file mode 100644 index 00000000..e6de32a5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000011_50e08425.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000012_8cbae7c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000012_8cbae7c3.szcp new file mode 100644 index 00000000..864f49e4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000012_8cbae7c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000013_96698243.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000013_96698243.szcp new file mode 100644 index 00000000..a212419e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000013_96698243.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000014_c82371c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000014_c82371c3.szcp new file mode 100644 index 00000000..2583ea19 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000014_c82371c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000015_380a1fa8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000015_380a1fa8.szcp new file mode 100644 index 00000000..f1f8530a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000015_380a1fa8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000016_49c88287.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000016_49c88287.szcp new file mode 100644 index 00000000..69a0c758 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000016_49c88287.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000017_771ff94b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000017_771ff94b.szcp new file mode 100644 index 00000000..bb42a093 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_026/checkpoints/checkpoint_00000000000000000017_771ff94b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000001_9c508135.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000001_9c508135.szar new file mode 100644 index 00000000..1186dc1e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000001_9c508135.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000002_e4b5d07c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000002_e4b5d07c.szar new file mode 100644 index 00000000..a3092216 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000002_e4b5d07c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000003_69980993.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000003_69980993.szar new file mode 100644 index 00000000..30284916 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000003_69980993.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000004_4a009b7e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000004_4a009b7e.szar new file mode 100644 index 00000000..eb1fbe7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000004_4a009b7e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000005_9c9ea06c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000005_9c9ea06c.szar new file mode 100644 index 00000000..d54ca5d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000005_9c9ea06c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000006_6a261e9b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000006_6a261e9b.szar new file mode 100644 index 00000000..ddde3dc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000006_6a261e9b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000007_930bba93.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000007_930bba93.szar new file mode 100644 index 00000000..1c73063a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000007_930bba93.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000008_ecdfb10d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000008_ecdfb10d.szar new file mode 100644 index 00000000..128b2988 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000008_ecdfb10d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000009_11fc7020.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000009_11fc7020.szar new file mode 100644 index 00000000..4d507e94 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000009_11fc7020.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000010_7dfcc26e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000010_7dfcc26e.szar new file mode 100644 index 00000000..e1b87150 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000010_7dfcc26e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000011_cbddbadb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000011_cbddbadb.szar new file mode 100644 index 00000000..1361d1e2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000011_cbddbadb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000012_81358227.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000012_81358227.szar new file mode 100644 index 00000000..10f1c41a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000012_81358227.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000013_04b92f18.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000013_04b92f18.szar new file mode 100644 index 00000000..4b2dd943 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000013_04b92f18.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000014_fa936bcd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000014_fa936bcd.szar new file mode 100644 index 00000000..0f089631 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000014_fa936bcd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000015_f041973d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000015_f041973d.szar new file mode 100644 index 00000000..29b1a421 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000015_f041973d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000016_d4b1bb10.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000016_d4b1bb10.szar new file mode 100644 index 00000000..b235572e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000016_d4b1bb10.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000017_c625c761.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000017_c625c761.szar new file mode 100644 index 00000000..e643738b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/archive/delta_00000000000000000017_c625c761.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000001_b71d20de.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000001_b71d20de.szcp new file mode 100644 index 00000000..135f1ada Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000001_b71d20de.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000002_0a765243.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000002_0a765243.szcp new file mode 100644 index 00000000..79f38585 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000002_0a765243.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000003_9212eb5c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000003_9212eb5c.szcp new file mode 100644 index 00000000..03fa906b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000003_9212eb5c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000004_9c22af62.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000004_9c22af62.szcp new file mode 100644 index 00000000..8f49141d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000004_9c22af62.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000005_c2d57252.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000005_c2d57252.szcp new file mode 100644 index 00000000..0725b2df Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000005_c2d57252.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000006_09a6d831.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000006_09a6d831.szcp new file mode 100644 index 00000000..5aebffc3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000006_09a6d831.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000007_6a929db1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000007_6a929db1.szcp new file mode 100644 index 00000000..cde58c42 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000007_6a929db1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000008_2e4b17cc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000008_2e4b17cc.szcp new file mode 100644 index 00000000..08d4935c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000008_2e4b17cc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000009_2989168c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000009_2989168c.szcp new file mode 100644 index 00000000..3b8bc8ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000009_2989168c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000010_3a118a33.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000010_3a118a33.szcp new file mode 100644 index 00000000..88957852 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000010_3a118a33.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000011_bc96a248.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000011_bc96a248.szcp new file mode 100644 index 00000000..cf013768 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000011_bc96a248.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000012_cd193ca2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000012_cd193ca2.szcp new file mode 100644 index 00000000..19f44694 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000012_cd193ca2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000013_2ed86d96.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000013_2ed86d96.szcp new file mode 100644 index 00000000..54889a6c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000013_2ed86d96.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000014_c55c6e15.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000014_c55c6e15.szcp new file mode 100644 index 00000000..aa4741dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000014_c55c6e15.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000015_f18ebd07.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000015_f18ebd07.szcp new file mode 100644 index 00000000..3f077241 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000015_f18ebd07.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000016_00fdd40d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000016_00fdd40d.szcp new file mode 100644 index 00000000..db34c4fd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000016_00fdd40d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000017_ade9e5f0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000017_ade9e5f0.szcp new file mode 100644 index 00000000..e8514d4e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_027/checkpoints/checkpoint_00000000000000000017_ade9e5f0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000001_f6d3c68a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000001_f6d3c68a.szar new file mode 100644 index 00000000..5d232166 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000001_f6d3c68a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000002_3e2bcfa0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000002_3e2bcfa0.szar new file mode 100644 index 00000000..69586362 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000002_3e2bcfa0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000003_69114aaf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000003_69114aaf.szar new file mode 100644 index 00000000..64190c93 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000003_69114aaf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000004_a40fbaeb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000004_a40fbaeb.szar new file mode 100644 index 00000000..d8ff691a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000004_a40fbaeb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000005_c4a69107.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000005_c4a69107.szar new file mode 100644 index 00000000..bac87810 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000005_c4a69107.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000006_af9f348e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000006_af9f348e.szar new file mode 100644 index 00000000..939d8c4d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000006_af9f348e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000007_d2976087.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000007_d2976087.szar new file mode 100644 index 00000000..16e80d34 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000007_d2976087.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000008_d1869c43.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000008_d1869c43.szar new file mode 100644 index 00000000..2aa926ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000008_d1869c43.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000009_800bd015.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000009_800bd015.szar new file mode 100644 index 00000000..ba94e93c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000009_800bd015.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000010_976d91c3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000010_976d91c3.szar new file mode 100644 index 00000000..ee8e1707 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000010_976d91c3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000011_d4e9a13f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000011_d4e9a13f.szar new file mode 100644 index 00000000..04d6251b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000011_d4e9a13f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000012_62d067f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000012_62d067f0.szar new file mode 100644 index 00000000..37316d05 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000012_62d067f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000013_67b02e83.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000013_67b02e83.szar new file mode 100644 index 00000000..5a8c32da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000013_67b02e83.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000014_8b9b259a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000014_8b9b259a.szar new file mode 100644 index 00000000..748285d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000014_8b9b259a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000015_63ee28aa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000015_63ee28aa.szar new file mode 100644 index 00000000..144edc96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000015_63ee28aa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000016_a4a87616.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000016_a4a87616.szar new file mode 100644 index 00000000..a90bffc3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000016_a4a87616.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000017_2084dc6b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000017_2084dc6b.szar new file mode 100644 index 00000000..ac0b8dbf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/archive/delta_00000000000000000017_2084dc6b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000001_5989476f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000001_5989476f.szcp new file mode 100644 index 00000000..145215f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000001_5989476f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000002_4c139b84.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000002_4c139b84.szcp new file mode 100644 index 00000000..dfda39ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000002_4c139b84.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000003_b502ec4f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000003_b502ec4f.szcp new file mode 100644 index 00000000..973f3523 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000003_b502ec4f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000004_daf42c4e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000004_daf42c4e.szcp new file mode 100644 index 00000000..c43e3e4d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000004_daf42c4e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000005_d1af4b67.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000005_d1af4b67.szcp new file mode 100644 index 00000000..feb295a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000005_d1af4b67.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000006_0dc5310a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000006_0dc5310a.szcp new file mode 100644 index 00000000..afe4918d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000006_0dc5310a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000007_831bf0d7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000007_831bf0d7.szcp new file mode 100644 index 00000000..bcc4169f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000007_831bf0d7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000008_2cf8db78.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000008_2cf8db78.szcp new file mode 100644 index 00000000..87ccc590 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000008_2cf8db78.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000009_08042103.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000009_08042103.szcp new file mode 100644 index 00000000..21178432 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000009_08042103.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000010_f84b92ff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000010_f84b92ff.szcp new file mode 100644 index 00000000..f58ad5c8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000010_f84b92ff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000011_a3f82ef2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000011_a3f82ef2.szcp new file mode 100644 index 00000000..6ad68bba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000011_a3f82ef2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000012_f3d2bcc6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000012_f3d2bcc6.szcp new file mode 100644 index 00000000..e18d47a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000012_f3d2bcc6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000013_9d51548d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000013_9d51548d.szcp new file mode 100644 index 00000000..12a79620 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000013_9d51548d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000014_269e5c8d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000014_269e5c8d.szcp new file mode 100644 index 00000000..b987de45 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000014_269e5c8d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000015_0d0966f2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000015_0d0966f2.szcp new file mode 100644 index 00000000..ef3f475e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000015_0d0966f2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000016_30adea3f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000016_30adea3f.szcp new file mode 100644 index 00000000..80b9507c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000016_30adea3f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000017_3ec4f4e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000017_3ec4f4e3.szcp new file mode 100644 index 00000000..a3309bfa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_028/checkpoints/checkpoint_00000000000000000017_3ec4f4e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000001_32af26b6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000001_32af26b6.szar new file mode 100644 index 00000000..f3907ed7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000001_32af26b6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000002_8e9842f2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000002_8e9842f2.szar new file mode 100644 index 00000000..9daa723a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000002_8e9842f2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000003_716d08cc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000003_716d08cc.szar new file mode 100644 index 00000000..ca4a9c8a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000003_716d08cc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000004_1b9b71fa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000004_1b9b71fa.szar new file mode 100644 index 00000000..d2776163 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000004_1b9b71fa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000005_81da9166.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000005_81da9166.szar new file mode 100644 index 00000000..6c7ee1a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000005_81da9166.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000006_1ee379e3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000006_1ee379e3.szar new file mode 100644 index 00000000..576c021e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000006_1ee379e3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000007_f2dced49.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000007_f2dced49.szar new file mode 100644 index 00000000..399b877e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000007_f2dced49.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000008_e9006002.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000008_e9006002.szar new file mode 100644 index 00000000..74feb5b4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000008_e9006002.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000009_56804c6b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000009_56804c6b.szar new file mode 100644 index 00000000..dfcaa00a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000009_56804c6b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000010_69fd1aa3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000010_69fd1aa3.szar new file mode 100644 index 00000000..90204cd3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000010_69fd1aa3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000011_2e8294e9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000011_2e8294e9.szar new file mode 100644 index 00000000..fbb8a7a5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000011_2e8294e9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000012_2de62300.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000012_2de62300.szar new file mode 100644 index 00000000..d3fbec81 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000012_2de62300.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000013_0862932d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000013_0862932d.szar new file mode 100644 index 00000000..d9a4ded8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000013_0862932d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000014_c5d2f647.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000014_c5d2f647.szar new file mode 100644 index 00000000..7054e132 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000014_c5d2f647.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000015_1ef3a453.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000015_1ef3a453.szar new file mode 100644 index 00000000..9f545971 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000015_1ef3a453.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000016_d680778f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000016_d680778f.szar new file mode 100644 index 00000000..82dd6659 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000016_d680778f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000017_1ac1fdd9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000017_1ac1fdd9.szar new file mode 100644 index 00000000..44ed1f3c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000017_1ac1fdd9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000018_e1a72497.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000018_e1a72497.szar new file mode 100644 index 00000000..ecc48138 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/archive/delta_00000000000000000018_e1a72497.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000001_92038d24.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000001_92038d24.szcp new file mode 100644 index 00000000..9a30d151 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000001_92038d24.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000002_db2b3809.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000002_db2b3809.szcp new file mode 100644 index 00000000..c84f1d87 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000002_db2b3809.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000003_625cb134.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000003_625cb134.szcp new file mode 100644 index 00000000..25d37e3a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000003_625cb134.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000004_37eed6ea.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000004_37eed6ea.szcp new file mode 100644 index 00000000..b3b4072f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000004_37eed6ea.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000005_5d6b9910.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000005_5d6b9910.szcp new file mode 100644 index 00000000..5edffa88 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000005_5d6b9910.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000006_73299143.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000006_73299143.szcp new file mode 100644 index 00000000..42beac9b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000006_73299143.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000007_f1f07af6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000007_f1f07af6.szcp new file mode 100644 index 00000000..c3f294b4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000007_f1f07af6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000008_131ff34e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000008_131ff34e.szcp new file mode 100644 index 00000000..ed3c80a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000008_131ff34e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000009_5f8ba08b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000009_5f8ba08b.szcp new file mode 100644 index 00000000..2ffe755b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000009_5f8ba08b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000010_68ef0684.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000010_68ef0684.szcp new file mode 100644 index 00000000..fdfa3cbe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000010_68ef0684.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000011_adeaba49.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000011_adeaba49.szcp new file mode 100644 index 00000000..02552142 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000011_adeaba49.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000012_562471bb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000012_562471bb.szcp new file mode 100644 index 00000000..b6a96b5d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000012_562471bb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000013_f521d177.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000013_f521d177.szcp new file mode 100644 index 00000000..ca6d24bb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000013_f521d177.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000014_7aebb024.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000014_7aebb024.szcp new file mode 100644 index 00000000..9a4b7252 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000014_7aebb024.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000015_b2ac5cd8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000015_b2ac5cd8.szcp new file mode 100644 index 00000000..ba987c90 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000015_b2ac5cd8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000016_a8dc2f31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000016_a8dc2f31.szcp new file mode 100644 index 00000000..77a31266 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000016_a8dc2f31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000017_0d052194.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000017_0d052194.szcp new file mode 100644 index 00000000..8fd6d557 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000017_0d052194.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000018_214b9a0e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000018_214b9a0e.szcp new file mode 100644 index 00000000..b725df44 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_029/checkpoints/checkpoint_00000000000000000018_214b9a0e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000001_2526ca7d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000001_2526ca7d.szar new file mode 100644 index 00000000..e8aaa082 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000001_2526ca7d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000002_c936ec6e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000002_c936ec6e.szar new file mode 100644 index 00000000..7780aca4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000002_c936ec6e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000003_613a8afb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000003_613a8afb.szar new file mode 100644 index 00000000..773c90b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000003_613a8afb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000004_a04f7df1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000004_a04f7df1.szar new file mode 100644 index 00000000..aaccdf24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000004_a04f7df1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000005_6a828d33.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000005_6a828d33.szar new file mode 100644 index 00000000..ac893c0a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000005_6a828d33.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000006_8c44e167.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000006_8c44e167.szar new file mode 100644 index 00000000..8a027980 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000006_8c44e167.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000007_ed3a1f48.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000007_ed3a1f48.szar new file mode 100644 index 00000000..781c4e31 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000007_ed3a1f48.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000008_a70e5f24.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000008_a70e5f24.szar new file mode 100644 index 00000000..782d1bd9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000008_a70e5f24.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000009_79d2ad12.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000009_79d2ad12.szar new file mode 100644 index 00000000..ece051e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000009_79d2ad12.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000010_2fc309e0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000010_2fc309e0.szar new file mode 100644 index 00000000..57b063b6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000010_2fc309e0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000011_1350ad73.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000011_1350ad73.szar new file mode 100644 index 00000000..b960ed07 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000011_1350ad73.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000012_5f7f1bb4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000012_5f7f1bb4.szar new file mode 100644 index 00000000..7aa4fb3a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000012_5f7f1bb4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000013_5a2751fb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000013_5a2751fb.szar new file mode 100644 index 00000000..8a5d91a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000013_5a2751fb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000014_df9e645c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000014_df9e645c.szar new file mode 100644 index 00000000..db97bffe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000014_df9e645c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000015_2af528f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000015_2af528f0.szar new file mode 100644 index 00000000..9ad6c9ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000015_2af528f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000016_8e4f253b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000016_8e4f253b.szar new file mode 100644 index 00000000..d43c6e63 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000016_8e4f253b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000017_0cc9dad1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000017_0cc9dad1.szar new file mode 100644 index 00000000..5c15c540 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000017_0cc9dad1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000018_2fecaad4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000018_2fecaad4.szar new file mode 100644 index 00000000..527f535f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000018_2fecaad4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000019_1b207f9b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000019_1b207f9b.szar new file mode 100644 index 00000000..707221ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/archive/delta_00000000000000000019_1b207f9b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000001_880c04f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000001_880c04f7.szcp new file mode 100644 index 00000000..4befe3e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000001_880c04f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000002_1ff29308.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000002_1ff29308.szcp new file mode 100644 index 00000000..5955182a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000002_1ff29308.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000003_990fad99.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000003_990fad99.szcp new file mode 100644 index 00000000..8a29d408 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000003_990fad99.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000004_71155ce6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000004_71155ce6.szcp new file mode 100644 index 00000000..e38d61ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000004_71155ce6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000005_1b38d4e6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000005_1b38d4e6.szcp new file mode 100644 index 00000000..a1beb0fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000005_1b38d4e6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000006_22d28e1d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000006_22d28e1d.szcp new file mode 100644 index 00000000..e4b7d408 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000006_22d28e1d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000007_4bcd56a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000007_4bcd56a8.szcp new file mode 100644 index 00000000..ff567532 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000007_4bcd56a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000008_cc91add7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000008_cc91add7.szcp new file mode 100644 index 00000000..bd3258f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000008_cc91add7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000009_ba28ab78.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000009_ba28ab78.szcp new file mode 100644 index 00000000..cb50b267 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000009_ba28ab78.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000010_822075f2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000010_822075f2.szcp new file mode 100644 index 00000000..931f0e74 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000010_822075f2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000011_5fd1d5a9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000011_5fd1d5a9.szcp new file mode 100644 index 00000000..253c5c2a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000011_5fd1d5a9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000012_c52cd70f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000012_c52cd70f.szcp new file mode 100644 index 00000000..27685c62 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000012_c52cd70f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000013_57d783b6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000013_57d783b6.szcp new file mode 100644 index 00000000..3a7755c9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000013_57d783b6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000014_7b469543.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000014_7b469543.szcp new file mode 100644 index 00000000..9b3ebfb8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000014_7b469543.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000015_1a1b558f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000015_1a1b558f.szcp new file mode 100644 index 00000000..7d57575f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000015_1a1b558f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000016_b7d26917.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000016_b7d26917.szcp new file mode 100644 index 00000000..ff10ce09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000016_b7d26917.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000017_cb4160d1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000017_cb4160d1.szcp new file mode 100644 index 00000000..508fa583 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000017_cb4160d1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000018_b0abe937.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000018_b0abe937.szcp new file mode 100644 index 00000000..466ad67f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000018_b0abe937.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000019_238dbb46.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000019_238dbb46.szcp new file mode 100644 index 00000000..42402a20 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_030/checkpoints/checkpoint_00000000000000000019_238dbb46.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000001_742ff01e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000001_742ff01e.szar new file mode 100644 index 00000000..e6740059 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000001_742ff01e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000002_ca66b69b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000002_ca66b69b.szar new file mode 100644 index 00000000..9d74691f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000002_ca66b69b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000003_dbc3408c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000003_dbc3408c.szar new file mode 100644 index 00000000..61320a4f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000003_dbc3408c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000004_61b907bf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000004_61b907bf.szar new file mode 100644 index 00000000..d8006146 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000004_61b907bf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000005_c6a34080.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000005_c6a34080.szar new file mode 100644 index 00000000..cbc53132 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000005_c6a34080.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000006_ff534a25.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000006_ff534a25.szar new file mode 100644 index 00000000..9f75bccf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000006_ff534a25.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000007_8db4f1f1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000007_8db4f1f1.szar new file mode 100644 index 00000000..45d54318 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000007_8db4f1f1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000008_a2353a61.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000008_a2353a61.szar new file mode 100644 index 00000000..9bc4247b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000008_a2353a61.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000009_e2fecbf1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000009_e2fecbf1.szar new file mode 100644 index 00000000..794b0285 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000009_e2fecbf1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000010_ef0f0506.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000010_ef0f0506.szar new file mode 100644 index 00000000..9de36dc6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000010_ef0f0506.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000011_847f26f8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000011_847f26f8.szar new file mode 100644 index 00000000..7cf37dd2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000011_847f26f8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000012_aab31ccb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000012_aab31ccb.szar new file mode 100644 index 00000000..9ac9c36f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000012_aab31ccb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000013_d0667c05.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000013_d0667c05.szar new file mode 100644 index 00000000..e70e1228 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000013_d0667c05.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000014_aabb2db4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000014_aabb2db4.szar new file mode 100644 index 00000000..f4108bdf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000014_aabb2db4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000015_cc4ea398.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000015_cc4ea398.szar new file mode 100644 index 00000000..101077d1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000015_cc4ea398.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000016_50f4d9e9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000016_50f4d9e9.szar new file mode 100644 index 00000000..845d285d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000016_50f4d9e9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000017_d926b941.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000017_d926b941.szar new file mode 100644 index 00000000..35e52909 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000017_d926b941.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000018_91af7fb4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000018_91af7fb4.szar new file mode 100644 index 00000000..9994b4ab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000018_91af7fb4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000019_1741c8a1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000019_1741c8a1.szar new file mode 100644 index 00000000..dfbd0307 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000019_1741c8a1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000020_18ada834.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000020_18ada834.szar new file mode 100644 index 00000000..a7390baf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000020_18ada834.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000021_8cb8512a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000021_8cb8512a.szar new file mode 100644 index 00000000..79585919 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000021_8cb8512a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000022_9768ef58.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000022_9768ef58.szar new file mode 100644 index 00000000..511d45a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000022_9768ef58.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000023_3f7635d3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000023_3f7635d3.szar new file mode 100644 index 00000000..d48b5a7c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000023_3f7635d3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000024_5153ca7b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000024_5153ca7b.szar new file mode 100644 index 00000000..419e34b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000024_5153ca7b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000025_ad921a11.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000025_ad921a11.szar new file mode 100644 index 00000000..02add74a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000025_ad921a11.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000026_8dacf695.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000026_8dacf695.szar new file mode 100644 index 00000000..450e84c9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000026_8dacf695.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000027_eb4deefa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000027_eb4deefa.szar new file mode 100644 index 00000000..8d957c04 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000027_eb4deefa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000028_da00c690.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000028_da00c690.szar new file mode 100644 index 00000000..7704c1c0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000028_da00c690.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000029_b31f0c18.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000029_b31f0c18.szar new file mode 100644 index 00000000..1003ef9d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/archive/delta_00000000000000000029_b31f0c18.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000001_dd3a764c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000001_dd3a764c.szcp new file mode 100644 index 00000000..d893c2ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000001_dd3a764c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000002_b80a55d8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000002_b80a55d8.szcp new file mode 100644 index 00000000..25658314 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000002_b80a55d8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000003_931b4df3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000003_931b4df3.szcp new file mode 100644 index 00000000..ffa1d9ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000003_931b4df3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000004_8af79de6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000004_8af79de6.szcp new file mode 100644 index 00000000..9930e59c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000004_8af79de6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000005_ec1aafac.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000005_ec1aafac.szcp new file mode 100644 index 00000000..84a910f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000005_ec1aafac.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000006_ceb2cca9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000006_ceb2cca9.szcp new file mode 100644 index 00000000..912d1189 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000006_ceb2cca9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000007_252811df.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000007_252811df.szcp new file mode 100644 index 00000000..44d40f4f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000007_252811df.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000008_ca8b094a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000008_ca8b094a.szcp new file mode 100644 index 00000000..8c78d9d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000008_ca8b094a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000009_336ba701.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000009_336ba701.szcp new file mode 100644 index 00000000..af7be663 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000009_336ba701.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000010_80a0e8d9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000010_80a0e8d9.szcp new file mode 100644 index 00000000..b126a4c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000010_80a0e8d9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000011_943eb096.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000011_943eb096.szcp new file mode 100644 index 00000000..63e09748 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000011_943eb096.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000012_3ee4f13c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000012_3ee4f13c.szcp new file mode 100644 index 00000000..638d08cd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000012_3ee4f13c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000013_82f4066e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000013_82f4066e.szcp new file mode 100644 index 00000000..f84b7fb3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000013_82f4066e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000014_767c133a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000014_767c133a.szcp new file mode 100644 index 00000000..da75860f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000014_767c133a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000015_c1c90716.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000015_c1c90716.szcp new file mode 100644 index 00000000..037c6665 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000015_c1c90716.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000016_741f0a13.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000016_741f0a13.szcp new file mode 100644 index 00000000..c6a4647f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000016_741f0a13.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000017_d4664867.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000017_d4664867.szcp new file mode 100644 index 00000000..a53db0ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000017_d4664867.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000018_480c717a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000018_480c717a.szcp new file mode 100644 index 00000000..d7da8473 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000018_480c717a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000019_e438f425.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000019_e438f425.szcp new file mode 100644 index 00000000..d573ab2b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000019_e438f425.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000020_6cade139.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000020_6cade139.szcp new file mode 100644 index 00000000..2fcd1ee9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000020_6cade139.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000021_f9a816d1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000021_f9a816d1.szcp new file mode 100644 index 00000000..27be8e85 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000021_f9a816d1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000022_e80e2ea1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000022_e80e2ea1.szcp new file mode 100644 index 00000000..1958a5c1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000022_e80e2ea1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000023_99d35366.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000023_99d35366.szcp new file mode 100644 index 00000000..813cd579 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000023_99d35366.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000024_7a900c80.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000024_7a900c80.szcp new file mode 100644 index 00000000..6fb33004 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000024_7a900c80.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000025_fd0c01c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000025_fd0c01c4.szcp new file mode 100644 index 00000000..4f556c0b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000025_fd0c01c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000026_579a531e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000026_579a531e.szcp new file mode 100644 index 00000000..fde0e3ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000026_579a531e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000027_636b8dce.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000027_636b8dce.szcp new file mode 100644 index 00000000..bcfc397c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000027_636b8dce.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000028_07201e3a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000028_07201e3a.szcp new file mode 100644 index 00000000..46afc620 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000028_07201e3a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000029_dc981452.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000029_dc981452.szcp new file mode 100644 index 00000000..7b0c806b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_031/checkpoints/checkpoint_00000000000000000029_dc981452.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000001_5e851d8b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000001_5e851d8b.szar new file mode 100644 index 00000000..a510f7ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000001_5e851d8b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000002_cd00034d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000002_cd00034d.szar new file mode 100644 index 00000000..d911e491 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000002_cd00034d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000003_e5f6db1a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000003_e5f6db1a.szar new file mode 100644 index 00000000..4503f476 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000003_e5f6db1a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000004_e6f1bb56.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000004_e6f1bb56.szar new file mode 100644 index 00000000..da6fde4e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000004_e6f1bb56.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000005_bdb1e266.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000005_bdb1e266.szar new file mode 100644 index 00000000..aa303b7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000005_bdb1e266.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000006_aa68af32.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000006_aa68af32.szar new file mode 100644 index 00000000..8001da76 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000006_aa68af32.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000007_a630fd20.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000007_a630fd20.szar new file mode 100644 index 00000000..22649a7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000007_a630fd20.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000008_435ab9d3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000008_435ab9d3.szar new file mode 100644 index 00000000..9ddedff7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000008_435ab9d3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000009_7535641c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000009_7535641c.szar new file mode 100644 index 00000000..edd5b254 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000009_7535641c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000010_f489fa8f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000010_f489fa8f.szar new file mode 100644 index 00000000..d5844842 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000010_f489fa8f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000011_238441f8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000011_238441f8.szar new file mode 100644 index 00000000..ed938311 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000011_238441f8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000012_cb564eae.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000012_cb564eae.szar new file mode 100644 index 00000000..cd1c4e03 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000012_cb564eae.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000013_a040b917.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000013_a040b917.szar new file mode 100644 index 00000000..9ee10b5f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000013_a040b917.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000014_28f9c9e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000014_28f9c9e8.szar new file mode 100644 index 00000000..7d806cae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000014_28f9c9e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000015_719c1c1d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000015_719c1c1d.szar new file mode 100644 index 00000000..9464e15a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000015_719c1c1d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000016_b2a4778d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000016_b2a4778d.szar new file mode 100644 index 00000000..61152d26 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000016_b2a4778d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000017_ae90b4be.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000017_ae90b4be.szar new file mode 100644 index 00000000..309be607 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/archive/delta_00000000000000000017_ae90b4be.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000001_79e58a9d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000001_79e58a9d.szcp new file mode 100644 index 00000000..55b30b89 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000001_79e58a9d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000002_3b8c8cd9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000002_3b8c8cd9.szcp new file mode 100644 index 00000000..3b033975 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000002_3b8c8cd9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000003_be057ca8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000003_be057ca8.szcp new file mode 100644 index 00000000..2f6ebdb3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000003_be057ca8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000004_d956ba99.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000004_d956ba99.szcp new file mode 100644 index 00000000..2911fd7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000004_d956ba99.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000005_aa875ba9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000005_aa875ba9.szcp new file mode 100644 index 00000000..e110db87 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000005_aa875ba9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000006_85c4b593.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000006_85c4b593.szcp new file mode 100644 index 00000000..eb8e87e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000006_85c4b593.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000007_e5ed9b21.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000007_e5ed9b21.szcp new file mode 100644 index 00000000..898dc59a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000007_e5ed9b21.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000008_1419cf55.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000008_1419cf55.szcp new file mode 100644 index 00000000..99d989c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000008_1419cf55.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000009_62b01a57.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000009_62b01a57.szcp new file mode 100644 index 00000000..a19e5cc1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000009_62b01a57.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000010_34b3b61d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000010_34b3b61d.szcp new file mode 100644 index 00000000..8d527480 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000010_34b3b61d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000011_fd616928.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000011_fd616928.szcp new file mode 100644 index 00000000..7b936b91 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000011_fd616928.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000012_57472047.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000012_57472047.szcp new file mode 100644 index 00000000..c00b8a65 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000012_57472047.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000013_1b434d0c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000013_1b434d0c.szcp new file mode 100644 index 00000000..04df32f5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000013_1b434d0c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000014_8c39f096.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000014_8c39f096.szcp new file mode 100644 index 00000000..346435f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000014_8c39f096.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000015_1407d3f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000015_1407d3f6.szcp new file mode 100644 index 00000000..57de7d8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000015_1407d3f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000016_f6b59a41.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000016_f6b59a41.szcp new file mode 100644 index 00000000..81ddebea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000016_f6b59a41.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000017_7074cefa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000017_7074cefa.szcp new file mode 100644 index 00000000..d1b821b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_032/checkpoints/checkpoint_00000000000000000017_7074cefa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000001_141aeeb0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000001_141aeeb0.szar new file mode 100644 index 00000000..99d68955 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000001_141aeeb0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000002_5897c605.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000002_5897c605.szar new file mode 100644 index 00000000..e0b9b4bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000002_5897c605.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000003_929256bf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000003_929256bf.szar new file mode 100644 index 00000000..2fd7bd73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000003_929256bf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000004_55801ad3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000004_55801ad3.szar new file mode 100644 index 00000000..aabdf225 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000004_55801ad3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000005_26409c88.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000005_26409c88.szar new file mode 100644 index 00000000..a93f97af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000005_26409c88.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000006_1422494a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000006_1422494a.szar new file mode 100644 index 00000000..a9642f53 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000006_1422494a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000007_a379f160.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000007_a379f160.szar new file mode 100644 index 00000000..c2e88d8b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000007_a379f160.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000008_557c9032.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000008_557c9032.szar new file mode 100644 index 00000000..1070a10d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000008_557c9032.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000009_274c5fe8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000009_274c5fe8.szar new file mode 100644 index 00000000..0a9cf8b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000009_274c5fe8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000010_28936634.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000010_28936634.szar new file mode 100644 index 00000000..789d7d64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000010_28936634.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000011_8effca46.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000011_8effca46.szar new file mode 100644 index 00000000..52aecd73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000011_8effca46.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000012_cbe480a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000012_cbe480a7.szar new file mode 100644 index 00000000..189fbf3f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000012_cbe480a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000013_0d1480f7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000013_0d1480f7.szar new file mode 100644 index 00000000..ff94eb98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000013_0d1480f7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000014_e0a98344.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000014_e0a98344.szar new file mode 100644 index 00000000..a11e468d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000014_e0a98344.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000015_5e6c7d58.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000015_5e6c7d58.szar new file mode 100644 index 00000000..85e2248c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000015_5e6c7d58.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000016_ff4f57d7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000016_ff4f57d7.szar new file mode 100644 index 00000000..29bddee0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000016_ff4f57d7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000017_728e487a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000017_728e487a.szar new file mode 100644 index 00000000..effc4e98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000017_728e487a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000018_26126f3f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000018_26126f3f.szar new file mode 100644 index 00000000..2f8cce24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000018_26126f3f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000019_38f63e87.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000019_38f63e87.szar new file mode 100644 index 00000000..6a92d43a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000019_38f63e87.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000020_36a16a65.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000020_36a16a65.szar new file mode 100644 index 00000000..bb26f19e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000020_36a16a65.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000021_7f18219c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000021_7f18219c.szar new file mode 100644 index 00000000..b53fa8f5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000021_7f18219c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000022_3ee3c12f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000022_3ee3c12f.szar new file mode 100644 index 00000000..0d0fdc70 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000022_3ee3c12f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000023_d0005e95.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000023_d0005e95.szar new file mode 100644 index 00000000..754939cf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000023_d0005e95.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000024_92a2d940.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000024_92a2d940.szar new file mode 100644 index 00000000..a4925d1f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000024_92a2d940.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000025_b54a59c5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000025_b54a59c5.szar new file mode 100644 index 00000000..26fbb4c0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000025_b54a59c5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000026_d02d47c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000026_d02d47c2.szar new file mode 100644 index 00000000..95159ded Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/archive/delta_00000000000000000026_d02d47c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000001_4b5bb10c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000001_4b5bb10c.szcp new file mode 100644 index 00000000..03743f67 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000001_4b5bb10c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000002_92d15e15.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000002_92d15e15.szcp new file mode 100644 index 00000000..efa5b104 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000002_92d15e15.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000003_99ce51c5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000003_99ce51c5.szcp new file mode 100644 index 00000000..52689a90 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000003_99ce51c5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000004_ef998ce6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000004_ef998ce6.szcp new file mode 100644 index 00000000..c063552d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000004_ef998ce6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000005_e5001501.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000005_e5001501.szcp new file mode 100644 index 00000000..8341fa6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000005_e5001501.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000006_de06aad0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000006_de06aad0.szcp new file mode 100644 index 00000000..427a5e55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000006_de06aad0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000007_32d4afe6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000007_32d4afe6.szcp new file mode 100644 index 00000000..6aa61091 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000007_32d4afe6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000008_d73ed9b4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000008_d73ed9b4.szcp new file mode 100644 index 00000000..b432db7f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000008_d73ed9b4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000009_7c59ff99.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000009_7c59ff99.szcp new file mode 100644 index 00000000..29dc8a43 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000009_7c59ff99.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000010_89156b37.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000010_89156b37.szcp new file mode 100644 index 00000000..24b34623 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000010_89156b37.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000011_5fe302aa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000011_5fe302aa.szcp new file mode 100644 index 00000000..5420a014 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000011_5fe302aa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000012_ca821e4a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000012_ca821e4a.szcp new file mode 100644 index 00000000..e231c44f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000012_ca821e4a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000013_7275f7f3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000013_7275f7f3.szcp new file mode 100644 index 00000000..5b0d19eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000013_7275f7f3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000014_3193541b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000014_3193541b.szcp new file mode 100644 index 00000000..26b3d8e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000014_3193541b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000015_2c02d523.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000015_2c02d523.szcp new file mode 100644 index 00000000..47f8a63b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000015_2c02d523.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000016_41742322.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000016_41742322.szcp new file mode 100644 index 00000000..c5469eba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000016_41742322.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000017_9adc9ad1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000017_9adc9ad1.szcp new file mode 100644 index 00000000..68d199de Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000017_9adc9ad1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000018_929db86d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000018_929db86d.szcp new file mode 100644 index 00000000..61afcf57 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000018_929db86d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000019_c271526f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000019_c271526f.szcp new file mode 100644 index 00000000..16b59b7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000019_c271526f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000020_213fca69.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000020_213fca69.szcp new file mode 100644 index 00000000..00a7e244 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000020_213fca69.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000021_d3a06e9a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000021_d3a06e9a.szcp new file mode 100644 index 00000000..b1b9e495 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000021_d3a06e9a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000022_d8e2b271.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000022_d8e2b271.szcp new file mode 100644 index 00000000..f7f0c559 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000022_d8e2b271.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000023_e2b5ff03.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000023_e2b5ff03.szcp new file mode 100644 index 00000000..b9c439f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000023_e2b5ff03.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000024_94463ccc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000024_94463ccc.szcp new file mode 100644 index 00000000..376c4c09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000024_94463ccc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000025_9e991e9c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000025_9e991e9c.szcp new file mode 100644 index 00000000..a5709ce5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000025_9e991e9c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000026_3383c9c6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000026_3383c9c6.szcp new file mode 100644 index 00000000..cefac22a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_033/checkpoints/checkpoint_00000000000000000026_3383c9c6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000001_d6868477.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000001_d6868477.szar new file mode 100644 index 00000000..f24379c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000001_d6868477.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000002_6009b4a0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000002_6009b4a0.szar new file mode 100644 index 00000000..d6ac5491 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000002_6009b4a0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000003_674f83d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000003_674f83d0.szar new file mode 100644 index 00000000..743eaf72 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000003_674f83d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000004_55cc7095.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000004_55cc7095.szar new file mode 100644 index 00000000..fa179d48 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000004_55cc7095.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000005_c52f1e04.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000005_c52f1e04.szar new file mode 100644 index 00000000..6b97ab46 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000005_c52f1e04.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000006_22b7cf07.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000006_22b7cf07.szar new file mode 100644 index 00000000..ea4b028d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000006_22b7cf07.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000007_c2fc9ed0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000007_c2fc9ed0.szar new file mode 100644 index 00000000..21dd5e94 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000007_c2fc9ed0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000008_6649f571.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000008_6649f571.szar new file mode 100644 index 00000000..812ed245 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000008_6649f571.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000009_cb338a04.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000009_cb338a04.szar new file mode 100644 index 00000000..00ecc82b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000009_cb338a04.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000010_b3ecd55e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000010_b3ecd55e.szar new file mode 100644 index 00000000..4c271770 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000010_b3ecd55e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000011_fa88079b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000011_fa88079b.szar new file mode 100644 index 00000000..11727e8e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000011_fa88079b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000012_253373aa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000012_253373aa.szar new file mode 100644 index 00000000..792e64da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000012_253373aa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000013_57501b1c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000013_57501b1c.szar new file mode 100644 index 00000000..099ea610 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000013_57501b1c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000014_099d9ce2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000014_099d9ce2.szar new file mode 100644 index 00000000..3fc9580d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000014_099d9ce2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000015_e8a2c76e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000015_e8a2c76e.szar new file mode 100644 index 00000000..db98a9ab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000015_e8a2c76e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000016_1f29552d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000016_1f29552d.szar new file mode 100644 index 00000000..f94f8338 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000016_1f29552d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000017_e6b179f5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000017_e6b179f5.szar new file mode 100644 index 00000000..9ab6ac7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000017_e6b179f5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000018_a7ba66f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000018_a7ba66f0.szar new file mode 100644 index 00000000..341d5077 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000018_a7ba66f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000019_f566d36d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000019_f566d36d.szar new file mode 100644 index 00000000..f27e2ebb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000019_f566d36d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000020_ecc3fa99.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000020_ecc3fa99.szar new file mode 100644 index 00000000..2519efc1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/archive/delta_00000000000000000020_ecc3fa99.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000001_6f6ce9cd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000001_6f6ce9cd.szcp new file mode 100644 index 00000000..bf8c2b2f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000001_6f6ce9cd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000002_17e13284.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000002_17e13284.szcp new file mode 100644 index 00000000..a00f2be2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000002_17e13284.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000003_05e0f78d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000003_05e0f78d.szcp new file mode 100644 index 00000000..0a3443af Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000003_05e0f78d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000004_25491efe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000004_25491efe.szcp new file mode 100644 index 00000000..2d4d150b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000004_25491efe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000005_ca4f9aed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000005_ca4f9aed.szcp new file mode 100644 index 00000000..dce0c04c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000005_ca4f9aed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000006_c6251ee5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000006_c6251ee5.szcp new file mode 100644 index 00000000..8005fa5a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000006_c6251ee5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000007_021d7e72.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000007_021d7e72.szcp new file mode 100644 index 00000000..c8a9ea3f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000007_021d7e72.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000008_17eb5dc3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000008_17eb5dc3.szcp new file mode 100644 index 00000000..afb33970 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000008_17eb5dc3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000009_1a7bc0eb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000009_1a7bc0eb.szcp new file mode 100644 index 00000000..f12acd82 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000009_1a7bc0eb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000010_ec92071e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000010_ec92071e.szcp new file mode 100644 index 00000000..7c972c4d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000010_ec92071e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000011_7898d6fd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000011_7898d6fd.szcp new file mode 100644 index 00000000..5f828e80 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000011_7898d6fd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000012_f73aff3e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000012_f73aff3e.szcp new file mode 100644 index 00000000..5ca87725 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000012_f73aff3e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000013_750cbb09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000013_750cbb09.szcp new file mode 100644 index 00000000..f4783d82 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000013_750cbb09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000014_cdaeac4b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000014_cdaeac4b.szcp new file mode 100644 index 00000000..1ac069db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000014_cdaeac4b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000015_505a2086.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000015_505a2086.szcp new file mode 100644 index 00000000..d5e61e52 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000015_505a2086.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000016_7ba1106c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000016_7ba1106c.szcp new file mode 100644 index 00000000..89cd9990 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000016_7ba1106c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000017_192a87ce.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000017_192a87ce.szcp new file mode 100644 index 00000000..d903c33a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000017_192a87ce.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000018_385a779d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000018_385a779d.szcp new file mode 100644 index 00000000..500de2eb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000018_385a779d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000019_869030bb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000019_869030bb.szcp new file mode 100644 index 00000000..c47c6c55 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000019_869030bb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000020_47a2bdd6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000020_47a2bdd6.szcp new file mode 100644 index 00000000..977566b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_034/checkpoints/checkpoint_00000000000000000020_47a2bdd6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000001_6b18179f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000001_6b18179f.szar new file mode 100644 index 00000000..e88a4a81 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000001_6b18179f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000002_cc35d836.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000002_cc35d836.szar new file mode 100644 index 00000000..661cc71d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000002_cc35d836.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000003_05365d67.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000003_05365d67.szar new file mode 100644 index 00000000..2c41b030 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000003_05365d67.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000004_03e90317.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000004_03e90317.szar new file mode 100644 index 00000000..12947ddd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000004_03e90317.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000005_451e3ae6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000005_451e3ae6.szar new file mode 100644 index 00000000..dd8ee5ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000005_451e3ae6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000006_b6c65c8e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000006_b6c65c8e.szar new file mode 100644 index 00000000..fe21a0a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000006_b6c65c8e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000007_7f220c8e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000007_7f220c8e.szar new file mode 100644 index 00000000..30ececb2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000007_7f220c8e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000008_615fa5ce.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000008_615fa5ce.szar new file mode 100644 index 00000000..152d1557 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000008_615fa5ce.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000009_226a2d58.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000009_226a2d58.szar new file mode 100644 index 00000000..712c2bc9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000009_226a2d58.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000010_e7bdca29.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000010_e7bdca29.szar new file mode 100644 index 00000000..278e4f53 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000010_e7bdca29.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000011_6a6c5338.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000011_6a6c5338.szar new file mode 100644 index 00000000..0ce34b78 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000011_6a6c5338.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000012_9c4e85df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000012_9c4e85df.szar new file mode 100644 index 00000000..0e00ba27 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000012_9c4e85df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000013_8b060573.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000013_8b060573.szar new file mode 100644 index 00000000..f7ac2ac9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000013_8b060573.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000014_6246874b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000014_6246874b.szar new file mode 100644 index 00000000..a337831f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000014_6246874b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000015_026ff64b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000015_026ff64b.szar new file mode 100644 index 00000000..ffe14eea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000015_026ff64b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000016_1104dc8f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000016_1104dc8f.szar new file mode 100644 index 00000000..ad873242 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000016_1104dc8f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000017_e642c877.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000017_e642c877.szar new file mode 100644 index 00000000..5da7cedf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000017_e642c877.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000018_c0c4c898.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000018_c0c4c898.szar new file mode 100644 index 00000000..33379634 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/archive/delta_00000000000000000018_c0c4c898.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000001_c8a3b312.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000001_c8a3b312.szcp new file mode 100644 index 00000000..80f5a765 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000001_c8a3b312.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000002_55524d67.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000002_55524d67.szcp new file mode 100644 index 00000000..35b2f235 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000002_55524d67.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000003_ebb8ff6a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000003_ebb8ff6a.szcp new file mode 100644 index 00000000..c9fc92e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000003_ebb8ff6a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000004_faf4f84f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000004_faf4f84f.szcp new file mode 100644 index 00000000..57929557 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000004_faf4f84f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000005_5c80de46.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000005_5c80de46.szcp new file mode 100644 index 00000000..e0a12a34 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000005_5c80de46.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000006_cdb16548.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000006_cdb16548.szcp new file mode 100644 index 00000000..399f7d6e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000006_cdb16548.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000007_c1bdb9d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000007_c1bdb9d3.szcp new file mode 100644 index 00000000..19ebe98a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000007_c1bdb9d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000008_c00ec46a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000008_c00ec46a.szcp new file mode 100644 index 00000000..e6bf1e39 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000008_c00ec46a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000009_081ca85d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000009_081ca85d.szcp new file mode 100644 index 00000000..8d2ec2e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000009_081ca85d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000010_c5f7ef91.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000010_c5f7ef91.szcp new file mode 100644 index 00000000..a8a8dd4b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000010_c5f7ef91.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000011_09a43667.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000011_09a43667.szcp new file mode 100644 index 00000000..54c063c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000011_09a43667.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000012_c3140d8d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000012_c3140d8d.szcp new file mode 100644 index 00000000..be53d194 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000012_c3140d8d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000013_45f7377a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000013_45f7377a.szcp new file mode 100644 index 00000000..fe8cc555 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000013_45f7377a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000014_fbea58aa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000014_fbea58aa.szcp new file mode 100644 index 00000000..17e875a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000014_fbea58aa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000015_baf4fc32.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000015_baf4fc32.szcp new file mode 100644 index 00000000..e97529e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000015_baf4fc32.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000016_3cbecc48.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000016_3cbecc48.szcp new file mode 100644 index 00000000..22601dcc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000016_3cbecc48.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000017_ec0add65.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000017_ec0add65.szcp new file mode 100644 index 00000000..ffdce95d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000017_ec0add65.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000018_f6ad762c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000018_f6ad762c.szcp new file mode 100644 index 00000000..afd5eeaf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_035/checkpoints/checkpoint_00000000000000000018_f6ad762c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000001_dbbb32c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000001_dbbb32c7.szar new file mode 100644 index 00000000..8373731c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000001_dbbb32c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000002_892a9394.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000002_892a9394.szar new file mode 100644 index 00000000..95046b09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000002_892a9394.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000003_f669caf6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000003_f669caf6.szar new file mode 100644 index 00000000..a8d0a248 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000003_f669caf6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000004_bc4835d5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000004_bc4835d5.szar new file mode 100644 index 00000000..17f946c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000004_bc4835d5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000005_13e02499.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000005_13e02499.szar new file mode 100644 index 00000000..5e3a5cff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000005_13e02499.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000006_1aa91964.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000006_1aa91964.szar new file mode 100644 index 00000000..43315e1b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000006_1aa91964.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000007_f24d6787.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000007_f24d6787.szar new file mode 100644 index 00000000..fd444071 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000007_f24d6787.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000008_0db1cbab.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000008_0db1cbab.szar new file mode 100644 index 00000000..aeca6d57 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000008_0db1cbab.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000009_66676e87.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000009_66676e87.szar new file mode 100644 index 00000000..95bb09f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000009_66676e87.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000010_29ba2f11.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000010_29ba2f11.szar new file mode 100644 index 00000000..6f0b078d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000010_29ba2f11.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000011_0027a7ab.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000011_0027a7ab.szar new file mode 100644 index 00000000..36515375 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000011_0027a7ab.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000012_e1776e66.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000012_e1776e66.szar new file mode 100644 index 00000000..c4bff6d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000012_e1776e66.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000013_27b27874.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000013_27b27874.szar new file mode 100644 index 00000000..2e8bb494 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000013_27b27874.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000014_f8633a35.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000014_f8633a35.szar new file mode 100644 index 00000000..9576d879 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000014_f8633a35.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000015_f46be247.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000015_f46be247.szar new file mode 100644 index 00000000..667d9235 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000015_f46be247.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000016_a01804b1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000016_a01804b1.szar new file mode 100644 index 00000000..8244589b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000016_a01804b1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000017_120458dd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000017_120458dd.szar new file mode 100644 index 00000000..ada0c65e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000017_120458dd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000018_a32eee25.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000018_a32eee25.szar new file mode 100644 index 00000000..97c25a88 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/archive/delta_00000000000000000018_a32eee25.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000001_6b6ae98e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000001_6b6ae98e.szcp new file mode 100644 index 00000000..5af0aa02 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000001_6b6ae98e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000002_cf2f40e9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000002_cf2f40e9.szcp new file mode 100644 index 00000000..321e1ee2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000002_cf2f40e9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000003_88af7ea1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000003_88af7ea1.szcp new file mode 100644 index 00000000..c8235e54 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000003_88af7ea1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000004_db88dd40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000004_db88dd40.szcp new file mode 100644 index 00000000..d87932c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000004_db88dd40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000005_5abdfd06.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000005_5abdfd06.szcp new file mode 100644 index 00000000..5b1b2b9d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000005_5abdfd06.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000006_041f6d01.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000006_041f6d01.szcp new file mode 100644 index 00000000..047aadef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000006_041f6d01.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000007_62f4c543.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000007_62f4c543.szcp new file mode 100644 index 00000000..7f196179 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000007_62f4c543.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000008_17d31a07.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000008_17d31a07.szcp new file mode 100644 index 00000000..bdeb0e6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000008_17d31a07.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000009_bcbd4c8a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000009_bcbd4c8a.szcp new file mode 100644 index 00000000..77d6b157 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000009_bcbd4c8a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000010_c1e872cd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000010_c1e872cd.szcp new file mode 100644 index 00000000..19238e64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000010_c1e872cd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000011_bbc85e0b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000011_bbc85e0b.szcp new file mode 100644 index 00000000..e6504563 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000011_bbc85e0b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000012_036636bd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000012_036636bd.szcp new file mode 100644 index 00000000..6b50e248 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000012_036636bd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000013_a7e8f9df.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000013_a7e8f9df.szcp new file mode 100644 index 00000000..782861e2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000013_a7e8f9df.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000014_7e1bc5ac.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000014_7e1bc5ac.szcp new file mode 100644 index 00000000..6b0ce02b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000014_7e1bc5ac.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000015_47012d29.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000015_47012d29.szcp new file mode 100644 index 00000000..697f36ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000015_47012d29.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000016_e3b6ef0d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000016_e3b6ef0d.szcp new file mode 100644 index 00000000..8087056e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000016_e3b6ef0d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000017_d1eaeced.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000017_d1eaeced.szcp new file mode 100644 index 00000000..a5ebeeb2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000017_d1eaeced.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000018_4b31bc6e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000018_4b31bc6e.szcp new file mode 100644 index 00000000..b576c6a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_036/checkpoints/checkpoint_00000000000000000018_4b31bc6e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000001_b19a1bd7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000001_b19a1bd7.szar new file mode 100644 index 00000000..f73dcf70 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000001_b19a1bd7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000002_772d0cb5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000002_772d0cb5.szar new file mode 100644 index 00000000..fab5091e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000002_772d0cb5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000003_99964720.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000003_99964720.szar new file mode 100644 index 00000000..61600f35 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000003_99964720.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000004_4ce16128.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000004_4ce16128.szar new file mode 100644 index 00000000..ee5d4008 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000004_4ce16128.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000005_06c81552.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000005_06c81552.szar new file mode 100644 index 00000000..ba050d42 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000005_06c81552.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000006_64a0acf6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000006_64a0acf6.szar new file mode 100644 index 00000000..1e4c8e3c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000006_64a0acf6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000007_d9b06582.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000007_d9b06582.szar new file mode 100644 index 00000000..e4b24073 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000007_d9b06582.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000008_eca6a7fd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000008_eca6a7fd.szar new file mode 100644 index 00000000..c85ef5c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000008_eca6a7fd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000009_ee4a2d4d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000009_ee4a2d4d.szar new file mode 100644 index 00000000..f3a51482 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000009_ee4a2d4d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000010_76cdd107.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000010_76cdd107.szar new file mode 100644 index 00000000..f7fc0f06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000010_76cdd107.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000011_0746ed6e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000011_0746ed6e.szar new file mode 100644 index 00000000..d3fb4212 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000011_0746ed6e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000012_bf1c2d6f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000012_bf1c2d6f.szar new file mode 100644 index 00000000..6b2419ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000012_bf1c2d6f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000013_1d262e18.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000013_1d262e18.szar new file mode 100644 index 00000000..f89b4b91 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000013_1d262e18.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000014_d46f2d33.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000014_d46f2d33.szar new file mode 100644 index 00000000..aa2a98a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000014_d46f2d33.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000015_3f5829de.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000015_3f5829de.szar new file mode 100644 index 00000000..8a759e1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000015_3f5829de.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000016_5c694e7c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000016_5c694e7c.szar new file mode 100644 index 00000000..75aadfe0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000016_5c694e7c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000017_2458d93f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000017_2458d93f.szar new file mode 100644 index 00000000..d0d964b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000017_2458d93f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000018_ccbe57c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000018_ccbe57c2.szar new file mode 100644 index 00000000..db4f1275 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000018_ccbe57c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000019_4cb6de3c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000019_4cb6de3c.szar new file mode 100644 index 00000000..02efa865 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000019_4cb6de3c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000020_d3e85c21.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000020_d3e85c21.szar new file mode 100644 index 00000000..fa5f83f9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000020_d3e85c21.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000021_277c7b54.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000021_277c7b54.szar new file mode 100644 index 00000000..dcd4cec1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000021_277c7b54.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000022_3eb25d0f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000022_3eb25d0f.szar new file mode 100644 index 00000000..1e05a0ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/archive/delta_00000000000000000022_3eb25d0f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000001_9c50b260.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000001_9c50b260.szcp new file mode 100644 index 00000000..bf0a71ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000001_9c50b260.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000002_67ec8359.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000002_67ec8359.szcp new file mode 100644 index 00000000..84d8ada9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000002_67ec8359.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000003_db4f9610.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000003_db4f9610.szcp new file mode 100644 index 00000000..add07355 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000003_db4f9610.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000004_8c22c2c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000004_8c22c2c4.szcp new file mode 100644 index 00000000..41110e11 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000004_8c22c2c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000005_90ea62a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000005_90ea62a8.szcp new file mode 100644 index 00000000..a86dd29b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000005_90ea62a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000006_f3d67fd4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000006_f3d67fd4.szcp new file mode 100644 index 00000000..f4ebbd38 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000006_f3d67fd4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000007_43bda039.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000007_43bda039.szcp new file mode 100644 index 00000000..b4518e96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000007_43bda039.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000008_ad7a3862.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000008_ad7a3862.szcp new file mode 100644 index 00000000..19de8610 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000008_ad7a3862.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000009_d4e782a7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000009_d4e782a7.szcp new file mode 100644 index 00000000..a3a5f163 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000009_d4e782a7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000010_6d40f0d8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000010_6d40f0d8.szcp new file mode 100644 index 00000000..7b739028 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000010_6d40f0d8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000011_f6ab4fd3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000011_f6ab4fd3.szcp new file mode 100644 index 00000000..caf4c07f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000011_f6ab4fd3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000012_fd15b5b5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000012_fd15b5b5.szcp new file mode 100644 index 00000000..bf516850 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000012_fd15b5b5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000013_d0c995f0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000013_d0c995f0.szcp new file mode 100644 index 00000000..1c01731b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000013_d0c995f0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000014_b1e0b8ae.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000014_b1e0b8ae.szcp new file mode 100644 index 00000000..a4edfc36 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000014_b1e0b8ae.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000015_160a45cf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000015_160a45cf.szcp new file mode 100644 index 00000000..05666d7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000015_160a45cf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000016_0a4c3f6f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000016_0a4c3f6f.szcp new file mode 100644 index 00000000..8f4f68aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000016_0a4c3f6f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000017_0a198b1c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000017_0a198b1c.szcp new file mode 100644 index 00000000..c1cc1d82 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000017_0a198b1c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000018_46841c5a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000018_46841c5a.szcp new file mode 100644 index 00000000..41117051 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000018_46841c5a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000019_d3348c0d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000019_d3348c0d.szcp new file mode 100644 index 00000000..49507318 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000019_d3348c0d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000020_f95eff97.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000020_f95eff97.szcp new file mode 100644 index 00000000..253a36d5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000020_f95eff97.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000021_e2df7707.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000021_e2df7707.szcp new file mode 100644 index 00000000..3f946aef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000021_e2df7707.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000022_d6770730.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000022_d6770730.szcp new file mode 100644 index 00000000..b0a8382c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_037/checkpoints/checkpoint_00000000000000000022_d6770730.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000001_617277a4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000001_617277a4.szar new file mode 100644 index 00000000..b247c772 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000001_617277a4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000002_33519657.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000002_33519657.szar new file mode 100644 index 00000000..5b109e50 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000002_33519657.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000003_bad6f139.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000003_bad6f139.szar new file mode 100644 index 00000000..b5f0206c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000003_bad6f139.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000004_5284c5e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000004_5284c5e8.szar new file mode 100644 index 00000000..9fa337c9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000004_5284c5e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000005_fa113606.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000005_fa113606.szar new file mode 100644 index 00000000..ab884e75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000005_fa113606.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000006_fb7e1ef2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000006_fb7e1ef2.szar new file mode 100644 index 00000000..ebc9cd62 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000006_fb7e1ef2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000007_90139b2c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000007_90139b2c.szar new file mode 100644 index 00000000..1754e83c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000007_90139b2c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000008_ac8b5615.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000008_ac8b5615.szar new file mode 100644 index 00000000..9f94fed3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000008_ac8b5615.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000009_873fa964.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000009_873fa964.szar new file mode 100644 index 00000000..d0a4a71f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000009_873fa964.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000010_05acbebe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000010_05acbebe.szar new file mode 100644 index 00000000..9d15d122 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000010_05acbebe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000011_bd691f62.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000011_bd691f62.szar new file mode 100644 index 00000000..00dfe8d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000011_bd691f62.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000012_b2efac75.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000012_b2efac75.szar new file mode 100644 index 00000000..2c4eb6f3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000012_b2efac75.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000013_b69fba97.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000013_b69fba97.szar new file mode 100644 index 00000000..97d8d473 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000013_b69fba97.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000014_4711c12a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000014_4711c12a.szar new file mode 100644 index 00000000..a9c86e7d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000014_4711c12a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000015_c576b1fe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000015_c576b1fe.szar new file mode 100644 index 00000000..fd9bd461 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000015_c576b1fe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000016_61c1c3b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000016_61c1c3b8.szar new file mode 100644 index 00000000..2fb36b3d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/archive/delta_00000000000000000016_61c1c3b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000001_7148bfad.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000001_7148bfad.szcp new file mode 100644 index 00000000..0060fb64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000001_7148bfad.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000002_d5dd98c7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000002_d5dd98c7.szcp new file mode 100644 index 00000000..6f0b5bc3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000002_d5dd98c7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000003_8b26de9c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000003_8b26de9c.szcp new file mode 100644 index 00000000..fdcf561f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000003_8b26de9c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000004_7659049f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000004_7659049f.szcp new file mode 100644 index 00000000..11f2cefd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000004_7659049f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000005_2a480286.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000005_2a480286.szcp new file mode 100644 index 00000000..3d1632f2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000005_2a480286.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000006_e9effaf0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000006_e9effaf0.szcp new file mode 100644 index 00000000..ec4953b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000006_e9effaf0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000007_7f8d3af2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000007_7f8d3af2.szcp new file mode 100644 index 00000000..9b2276fc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000007_7f8d3af2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000008_54d9a077.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000008_54d9a077.szcp new file mode 100644 index 00000000..3d47635f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000008_54d9a077.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000009_6a43cf97.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000009_6a43cf97.szcp new file mode 100644 index 00000000..75d557cd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000009_6a43cf97.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000010_32befa3f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000010_32befa3f.szcp new file mode 100644 index 00000000..da8de75d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000010_32befa3f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000011_2120b4c7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000011_2120b4c7.szcp new file mode 100644 index 00000000..faea7ed4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000011_2120b4c7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000012_b4f5f7d6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000012_b4f5f7d6.szcp new file mode 100644 index 00000000..1bf41e97 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000012_b4f5f7d6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000013_775f23ac.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000013_775f23ac.szcp new file mode 100644 index 00000000..cb6d21c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000013_775f23ac.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000014_942c4928.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000014_942c4928.szcp new file mode 100644 index 00000000..6bb65f0b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000014_942c4928.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000015_33b82bf3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000015_33b82bf3.szcp new file mode 100644 index 00000000..0aa17fc5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000015_33b82bf3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000016_4cf3853f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000016_4cf3853f.szcp new file mode 100644 index 00000000..54b9831a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_038/checkpoints/checkpoint_00000000000000000016_4cf3853f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000001_4af545d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000001_4af545d0.szar new file mode 100644 index 00000000..83f38591 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000001_4af545d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000002_e378f0bc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000002_e378f0bc.szar new file mode 100644 index 00000000..9eb846db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000002_e378f0bc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000003_5d9bc2d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000003_5d9bc2d0.szar new file mode 100644 index 00000000..cec8593c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000003_5d9bc2d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000004_2d9852e2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000004_2d9852e2.szar new file mode 100644 index 00000000..dfe68c0d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000004_2d9852e2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000005_f41e930e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000005_f41e930e.szar new file mode 100644 index 00000000..3aad7358 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000005_f41e930e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000006_6354ce5c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000006_6354ce5c.szar new file mode 100644 index 00000000..f638f012 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000006_6354ce5c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000007_e6685b3b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000007_e6685b3b.szar new file mode 100644 index 00000000..5eeadce9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000007_e6685b3b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000008_37f0f3d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000008_37f0f3d0.szar new file mode 100644 index 00000000..b3e2248f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000008_37f0f3d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000009_27a75efc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000009_27a75efc.szar new file mode 100644 index 00000000..0f2ac68c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000009_27a75efc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000010_b0ead816.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000010_b0ead816.szar new file mode 100644 index 00000000..24461ae1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000010_b0ead816.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000011_44d51329.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000011_44d51329.szar new file mode 100644 index 00000000..5dca3bbf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000011_44d51329.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000012_bcf36fd5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000012_bcf36fd5.szar new file mode 100644 index 00000000..8df43ec0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000012_bcf36fd5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000013_b1136ba9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000013_b1136ba9.szar new file mode 100644 index 00000000..e73aba8d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000013_b1136ba9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000014_c009a2b4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000014_c009a2b4.szar new file mode 100644 index 00000000..a68feb01 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000014_c009a2b4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000015_382c801a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000015_382c801a.szar new file mode 100644 index 00000000..a2e333ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000015_382c801a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000016_f6127000.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000016_f6127000.szar new file mode 100644 index 00000000..f97c7f1b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000016_f6127000.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000017_3ae879fa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000017_3ae879fa.szar new file mode 100644 index 00000000..e664a6bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000017_3ae879fa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000018_c21f809e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000018_c21f809e.szar new file mode 100644 index 00000000..965abd47 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/archive/delta_00000000000000000018_c21f809e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000001_6b37db57.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000001_6b37db57.szcp new file mode 100644 index 00000000..719a21ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000001_6b37db57.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000002_acf172f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000002_acf172f7.szcp new file mode 100644 index 00000000..9390fbee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000002_acf172f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000003_3e0159c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000003_3e0159c3.szcp new file mode 100644 index 00000000..3c6c52e3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000003_3e0159c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000004_0e618275.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000004_0e618275.szcp new file mode 100644 index 00000000..79439dfc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000004_0e618275.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000005_19310f79.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000005_19310f79.szcp new file mode 100644 index 00000000..78a1e70a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000005_19310f79.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000006_63db5a7f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000006_63db5a7f.szcp new file mode 100644 index 00000000..743f03b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000006_63db5a7f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000007_dd6c4ce2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000007_dd6c4ce2.szcp new file mode 100644 index 00000000..e896a950 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000007_dd6c4ce2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000008_942e7525.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000008_942e7525.szcp new file mode 100644 index 00000000..549323fd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000008_942e7525.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000009_eddd5fa5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000009_eddd5fa5.szcp new file mode 100644 index 00000000..ff9cc7fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000009_eddd5fa5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000010_b49c6159.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000010_b49c6159.szcp new file mode 100644 index 00000000..a155d34a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000010_b49c6159.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000011_2b79de22.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000011_2b79de22.szcp new file mode 100644 index 00000000..ba4c4d5f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000011_2b79de22.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000012_fb7b1cb6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000012_fb7b1cb6.szcp new file mode 100644 index 00000000..7dd67d9e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000012_fb7b1cb6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000013_6777a70e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000013_6777a70e.szcp new file mode 100644 index 00000000..f87a9b7f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000013_6777a70e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000014_eda30a0a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000014_eda30a0a.szcp new file mode 100644 index 00000000..c26fd9e7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000014_eda30a0a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000015_28d7f0f8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000015_28d7f0f8.szcp new file mode 100644 index 00000000..cf8ea184 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000015_28d7f0f8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000016_5ca632c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000016_5ca632c4.szcp new file mode 100644 index 00000000..9a28670b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000016_5ca632c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000017_433ffd61.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000017_433ffd61.szcp new file mode 100644 index 00000000..ebc3f2ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000017_433ffd61.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000018_dc1b2d27.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000018_dc1b2d27.szcp new file mode 100644 index 00000000..fe8812a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_039/checkpoints/checkpoint_00000000000000000018_dc1b2d27.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000001_faf36f02.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000001_faf36f02.szar new file mode 100644 index 00000000..9a502d02 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000001_faf36f02.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000002_859d5dea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000002_859d5dea.szar new file mode 100644 index 00000000..d050afc9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000002_859d5dea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000003_dddb6780.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000003_dddb6780.szar new file mode 100644 index 00000000..40f1134d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000003_dddb6780.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000004_5926c1b1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000004_5926c1b1.szar new file mode 100644 index 00000000..6826e64f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000004_5926c1b1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000005_76ad789e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000005_76ad789e.szar new file mode 100644 index 00000000..7f49123f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000005_76ad789e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000006_5e5436ac.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000006_5e5436ac.szar new file mode 100644 index 00000000..54cfdc7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000006_5e5436ac.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000007_7a29cd85.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000007_7a29cd85.szar new file mode 100644 index 00000000..98d18b83 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000007_7a29cd85.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000008_fde517df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000008_fde517df.szar new file mode 100644 index 00000000..574c25ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000008_fde517df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000009_f3f8e2ea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000009_f3f8e2ea.szar new file mode 100644 index 00000000..7edb48d8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000009_f3f8e2ea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000010_dd520906.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000010_dd520906.szar new file mode 100644 index 00000000..3f4a1233 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000010_dd520906.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000011_44039639.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000011_44039639.szar new file mode 100644 index 00000000..2d453242 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000011_44039639.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000012_fe833df7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000012_fe833df7.szar new file mode 100644 index 00000000..c3c45231 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000012_fe833df7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000013_541af3b4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000013_541af3b4.szar new file mode 100644 index 00000000..b27e2240e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000013_541af3b4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000014_d66c81aa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000014_d66c81aa.szar new file mode 100644 index 00000000..09e2f661 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000014_d66c81aa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000015_fc37f968.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000015_fc37f968.szar new file mode 100644 index 00000000..1c20ffc7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000015_fc37f968.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000016_19edfc7b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000016_19edfc7b.szar new file mode 100644 index 00000000..8b1eafdc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000016_19edfc7b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000017_a6ff7d4d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000017_a6ff7d4d.szar new file mode 100644 index 00000000..bae9a545 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/archive/delta_00000000000000000017_a6ff7d4d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000001_4aca59f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000001_4aca59f6.szcp new file mode 100644 index 00000000..bc0dc5ab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000001_4aca59f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000002_ad6da8c6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000002_ad6da8c6.szcp new file mode 100644 index 00000000..75ad0c20 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000002_ad6da8c6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000003_33b64042.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000003_33b64042.szcp new file mode 100644 index 00000000..ccc25833 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000003_33b64042.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000004_d9ca29c1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000004_d9ca29c1.szcp new file mode 100644 index 00000000..b32d3443 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000004_d9ca29c1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000005_4a9aabd6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000005_4a9aabd6.szcp new file mode 100644 index 00000000..42e39f9e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000005_4a9aabd6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000006_f6dc524b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000006_f6dc524b.szcp new file mode 100644 index 00000000..aec4069d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000006_f6dc524b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000007_68845d68.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000007_68845d68.szcp new file mode 100644 index 00000000..5794806a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000007_68845d68.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000008_499565b1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000008_499565b1.szcp new file mode 100644 index 00000000..cad2f85f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000008_499565b1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000009_98931afb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000009_98931afb.szcp new file mode 100644 index 00000000..d05a6d8b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000009_98931afb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000010_c00c1091.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000010_c00c1091.szcp new file mode 100644 index 00000000..32824c1d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000010_c00c1091.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000011_b706edcb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000011_b706edcb.szcp new file mode 100644 index 00000000..6002783b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000011_b706edcb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000012_43d3e49c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000012_43d3e49c.szcp new file mode 100644 index 00000000..ad1bf9ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000012_43d3e49c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000013_09566b7d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000013_09566b7d.szcp new file mode 100644 index 00000000..2882c03f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000013_09566b7d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000014_8b8cfa46.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000014_8b8cfa46.szcp new file mode 100644 index 00000000..d1f9324d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000014_8b8cfa46.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000015_47e77568.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000015_47e77568.szcp new file mode 100644 index 00000000..42ab1fe4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000015_47e77568.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000016_4ca2452f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000016_4ca2452f.szcp new file mode 100644 index 00000000..b06a843d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000016_4ca2452f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000017_546b432d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000017_546b432d.szcp new file mode 100644 index 00000000..d65895c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_040/checkpoints/checkpoint_00000000000000000017_546b432d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000001_7982fa54.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000001_7982fa54.szar new file mode 100644 index 00000000..5ce853bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000001_7982fa54.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000002_fac5e9b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000002_fac5e9b9.szar new file mode 100644 index 00000000..988d0f00 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000002_fac5e9b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000003_02147af0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000003_02147af0.szar new file mode 100644 index 00000000..e0b47032 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000003_02147af0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000004_2347a12f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000004_2347a12f.szar new file mode 100644 index 00000000..b0abbaa1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000004_2347a12f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000005_e20aaa2d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000005_e20aaa2d.szar new file mode 100644 index 00000000..2509a945 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000005_e20aaa2d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000006_49ed3384.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000006_49ed3384.szar new file mode 100644 index 00000000..c33490a5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000006_49ed3384.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000007_e2fa248b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000007_e2fa248b.szar new file mode 100644 index 00000000..3111ab76 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000007_e2fa248b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000008_c756b041.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000008_c756b041.szar new file mode 100644 index 00000000..1588fe7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000008_c756b041.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000009_9a9f5d70.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000009_9a9f5d70.szar new file mode 100644 index 00000000..b401f0ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000009_9a9f5d70.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000010_9ff6e9c9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000010_9ff6e9c9.szar new file mode 100644 index 00000000..e92998ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000010_9ff6e9c9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000011_25d66d80.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000011_25d66d80.szar new file mode 100644 index 00000000..1588e149 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000011_25d66d80.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000012_04416dea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000012_04416dea.szar new file mode 100644 index 00000000..eddc1dd0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000012_04416dea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000013_4159e947.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000013_4159e947.szar new file mode 100644 index 00000000..ebec8657 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000013_4159e947.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000014_4f301552.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000014_4f301552.szar new file mode 100644 index 00000000..4d694d6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000014_4f301552.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000015_6508add7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000015_6508add7.szar new file mode 100644 index 00000000..43a94a96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000015_6508add7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000016_76af4e9f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000016_76af4e9f.szar new file mode 100644 index 00000000..185f2c35 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000016_76af4e9f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000017_0fa995c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000017_0fa995c2.szar new file mode 100644 index 00000000..ab0c19fe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000017_0fa995c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000018_61bb6d27.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000018_61bb6d27.szar new file mode 100644 index 00000000..500d465c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000018_61bb6d27.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000019_422971a2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000019_422971a2.szar new file mode 100644 index 00000000..80e39366 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000019_422971a2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000020_cebdb3f3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000020_cebdb3f3.szar new file mode 100644 index 00000000..63fa91d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000020_cebdb3f3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000021_9216b70e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000021_9216b70e.szar new file mode 100644 index 00000000..34590a30 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000021_9216b70e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000022_7602f47b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000022_7602f47b.szar new file mode 100644 index 00000000..b19d6e14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/archive/delta_00000000000000000022_7602f47b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000001_2f2282d0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000001_2f2282d0.szcp new file mode 100644 index 00000000..022c25a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000001_2f2282d0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000002_c3753231.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000002_c3753231.szcp new file mode 100644 index 00000000..236496c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000002_c3753231.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000003_810e30c7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000003_810e30c7.szcp new file mode 100644 index 00000000..c9eafdd2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000003_810e30c7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000004_d046694a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000004_d046694a.szcp new file mode 100644 index 00000000..9d15686f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000004_d046694a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000005_c65224c2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000005_c65224c2.szcp new file mode 100644 index 00000000..e90ce661 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000005_c65224c2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000006_388a0211.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000006_388a0211.szcp new file mode 100644 index 00000000..302650f5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000006_388a0211.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000007_e5375601.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000007_e5375601.szcp new file mode 100644 index 00000000..9fb58038 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000007_e5375601.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000008_a6b7bcf3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000008_a6b7bcf3.szcp new file mode 100644 index 00000000..d1338c5d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000008_a6b7bcf3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000009_2616964d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000009_2616964d.szcp new file mode 100644 index 00000000..5eef7888 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000009_2616964d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000010_f5f7644c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000010_f5f7644c.szcp new file mode 100644 index 00000000..6273ca4c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000010_f5f7644c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000011_cc5587d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000011_cc5587d3.szcp new file mode 100644 index 00000000..3c4660e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000011_cc5587d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000012_244cb92c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000012_244cb92c.szcp new file mode 100644 index 00000000..880e098b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000012_244cb92c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000013_e4dceffa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000013_e4dceffa.szcp new file mode 100644 index 00000000..23a79a96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000013_e4dceffa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000014_cb3923a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000014_cb3923a8.szcp new file mode 100644 index 00000000..88cc724d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000014_cb3923a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000015_d4728b41.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000015_d4728b41.szcp new file mode 100644 index 00000000..ba026c1e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000015_d4728b41.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000016_a3070791.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000016_a3070791.szcp new file mode 100644 index 00000000..8067c81b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000016_a3070791.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000017_05bea722.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000017_05bea722.szcp new file mode 100644 index 00000000..13119a2c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000017_05bea722.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000018_70c7e70d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000018_70c7e70d.szcp new file mode 100644 index 00000000..f02986bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000018_70c7e70d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000019_c2c49baf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000019_c2c49baf.szcp new file mode 100644 index 00000000..e214690c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000019_c2c49baf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000020_142d39d2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000020_142d39d2.szcp new file mode 100644 index 00000000..4a33fd51 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000020_142d39d2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000021_29343edf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000021_29343edf.szcp new file mode 100644 index 00000000..3156d53f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000021_29343edf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000022_ce604260.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000022_ce604260.szcp new file mode 100644 index 00000000..eaa4101a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_041/checkpoints/checkpoint_00000000000000000022_ce604260.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000001_ea6c8576.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000001_ea6c8576.szar new file mode 100644 index 00000000..e390d19d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000001_ea6c8576.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000002_8fcd5e14.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000002_8fcd5e14.szar new file mode 100644 index 00000000..96935567 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000002_8fcd5e14.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000003_ff87484d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000003_ff87484d.szar new file mode 100644 index 00000000..350fee4c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000003_ff87484d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000004_906f7ae6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000004_906f7ae6.szar new file mode 100644 index 00000000..6d18119b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000004_906f7ae6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000005_ce5a7c2a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000005_ce5a7c2a.szar new file mode 100644 index 00000000..c15f28e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000005_ce5a7c2a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000006_a3616fdb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000006_a3616fdb.szar new file mode 100644 index 00000000..5ff57efe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000006_a3616fdb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000007_7fb21890.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000007_7fb21890.szar new file mode 100644 index 00000000..a91dbe80 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000007_7fb21890.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000008_15f6201b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000008_15f6201b.szar new file mode 100644 index 00000000..e58516b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000008_15f6201b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000009_a0c3c8e4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000009_a0c3c8e4.szar new file mode 100644 index 00000000..ef20c05a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000009_a0c3c8e4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000010_c3ac334d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000010_c3ac334d.szar new file mode 100644 index 00000000..ea99b8d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000010_c3ac334d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000011_cf86adef.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000011_cf86adef.szar new file mode 100644 index 00000000..b0beee49 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000011_cf86adef.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000012_3cad7215.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000012_3cad7215.szar new file mode 100644 index 00000000..94a826d4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000012_3cad7215.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000013_e30b5089.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000013_e30b5089.szar new file mode 100644 index 00000000..358c8223 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000013_e30b5089.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000014_411d285b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000014_411d285b.szar new file mode 100644 index 00000000..e13c6dc8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000014_411d285b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000015_4ed5b31a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000015_4ed5b31a.szar new file mode 100644 index 00000000..859e60ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000015_4ed5b31a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000016_b6f6bd00.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000016_b6f6bd00.szar new file mode 100644 index 00000000..0139f5b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000016_b6f6bd00.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000017_55403c4a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000017_55403c4a.szar new file mode 100644 index 00000000..3c1c3272 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/archive/delta_00000000000000000017_55403c4a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000001_b50fb42a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000001_b50fb42a.szcp new file mode 100644 index 00000000..dd1bb958 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000001_b50fb42a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000002_04578a97.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000002_04578a97.szcp new file mode 100644 index 00000000..7e9fe921 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000002_04578a97.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000003_b1cf030c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000003_b1cf030c.szcp new file mode 100644 index 00000000..713a9827 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000003_b1cf030c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000004_b1f939e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000004_b1f939e5.szcp new file mode 100644 index 00000000..5c6b64f5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000004_b1f939e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000005_47256987.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000005_47256987.szcp new file mode 100644 index 00000000..7941da63 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000005_47256987.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000006_467f6ac5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000006_467f6ac5.szcp new file mode 100644 index 00000000..4bc81fcf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000006_467f6ac5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000007_28e99864.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000007_28e99864.szcp new file mode 100644 index 00000000..036e88c4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000007_28e99864.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000008_eb6a6f50.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000008_eb6a6f50.szcp new file mode 100644 index 00000000..0618a005 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000008_eb6a6f50.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000009_81813c23.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000009_81813c23.szcp new file mode 100644 index 00000000..c10541dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000009_81813c23.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000010_c28dc5bc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000010_c28dc5bc.szcp new file mode 100644 index 00000000..7d34c251 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000010_c28dc5bc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000011_649a008d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000011_649a008d.szcp new file mode 100644 index 00000000..481951d1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000011_649a008d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000012_bf55a369.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000012_bf55a369.szcp new file mode 100644 index 00000000..afdf4812 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000012_bf55a369.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000013_a44db23e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000013_a44db23e.szcp new file mode 100644 index 00000000..7452d6a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000013_a44db23e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000014_2fccde93.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000014_2fccde93.szcp new file mode 100644 index 00000000..6aa8c2a3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000014_2fccde93.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000015_9b3e9e48.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000015_9b3e9e48.szcp new file mode 100644 index 00000000..9078cc6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000015_9b3e9e48.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000016_954fc2eb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000016_954fc2eb.szcp new file mode 100644 index 00000000..c4cc105f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000016_954fc2eb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000017_21c09b6c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000017_21c09b6c.szcp new file mode 100644 index 00000000..48486413 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_042/checkpoints/checkpoint_00000000000000000017_21c09b6c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000001_38ca7ebc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000001_38ca7ebc.szar new file mode 100644 index 00000000..46bfc353 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000001_38ca7ebc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000002_51e16b47.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000002_51e16b47.szar new file mode 100644 index 00000000..5b77a5fb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000002_51e16b47.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000003_0a94a44a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000003_0a94a44a.szar new file mode 100644 index 00000000..7eb0decc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000003_0a94a44a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000004_eb0690d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000004_eb0690d0.szar new file mode 100644 index 00000000..668b1e1f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000004_eb0690d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000005_4e68d95a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000005_4e68d95a.szar new file mode 100644 index 00000000..61b3c6a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000005_4e68d95a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000006_fd8b1808.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000006_fd8b1808.szar new file mode 100644 index 00000000..fa599668 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000006_fd8b1808.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000007_4954b8f7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000007_4954b8f7.szar new file mode 100644 index 00000000..f895fc9d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000007_4954b8f7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000008_0dd6acdc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000008_0dd6acdc.szar new file mode 100644 index 00000000..bbd83f24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000008_0dd6acdc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000009_7e563d63.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000009_7e563d63.szar new file mode 100644 index 00000000..85e4044b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000009_7e563d63.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000010_baa72389.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000010_baa72389.szar new file mode 100644 index 00000000..31a9823b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000010_baa72389.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000011_6cfde3d7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000011_6cfde3d7.szar new file mode 100644 index 00000000..ec5d8f40 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000011_6cfde3d7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000012_edf86c2e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000012_edf86c2e.szar new file mode 100644 index 00000000..5a622328 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000012_edf86c2e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000013_e42de626.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000013_e42de626.szar new file mode 100644 index 00000000..2d456c02 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000013_e42de626.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000014_21d720f4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000014_21d720f4.szar new file mode 100644 index 00000000..4dc90de9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000014_21d720f4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000015_33f7fe70.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000015_33f7fe70.szar new file mode 100644 index 00000000..e177efed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000015_33f7fe70.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000016_c77125a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000016_c77125a3.szar new file mode 100644 index 00000000..961488b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000016_c77125a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000017_724325d0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000017_724325d0.szar new file mode 100644 index 00000000..53daf3a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000017_724325d0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000018_6b4ca13a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000018_6b4ca13a.szar new file mode 100644 index 00000000..be3742e3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/archive/delta_00000000000000000018_6b4ca13a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000001_04252e70.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000001_04252e70.szcp new file mode 100644 index 00000000..dc02bfca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000001_04252e70.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000002_cc50e4cb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000002_cc50e4cb.szcp new file mode 100644 index 00000000..c9863e95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000002_cc50e4cb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000003_f159d00c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000003_f159d00c.szcp new file mode 100644 index 00000000..9a438c26 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000003_f159d00c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000004_7c2d2132.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000004_7c2d2132.szcp new file mode 100644 index 00000000..844649cc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000004_7c2d2132.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000005_83005c9a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000005_83005c9a.szcp new file mode 100644 index 00000000..7701f4d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000005_83005c9a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000006_c2c60de2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000006_c2c60de2.szcp new file mode 100644 index 00000000..f9a7b542 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000006_c2c60de2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000007_98f9c927.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000007_98f9c927.szcp new file mode 100644 index 00000000..de55baec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000007_98f9c927.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000008_cf051707.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000008_cf051707.szcp new file mode 100644 index 00000000..8d25636f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000008_cf051707.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000009_64c2428a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000009_64c2428a.szcp new file mode 100644 index 00000000..f08f12f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000009_64c2428a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000010_a656e9ad.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000010_a656e9ad.szcp new file mode 100644 index 00000000..09c98f98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000010_a656e9ad.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000011_0cd3d4e6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000011_0cd3d4e6.szcp new file mode 100644 index 00000000..2ba4b83d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000011_0cd3d4e6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000012_42ebc475.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000012_42ebc475.szcp new file mode 100644 index 00000000..118d6dce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000012_42ebc475.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000013_69f2752e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000013_69f2752e.szcp new file mode 100644 index 00000000..02191794 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000013_69f2752e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000014_61a7a4e1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000014_61a7a4e1.szcp new file mode 100644 index 00000000..af7083f5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000014_61a7a4e1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000015_0cfae58d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000015_0cfae58d.szcp new file mode 100644 index 00000000..fbb6856c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000015_0cfae58d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000016_459e8d93.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000016_459e8d93.szcp new file mode 100644 index 00000000..f1be6078 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000016_459e8d93.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000017_03bcb676.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000017_03bcb676.szcp new file mode 100644 index 00000000..0f20266a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000017_03bcb676.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000018_35346a14.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000018_35346a14.szcp new file mode 100644 index 00000000..1a044c33 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_043/checkpoints/checkpoint_00000000000000000018_35346a14.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000001_454b8c82.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000001_454b8c82.szar new file mode 100644 index 00000000..4f65dd65 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000001_454b8c82.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000002_e8ac8362.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000002_e8ac8362.szar new file mode 100644 index 00000000..e282fd5a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000002_e8ac8362.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000003_64e3b75d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000003_64e3b75d.szar new file mode 100644 index 00000000..3cc48d4c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000003_64e3b75d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000004_808a239c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000004_808a239c.szar new file mode 100644 index 00000000..b5ae2a89 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000004_808a239c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000005_93e214a5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000005_93e214a5.szar new file mode 100644 index 00000000..ed154131 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000005_93e214a5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000006_021bfda5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000006_021bfda5.szar new file mode 100644 index 00000000..704617a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000006_021bfda5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000007_89e03acd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000007_89e03acd.szar new file mode 100644 index 00000000..756b471c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000007_89e03acd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000008_047d3d5f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000008_047d3d5f.szar new file mode 100644 index 00000000..44415cb5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000008_047d3d5f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000009_28beeb84.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000009_28beeb84.szar new file mode 100644 index 00000000..b3bc875a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000009_28beeb84.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000010_d7e2b1fc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000010_d7e2b1fc.szar new file mode 100644 index 00000000..adeca07b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000010_d7e2b1fc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000011_a1bb9c7c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000011_a1bb9c7c.szar new file mode 100644 index 00000000..dbf51499 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000011_a1bb9c7c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000012_2f67f6ba.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000012_2f67f6ba.szar new file mode 100644 index 00000000..4bf2f49d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000012_2f67f6ba.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000013_d969b037.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000013_d969b037.szar new file mode 100644 index 00000000..886c28c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000013_d969b037.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000014_ed864e8f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000014_ed864e8f.szar new file mode 100644 index 00000000..a905d643 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000014_ed864e8f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000015_5abdf9ad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000015_5abdf9ad.szar new file mode 100644 index 00000000..54209cd7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000015_5abdf9ad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000016_6363c402.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000016_6363c402.szar new file mode 100644 index 00000000..e24023ae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000016_6363c402.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000017_1f354a68.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000017_1f354a68.szar new file mode 100644 index 00000000..72604ed3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000017_1f354a68.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000018_c04c25d9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000018_c04c25d9.szar new file mode 100644 index 00000000..3c8bdc56 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000018_c04c25d9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000019_d6837d3f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000019_d6837d3f.szar new file mode 100644 index 00000000..4431d6f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000019_d6837d3f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000020_94049124.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000020_94049124.szar new file mode 100644 index 00000000..8217051f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000020_94049124.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000021_c6474867.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000021_c6474867.szar new file mode 100644 index 00000000..5b53ddaa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000021_c6474867.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000022_7119ef46.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000022_7119ef46.szar new file mode 100644 index 00000000..46708e5e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000022_7119ef46.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000023_604dd4e2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000023_604dd4e2.szar new file mode 100644 index 00000000..e4d51576 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000023_604dd4e2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000024_63c9c6f7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000024_63c9c6f7.szar new file mode 100644 index 00000000..c8b1f490 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000024_63c9c6f7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000025_97b386d2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000025_97b386d2.szar new file mode 100644 index 00000000..345b58c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000025_97b386d2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000026_c873aaca.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000026_c873aaca.szar new file mode 100644 index 00000000..96fb959c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000026_c873aaca.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000027_a3eff9a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000027_a3eff9a3.szar new file mode 100644 index 00000000..681d91ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000027_a3eff9a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000028_f85555a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000028_f85555a7.szar new file mode 100644 index 00000000..e499b21c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/archive/delta_00000000000000000028_f85555a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000001_849b3cca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000001_849b3cca.szcp new file mode 100644 index 00000000..5f88f26b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000001_849b3cca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000002_37a1559b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000002_37a1559b.szcp new file mode 100644 index 00000000..383bcdbd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000002_37a1559b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000003_6acbe9ba.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000003_6acbe9ba.szcp new file mode 100644 index 00000000..8caf8a21 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000003_6acbe9ba.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000004_6144154a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000004_6144154a.szcp new file mode 100644 index 00000000..e1d070bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000004_6144154a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000005_ff448eba.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000005_ff448eba.szcp new file mode 100644 index 00000000..c059d016 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000005_ff448eba.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000006_4af07858.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000006_4af07858.szcp new file mode 100644 index 00000000..4169c417 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000006_4af07858.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000007_d5e87f84.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000007_d5e87f84.szcp new file mode 100644 index 00000000..88233485 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000007_d5e87f84.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000008_8d5b932c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000008_8d5b932c.szcp new file mode 100644 index 00000000..563ffa0e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000008_8d5b932c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000009_4f098599.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000009_4f098599.szcp new file mode 100644 index 00000000..b48dc812 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000009_4f098599.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000010_58613e82.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000010_58613e82.szcp new file mode 100644 index 00000000..aa33d4f9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000010_58613e82.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000011_fc02ca27.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000011_fc02ca27.szcp new file mode 100644 index 00000000..3511d567 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000011_fc02ca27.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000012_20200ef2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000012_20200ef2.szcp new file mode 100644 index 00000000..38d270f2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000012_20200ef2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000013_c262824b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000013_c262824b.szcp new file mode 100644 index 00000000..1e66de32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000013_c262824b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000014_3299f26f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000014_3299f26f.szcp new file mode 100644 index 00000000..13fc1e93 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000014_3299f26f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000015_767024b3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000015_767024b3.szcp new file mode 100644 index 00000000..d6433574 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000015_767024b3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000016_d74da022.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000016_d74da022.szcp new file mode 100644 index 00000000..b73dfd7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000016_d74da022.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000017_d1749bae.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000017_d1749bae.szcp new file mode 100644 index 00000000..b96ff8aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000017_d1749bae.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000018_62461344.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000018_62461344.szcp new file mode 100644 index 00000000..f908345b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000018_62461344.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000019_c84455ad.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000019_c84455ad.szcp new file mode 100644 index 00000000..20e06e41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000019_c84455ad.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000020_fbeb26ef.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000020_fbeb26ef.szcp new file mode 100644 index 00000000..0a363a73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000020_fbeb26ef.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000021_f47ea0a6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000021_f47ea0a6.szcp new file mode 100644 index 00000000..87e01ac8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000021_f47ea0a6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000022_c12ae939.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000022_c12ae939.szcp new file mode 100644 index 00000000..8d3903b5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000022_c12ae939.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000023_fbc1bd30.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000023_fbc1bd30.szcp new file mode 100644 index 00000000..6b3dd226 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000023_fbc1bd30.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000024_ffdb72ec.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000024_ffdb72ec.szcp new file mode 100644 index 00000000..7209c9a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000024_ffdb72ec.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000025_3af52233.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000025_3af52233.szcp new file mode 100644 index 00000000..3d114d39 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000025_3af52233.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000026_769035c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000026_769035c3.szcp new file mode 100644 index 00000000..c5f837e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000026_769035c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000027_69c1d9e0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000027_69c1d9e0.szcp new file mode 100644 index 00000000..b7b1bfc2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000027_69c1d9e0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000028_b8a15f45.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000028_b8a15f45.szcp new file mode 100644 index 00000000..699d42a0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_044/checkpoints/checkpoint_00000000000000000028_b8a15f45.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000001_401db92e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000001_401db92e.szar new file mode 100644 index 00000000..8dbaeb95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000001_401db92e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000002_1c6bad0b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000002_1c6bad0b.szar new file mode 100644 index 00000000..3d2781b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000002_1c6bad0b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000003_9479965f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000003_9479965f.szar new file mode 100644 index 00000000..bdc3cf12 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000003_9479965f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000004_9cbddf57.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000004_9cbddf57.szar new file mode 100644 index 00000000..d078c05d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000004_9cbddf57.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000005_69d68c07.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000005_69d68c07.szar new file mode 100644 index 00000000..2f4358ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000005_69d68c07.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000006_d54f5f34.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000006_d54f5f34.szar new file mode 100644 index 00000000..6a823e5b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000006_d54f5f34.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000007_3337ced9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000007_3337ced9.szar new file mode 100644 index 00000000..ec824352 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000007_3337ced9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000008_e0c88fbb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000008_e0c88fbb.szar new file mode 100644 index 00000000..f67a6a65 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000008_e0c88fbb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000009_73ac2bd3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000009_73ac2bd3.szar new file mode 100644 index 00000000..ad96c384 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000009_73ac2bd3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000010_fc232dd4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000010_fc232dd4.szar new file mode 100644 index 00000000..52107aec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000010_fc232dd4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000011_8b7b3c06.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000011_8b7b3c06.szar new file mode 100644 index 00000000..21c8c2ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000011_8b7b3c06.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000012_10c61401.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000012_10c61401.szar new file mode 100644 index 00000000..58c7a0bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000012_10c61401.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000013_cdcb96e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000013_cdcb96e5.szar new file mode 100644 index 00000000..a122f8d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000013_cdcb96e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000014_53044941.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000014_53044941.szar new file mode 100644 index 00000000..b5efd322 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000014_53044941.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000015_e3edb798.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000015_e3edb798.szar new file mode 100644 index 00000000..a30fb272 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000015_e3edb798.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000016_1824d5cb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000016_1824d5cb.szar new file mode 100644 index 00000000..27e3ca8c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000016_1824d5cb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000017_4ce353df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000017_4ce353df.szar new file mode 100644 index 00000000..727ce9d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000017_4ce353df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000018_eb75894f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000018_eb75894f.szar new file mode 100644 index 00000000..7d311afd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000018_eb75894f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000019_ead8fe4c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000019_ead8fe4c.szar new file mode 100644 index 00000000..70af8de9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000019_ead8fe4c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000020_0fcb6e9c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000020_0fcb6e9c.szar new file mode 100644 index 00000000..8f8b0767 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000020_0fcb6e9c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000021_13ac4b24.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000021_13ac4b24.szar new file mode 100644 index 00000000..84f5d2d7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000021_13ac4b24.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000022_7007d62a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000022_7007d62a.szar new file mode 100644 index 00000000..4b1a8745 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000022_7007d62a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000023_0202f548.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000023_0202f548.szar new file mode 100644 index 00000000..7498629f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000023_0202f548.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000024_44318ad7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000024_44318ad7.szar new file mode 100644 index 00000000..cdd8b923 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000024_44318ad7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000025_4369abc2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000025_4369abc2.szar new file mode 100644 index 00000000..9ac34a09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000025_4369abc2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000026_01106f34.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000026_01106f34.szar new file mode 100644 index 00000000..501b98c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000026_01106f34.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000027_d557f4f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000027_d557f4f0.szar new file mode 100644 index 00000000..f746d5ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/archive/delta_00000000000000000027_d557f4f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000001_ab70f5d1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000001_ab70f5d1.szcp new file mode 100644 index 00000000..ea2e18ec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000001_ab70f5d1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000002_9d54c6c4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000002_9d54c6c4.szcp new file mode 100644 index 00000000..d59ee7c9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000002_9d54c6c4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000003_ea481ca2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000003_ea481ca2.szcp new file mode 100644 index 00000000..061cd67e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000003_ea481ca2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000004_f858fe7f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000004_f858fe7f.szcp new file mode 100644 index 00000000..4e871404 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000004_f858fe7f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000005_6d2d531c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000005_6d2d531c.szcp new file mode 100644 index 00000000..120f372b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000005_6d2d531c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000006_6eac3284.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000006_6eac3284.szcp new file mode 100644 index 00000000..ae21a495 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000006_6eac3284.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000007_543713c0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000007_543713c0.szcp new file mode 100644 index 00000000..61dca175 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000007_543713c0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000008_e2aa56fa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000008_e2aa56fa.szcp new file mode 100644 index 00000000..685ee44a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000008_e2aa56fa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000009_3fc7cee2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000009_3fc7cee2.szcp new file mode 100644 index 00000000..80101bb9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000009_3fc7cee2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000010_ded67541.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000010_ded67541.szcp new file mode 100644 index 00000000..7080735e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000010_ded67541.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000011_b52eeb28.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000011_b52eeb28.szcp new file mode 100644 index 00000000..b411a645 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000011_b52eeb28.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000012_cf6eead0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000012_cf6eead0.szcp new file mode 100644 index 00000000..0ded1e95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000012_cf6eead0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000013_cec57083.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000013_cec57083.szcp new file mode 100644 index 00000000..a6dc33b3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000013_cec57083.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000014_1c01a0dc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000014_1c01a0dc.szcp new file mode 100644 index 00000000..5dc706e8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000014_1c01a0dc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000015_42920e58.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000015_42920e58.szcp new file mode 100644 index 00000000..16c53489 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000015_42920e58.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000016_b2e6c468.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000016_b2e6c468.szcp new file mode 100644 index 00000000..04fca023 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000016_b2e6c468.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000017_397722b8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000017_397722b8.szcp new file mode 100644 index 00000000..5e784d21 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000017_397722b8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000018_91dc5dcc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000018_91dc5dcc.szcp new file mode 100644 index 00000000..32f81b28 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000018_91dc5dcc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000019_5d6e4eec.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000019_5d6e4eec.szcp new file mode 100644 index 00000000..58289d01 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000019_5d6e4eec.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000020_99f959e1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000020_99f959e1.szcp new file mode 100644 index 00000000..95e14faf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000020_99f959e1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000021_f2d3ecf2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000021_f2d3ecf2.szcp new file mode 100644 index 00000000..0794f2c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000021_f2d3ecf2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000022_87076f90.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000022_87076f90.szcp new file mode 100644 index 00000000..21430fc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000022_87076f90.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000023_5c3dd4bf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000023_5c3dd4bf.szcp new file mode 100644 index 00000000..2b0b7055 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000023_5c3dd4bf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000024_677d50d5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000024_677d50d5.szcp new file mode 100644 index 00000000..61aae175 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000024_677d50d5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000025_e7d1e005.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000025_e7d1e005.szcp new file mode 100644 index 00000000..191ea618 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000025_e7d1e005.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000026_3685ec40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000026_3685ec40.szcp new file mode 100644 index 00000000..86827eff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000026_3685ec40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000027_d02dd37e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000027_d02dd37e.szcp new file mode 100644 index 00000000..32e491ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_045/checkpoints/checkpoint_00000000000000000027_d02dd37e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000001_49c61d3f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000001_49c61d3f.szar new file mode 100644 index 00000000..e8695151 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000001_49c61d3f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000002_e44d7873.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000002_e44d7873.szar new file mode 100644 index 00000000..c3cd22d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000002_e44d7873.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000003_0d024392.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000003_0d024392.szar new file mode 100644 index 00000000..21ad1325 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000003_0d024392.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000004_b046e010.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000004_b046e010.szar new file mode 100644 index 00000000..ade328ef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000004_b046e010.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000005_791134e9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000005_791134e9.szar new file mode 100644 index 00000000..de52917a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000005_791134e9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000006_727f4770.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000006_727f4770.szar new file mode 100644 index 00000000..f8c2fd77 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000006_727f4770.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000007_7fbd934d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000007_7fbd934d.szar new file mode 100644 index 00000000..0e6d826b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000007_7fbd934d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000008_d57e1e78.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000008_d57e1e78.szar new file mode 100644 index 00000000..0b44ed30 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000008_d57e1e78.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000009_5946fcdb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000009_5946fcdb.szar new file mode 100644 index 00000000..450aa027 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000009_5946fcdb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000010_f6263fb1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000010_f6263fb1.szar new file mode 100644 index 00000000..dbbd5601 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000010_f6263fb1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000011_e84d35ea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000011_e84d35ea.szar new file mode 100644 index 00000000..0eb9f709 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000011_e84d35ea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000012_9576962f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000012_9576962f.szar new file mode 100644 index 00000000..6bce1df0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000012_9576962f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000013_fa3c806e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000013_fa3c806e.szar new file mode 100644 index 00000000..8aee1bfe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000013_fa3c806e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000014_3bfd9186.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000014_3bfd9186.szar new file mode 100644 index 00000000..3d50d046 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000014_3bfd9186.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000015_05c0123f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000015_05c0123f.szar new file mode 100644 index 00000000..2c28403a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000015_05c0123f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000016_be6d81c2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000016_be6d81c2.szar new file mode 100644 index 00000000..846e652c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/archive/delta_00000000000000000016_be6d81c2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000001_e35b1e15.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000001_e35b1e15.szcp new file mode 100644 index 00000000..b25438cf Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000001_e35b1e15.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000002_0b39ec31.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000002_0b39ec31.szcp new file mode 100644 index 00000000..15f298d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000002_0b39ec31.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000003_a20d1564.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000003_a20d1564.szcp new file mode 100644 index 00000000..b456c149 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000003_a20d1564.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000004_d1896c08.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000004_d1896c08.szcp new file mode 100644 index 00000000..5053a59b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000004_d1896c08.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000005_f96d5a12.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000005_f96d5a12.szcp new file mode 100644 index 00000000..fff641d2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000005_f96d5a12.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000006_8c314a09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000006_8c314a09.szcp new file mode 100644 index 00000000..005c1dd1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000006_8c314a09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000007_684fc7b0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000007_684fc7b0.szcp new file mode 100644 index 00000000..5df20461 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000007_684fc7b0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000008_1f3c3c41.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000008_1f3c3c41.szcp new file mode 100644 index 00000000..60de0c8c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000008_1f3c3c41.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000009_dc276bfc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000009_dc276bfc.szcp new file mode 100644 index 00000000..d358ea8d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000009_dc276bfc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000010_dbe13e8d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000010_dbe13e8d.szcp new file mode 100644 index 00000000..9d81e62a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000010_dbe13e8d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000011_d70b348b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000011_d70b348b.szcp new file mode 100644 index 00000000..ea915e3c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000011_d70b348b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000012_fc18bccb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000012_fc18bccb.szcp new file mode 100644 index 00000000..28fc5b68 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000012_fc18bccb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000013_be425652.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000013_be425652.szcp new file mode 100644 index 00000000..250dd6c0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000013_be425652.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000014_29d1209e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000014_29d1209e.szcp new file mode 100644 index 00000000..e84f4627 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000014_29d1209e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000015_a4a8752a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000015_a4a8752a.szcp new file mode 100644 index 00000000..f3c2851a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000015_a4a8752a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000016_72d6f563.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000016_72d6f563.szcp new file mode 100644 index 00000000..11ab9c2c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_046/checkpoints/checkpoint_00000000000000000016_72d6f563.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000001_47a643ac.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000001_47a643ac.szar new file mode 100644 index 00000000..cfc3109d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000001_47a643ac.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000002_5bfe666a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000002_5bfe666a.szar new file mode 100644 index 00000000..b02d2312 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000002_5bfe666a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000003_25b30cc6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000003_25b30cc6.szar new file mode 100644 index 00000000..4337a047 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000003_25b30cc6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000004_56b702c5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000004_56b702c5.szar new file mode 100644 index 00000000..4b66de8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000004_56b702c5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000005_57279353.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000005_57279353.szar new file mode 100644 index 00000000..bb099622 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000005_57279353.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000006_c4757e83.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000006_c4757e83.szar new file mode 100644 index 00000000..4d28530e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000006_c4757e83.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000007_28deb366.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000007_28deb366.szar new file mode 100644 index 00000000..c5b31232 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000007_28deb366.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000008_0c80000d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000008_0c80000d.szar new file mode 100644 index 00000000..a95f3b7e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000008_0c80000d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000009_3635dd02.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000009_3635dd02.szar new file mode 100644 index 00000000..9179f946 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000009_3635dd02.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000010_f8e3ebf0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000010_f8e3ebf0.szar new file mode 100644 index 00000000..0c9cd2e6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000010_f8e3ebf0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000011_5554ab0a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000011_5554ab0a.szar new file mode 100644 index 00000000..f6af3b06 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000011_5554ab0a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000012_ba5139aa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000012_ba5139aa.szar new file mode 100644 index 00000000..3792ee51 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000012_ba5139aa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000013_26a86eea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000013_26a86eea.szar new file mode 100644 index 00000000..e23b0920 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000013_26a86eea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000014_abfe0f78.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000014_abfe0f78.szar new file mode 100644 index 00000000..73bf2f09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000014_abfe0f78.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000015_6b02bd33.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000015_6b02bd33.szar new file mode 100644 index 00000000..aaa48ac3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000015_6b02bd33.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000016_af8f1367.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000016_af8f1367.szar new file mode 100644 index 00000000..2cbd945b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000016_af8f1367.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000017_21c31ccb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000017_21c31ccb.szar new file mode 100644 index 00000000..cb7a83ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000017_21c31ccb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000018_7670c4a5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000018_7670c4a5.szar new file mode 100644 index 00000000..b9c6a64c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000018_7670c4a5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000019_15866629.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000019_15866629.szar new file mode 100644 index 00000000..76fe6bed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000019_15866629.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000020_8432a93b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000020_8432a93b.szar new file mode 100644 index 00000000..339150cb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000020_8432a93b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000021_f430725c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000021_f430725c.szar new file mode 100644 index 00000000..fb9a3cb1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000021_f430725c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000022_eb6eb520.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000022_eb6eb520.szar new file mode 100644 index 00000000..edb2a4c2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/archive/delta_00000000000000000022_eb6eb520.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000001_51e163eb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000001_51e163eb.szcp new file mode 100644 index 00000000..84b14e73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000001_51e163eb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000002_c83fc9d9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000002_c83fc9d9.szcp new file mode 100644 index 00000000..ae083679 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000002_c83fc9d9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000003_95b5176e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000003_95b5176e.szcp new file mode 100644 index 00000000..84649588 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000003_95b5176e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000004_14100fe8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000004_14100fe8.szcp new file mode 100644 index 00000000..14029536 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000004_14100fe8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000005_592cfaf1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000005_592cfaf1.szcp new file mode 100644 index 00000000..e7810bff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000005_592cfaf1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000006_262457ec.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000006_262457ec.szcp new file mode 100644 index 00000000..483735ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000006_262457ec.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000007_26880626.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000007_26880626.szcp new file mode 100644 index 00000000..c8fe0110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000007_26880626.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000008_b6a843f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000008_b6a843f7.szcp new file mode 100644 index 00000000..6d5a93b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000008_b6a843f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000009_e761f5fb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000009_e761f5fb.szcp new file mode 100644 index 00000000..aba816c8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000009_e761f5fb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000010_095d1ae6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000010_095d1ae6.szcp new file mode 100644 index 00000000..703b156b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000010_095d1ae6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000011_bc0b30eb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000011_bc0b30eb.szcp new file mode 100644 index 00000000..bf17a687 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000011_bc0b30eb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000012_c286d91e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000012_c286d91e.szcp new file mode 100644 index 00000000..0cef4bcb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000012_c286d91e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000013_57944c09.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000013_57944c09.szcp new file mode 100644 index 00000000..44c926a1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000013_57944c09.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000014_b6924dc5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000014_b6924dc5.szcp new file mode 100644 index 00000000..feaa1225 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000014_b6924dc5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000015_75ef3672.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000015_75ef3672.szcp new file mode 100644 index 00000000..c4d885a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000015_75ef3672.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000016_1f357423.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000016_1f357423.szcp new file mode 100644 index 00000000..c4737527 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000016_1f357423.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000017_cd822d0c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000017_cd822d0c.szcp new file mode 100644 index 00000000..5a9ee79a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000017_cd822d0c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000018_b0647578.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000018_b0647578.szcp new file mode 100644 index 00000000..97606f6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000018_b0647578.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000019_4373950e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000019_4373950e.szcp new file mode 100644 index 00000000..e9ecb791 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000019_4373950e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000020_7ea8970a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000020_7ea8970a.szcp new file mode 100644 index 00000000..fb6bde58 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000020_7ea8970a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000021_b86c740e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000021_b86c740e.szcp new file mode 100644 index 00000000..0dd8a47e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000021_b86c740e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000022_4d51fb28.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000022_4d51fb28.szcp new file mode 100644 index 00000000..18755c8b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_047/checkpoints/checkpoint_00000000000000000022_4d51fb28.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000001_cebeaa43.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000001_cebeaa43.szar new file mode 100644 index 00000000..25ff3b71 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000001_cebeaa43.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000002_e29f53a8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000002_e29f53a8.szar new file mode 100644 index 00000000..89e65329 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000002_e29f53a8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000003_5e3adc6f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000003_5e3adc6f.szar new file mode 100644 index 00000000..1e30cf27 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000003_5e3adc6f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000004_47d2f971.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000004_47d2f971.szar new file mode 100644 index 00000000..804f1fbc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000004_47d2f971.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000005_fa1cb64a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000005_fa1cb64a.szar new file mode 100644 index 00000000..67bddc9b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000005_fa1cb64a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000006_3fb80852.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000006_3fb80852.szar new file mode 100644 index 00000000..5c31f96d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000006_3fb80852.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000007_219ea053.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000007_219ea053.szar new file mode 100644 index 00000000..1dd9a0f2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000007_219ea053.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000008_91e7deaf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000008_91e7deaf.szar new file mode 100644 index 00000000..daca7734 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000008_91e7deaf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000009_fb43d88f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000009_fb43d88f.szar new file mode 100644 index 00000000..e1ea7091 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000009_fb43d88f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000010_6a02f391.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000010_6a02f391.szar new file mode 100644 index 00000000..ba8c031e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000010_6a02f391.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000011_72f6ad1b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000011_72f6ad1b.szar new file mode 100644 index 00000000..0666eb23 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000011_72f6ad1b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000012_e6dd1b61.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000012_e6dd1b61.szar new file mode 100644 index 00000000..1bda5fd5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000012_e6dd1b61.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000013_03dfc839.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000013_03dfc839.szar new file mode 100644 index 00000000..e16b6b73 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000013_03dfc839.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000014_3e9b6019.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000014_3e9b6019.szar new file mode 100644 index 00000000..79e951a7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000014_3e9b6019.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000015_0994eb99.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000015_0994eb99.szar new file mode 100644 index 00000000..3fdac7aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000015_0994eb99.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000016_52c9c2c4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000016_52c9c2c4.szar new file mode 100644 index 00000000..dcaf5042 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000016_52c9c2c4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000017_946d3c31.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000017_946d3c31.szar new file mode 100644 index 00000000..97be0f3c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/archive/delta_00000000000000000017_946d3c31.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000001_c61ce5e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000001_c61ce5e5.szcp new file mode 100644 index 00000000..2db527d3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000001_c61ce5e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000002_79d60f52.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000002_79d60f52.szcp new file mode 100644 index 00000000..958b0c8e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000002_79d60f52.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000003_4cdd1451.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000003_4cdd1451.szcp new file mode 100644 index 00000000..c64fd418 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000003_4cdd1451.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000004_b9cca01e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000004_b9cca01e.szcp new file mode 100644 index 00000000..14bccf63 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000004_b9cca01e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000005_32a45da8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000005_32a45da8.szcp new file mode 100644 index 00000000..69da7aa7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000005_32a45da8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000006_6454918f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000006_6454918f.szcp new file mode 100644 index 00000000..8c4d31b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000006_6454918f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000007_a457d542.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000007_a457d542.szcp new file mode 100644 index 00000000..cc765b34 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000007_a457d542.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000008_2736c85c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000008_2736c85c.szcp new file mode 100644 index 00000000..2a902732 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000008_2736c85c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000009_8550f442.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000009_8550f442.szcp new file mode 100644 index 00000000..5cee643b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000009_8550f442.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000010_839d0837.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000010_839d0837.szcp new file mode 100644 index 00000000..09c8c8a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000010_839d0837.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000011_2df987aa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000011_2df987aa.szcp new file mode 100644 index 00000000..b80cd461 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000011_2df987aa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000012_bc50f8a0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000012_bc50f8a0.szcp new file mode 100644 index 00000000..2c166ce8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000012_bc50f8a0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000013_311257b5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000013_311257b5.szcp new file mode 100644 index 00000000..8d962b00 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000013_311257b5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000014_a8f25ad0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000014_a8f25ad0.szcp new file mode 100644 index 00000000..231d0f7a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000014_a8f25ad0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000015_2b41ac47.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000015_2b41ac47.szcp new file mode 100644 index 00000000..23540bbc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000015_2b41ac47.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000016_4b7011c1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000016_4b7011c1.szcp new file mode 100644 index 00000000..05f92f2c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000016_4b7011c1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000017_c8c63583.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000017_c8c63583.szcp new file mode 100644 index 00000000..085dda87 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_048/checkpoints/checkpoint_00000000000000000017_c8c63583.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000001_6821fe41.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000001_6821fe41.szar new file mode 100644 index 00000000..585551b7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000001_6821fe41.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000002_aad1094a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000002_aad1094a.szar new file mode 100644 index 00000000..c9a31ba1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000002_aad1094a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000003_b415b9eb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000003_b415b9eb.szar new file mode 100644 index 00000000..616b289e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000003_b415b9eb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000004_45f63f09.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000004_45f63f09.szar new file mode 100644 index 00000000..5082bbb1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000004_45f63f09.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000005_5efa699e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000005_5efa699e.szar new file mode 100644 index 00000000..cb8b1026 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000005_5efa699e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000006_7470d6dd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000006_7470d6dd.szar new file mode 100644 index 00000000..30e5969f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000006_7470d6dd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000007_dfbf4abe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000007_dfbf4abe.szar new file mode 100644 index 00000000..41958c32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000007_dfbf4abe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000008_ef050e15.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000008_ef050e15.szar new file mode 100644 index 00000000..5de63110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000008_ef050e15.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000009_7bc19bc8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000009_7bc19bc8.szar new file mode 100644 index 00000000..a12c1694 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000009_7bc19bc8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000010_d638111c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000010_d638111c.szar new file mode 100644 index 00000000..db698f15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000010_d638111c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000011_75122f1f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000011_75122f1f.szar new file mode 100644 index 00000000..0bfbf425 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000011_75122f1f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000012_887faf25.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000012_887faf25.szar new file mode 100644 index 00000000..2c3f04ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000012_887faf25.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000013_93931ef8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000013_93931ef8.szar new file mode 100644 index 00000000..7c056bad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000013_93931ef8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000014_fa78bab4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000014_fa78bab4.szar new file mode 100644 index 00000000..b128b303 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000014_fa78bab4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000015_bd60ed88.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000015_bd60ed88.szar new file mode 100644 index 00000000..72798339 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000015_bd60ed88.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000016_4222757e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000016_4222757e.szar new file mode 100644 index 00000000..89e8c496 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000016_4222757e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000017_45139a82.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000017_45139a82.szar new file mode 100644 index 00000000..53afc75f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000017_45139a82.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000018_95651515.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000018_95651515.szar new file mode 100644 index 00000000..5f92e3ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000018_95651515.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000019_985b0863.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000019_985b0863.szar new file mode 100644 index 00000000..8a354d7d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/archive/delta_00000000000000000019_985b0863.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000001_622457a5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000001_622457a5.szcp new file mode 100644 index 00000000..ac288a79 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000001_622457a5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000002_9a207e50.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000002_9a207e50.szcp new file mode 100644 index 00000000..b5a82f98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000002_9a207e50.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000003_201f4267.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000003_201f4267.szcp new file mode 100644 index 00000000..e29c9484 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000003_201f4267.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000004_45b1b089.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000004_45b1b089.szcp new file mode 100644 index 00000000..d6d4b166 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000004_45b1b089.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000005_f5f2cfe4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000005_f5f2cfe4.szcp new file mode 100644 index 00000000..450000e0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000005_f5f2cfe4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000006_1c24ebd0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000006_1c24ebd0.szcp new file mode 100644 index 00000000..f2ec0845 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000006_1c24ebd0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000007_932f42b5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000007_932f42b5.szcp new file mode 100644 index 00000000..afb3f607 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000007_932f42b5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000008_46128f2b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000008_46128f2b.szcp new file mode 100644 index 00000000..5924bede Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000008_46128f2b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000009_2685390d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000009_2685390d.szcp new file mode 100644 index 00000000..5fed4b44 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000009_2685390d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000010_b7716e29.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000010_b7716e29.szcp new file mode 100644 index 00000000..0e3a0cdb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000010_b7716e29.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000011_8f4d90d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000011_8f4d90d3.szcp new file mode 100644 index 00000000..6a1beb35 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000011_8f4d90d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000012_e0577c86.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000012_e0577c86.szcp new file mode 100644 index 00000000..8d125d00 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000012_e0577c86.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000013_1babfb13.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000013_1babfb13.szcp new file mode 100644 index 00000000..8790a110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000013_1babfb13.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000014_5605fa8e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000014_5605fa8e.szcp new file mode 100644 index 00000000..1f698bcd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000014_5605fa8e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000015_d33e3540.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000015_d33e3540.szcp new file mode 100644 index 00000000..964c486f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000015_d33e3540.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000016_bb0b906a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000016_bb0b906a.szcp new file mode 100644 index 00000000..5c28420d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000016_bb0b906a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000017_7eb8ecd6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000017_7eb8ecd6.szcp new file mode 100644 index 00000000..671bc75a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000017_7eb8ecd6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000018_453f2599.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000018_453f2599.szcp new file mode 100644 index 00000000..f29c98ca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000018_453f2599.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000019_b2ce981f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000019_b2ce981f.szcp new file mode 100644 index 00000000..2dd574d6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_049/checkpoints/checkpoint_00000000000000000019_b2ce981f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000001_6903d9db.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000001_6903d9db.szar new file mode 100644 index 00000000..9539ebee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000001_6903d9db.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000002_a321ee43.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000002_a321ee43.szar new file mode 100644 index 00000000..ac12be3f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000002_a321ee43.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000003_433c7c94.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000003_433c7c94.szar new file mode 100644 index 00000000..e55ac014 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000003_433c7c94.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000004_a1116883.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000004_a1116883.szar new file mode 100644 index 00000000..6a1685bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000004_a1116883.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000005_4ff33f97.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000005_4ff33f97.szar new file mode 100644 index 00000000..9b56eb7b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000005_4ff33f97.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000006_0211d873.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000006_0211d873.szar new file mode 100644 index 00000000..566af8e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000006_0211d873.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000007_89dc98c9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000007_89dc98c9.szar new file mode 100644 index 00000000..a1967f32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000007_89dc98c9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000008_860cffc6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000008_860cffc6.szar new file mode 100644 index 00000000..b6157a90 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000008_860cffc6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000009_01c8bae6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000009_01c8bae6.szar new file mode 100644 index 00000000..6a4820ed Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000009_01c8bae6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000010_cf8b2227.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000010_cf8b2227.szar new file mode 100644 index 00000000..b1a82d2b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000010_cf8b2227.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000011_884869f6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000011_884869f6.szar new file mode 100644 index 00000000..24faaaea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000011_884869f6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000012_b1b1a2c5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000012_b1b1a2c5.szar new file mode 100644 index 00000000..5340d611 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000012_b1b1a2c5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000013_f5121430.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000013_f5121430.szar new file mode 100644 index 00000000..77f6ad8e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000013_f5121430.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000014_8c08bc0e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000014_8c08bc0e.szar new file mode 100644 index 00000000..3371053e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000014_8c08bc0e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000015_26da4d3c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000015_26da4d3c.szar new file mode 100644 index 00000000..a63f002c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000015_26da4d3c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000016_9d9fe00d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000016_9d9fe00d.szar new file mode 100644 index 00000000..4104ec5c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000016_9d9fe00d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000017_c8a04987.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000017_c8a04987.szar new file mode 100644 index 00000000..229fdad0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000017_c8a04987.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000018_ea0df847.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000018_ea0df847.szar new file mode 100644 index 00000000..8e1d0fef Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000018_ea0df847.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000019_f42f46b2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000019_f42f46b2.szar new file mode 100644 index 00000000..e294d5a6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000019_f42f46b2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000020_87d451a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000020_87d451a3.szar new file mode 100644 index 00000000..f810e4e4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000020_87d451a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000021_b476ea45.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000021_b476ea45.szar new file mode 100644 index 00000000..306bcd24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000021_b476ea45.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000022_c9f85ddc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000022_c9f85ddc.szar new file mode 100644 index 00000000..dc1af494 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/archive/delta_00000000000000000022_c9f85ddc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000001_5c63cba6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000001_5c63cba6.szcp new file mode 100644 index 00000000..223a5148 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000001_5c63cba6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000002_08fb89af.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000002_08fb89af.szcp new file mode 100644 index 00000000..b3d8f415 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000002_08fb89af.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000003_5bf182fc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000003_5bf182fc.szcp new file mode 100644 index 00000000..323cb5be Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000003_5bf182fc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000004_7ae4fcc6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000004_7ae4fcc6.szcp new file mode 100644 index 00000000..b0caa9f6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000004_7ae4fcc6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000005_88b17785.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000005_88b17785.szcp new file mode 100644 index 00000000..6cdf20b0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000005_88b17785.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000006_98d6ef76.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000006_98d6ef76.szcp new file mode 100644 index 00000000..3166ada8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000006_98d6ef76.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000007_6462d181.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000007_6462d181.szcp new file mode 100644 index 00000000..3d22d5e3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000007_6462d181.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000008_ddd0fcbe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000008_ddd0fcbe.szcp new file mode 100644 index 00000000..1de3d744 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000008_ddd0fcbe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000009_8c959eab.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000009_8c959eab.szcp new file mode 100644 index 00000000..6f51655b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000009_8c959eab.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000010_68922e08.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000010_68922e08.szcp new file mode 100644 index 00000000..785dbee1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000010_68922e08.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000011_fff36a79.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000011_fff36a79.szcp new file mode 100644 index 00000000..8151397c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000011_fff36a79.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000012_21b39b50.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000012_21b39b50.szcp new file mode 100644 index 00000000..21ba781b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000012_21b39b50.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000013_4feafb16.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000013_4feafb16.szcp new file mode 100644 index 00000000..c5284b1e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000013_4feafb16.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000014_8a84d02a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000014_8a84d02a.szcp new file mode 100644 index 00000000..8ffab498 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000014_8a84d02a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000015_09a2239c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000015_09a2239c.szcp new file mode 100644 index 00000000..02ecfc82 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000015_09a2239c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000016_da532f6f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000016_da532f6f.szcp new file mode 100644 index 00000000..c5fc5e98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000016_da532f6f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000017_a2f5534f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000017_a2f5534f.szcp new file mode 100644 index 00000000..2ff07ba0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000017_a2f5534f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000018_03ed3e2c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000018_03ed3e2c.szcp new file mode 100644 index 00000000..8a772ede Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000018_03ed3e2c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000019_3eb2ab4c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000019_3eb2ab4c.szcp new file mode 100644 index 00000000..f7e7ef8c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000019_3eb2ab4c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000020_ed8d3219.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000020_ed8d3219.szcp new file mode 100644 index 00000000..27ce8a3e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000020_ed8d3219.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000021_24d1863b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000021_24d1863b.szcp new file mode 100644 index 00000000..aebe9022 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000021_24d1863b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000022_e6be27ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000022_e6be27ca.szcp new file mode 100644 index 00000000..ac736f41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_050/checkpoints/checkpoint_00000000000000000022_e6be27ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000001_ff137ede.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000001_ff137ede.szar new file mode 100644 index 00000000..81b7a837 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000001_ff137ede.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000002_43dbe0b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000002_43dbe0b8.szar new file mode 100644 index 00000000..0b0155ff Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000002_43dbe0b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000003_7ff9d518.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000003_7ff9d518.szar new file mode 100644 index 00000000..68671f09 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000003_7ff9d518.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000004_e599f739.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000004_e599f739.szar new file mode 100644 index 00000000..38a39270 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000004_e599f739.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000005_68c85d25.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000005_68c85d25.szar new file mode 100644 index 00000000..1fba7552 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000005_68c85d25.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000006_9a0c9f94.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000006_9a0c9f94.szar new file mode 100644 index 00000000..12224351 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000006_9a0c9f94.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000007_1ed61624.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000007_1ed61624.szar new file mode 100644 index 00000000..a04438ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000007_1ed61624.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000008_69c41631.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000008_69c41631.szar new file mode 100644 index 00000000..b9976fdd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000008_69c41631.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000009_1a9038f7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000009_1a9038f7.szar new file mode 100644 index 00000000..4d39bd33 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000009_1a9038f7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000010_4bb9e8c3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000010_4bb9e8c3.szar new file mode 100644 index 00000000..c24f9892 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000010_4bb9e8c3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000011_161e357f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000011_161e357f.szar new file mode 100644 index 00000000..47349388 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000011_161e357f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000012_0dfdc133.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000012_0dfdc133.szar new file mode 100644 index 00000000..b2147c27 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000012_0dfdc133.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000013_792e9e80.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000013_792e9e80.szar new file mode 100644 index 00000000..156d3e64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000013_792e9e80.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000014_253a9e30.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000014_253a9e30.szar new file mode 100644 index 00000000..a2b14b83 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000014_253a9e30.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000015_7613b88d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000015_7613b88d.szar new file mode 100644 index 00000000..34e8d42d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000015_7613b88d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000016_82d6a8f7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000016_82d6a8f7.szar new file mode 100644 index 00000000..e4976a9b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000016_82d6a8f7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000017_69fed60f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000017_69fed60f.szar new file mode 100644 index 00000000..46436068 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000017_69fed60f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000018_4be184e8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000018_4be184e8.szar new file mode 100644 index 00000000..d8ed1edc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/archive/delta_00000000000000000018_4be184e8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000001_65461901.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000001_65461901.szcp new file mode 100644 index 00000000..49537bfd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000001_65461901.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000002_5dd20993.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000002_5dd20993.szcp new file mode 100644 index 00000000..c80ce604 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000002_5dd20993.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000003_4359609b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000003_4359609b.szcp new file mode 100644 index 00000000..54abfd16 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000003_4359609b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000004_5ffcf2bf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000004_5ffcf2bf.szcp new file mode 100644 index 00000000..6454b890 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000004_5ffcf2bf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000005_3678cabf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000005_3678cabf.szcp new file mode 100644 index 00000000..4707ccb8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000005_3678cabf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000006_626cfa8a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000006_626cfa8a.szcp new file mode 100644 index 00000000..97484682 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000006_626cfa8a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000007_70f546f4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000007_70f546f4.szcp new file mode 100644 index 00000000..80454bd4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000007_70f546f4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000008_924e2fa3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000008_924e2fa3.szcp new file mode 100644 index 00000000..d6992195 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000008_924e2fa3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000009_8bfdd000.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000009_8bfdd000.szcp new file mode 100644 index 00000000..148a669a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000009_8bfdd000.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000010_9516b2c5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000010_9516b2c5.szcp new file mode 100644 index 00000000..7a24bd41 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000010_9516b2c5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000011_f8bbf054.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000011_f8bbf054.szcp new file mode 100644 index 00000000..87263af6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000011_f8bbf054.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000012_3d104602.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000012_3d104602.szcp new file mode 100644 index 00000000..1b107c02 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000012_3d104602.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000013_65be4cdb.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000013_65be4cdb.szcp new file mode 100644 index 00000000..8dd6afa8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000013_65be4cdb.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000014_a81e827f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000014_a81e827f.szcp new file mode 100644 index 00000000..b3504e75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000014_a81e827f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000015_10d27c85.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000015_10d27c85.szcp new file mode 100644 index 00000000..e296475f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000015_10d27c85.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000016_4d964fe5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000016_4d964fe5.szcp new file mode 100644 index 00000000..b02c0dd6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000016_4d964fe5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000017_a0d14280.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000017_a0d14280.szcp new file mode 100644 index 00000000..c6c381d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000017_a0d14280.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000018_117d4e89.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000018_117d4e89.szcp new file mode 100644 index 00000000..43a8c35e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_051/checkpoints/checkpoint_00000000000000000018_117d4e89.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000001_fd1628b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000001_fd1628b8.szar new file mode 100644 index 00000000..4a27ca04 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000001_fd1628b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000002_10528f5d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000002_10528f5d.szar new file mode 100644 index 00000000..85d3079b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000002_10528f5d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000003_22e002a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000003_22e002a3.szar new file mode 100644 index 00000000..26aec846 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000003_22e002a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000004_37b2beff.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000004_37b2beff.szar new file mode 100644 index 00000000..ea76948e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000004_37b2beff.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000005_949d3a58.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000005_949d3a58.szar new file mode 100644 index 00000000..702e3b9a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000005_949d3a58.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000006_3ea0c7d8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000006_3ea0c7d8.szar new file mode 100644 index 00000000..5c2a486d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000006_3ea0c7d8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000007_f9be7950.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000007_f9be7950.szar new file mode 100644 index 00000000..f22823f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000007_f9be7950.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000008_a5f22258.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000008_a5f22258.szar new file mode 100644 index 00000000..57bf1c04 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000008_a5f22258.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000009_3f3030a3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000009_3f3030a3.szar new file mode 100644 index 00000000..d7b40739 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000009_3f3030a3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000010_b656e472.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000010_b656e472.szar new file mode 100644 index 00000000..d9014455 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000010_b656e472.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000011_a5480028.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000011_a5480028.szar new file mode 100644 index 00000000..7c3834b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000011_a5480028.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000012_8572783f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000012_8572783f.szar new file mode 100644 index 00000000..fd56f93e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000012_8572783f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000013_1237410e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000013_1237410e.szar new file mode 100644 index 00000000..22f4c65c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000013_1237410e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000014_7c019290.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000014_7c019290.szar new file mode 100644 index 00000000..9420c3db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000014_7c019290.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000015_de1c0987.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000015_de1c0987.szar new file mode 100644 index 00000000..31f2cbb9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000015_de1c0987.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000016_7ac3455f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000016_7ac3455f.szar new file mode 100644 index 00000000..e1ddccbb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000016_7ac3455f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000017_61d0f32e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000017_61d0f32e.szar new file mode 100644 index 00000000..812be134 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000017_61d0f32e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000018_0daa930e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000018_0daa930e.szar new file mode 100644 index 00000000..4fd64a5c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000018_0daa930e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000019_017d023d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000019_017d023d.szar new file mode 100644 index 00000000..b6b25d0f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000019_017d023d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000020_01df6859.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000020_01df6859.szar new file mode 100644 index 00000000..6050e184 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000020_01df6859.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000021_523e69f6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000021_523e69f6.szar new file mode 100644 index 00000000..99afbe40 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000021_523e69f6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000022_b2bb0266.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000022_b2bb0266.szar new file mode 100644 index 00000000..95982d5e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000022_b2bb0266.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000023_abe0eeaa.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000023_abe0eeaa.szar new file mode 100644 index 00000000..5b958d49 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000023_abe0eeaa.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000024_45a691b8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000024_45a691b8.szar new file mode 100644 index 00000000..1edb5810 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000024_45a691b8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000025_b3535185.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000025_b3535185.szar new file mode 100644 index 00000000..0d13b3e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000025_b3535185.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000026_d651d544.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000026_d651d544.szar new file mode 100644 index 00000000..83026b36 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/archive/delta_00000000000000000026_d651d544.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000001_d041f058.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000001_d041f058.szcp new file mode 100644 index 00000000..820ef194 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000001_d041f058.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000002_d6568303.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000002_d6568303.szcp new file mode 100644 index 00000000..613a0ba1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000002_d6568303.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000003_0d0e40e3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000003_0d0e40e3.szcp new file mode 100644 index 00000000..11743533 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000003_0d0e40e3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000004_4c4ff5fd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000004_4c4ff5fd.szcp new file mode 100644 index 00000000..cc10c7ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000004_4c4ff5fd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000005_b2863e56.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000005_b2863e56.szcp new file mode 100644 index 00000000..915db483 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000005_b2863e56.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000006_f62a67a7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000006_f62a67a7.szcp new file mode 100644 index 00000000..d3064160 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000006_f62a67a7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000007_6da28b86.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000007_6da28b86.szcp new file mode 100644 index 00000000..21d04014 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000007_6da28b86.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000008_ef3a3a42.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000008_ef3a3a42.szcp new file mode 100644 index 00000000..8ac8c9ab Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000008_ef3a3a42.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000009_b6e288b9.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000009_b6e288b9.szcp new file mode 100644 index 00000000..f8bde3c5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000009_b6e288b9.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000010_a2aaeecd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000010_a2aaeecd.szcp new file mode 100644 index 00000000..a023ec0c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000010_a2aaeecd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000011_e7f62eb3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000011_e7f62eb3.szcp new file mode 100644 index 00000000..253aa218 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000011_e7f62eb3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000012_52dc6235.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000012_52dc6235.szcp new file mode 100644 index 00000000..04c50c2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000012_52dc6235.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000013_209b0f17.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000013_209b0f17.szcp new file mode 100644 index 00000000..89938cc8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000013_209b0f17.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000014_d402f01d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000014_d402f01d.szcp new file mode 100644 index 00000000..fdca833d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000014_d402f01d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000015_34a23806.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000015_34a23806.szcp new file mode 100644 index 00000000..8b507908 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000015_34a23806.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000016_1bbc17d1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000016_1bbc17d1.szcp new file mode 100644 index 00000000..49114037 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000016_1bbc17d1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000017_fb01e418.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000017_fb01e418.szcp new file mode 100644 index 00000000..ac33e96d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000017_fb01e418.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000018_6539e41f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000018_6539e41f.szcp new file mode 100644 index 00000000..2112098f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000018_6539e41f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000019_4c68519c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000019_4c68519c.szcp new file mode 100644 index 00000000..47af0cc0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000019_4c68519c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000020_232f7e56.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000020_232f7e56.szcp new file mode 100644 index 00000000..6ba74520 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000020_232f7e56.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000021_d75840e2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000021_d75840e2.szcp new file mode 100644 index 00000000..0b6884b6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000021_d75840e2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000022_7ce3cd7b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000022_7ce3cd7b.szcp new file mode 100644 index 00000000..c33e2472 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000022_7ce3cd7b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000023_04425eb1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000023_04425eb1.szcp new file mode 100644 index 00000000..c770c02f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000023_04425eb1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000024_467befa6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000024_467befa6.szcp new file mode 100644 index 00000000..65945ac6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000024_467befa6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000025_9c200b21.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000025_9c200b21.szcp new file mode 100644 index 00000000..6c62368a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000025_9c200b21.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000026_e45bdc9c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000026_e45bdc9c.szcp new file mode 100644 index 00000000..a0c095c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_052/checkpoints/checkpoint_00000000000000000026_e45bdc9c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000001_773df8b7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000001_773df8b7.szar new file mode 100644 index 00000000..f5de14be Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000001_773df8b7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000002_d817fbab.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000002_d817fbab.szar new file mode 100644 index 00000000..f805b7c1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000002_d817fbab.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000003_8ea53b3b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000003_8ea53b3b.szar new file mode 100644 index 00000000..9b1cc7aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000003_8ea53b3b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000004_34c791d6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000004_34c791d6.szar new file mode 100644 index 00000000..3050264a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000004_34c791d6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000005_dc5324e2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000005_dc5324e2.szar new file mode 100644 index 00000000..1e610167 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000005_dc5324e2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000006_4a6d2b46.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000006_4a6d2b46.szar new file mode 100644 index 00000000..fab65b15 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000006_4a6d2b46.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000007_f47fef18.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000007_f47fef18.szar new file mode 100644 index 00000000..bb0feb96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000007_f47fef18.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000008_d50eaf70.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000008_d50eaf70.szar new file mode 100644 index 00000000..89fb09bd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000008_d50eaf70.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000009_cf06b1b9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000009_cf06b1b9.szar new file mode 100644 index 00000000..06d05f2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000009_cf06b1b9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000010_4962ffad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000010_4962ffad.szar new file mode 100644 index 00000000..ceffedc2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000010_4962ffad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000011_6e7a5a4b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000011_6e7a5a4b.szar new file mode 100644 index 00000000..0d395f79 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000011_6e7a5a4b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000012_1b7096a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000012_1b7096a7.szar new file mode 100644 index 00000000..f00d243d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000012_1b7096a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000013_cf1607c6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000013_cf1607c6.szar new file mode 100644 index 00000000..48765d96 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000013_cf1607c6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000014_635699b1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000014_635699b1.szar new file mode 100644 index 00000000..cad67adc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000014_635699b1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000015_ac4fb3b3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000015_ac4fb3b3.szar new file mode 100644 index 00000000..be3eb37d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000015_ac4fb3b3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000016_9d5d4075.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000016_9d5d4075.szar new file mode 100644 index 00000000..363c6110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000016_9d5d4075.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000017_5992925c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000017_5992925c.szar new file mode 100644 index 00000000..ebe07f74 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000017_5992925c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000018_1d64bd67.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000018_1d64bd67.szar new file mode 100644 index 00000000..f5e43542 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000018_1d64bd67.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000019_306f5e43.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000019_306f5e43.szar new file mode 100644 index 00000000..bf8c482f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000019_306f5e43.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000020_f50447dc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000020_f50447dc.szar new file mode 100644 index 00000000..fee47950 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000020_f50447dc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000021_6c65446f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000021_6c65446f.szar new file mode 100644 index 00000000..cb280835 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000021_6c65446f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000022_bcb2fc48.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000022_bcb2fc48.szar new file mode 100644 index 00000000..b2e48840 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000022_bcb2fc48.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000023_8f45cc47.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000023_8f45cc47.szar new file mode 100644 index 00000000..35d742c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000023_8f45cc47.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000024_bcf010c1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000024_bcf010c1.szar new file mode 100644 index 00000000..d9b57bc5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000024_bcf010c1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000025_0d80938a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000025_0d80938a.szar new file mode 100644 index 00000000..c42a8c84 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000025_0d80938a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000026_f00d485a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000026_f00d485a.szar new file mode 100644 index 00000000..76363374 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000026_f00d485a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000027_abbe98a9.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000027_abbe98a9.szar new file mode 100644 index 00000000..7a56aaae Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000027_abbe98a9.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000028_b0fe86d1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000028_b0fe86d1.szar new file mode 100644 index 00000000..92b3cf08 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000028_b0fe86d1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000029_3e15e7a7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000029_3e15e7a7.szar new file mode 100644 index 00000000..6f17fe14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/archive/delta_00000000000000000029_3e15e7a7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000001_73001180.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000001_73001180.szcp new file mode 100644 index 00000000..d3d6d2dc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000001_73001180.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000002_d73ec3a1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000002_d73ec3a1.szcp new file mode 100644 index 00000000..fb386886 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000002_d73ec3a1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000003_474b986c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000003_474b986c.szcp new file mode 100644 index 00000000..c86fbff7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000003_474b986c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000004_a263144d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000004_a263144d.szcp new file mode 100644 index 00000000..8a811460 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000004_a263144d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000005_50329bd4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000005_50329bd4.szcp new file mode 100644 index 00000000..72a9c071 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000005_50329bd4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000006_50fe0544.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000006_50fe0544.szcp new file mode 100644 index 00000000..36516975 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000006_50fe0544.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000007_b028dc2c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000007_b028dc2c.szcp new file mode 100644 index 00000000..6124c922 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000007_b028dc2c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000008_4beccd4e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000008_4beccd4e.szcp new file mode 100644 index 00000000..ce489ebb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000008_4beccd4e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000009_bc81bd70.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000009_bc81bd70.szcp new file mode 100644 index 00000000..ca38a8fa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000009_bc81bd70.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000010_50d32653.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000010_50d32653.szcp new file mode 100644 index 00000000..e03a0dad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000010_50d32653.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000011_ed87bb48.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000011_ed87bb48.szcp new file mode 100644 index 00000000..51a7fddc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000011_ed87bb48.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000012_c346c39c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000012_c346c39c.szcp new file mode 100644 index 00000000..0433730e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000012_c346c39c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000013_74e79d1f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000013_74e79d1f.szcp new file mode 100644 index 00000000..f17bee37 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000013_74e79d1f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000014_015b8d52.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000014_015b8d52.szcp new file mode 100644 index 00000000..f2ec2138 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000014_015b8d52.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000015_a919acce.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000015_a919acce.szcp new file mode 100644 index 00000000..f30a4593 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000015_a919acce.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000016_2c04491e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000016_2c04491e.szcp new file mode 100644 index 00000000..abe0b043 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000016_2c04491e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000017_47dd7f26.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000017_47dd7f26.szcp new file mode 100644 index 00000000..cd57a043 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000017_47dd7f26.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000018_9d789156.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000018_9d789156.szcp new file mode 100644 index 00000000..177e65b1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000018_9d789156.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000019_fed4df62.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000019_fed4df62.szcp new file mode 100644 index 00000000..4f7ac6d0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000019_fed4df62.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000020_0e49d182.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000020_0e49d182.szcp new file mode 100644 index 00000000..bdb0b9e1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000020_0e49d182.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000021_d7551a2f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000021_d7551a2f.szcp new file mode 100644 index 00000000..eadcb94d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000021_d7551a2f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000022_05259f55.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000022_05259f55.szcp new file mode 100644 index 00000000..41719a33 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000022_05259f55.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000023_69791b04.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000023_69791b04.szcp new file mode 100644 index 00000000..0a232077 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000023_69791b04.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000024_05ed1ef6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000024_05ed1ef6.szcp new file mode 100644 index 00000000..58626444 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000024_05ed1ef6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000025_1c9bdcff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000025_1c9bdcff.szcp new file mode 100644 index 00000000..2492e591 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000025_1c9bdcff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000026_1d68cfb8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000026_1d68cfb8.szcp new file mode 100644 index 00000000..d55cfa70 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000026_1d68cfb8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000027_bf3491f2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000027_bf3491f2.szcp new file mode 100644 index 00000000..c2a1e0ee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000027_bf3491f2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000028_1e7ac634.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000028_1e7ac634.szcp new file mode 100644 index 00000000..b4658d24 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000028_1e7ac634.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000029_63e28b47.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000029_63e28b47.szcp new file mode 100644 index 00000000..3074dbca Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_053/checkpoints/checkpoint_00000000000000000029_63e28b47.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000001_c19d0a84.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000001_c19d0a84.szar new file mode 100644 index 00000000..5bd71b1d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000001_c19d0a84.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000002_9f421fad.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000002_9f421fad.szar new file mode 100644 index 00000000..04c8fccd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000002_9f421fad.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000003_3ae6ab51.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000003_3ae6ab51.szar new file mode 100644 index 00000000..3191cbb6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000003_3ae6ab51.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000004_d2a3b246.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000004_d2a3b246.szar new file mode 100644 index 00000000..fd75d382 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000004_d2a3b246.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000005_d2f68460.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000005_d2f68460.szar new file mode 100644 index 00000000..ea507606 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000005_d2f68460.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000006_b47f6c2b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000006_b47f6c2b.szar new file mode 100644 index 00000000..e0ee10cb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000006_b47f6c2b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000007_82f9af72.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000007_82f9af72.szar new file mode 100644 index 00000000..2fb16f6e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000007_82f9af72.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000008_1eab691b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000008_1eab691b.szar new file mode 100644 index 00000000..9d9d0676 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000008_1eab691b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000009_40d0560d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000009_40d0560d.szar new file mode 100644 index 00000000..13ee2259 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000009_40d0560d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000010_64803538.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000010_64803538.szar new file mode 100644 index 00000000..66bb2e14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000010_64803538.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000011_cbbb6c76.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000011_cbbb6c76.szar new file mode 100644 index 00000000..b8d084e3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000011_cbbb6c76.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000012_810ae222.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000012_810ae222.szar new file mode 100644 index 00000000..65130aa8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000012_810ae222.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000013_36659315.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000013_36659315.szar new file mode 100644 index 00000000..c5f62f3a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000013_36659315.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000014_21a914dd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000014_21a914dd.szar new file mode 100644 index 00000000..d0f0d1ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000014_21a914dd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000015_3155cb9d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000015_3155cb9d.szar new file mode 100644 index 00000000..d37d90ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000015_3155cb9d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000016_5d40710f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000016_5d40710f.szar new file mode 100644 index 00000000..19317581 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000016_5d40710f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000017_4ba60f8a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000017_4ba60f8a.szar new file mode 100644 index 00000000..3cf30f6b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000017_4ba60f8a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000018_3ac8e7f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000018_3ac8e7f0.szar new file mode 100644 index 00000000..38606d31 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000018_3ac8e7f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000019_cf2602e1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000019_cf2602e1.szar new file mode 100644 index 00000000..2e3a1942 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000019_cf2602e1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000020_d615e87a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000020_d615e87a.szar new file mode 100644 index 00000000..42a14372 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000020_d615e87a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000021_d33e7ca5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000021_d33e7ca5.szar new file mode 100644 index 00000000..49d743d2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000021_d33e7ca5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000022_9a775af5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000022_9a775af5.szar new file mode 100644 index 00000000..4d00aae5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000022_9a775af5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000023_409ae929.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000023_409ae929.szar new file mode 100644 index 00000000..452c892d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000023_409ae929.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000024_3b34b115.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000024_3b34b115.szar new file mode 100644 index 00000000..7fab5a4f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000024_3b34b115.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000025_63867a42.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000025_63867a42.szar new file mode 100644 index 00000000..215dbcd6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000025_63867a42.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000026_107a27bb.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000026_107a27bb.szar new file mode 100644 index 00000000..f95366a8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/archive/delta_00000000000000000026_107a27bb.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000001_6bb54220.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000001_6bb54220.szcp new file mode 100644 index 00000000..860b8ce7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000001_6bb54220.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000002_6ddf84d3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000002_6ddf84d3.szcp new file mode 100644 index 00000000..11065f78 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000002_6ddf84d3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000003_02546aa4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000003_02546aa4.szcp new file mode 100644 index 00000000..c9b7ab34 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000003_02546aa4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000004_3ff4933e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000004_3ff4933e.szcp new file mode 100644 index 00000000..bfb27cc2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000004_3ff4933e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000005_2c01bab2.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000005_2c01bab2.szcp new file mode 100644 index 00000000..089b1d5d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000005_2c01bab2.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000006_66785d80.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000006_66785d80.szcp new file mode 100644 index 00000000..d2e9166e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000006_66785d80.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000007_b81ec536.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000007_b81ec536.szcp new file mode 100644 index 00000000..003a4488 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000007_b81ec536.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000008_05242668.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000008_05242668.szcp new file mode 100644 index 00000000..e680e4bc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000008_05242668.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000009_8ec66b81.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000009_8ec66b81.szcp new file mode 100644 index 00000000..b3367460 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000009_8ec66b81.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000010_e815b0b7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000010_e815b0b7.szcp new file mode 100644 index 00000000..8428489c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000010_e815b0b7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000011_45d932cf.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000011_45d932cf.szcp new file mode 100644 index 00000000..d2868448 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000011_45d932cf.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000012_5b45b1dd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000012_5b45b1dd.szcp new file mode 100644 index 00000000..ed4964cc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000012_5b45b1dd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000013_6451a4fe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000013_6451a4fe.szcp new file mode 100644 index 00000000..afb764b9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000013_6451a4fe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000014_a42955f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000014_a42955f7.szcp new file mode 100644 index 00000000..28e6b7da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000014_a42955f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000015_46e788e8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000015_46e788e8.szcp new file mode 100644 index 00000000..07990371 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000015_46e788e8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000016_43300209.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000016_43300209.szcp new file mode 100644 index 00000000..4ff0e1a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000016_43300209.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000017_55da3b20.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000017_55da3b20.szcp new file mode 100644 index 00000000..84a1b916 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000017_55da3b20.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000018_20af7317.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000018_20af7317.szcp new file mode 100644 index 00000000..89dda8ad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000018_20af7317.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000019_63e27b40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000019_63e27b40.szcp new file mode 100644 index 00000000..3c16b2b8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000019_63e27b40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000020_644119d5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000020_644119d5.szcp new file mode 100644 index 00000000..bd2c7ff8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000020_644119d5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000021_693cc042.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000021_693cc042.szcp new file mode 100644 index 00000000..8e32fe0e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000021_693cc042.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000022_a1f2585e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000022_a1f2585e.szcp new file mode 100644 index 00000000..8fbea46a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000022_a1f2585e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000023_26893a3a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000023_26893a3a.szcp new file mode 100644 index 00000000..c2e2ad2e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000023_26893a3a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000024_625fb156.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000024_625fb156.szcp new file mode 100644 index 00000000..c7b81fcc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000024_625fb156.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000025_ab44a3ad.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000025_ab44a3ad.szcp new file mode 100644 index 00000000..02071700 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000025_ab44a3ad.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000026_3d82bdc3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000026_3d82bdc3.szcp new file mode 100644 index 00000000..f37488f1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_054/checkpoints/checkpoint_00000000000000000026_3d82bdc3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000001_3c4940ef.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000001_3c4940ef.szar new file mode 100644 index 00000000..ed408290 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000001_3c4940ef.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000002_7ca00946.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000002_7ca00946.szar new file mode 100644 index 00000000..2b837475 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000002_7ca00946.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000003_60b9808b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000003_60b9808b.szar new file mode 100644 index 00000000..92145cb9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000003_60b9808b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000004_1df47b8d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000004_1df47b8d.szar new file mode 100644 index 00000000..5f5d7958 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000004_1df47b8d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000005_6b54b61e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000005_6b54b61e.szar new file mode 100644 index 00000000..d315b4a2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000005_6b54b61e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000006_7a432862.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000006_7a432862.szar new file mode 100644 index 00000000..df6338e3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000006_7a432862.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000007_5877c657.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000007_5877c657.szar new file mode 100644 index 00000000..c3daf38d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000007_5877c657.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000008_beed2477.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000008_beed2477.szar new file mode 100644 index 00000000..e5e4242d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000008_beed2477.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000009_9e626a9f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000009_9e626a9f.szar new file mode 100644 index 00000000..60b39f95 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000009_9e626a9f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000010_797c5c5b.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000010_797c5c5b.szar new file mode 100644 index 00000000..796e6bf1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000010_797c5c5b.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000011_11c5e018.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000011_11c5e018.szar new file mode 100644 index 00000000..f4d4b9e6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000011_11c5e018.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000012_1f50a49d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000012_1f50a49d.szar new file mode 100644 index 00000000..e8ef72d6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000012_1f50a49d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000013_2f59937f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000013_2f59937f.szar new file mode 100644 index 00000000..acce8702 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000013_2f59937f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000014_99af5ee8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000014_99af5ee8.szar new file mode 100644 index 00000000..66306485 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000014_99af5ee8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000015_fbf7abc3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000015_fbf7abc3.szar new file mode 100644 index 00000000..36b8562d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000015_fbf7abc3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000016_83e06e20.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000016_83e06e20.szar new file mode 100644 index 00000000..492e64f8 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000016_83e06e20.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000017_c5b7aeaf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000017_c5b7aeaf.szar new file mode 100644 index 00000000..348bd509 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000017_c5b7aeaf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000018_a113aed8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000018_a113aed8.szar new file mode 100644 index 00000000..31541bec Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000018_a113aed8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000019_a23c5b41.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000019_a23c5b41.szar new file mode 100644 index 00000000..5b252376 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000019_a23c5b41.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000020_2b94dc57.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000020_2b94dc57.szar new file mode 100644 index 00000000..1d1382aa Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000020_2b94dc57.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000021_99e338f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000021_99e338f0.szar new file mode 100644 index 00000000..0bfe5a6a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000021_99e338f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000022_dc881dd4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000022_dc881dd4.szar new file mode 100644 index 00000000..58f455fc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000022_dc881dd4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000023_71d43c57.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000023_71d43c57.szar new file mode 100644 index 00000000..e75b92e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/archive/delta_00000000000000000023_71d43c57.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000001_97066a40.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000001_97066a40.szcp new file mode 100644 index 00000000..8cba53e4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000001_97066a40.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000002_7742d684.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000002_7742d684.szcp new file mode 100644 index 00000000..15403893 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000002_7742d684.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000003_b074550d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000003_b074550d.szcp new file mode 100644 index 00000000..7999a8c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000003_b074550d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000004_de132930.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000004_de132930.szcp new file mode 100644 index 00000000..7ad06987 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000004_de132930.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000005_4c134e66.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000005_4c134e66.szcp new file mode 100644 index 00000000..f65e005c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000005_4c134e66.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000006_1da25a83.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000006_1da25a83.szcp new file mode 100644 index 00000000..736b4eba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000006_1da25a83.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000007_a9bf8b65.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000007_a9bf8b65.szcp new file mode 100644 index 00000000..b46205da Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000007_a9bf8b65.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000008_b7361af5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000008_b7361af5.szcp new file mode 100644 index 00000000..ded7b801 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000008_b7361af5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000009_086e5f03.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000009_086e5f03.szcp new file mode 100644 index 00000000..50003d64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000009_086e5f03.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000010_6581f6a1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000010_6581f6a1.szcp new file mode 100644 index 00000000..0db0b857 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000010_6581f6a1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000011_c973ed10.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000011_c973ed10.szcp new file mode 100644 index 00000000..f2cf5e68 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000011_c973ed10.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000012_372de4ff.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000012_372de4ff.szcp new file mode 100644 index 00000000..04c65352 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000012_372de4ff.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000013_78b87a43.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000013_78b87a43.szcp new file mode 100644 index 00000000..d78944ce Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000013_78b87a43.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000014_cb75d6ca.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000014_cb75d6ca.szcp new file mode 100644 index 00000000..6564bc72 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000014_cb75d6ca.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000015_82c84f70.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000015_82c84f70.szcp new file mode 100644 index 00000000..c73ad0f0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000015_82c84f70.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000016_66b297fe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000016_66b297fe.szcp new file mode 100644 index 00000000..f5ccab9d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000016_66b297fe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000017_c8fa2fb4.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000017_c8fa2fb4.szcp new file mode 100644 index 00000000..6fe515ea Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000017_c8fa2fb4.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000018_5f1257e5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000018_5f1257e5.szcp new file mode 100644 index 00000000..71359ae4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000018_5f1257e5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000019_a7428cce.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000019_a7428cce.szcp new file mode 100644 index 00000000..dd0a5098 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000019_a7428cce.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000020_954834e7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000020_954834e7.szcp new file mode 100644 index 00000000..a53fcef1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000020_954834e7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000021_f7f7741b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000021_f7f7741b.szcp new file mode 100644 index 00000000..0995ccee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000021_f7f7741b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000022_c5cf59e7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000022_c5cf59e7.szcp new file mode 100644 index 00000000..c2dc3f42 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000022_c5cf59e7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000023_13c90830.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000023_13c90830.szcp new file mode 100644 index 00000000..352f631a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_055/checkpoints/checkpoint_00000000000000000023_13c90830.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000001_d5abf4ed.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000001_d5abf4ed.szar new file mode 100644 index 00000000..0e2977d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000001_d5abf4ed.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000002_a1d5af16.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000002_a1d5af16.szar new file mode 100644 index 00000000..4b6d9e14 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000002_a1d5af16.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000003_a2c7ce8a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000003_a2c7ce8a.szar new file mode 100644 index 00000000..20163027 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000003_a2c7ce8a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000004_a5a46645.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000004_a5a46645.szar new file mode 100644 index 00000000..d624b025 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000004_a5a46645.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000005_52925a23.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000005_52925a23.szar new file mode 100644 index 00000000..61e63fcc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000005_52925a23.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000006_9a971344.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000006_9a971344.szar new file mode 100644 index 00000000..21920e1a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000006_9a971344.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000007_2f3aab49.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000007_2f3aab49.szar new file mode 100644 index 00000000..b74a4215 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000007_2f3aab49.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000008_5b105dd1.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000008_5b105dd1.szar new file mode 100644 index 00000000..e90ca134 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000008_5b105dd1.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000009_95f45dac.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000009_95f45dac.szar new file mode 100644 index 00000000..bb54d1cd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000009_95f45dac.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000010_5e0279f2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000010_5e0279f2.szar new file mode 100644 index 00000000..87c77b90 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000010_5e0279f2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000011_c46f6e1c.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000011_c46f6e1c.szar new file mode 100644 index 00000000..34815f08 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000011_c46f6e1c.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000012_4b2113d7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000012_4b2113d7.szar new file mode 100644 index 00000000..ab2ce3f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000012_4b2113d7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000013_c7a5035f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000013_c7a5035f.szar new file mode 100644 index 00000000..9ce1d537 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000013_c7a5035f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000014_1d3d9b95.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000014_1d3d9b95.szar new file mode 100644 index 00000000..ce616ef5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000014_1d3d9b95.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000015_c53051e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000015_c53051e5.szar new file mode 100644 index 00000000..fd61ae72 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000015_c53051e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000016_7654f901.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000016_7654f901.szar new file mode 100644 index 00000000..88da273d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000016_7654f901.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000017_234bcd22.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000017_234bcd22.szar new file mode 100644 index 00000000..e1b8cfd7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000017_234bcd22.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000018_fab15ed3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000018_fab15ed3.szar new file mode 100644 index 00000000..d41ab5c3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000018_fab15ed3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000019_b58c33a5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000019_b58c33a5.szar new file mode 100644 index 00000000..ca5edd71 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000019_b58c33a5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000020_b020cec6.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000020_b020cec6.szar new file mode 100644 index 00000000..6bb8882b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000020_b020cec6.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000021_d436c4f0.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000021_d436c4f0.szar new file mode 100644 index 00000000..f4447364 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000021_d436c4f0.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000022_e5d070d4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000022_e5d070d4.szar new file mode 100644 index 00000000..b106a44a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000022_e5d070d4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000023_bec7c851.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000023_bec7c851.szar new file mode 100644 index 00000000..89fa0419 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000023_bec7c851.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000024_c908700e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000024_c908700e.szar new file mode 100644 index 00000000..dd76cafc Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000024_c908700e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000025_fa87a6fe.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000025_fa87a6fe.szar new file mode 100644 index 00000000..751e6ab0 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000025_fa87a6fe.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000026_502e5857.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000026_502e5857.szar new file mode 100644 index 00000000..1af76da2 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000026_502e5857.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000027_babae16f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000027_babae16f.szar new file mode 100644 index 00000000..76338750 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000027_babae16f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000028_ee7052ba.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000028_ee7052ba.szar new file mode 100644 index 00000000..9cc1687d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000028_ee7052ba.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000029_815f7c4a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000029_815f7c4a.szar new file mode 100644 index 00000000..3b8345cd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/archive/delta_00000000000000000029_815f7c4a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000001_df21e842.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000001_df21e842.szcp new file mode 100644 index 00000000..9b67256f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000001_df21e842.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000002_95368ac0.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000002_95368ac0.szcp new file mode 100644 index 00000000..dde24230 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000002_95368ac0.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000003_682a9c12.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000003_682a9c12.szcp new file mode 100644 index 00000000..831058d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000003_682a9c12.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000004_37f23815.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000004_37f23815.szcp new file mode 100644 index 00000000..c1e77add Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000004_37f23815.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000005_fabd58c6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000005_fabd58c6.szcp new file mode 100644 index 00000000..f5cfe88f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000005_fabd58c6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000006_d4ce4083.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000006_d4ce4083.szcp new file mode 100644 index 00000000..be42d396 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000006_d4ce4083.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000007_1255eded.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000007_1255eded.szcp new file mode 100644 index 00000000..04596e64 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000007_1255eded.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000008_c28aa5ab.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000008_c28aa5ab.szcp new file mode 100644 index 00000000..4edd61d9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000008_c28aa5ab.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000009_c1b8c9c1.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000009_c1b8c9c1.szcp new file mode 100644 index 00000000..bbb710a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000009_c1b8c9c1.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000010_70313384.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000010_70313384.szcp new file mode 100644 index 00000000..77f64f1d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000010_70313384.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000011_79f550f6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000011_79f550f6.szcp new file mode 100644 index 00000000..afa49850 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000011_79f550f6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000012_1b8a39ed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000012_1b8a39ed.szcp new file mode 100644 index 00000000..fdc97804 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000012_1b8a39ed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000013_065fbdbe.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000013_065fbdbe.szcp new file mode 100644 index 00000000..c764c78d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000013_065fbdbe.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000014_0967e47d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000014_0967e47d.szcp new file mode 100644 index 00000000..3d10a08c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000014_0967e47d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000015_c5b521de.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000015_c5b521de.szcp new file mode 100644 index 00000000..5d2fb684 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000015_c5b521de.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000016_c3e72023.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000016_c3e72023.szcp new file mode 100644 index 00000000..f14a6b98 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000016_c3e72023.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000017_fbd0d813.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000017_fbd0d813.szcp new file mode 100644 index 00000000..c9730727 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000017_fbd0d813.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000018_47e47204.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000018_47e47204.szcp new file mode 100644 index 00000000..20411138 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000018_47e47204.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000019_d85cfbaa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000019_d85cfbaa.szcp new file mode 100644 index 00000000..06cb8110 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000019_d85cfbaa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000020_1654f762.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000020_1654f762.szcp new file mode 100644 index 00000000..6dee315e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000020_1654f762.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000021_c52f2733.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000021_c52f2733.szcp new file mode 100644 index 00000000..fae31e75 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000021_c52f2733.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000022_e3a887c3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000022_e3a887c3.szcp new file mode 100644 index 00000000..54fc9869 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000022_e3a887c3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000023_c381c14a.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000023_c381c14a.szcp new file mode 100644 index 00000000..ff57fbd6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000023_c381c14a.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000024_7f27f46f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000024_7f27f46f.szcp new file mode 100644 index 00000000..a0f2c7a9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000024_7f27f46f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000025_c714659c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000025_c714659c.szcp new file mode 100644 index 00000000..01e588e5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000025_c714659c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000026_129bf8f7.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000026_129bf8f7.szcp new file mode 100644 index 00000000..40cc91ac Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000026_129bf8f7.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000027_ebd0ddbc.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000027_ebd0ddbc.szcp new file mode 100644 index 00000000..aaf80f0d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000027_ebd0ddbc.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000028_68431310.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000028_68431310.szcp new file mode 100644 index 00000000..3f271f2c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000028_68431310.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000029_dd41a4f5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000029_dd41a4f5.szcp new file mode 100644 index 00000000..813f4072 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_056/checkpoints/checkpoint_00000000000000000029_dd41a4f5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000001_03d42f4f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000001_03d42f4f.szar new file mode 100644 index 00000000..48b1b6b4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000001_03d42f4f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000002_2153f6a2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000002_2153f6a2.szar new file mode 100644 index 00000000..c4a49a83 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000002_2153f6a2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000003_9732a5ea.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000003_9732a5ea.szar new file mode 100644 index 00000000..de8b4dad Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000003_9732a5ea.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000004_6b8e8352.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000004_6b8e8352.szar new file mode 100644 index 00000000..28e996ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000004_6b8e8352.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000005_6eb05d11.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000005_6eb05d11.szar new file mode 100644 index 00000000..15089332 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000005_6eb05d11.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000006_e557f197.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000006_e557f197.szar new file mode 100644 index 00000000..14aad079 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000006_e557f197.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000007_ad5844bd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000007_ad5844bd.szar new file mode 100644 index 00000000..d59fd847 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000007_ad5844bd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000008_7a24272f.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000008_7a24272f.szar new file mode 100644 index 00000000..7976ee92 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000008_7a24272f.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000009_cd1d7e35.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000009_cd1d7e35.szar new file mode 100644 index 00000000..3a6a0fd5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000009_cd1d7e35.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000010_27c892de.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000010_27c892de.szar new file mode 100644 index 00000000..84dae2f4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000010_27c892de.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000011_d0224647.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000011_d0224647.szar new file mode 100644 index 00000000..e5dc26de Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000011_d0224647.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000012_dda8a6b2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000012_dda8a6b2.szar new file mode 100644 index 00000000..1667df36 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000012_dda8a6b2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000013_3980f109.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000013_3980f109.szar new file mode 100644 index 00000000..c8159c26 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000013_3980f109.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000014_46ae8db2.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000014_46ae8db2.szar new file mode 100644 index 00000000..06a54bdd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000014_46ae8db2.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000015_ff1b1599.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000015_ff1b1599.szar new file mode 100644 index 00000000..ccaaa3ba Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000015_ff1b1599.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000016_c88b92de.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000016_c88b92de.szar new file mode 100644 index 00000000..edfe2ab1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000016_c88b92de.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000017_86e00c5d.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000017_86e00c5d.szar new file mode 100644 index 00000000..50ea89a4 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000017_86e00c5d.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000018_1a007664.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000018_1a007664.szar new file mode 100644 index 00000000..0f9b2493 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/archive/delta_00000000000000000018_1a007664.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000001_2e6086da.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000001_2e6086da.szcp new file mode 100644 index 00000000..c7e2b08a Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000001_2e6086da.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000002_d45128f5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000002_d45128f5.szcp new file mode 100644 index 00000000..fbf6f839 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000002_d45128f5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000003_f97fe3a8.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000003_f97fe3a8.szcp new file mode 100644 index 00000000..311f8841 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000003_f97fe3a8.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000004_354fc178.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000004_354fc178.szcp new file mode 100644 index 00000000..abde3331 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000004_354fc178.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000005_34243fa6.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000005_34243fa6.szcp new file mode 100644 index 00000000..94d7cf9e Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000005_34243fa6.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000006_d4775951.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000006_d4775951.szcp new file mode 100644 index 00000000..0a077cc7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000006_d4775951.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000007_25329618.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000007_25329618.szcp new file mode 100644 index 00000000..20632c13 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000007_25329618.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000008_976de031.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000008_976de031.szcp new file mode 100644 index 00000000..9a7063db Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000008_976de031.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000009_351111fd.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000009_351111fd.szcp new file mode 100644 index 00000000..2cec120b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000009_351111fd.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000010_8cf51fe5.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000010_8cf51fe5.szcp new file mode 100644 index 00000000..df1566c6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000010_8cf51fe5.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000011_de026d1e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000011_de026d1e.szcp new file mode 100644 index 00000000..117cd247 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000011_de026d1e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000012_51bccf21.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000012_51bccf21.szcp new file mode 100644 index 00000000..31cfb9f7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000012_51bccf21.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000013_3c9a5f79.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000013_3c9a5f79.szcp new file mode 100644 index 00000000..c6b9a8d6 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000013_3c9a5f79.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000014_56b5b56d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000014_56b5b56d.szcp new file mode 100644 index 00000000..5d500b67 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000014_56b5b56d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000015_8a1117ed.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000015_8a1117ed.szcp new file mode 100644 index 00000000..c31e4bb9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000015_8a1117ed.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000016_16e73368.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000016_16e73368.szcp new file mode 100644 index 00000000..632feffb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000016_16e73368.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000017_e0285201.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000017_e0285201.szcp new file mode 100644 index 00000000..926e4ac5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000017_e0285201.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000018_de68383b.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000018_de68383b.szcp new file mode 100644 index 00000000..3e106705 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_057/checkpoints/checkpoint_00000000000000000018_de68383b.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000001_7ded11c3.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000001_7ded11c3.szar new file mode 100644 index 00000000..feecfd6c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000001_7ded11c3.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000002_b9495db8.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000002_b9495db8.szar new file mode 100644 index 00000000..32834a69 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000002_b9495db8.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000003_7eb9dd2e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000003_7eb9dd2e.szar new file mode 100644 index 00000000..5bf16bb5 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000003_7eb9dd2e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000004_2c0562e5.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000004_2c0562e5.szar new file mode 100644 index 00000000..331b5d7f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000004_2c0562e5.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000005_1a81a9df.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000005_1a81a9df.szar new file mode 100644 index 00000000..3bbabf8f Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000005_1a81a9df.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000006_a837d059.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000006_a837d059.szar new file mode 100644 index 00000000..2399100b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000006_a837d059.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000007_387b8168.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000007_387b8168.szar new file mode 100644 index 00000000..c28db33b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000007_387b8168.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000008_6aac498e.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000008_6aac498e.szar new file mode 100644 index 00000000..c890421c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000008_6aac498e.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000009_ea3f5126.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000009_ea3f5126.szar new file mode 100644 index 00000000..0b04c46d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000009_ea3f5126.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000010_01e12cdc.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000010_01e12cdc.szar new file mode 100644 index 00000000..6e786054 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000010_01e12cdc.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000011_ed601daf.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000011_ed601daf.szar new file mode 100644 index 00000000..cfbf8f25 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000011_ed601daf.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000012_e6af57bd.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000012_e6af57bd.szar new file mode 100644 index 00000000..f2260752 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000012_e6af57bd.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000013_a4972bc7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000013_a4972bc7.szar new file mode 100644 index 00000000..cc030664 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000013_a4972bc7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000014_e97cad77.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000014_e97cad77.szar new file mode 100644 index 00000000..74662ae1 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000014_e97cad77.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000015_175183c4.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000015_175183c4.szar new file mode 100644 index 00000000..0a1816fd Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000015_175183c4.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000016_4f592428.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000016_4f592428.szar new file mode 100644 index 00000000..e80c77c7 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000016_4f592428.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000017_afc59e9a.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000017_afc59e9a.szar new file mode 100644 index 00000000..75ab2503 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000017_afc59e9a.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000018_e92164c7.szar b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000018_e92164c7.szar new file mode 100644 index 00000000..5fc00832 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/archive/delta_00000000000000000018_e92164c7.szar differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000001_c9a42f9d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000001_c9a42f9d.szcp new file mode 100644 index 00000000..f5ebc275 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000001_c9a42f9d.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000002_b1a298aa.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000002_b1a298aa.szcp new file mode 100644 index 00000000..d2129bcb Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000002_b1a298aa.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000003_2e8b2754.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000003_2e8b2754.szcp new file mode 100644 index 00000000..cea9bc32 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000003_2e8b2754.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000004_953ecd43.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000004_953ecd43.szcp new file mode 100644 index 00000000..0fed4e77 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000004_953ecd43.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000005_fc9aa40e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000005_fc9aa40e.szcp new file mode 100644 index 00000000..43f7f38c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000005_fc9aa40e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000006_b2002b7f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000006_b2002b7f.szcp new file mode 100644 index 00000000..fe70fc88 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000006_b2002b7f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000007_5c15ba62.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000007_5c15ba62.szcp new file mode 100644 index 00000000..54910836 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000007_5c15ba62.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000008_b294c761.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000008_b294c761.szcp new file mode 100644 index 00000000..d513510d Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000008_b294c761.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000009_776ff18f.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000009_776ff18f.szcp new file mode 100644 index 00000000..4adbebee Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000009_776ff18f.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000010_36edd656.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000010_36edd656.szcp new file mode 100644 index 00000000..15570bbe Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000010_36edd656.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000011_99cde015.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000011_99cde015.szcp new file mode 100644 index 00000000..4d784694 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000011_99cde015.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000012_98922ad3.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000012_98922ad3.szcp new file mode 100644 index 00000000..6ce3c13b Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000012_98922ad3.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000013_224ad239.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000013_224ad239.szcp new file mode 100644 index 00000000..7da92799 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000013_224ad239.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000014_81744e17.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000014_81744e17.szcp new file mode 100644 index 00000000..a9e37a69 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000014_81744e17.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000015_9d35e70e.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000015_9d35e70e.szcp new file mode 100644 index 00000000..27be9ee3 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000015_9d35e70e.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000016_3bec815c.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000016_3bec815c.szcp new file mode 100644 index 00000000..f8a7e8e9 Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000016_3bec815c.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000017_10b9c365.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000017_10b9c365.szcp new file mode 100644 index 00000000..f869d74c Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000017_10b9c365.szcp differ diff --git a/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000018_1c2d7f9d.szcp b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000018_1c2d7f9d.szcp new file mode 100644 index 00000000..5b17fede Binary files /dev/null and b/results/search/runs/b560c3b4-4e30-4b14-9d6a-34a123af2aba/topology_058/checkpoints/checkpoint_00000000000000000018_1c2d7f9d.szcp differ diff --git a/results/search/topology_0/resume.obj b/results/search/topology_0/resume.obj index 3a873bd9..7ef61445 100644 --- a/results/search/topology_0/resume.obj +++ b/results/search/topology_0/resume.obj @@ -1,47 +1,47 @@ -v 0.64204728169172121 -0.062964393918557307 -0.64510166310886841 -v 1.3316023886596273 -0.52463871030092024 -1.9677012129985973 -v -1.5057477623901492 -1.1520856311758065 0.63012571199553347 -v -2.6166230068901695 -10.42399515183979 -8.5120680335617092 -v -0.39446621932534986 -0.9771202290801545 -0.46701030475393573 -v 1.3347309461945382 2.2018713709514097 1.0974164826778541 -v 1.6328087142006522 1.359971981099958 -0.19726942879956988 -v -1.2090184580998529 -0.35588687982988892 1.1807338195054791 -v 1.7282988678032949 -2.4611504841481349 -4.6092424106654128 -v 0.76185836864600687 -1.5730190739169152 -2.4842265713642395 -v 2.0724712941495778 -2.3844823174671879 -4.9237319678569191 -v -1.5717147530927678 2.0311058695069435 0.092788844575301288 -v -0.93174638388436459 0.47169512804322988 5.3492868198927592 -v 1.4385515236805546 -0.65607612333093235 -1.8297985973391293 -v 1.3402495750928221 -0.64297037004222646 -1.3390497446604539 -v 0.53124483160047553 -0.40933886041616063 1.9786135289873554 -v 1.8300975422930887 -1.0150305790750633 -2.0257930814782856 -v -0.81542251544059929 1.1624862742394795 0.7191449853473626 -v -0.053738462407342445 0.69828557477040376 -1.0041897497188015 -v 0.02952203410781384 -0.061823411368602921 2.8744381848971585 -v -1.412916769999236 -1.0754262293055927 1.39306058264363 -v -1.1816948636891516 -7.0482041049771507 3.2841991703139835 -v -0.64112017835257196 4.1595612494153391 7.7429366645472326 -v -1.2966120709356337 -1.1709584279508445 2.34863003882064 -v -1.8970621607853553 -1.3527307968908129 -2.5857236441422695 -v -1.8029311953299245 -1.1400912053452346 -1.8119042573064696 -v -1.8391386270016421 9.2967517980318686 -2.0939096386201528 -v 1.0975505519725477 -0.58087799303359722 0.282139824154787 -v 1.2646638053121237 -0.57681202912633922 -0.1892489029991915 -v -0.24177134957851742 -0.78415712206460819 1.7089578064307225 -v 0.52452055960580601 -0.88219060899371615 -2.0596893011187714 -v 0.047114556660563661 -0.90841415488099575 -0.91424391795129289 -v -0.90410767061340902 -1.1596252227492259 -1.3724409308548677 -v 1.664369218978947 3.3320453669208501 0.76737816335579567 -v 3.66133844210596 -4.1322625713400036 -8.8813009216147236 -v 1.2782708713681779 -0.74393389834651391 -0.31713579376380296 -v -0.53981169821966446 5.0832486409123598 -0.7462103320084168 -v 0.26697374400483598 -0.43123713206157815 1.7556962373099683 -v 6.2358877810815274 4.5449196787961341 1.9701267155754616 -v -1.0759281088247667 6.8738786533679672 -1.6598104650913243 -v 2.3327392602818744 -3.0420935995116474 -5.9330443329436129 -v 9.7591042959896264 6.6266726641456088 3.6380775617340406 -v 1.6451257595869309 -1.442763013507278 -2.3190847500277867 -v 1.8393470384958961 -1.9939498587051623 -2.6573620939897298 +v 0.65470687921213433 -0.094954373941051717 -0.62414607245764075 +v 1.2804669424067223 -0.51391632538005905 -1.8243834650175654 +v -1.415513537137024 -1.0870759454996934 0.66992252182829715 +v -2.5416865936331057 -10.486671346113321 -8.5981703762916055 +v -0.34372406664929667 -0.91832831919767 -0.38822377995410967 +v 1.1930001824092906 2.176387728002938 1.3054793953521389 +v 1.544648007672194 1.1831833046465894 -0.22188542613919388 +v -1.2200675061129671 -0.24996884154947732 1.3845163162832699 +v 1.4634436996732565 -2.3024804731395858 -4.0505331624769276 +v 0.81110357927664367 -1.7029981397838732 -2.6161633012915901 +v 1.9497852128978292 -2.1941424103181468 -4.4949302200777295 +v -1.4393902684149855 1.8154239311026374 0.47803677052403837 +v -0.8789663753602176 0.44983914601514402 5.0811827541283607 +v 1.3996365954748426 -0.62621520082957205 -1.8665566440996988 +v 1.2875815750401323 -0.61127586562605796 -1.3071488913867051 +v 0.49634784149301447 -0.37864660188296695 1.9139594043250785 +v 1.7851773547021128 -0.97966422563775557 -2.0595451285838582 +v -0.91732433980095096 1.2158188882752707 0.91040818743691687 +v -0.073070057045621251 0.70129665351789539 -0.9997444929585646 +v 0.022861437968325717 -0.050688938580010626 2.7593679478898521 +v -1.296064205769363 -0.98843520925203399 1.6516214310375994 +v -1.1237466132572289 -6.8257739546169889 3.0589269291456684 +v -0.602961328366035 3.9716991095024934 7.3544397349277668 +v -1.2346918931356057 -1.1516651890232446 2.1556939952594458 +v -1.8154726207734158 -1.331533120625539 -2.6170288933806147 +v -1.7104837436736096 -1.0943656960851678 -1.7539499976642392 +v -1.7450487617312664 8.8690531852183394 -2.0231633344364806 +v 1.044212156534688 -0.55264858547070361 0.26842825165309137 +v 1.2158294781293377 -0.54847303382766743 -0.2156654058978118 +v -0.46466443899810195 -0.78166234281955405 1.8758778145649355 +v 0.51624761624128546 -0.84474945454104344 -2.0887405581326632 +v 0.025667209013336571 -0.87169665436220878 -0.9116856053350616 +v -0.8853792273934229 -1.1122976112060232 -1.3505302281938705 +v 1.6103091822750655 3.6071432545114819 0.8876639845370442 +v 3.5506191231691226 -4.0113875095555862 -8.6828875835738337 +v 1.2246947528193717 -0.71548999759692911 -0.33005903028622829 +v -0.63522386382422891 5.2289027120551852 -0.58945148547711379 +v 0.19747006658636815 -0.32233500619011834 1.9367081056973143 +v 6.8209577246939981 4.9895853644804316 2.2585651350698353 +v -1.3420380019051814 7.5896632525527332 -1.7939387242420231 +v 2.2559219122515088 -2.9490363458587332 -5.8098617324482387 +v 9.8452195433092395 6.7765219339382865 3.6903023408435147 +v 1.6000306303599605 -1.42340630585711 -2.3631957211129881 +v 1.7854076664312706 -1.9494937356775073 -2.6860689978891781 f 1 2 11 9 10 4 3 5 8 6 7 f 1 2 15 14 17 16 20 13 12 18 19 f 3 4 25 26 27 23 22 24 13 12 21 diff --git a/results/search/topology_0/resume.planes b/results/search/topology_0/resume.planes index 0144f5af..3d811946 100644 --- a/results/search/topology_0/resume.planes +++ b/results/search/topology_0/resume.planes @@ -1,37 +1,37 @@ 36 -0.055741265416145325 --0.05387670174241066 -0.047867976129055023 -0.23108614981174469 -0.23014934360980988 -0.040142606943845749 --1.5595428943634033 --0.00028226233553141356 -0.18978756666183472 -0.18473120033740997 --0.80625849962234497 -0.058535158634185791 -1.1263444423675537 --0.21245014667510986 -0.39747083187103271 --0.42290449142456055 -0.45790714025497437 -1.1456525325775146 --0.35006269812583923 --0.030180029571056366 --0.14659228920936584 -0.56530702114105225 --0.86879003047943115 -0.4068642258644104 --0.13472923636436462 --0.81182712316513062 -0.23947291076183319 -0.098904281854629517 -0.69682461023330688 --1.078615665435791 -0.37846121191978455 --0.019625786691904068 --0.77492976188659668 -0.96597445011138916 -0.31244051456451416 -0.045523863285779953 +0.078788608312606812 +-0.076153114438056946 +0.067659966647624969 +0.22339087724685669 +0.22248528897762299 +0.03880583867430687 +-1.4753862619400024 +-0.0002670307585503906 +0.17954613268375397 +0.17575369775295258 +-0.76707613468170166 +0.055690489709377289 +1.0716066360473633 +-0.20212554931640625 +0.37815466523170471 +-0.49416655302047729 +0.53506737947463989 +1.3387023210525513 +-0.36461341381072998 +-0.031434495002031326 +-0.15268553793430328 +0.53783440589904785 +-0.82656872272491455 +0.38709154725074768 +-0.12818172574043274 +-0.77237415313720703 +0.22783507406711578 +0.10227948427200317 +0.72060447931289673 +-1.1154242753982544 +0.37295818328857422 +-0.019340414553880692 +-0.76366186141967773 +0.92901045083999634 +0.30048468708992004 +0.043781843036413193 diff --git a/results/search/topology_1/resume.obj b/results/search/topology_1/resume.obj index f94ea3d4..77d3f3d3 100644 --- a/results/search/topology_1/resume.obj +++ b/results/search/topology_1/resume.obj @@ -1,47 +1,47 @@ -v 7.6272337570764082 -4.4154973992090767 3.4331133419356767 -v 0.13407670285021087 -1.4802012542631013 -0.335136948720896 -v 2.2531930913123186 -1.4295891650393167 0.52615728918086901 -v 2.5364999593844484 -1.1593111988529252 0.58015119747939592 -v 0.52652714216457375 -0.48943016439003029 -0.40338334996823405 -v 7.3502236780744221 -3.8821535539748759 3.195216240062051 -v -1.1129236390849642 -0.17200080181991487 -1.1524753007691859 -v 0.64017115050778539 -1.0043021397766483 -0.2370770715540414 -v 0.050383256941140868 -1.0722532827262252 -0.46429013920373963 -v -4.5338602226842344 -0.074611626951548896 -2.5844440838191942 -v -3.3423924123379853 0.24272341288949234 -2.1672239286327901 -v 2.0492077812331484 -2.3427229569149564 0.22303567289474496 -v -0.3121374504094192 -0.82901029869608722 1.1581476670946111 -v 8.6378389219209382 -4.7927073803528257 4.0086716401299984 -v -2.8486222280018119 -0.63947655316036489 -3.0166210013687178 -v -2.509624927355167 -0.62300617801764291 -2.3079516992068467 -v -2.6014456060709104 0.79056320946686753 2.6129226945181268 -v -2.0980669408461239 1.0614390160276652 4.553712277221587 -v -0.64650813401593155 -0.73131325802857694 0.86997964734621736 -v -1.0423235238526962 -0.45526571660515464 1.1071833426322106 -v 2.1618410767654908 1.1228625890209294 1.4794827255651752 -v -2.3504033539711697 1.3163526981539144 2.2737772762971624 -v -1.9274639297817633 0.65033184799158661 1.9610618839933034 -v -2.2429293663593151 0.83496095370082757 2.0795175836826081 -v 0.11904799034446291 -0.83898861270508496 1.0853758346460569 -v -1.6651787482708265 -0.23253823465189208 1.5943450059812601 -v -2.7270137289316541 0.72196585651499301 2.1155425618291273 -v -0.93909900517772016 -0.12764351024397064 -1.3671373123167658 -v 0.83688408427112193 -1.0617578340745177 -0.39786938984725401 -v 7.5210582905985293 -4.2688824841219475 3.3737093215413116 -v -4.8215180067558299 -0.28151492769038755 -4.3656315933429193 -v -0.052959460356157485 -0.33997809607054352 -0.78187076101441244 -v -0.62297477198626194 1.009055541981114 -0.67268044755466216 -v -3.0488565419138953 9.3265311262392157 -1.9901568460836394 -v 1.4416821245480436 -1.4157881593346684 -0.070067192517415777 -v -1.5850968788961839 0.011128107142934314 -1.732428256458638 -v -0.44562056339084033 1.0254511700322562 -1.0083593123606143 -v -0.018331330750209061 1.1474371359866471 -0.75320386774726034 -v 0.97286133964476629 -0.8121774789414179 2.7805356575742963 -v -3.4529816853694379 0.5111972665639315 2.9364650567525712 -v -3.4808319617193653 -1.3486629407188953 3.9644246887253942 -v -11.881402044792125 -1.2006314729631944 5.5598321065839471 -v -1.1416682322555027 0.096986157415534152 0.90682676573477783 -v -0.70879825300927046 -0.66829559645555336 0.64461694671239833 +v 10.482101370335254 -10.391319978564059 16.406227126063602 +v -1.0005772922523983 -1.3929697138303141 0.64554571423144835 +v 1.696349720317659 -0.87148378835392448 0.7604869363657637 +v 2.813039493271158 -0.75252422504475691 0.94007466473743295 +v 0.62377041188486482 0.079047785224443348 -0.86144328898773481 +v 9.2145166461165928 -4.6296948032785545 8.1756102409657725 +v -0.53886340006945177 -0.099671415530104363 -0.9737350594357812 +v 0.063403750116778082 -0.53176281601902553 -0.20136253227449741 +v -0.46139680187592091 -0.57210771348664313 -0.30694459446863165 +v -8.2095987064543934 1.4862663604044626 -5.4785359608876663 +v -4.4732080794163949 1.2998623237896867 -4.0820855661219451 +v -0.27742366236714811 -2.9151032418394993 -0.87749119471249437 +v -1.7009341910541511 -0.42051350425785122 0.79964125481409887 +v 259.33440502367336 -188.62864614965491 402.138021210663 +v -5.8903066183594666 0.032236942020794017 -12.402363485703059 +v -3.8180703577767221 0.055054919419817883 -5.2223850294233589 +v -2.1940157910857021 0.80148667817383334 2.3229387406185564 +v -1.9645863030920563 0.75064803723374007 2.9773697265440049 +v -1.4433429395139488 -0.58204364196239988 1.2593878238227356 +v -1.3664883612528702 -0.70149079210073928 1.208951668682589 +v 2.0683267096626916 0.58721700502249607 1.8424579482439545 +v -1.8291384204532455 1.0689879611781434 1.8617377195959359 +v -1.591979417353137 0.54164450917704721 1.5018386634705738 +v -2.0426032840934814 0.84235157599497545 1.6805429950485955 +v 0.1746745600981256 -0.67624961581359921 0.77315561185753912 +v -1.2729305945454314 -0.17225527128770968 1.0144505198362421 +v -2.1651989481683604 0.84583416808287204 1.6727424582483819 +v 0.16014392427268614 0.0016378627998479319 -1.7043634198207425 +v 0.77645041850568564 -0.7762627114083801 -0.83970897444660375 +v 8.6004744666231829 -6.6729100102177572 11.292854656277349 +v -110.50099107831792 16.904547294733273 -192.62059562469312 +v 0.26054780433277341 -0.056315095273444297 -1.5435225627989571 +v 0.15023634866342328 1.0052177280446697 -1.4303784533619501 +v 0.81621831473370576 3.8569618046477658 -2.7290366250802216 +v 0.82944639359833894 -1.0375952176180165 -0.68460225150677734 +v -1.803517406950859 0.84298642996029516 -3.7793506171376605 +v 0.42869040400068142 1.0307747644176641 -1.8958012453079576 +v 0.98462915560242914 0.98219447151515804 -1.3870963820788718 +v -0.68777005100992783 -0.12941913614545872 3.4099063548783444 +v -3.234377957352808 0.64906817792228844 2.7410643426965482 +v -6.2776143358353274 -1.2077697668179612 6.0377083277260217 +v -21.342001599331613 1.0375554312992294 5.5490922187151437 +v -1.1830105532012392 0.28371451091197097 0.83790704186054688 +v -0.81174449898077516 -0.39933810912634016 0.26502303209295053 f 1 2 9 10 11 7 8 5 3 4 6 f 1 2 20 19 13 12 16 15 14 18 17 f 3 4 12 13 25 26 27 24 23 22 21 diff --git a/results/search/topology_1/resume.planes b/results/search/topology_1/resume.planes index 780f89db..a74b8066 100644 --- a/results/search/topology_1/resume.planes +++ b/results/search/topology_1/resume.planes @@ -1,37 +1,37 @@ 36 -0.24710020422935486 --0.13919217884540558 --0.59978258609771729 --0.51437133550643921 --0.96830809116363525 -0.26855811476707458 -0.19505812227725983 --0.44760873913764954 -1.2171275615692139 -0.26440423727035522 -0.14001137018203735 --0.34953269362449646 -0.35247933864593506 -0.038545422255992889 --0.60869807004928589 -0.37603265047073364 -1.0356147289276123 -1.883898138999939 --0.26010024547576904 --0.48252734541893005 -0.059397350996732712 --0.25867959856987 --0.88211369514465332 -0.1442427784204483 --0.03430885449051857 --0.51054829359054565 --0.13328051567077637 --0.42237424850463867 --0.15977425873279572 --0.23096315562725067 --0.066854089498519897 --0.036913961172103882 --0.068598717451095581 --0.27225929498672485 -1.1382550001144409 --0.088250793516635895 +0.098045796155929565 +-0.43639481067657471 +-0.32058650255203247 +-1.349274754524231 +-1.0339672565460205 +0.39270439743995667 +-0.068641185760498047 +-0.58796495199203491 +0.81628608703613281 +0.83455550670623779 +0.13699106872081757 +-0.47160637378692627 +0.83343368768692017 +-0.39390507340431213 +-0.9484362006187439 +0.1805804967880249 +1.4221460819244385 +0.96772474050521851 +-0.22979080677032471 +-0.33834919333457947 +-0.010101760737597942 +-0.20578861236572266 +-0.62045884132385254 +0.061365120112895966 +-0.056492771953344345 +-0.40294283628463745 +-0.10992005467414856 +-0.49079686403274536 +-0.019590297713875771 +-0.29471063613891602 +-0.12009944766759872 +-0.024608217179775238 +-0.12472820281982422 +0.021716725081205368 +0.90487796068191528 +0.06268087774515152 diff --git a/results/search/topology_11/resume.obj b/results/search/topology_11/resume.obj index 53eabb41..a28fa3e5 100644 --- a/results/search/topology_11/resume.obj +++ b/results/search/topology_11/resume.obj @@ -1,47 +1,47 @@ -v -0.27097876013763533 -1.0329588659003506 -1.3310218653689221 -v -1.2924144394698605 -0.61697161985003202 -0.17008448712158455 -v -0.64776340599187587 -2.4257021997191059 -3.5681720038796305 -v 0.13401707467107357 0.66178799522074572 1.4144768683705569 -v -1.5241494348708249 -0.28310100678280209 0.50615131487332643 -v -1.4122364979998323 2.6764236390400531 5.5592821896853488 -v 6.1900596574985869 0.066688948079273086 -2.242887709742325 -v -0.19782849019361881 0.60786822618131908 1.465723019689914 -v -0.28880473713000632 0.67551374031640932 1.6218648807520033 -v -0.71462462431962515 0.83890692281707469 2.0885590048814207 -v 4.5042490680261329 0.097939502853030616 -1.4564885099641809 -v -0.53400960213837179 1.650395385018953 0.77255281766518646 -v -1.3832466067216191 -0.80480786759932832 -0.2243365645985792 -v -2.742116083974576 1.7877726061814396 2.7485342916863282 -v 1.871822699085864 0.73900430190861222 -1.9139392118877123 -v 2.5402430424472606 3.8918220470886604 -0.2744508099658271 -v 1.2605551728103639 1.5457580223607925 -0.82844872047125573 -v -0.22036918615283313 1.1330171613395219 0.14313494528220483 -v 0.027329293649197152 1.4089591770181558 0.12556453466010342 -v -2.6308883717826133 1.7379411067960617 2.6189403048118662 -v 0.0071008571006052762 0.82480513757170526 1.152143413542098 -v -0.36885579576852601 1.0145783464298515 0.5035543435675639 -v -0.32918073157047495 -3.892479079440947 -4.3279909509095935 -v 1.016516946273839 -1.4040344236436717 1.1696853547304211 -v 0.086263172775444028 0.48410370833243516 0.98717190669262167 -v -0.12993950912628258 1.4074844775668407 1.430592294084271 -v -0.22348170028318082 0.64409766397528878 0.45646180503361511 -v -0.25458871450598974 1.701397188992215 1.447156882496945 -v -3.357358520049988 -1.2786992790495193 -2.9853980373397326 -v -1.6613477720017789 1.3770924116890118 -1.5991194251710834 -v 0.13023980641832586 1.5393903479109972 1.0240520697233095 -v -0.46467823988904072 0.89462911119437194 0.41203558571482768 -v -0.45023065695882425 0.75101472254064727 0.49672404509855844 -v 0.25940049221565187 1.5425321387094761 1.2169162060820975 -v -0.93646147665997759 0.66948802082049996 2.6830794585674251 -v -0.46754696207531099 -0.12001245579401151 1.8327592814730338 -v 1.3996179207290365 -1.6491083026968152 1.1427571190109609 -v -5.2773197648842833 3.0057021552645153 2.2524036423089648 -v 1.3578925272057645 2.7713841950181117 -0.86146269005837528 -v -0.024109301201346179 1.1013998290215394 -1.7346278823369803 -v 9.6029543069774199 -1.3580682130733241 -2.9665657996255925 -v -2.3100166008183067 1.6819999896517079 -1.4438690028801837 -v 0.97463857012936006 1.0977551230999651 -0.40595238154903557 -v -0.68554685666961301 0.83207632811929766 1.7943663269283665 +v -0.44093681963030062 -1.5625462892873525 -1.5124944846951431 +v -2.5974850092609452 -1.5768464439093528 -0.14588806641488369 +v -0.48883474585070846 -1.7171974223105844 -1.7198069403241438 +v 0.28117081960804213 0.48000348298619488 1.1679495375967313 +v -1.969229603426887 -0.33050876005825169 1.3688642957405952 +v -0.76967900101884357 1.4177537805128224 3.2886902392392487 +v 4.9268605738667173 1.0259990255539684 -0.98266312254526467 +v -0.051195259790075755 0.27044255214135438 1.0592514554630024 +v -0.25258644872267921 0.40304708072263601 1.3931336393245508 +v -0.81322149351384276 0.48085492894316778 1.8739533859383197 +v 3.9644469460608445 0.82288964438911505 -0.67573079795497792 +v -0.27518658853961286 1.5086635935772594 -0.061258049492469158 +v -2.763378168758964 -1.7768753578994791 -0.14160063489095909 +v -3.8344414366668844 1.6498441275647935 2.2777746001902082 +v 1.5450716242938569 1.2531373658951288 -1.3504047605540541 +v 2.8471326597075755 3.3769448712976917 -1.1033175332014034 +v 1.3693710383025051 1.6779575903121455 -1.023126574638223 +v 0.10409647982736653 1.212221691633818 -0.45315457259151892 +v 0.3912740992485369 1.4202943106237886 -0.53063030688270929 +v -3.4873684881601856 1.5426816914827468 2.002345743437921 +v 0.08376714809128756 0.54297387166697719 0.87757252017727116 +v -0.17309432328850105 0.99486198529139291 0.13656146657241075 +v -0.24474785894019005 -5.0322496490292838 -1.8506428742684269 +v 0.43616213597739445 -1.2434425725692788 1.5566560110358458 +v 0.094315899145273302 0.23951644254793844 0.82556521011491335 +v 0.052838440206896618 1.1307379183121105 0.94267918145117735 +v -0.079625241318162621 0.37485906664001972 0.27438386250200886 +v -0.0050979041296539294 1.4165396088813451 0.82874733360629294 +v -5.7687966166088263 -3.0471900567747428 -2.3743322236328188 +v -1.5768385417750237 1.2119558540434734 -1.7018554511634116 +v 0.41344568396295517 1.3653157666658451 0.45201034102452131 +v -0.48020904666251346 0.77963295120368914 -0.007740401950010245 +v -0.50486851061742122 0.55704634199442937 0.18221638176752697 +v 0.56790644640840793 1.3279280944848502 0.66755267925547002 +v -0.89146768970314272 0.40783465620573672 2.4039062589131355 +v -0.61570338985326178 -0.35629481645995081 1.8789036948644835 +v 1.5495028381115095 -1.6007132534669977 1.6976786957277139 +v -5.2669126690699946 2.2358726798524553 2.2010403087810215 +v 1.5876035926603267 2.3012777451613236 -1.2956368851389981 +v 0.41247629677702258 1.4655204320863084 -1.467061728050572 +v 5.7112846817816019 0.80088383038931465 -0.9055900418052184 +v -4.0922840103649287 2.2525459415015394 -1.9338036102933405 +v 1.1215575773553872 1.3041662252158519 -0.6747929921804755 +v -0.78679183154379495 0.51076067051811813 1.5316052131961269 f 1 2 4 9 8 10 5 6 11 7 3 f 1 2 13 14 20 16 15 17 18 19 12 f 1 3 23 24 27 25 21 22 26 28 12 diff --git a/results/search/topology_11/resume.planes b/results/search/topology_11/resume.planes index 653542dc..0259dd7c 100644 --- a/results/search/topology_11/resume.planes +++ b/results/search/topology_11/resume.planes @@ -1,37 +1,37 @@ 36 -0.0346633680164814 --0.13751602172851562 -0.079772874712944031 --0.32206356525421143 -0.26500996947288513 --0.37832185626029968 --0.098819784820079803 --0.04440578818321228 -0.044288329780101776 --0.65446555614471436 -0.19078730046749115 -0.43518617749214172 --0.52142506837844849 --0.87251299619674683 -0.52256274223327637 -0.0084143225103616714 -0.94292807579040527 --1.8167281150817871 -0.47811651229858398 --0.030116021633148193 -0.29162237048149109 --0.67075926065444946 -0.59700089693069458 --0.080158531665802002 -0.22236435115337372 -0.29651889204978943 -0.46490103006362915 -0.21274359524250031 -0.44717657566070557 -0.010644815862178802 -0.61786907911300659 -0.19175951182842255 -1.247017502784729 -0.2986437976360321 -1.2864575386047363 --0.22095771133899689 +0.10371469706296921 +-0.24803861975669861 +0.1610696017742157 +-0.38363298773765564 +0.30525705218315125 +-0.60219079256057739 +-0.11745963990688324 +-0.010014449246227741 +0.034608721733093262 +-0.46029564738273621 +0.39026540517807007 +0.39754942059516907 +-0.51522660255432129 +-1.0875720977783203 +1.3123074769973755 +0.17464220523834229 +0.074429936707019806 +-1.5600550174713135 +0.42606827616691589 +-0.031368862837553024 +0.2694544792175293 +-0.53124725818634033 +0.74208295345306396 +0.023811593651771545 +0.04763629287481308 +0.28073340654373169 +0.33514034748077393 +0.12850305438041687 +0.31905758380889893 +0.037791777402162552 +0.39261946082115173 +0.52164226770401001 +1.1089024543762207 +0.23948492109775543 +1.4144880771636963 +0.073736757040023804 diff --git a/results/search/topology_12/resume.obj b/results/search/topology_12/resume.obj index 2a42e291..944f6ae8 100644 --- a/results/search/topology_12/resume.obj +++ b/results/search/topology_12/resume.obj @@ -1,47 +1,47 @@ -v -0.34886915581499245 1.0750647108698685 0.5886794461349486 -v 0.38910681287312293 0.51277556581895567 -2.3228072486172588 -v -0.87141982356249115 1.089180334024455 1.0031270783759556 -v -0.60073415159989907 1.1110271266454481 0.91350302547571594 -v -0.40948594292986529 0.86587332019567265 -0.26749754394496583 -v -0.13586604342290748 0.80084531410684612 -0.73171848167430031 -v -0.68614403437830174 0.78245328195047636 -0.437918801255339 -v -1.4198808682512725 0.84296795437064798 0.31856523028513317 -v -1.5578367052216169 0.48368349435246216 -1.1289881854372008 -v -0.44195868914698899 -0.017664190958029527 -4.0350341441111341 -v -0.81226691856774658 1.0514270334507463 0.80113942109223657 -v -0.20163835032966901 1.3042817300523757 0.53474670592225559 -v -2.6373739902111795 -0.72501671554814173 4.1477547508951407 -v 0.01134090725321433 0.88163441162105782 -0.70737386476152109 -v 0.31838371100719853 1.916267960258403 0.039251313330298965 -v 2.1625019332682878 5.6140431547410028 0.63976647529378528 -v -1.1160547690428027 -0.70078488043901821 -0.027728598794749759 -v -0.72497325063639528 0.64437320453567015 0.96545080055201793 -v 0.20073235467830119 1.1943870716182821 -0.74912667783011055 -v -1.5563682458104255 -0.90128073283418686 0.88214712705713838 -v 1.3820168301395033 1.6805837179596284 -0.37012324263558982 -v 8993.6828698783629 -5780.0587415129803 6987.5787137599818 -v 0.56465936410057926 1.3541142079943727 0.29942425602830064 -v 1.9123849620959241 1.5343943047253727 -0.25630959587109409 -v 1.2977300982509663 1.8283175605595658 -0.57886641049435161 -v -2.5954898543191747 0.96112494492570477 1.5569799247716938 -v -1.0063651401608895 1.3740103356166298 0.59495279285046077 -v -1.4759680274937932 0.10892520689228165 -0.85024680606738523 -v -1.618826342943321 0.35695159823584105 -0.10105319915973299 -v -1.1350475402963489 0.90385150712838969 0.64515593910775693 -v -1.8472027160851598 0.3152029171173904 0.059071122281463495 -v -0.71301472735545501 1.1822694225621526 0.82575106817224619 -v 1.6477315779120143 2.0261440240020177 0.14668586910597892 -v -0.86993655056195685 -1.5966524533298332 -0.15509631117310474 -v -14.774966087581717 22.412329307787374 -13.527161891480924 -v -1.0469418653350619 -1.2015911553194385 -0.34056041541385973 -v 2.1796907434204003 12.645700142413823 -0.547205249052516 -v 1.8661497758498093 -4.0356034269115364 1.6763838243439737 -v -1.145787979781959 -1.0655110486772998 -0.21657118198105274 -v 0.91861503218365603 -5.7825055245711283 -0.076944732701235141 -v 10.344537914702521 9.3805846592496582 0.011854543404149986 -v 12153.550379798318 -39749.745511138048 18254.101483733801 -v 2.2352407535814911 4.1609876503925962 1.0507065351199527 -v 2.6589495007483825 5.0875445806635362 1.8094267141434284 +v -0.34290275076455784 1.0757063618407123 0.56009058979693016 +v 0.39160116254425453 0.51606267304780085 -2.3376981622075181 +v -0.85922266274155235 1.1041458962397273 1.0317541966694108 +v -0.46234552167599657 1.1361774859212879 0.90034814201600688 +v -0.40671434952588109 0.87014159537017721 -0.27836794166807421 +v -0.13673684859252561 0.80597925032319873 -0.73640915507904192 +v -0.6829650902397747 0.78684439388990357 -0.44853824274405851 +v -1.4289830512897588 0.84837192769468794 0.32060755901392701 +v -1.5678233605011467 0.48678420426985841 -1.1362256583195984 +v -0.4447918165331991 -0.017777444330450407 -4.0609012905595474 +v -0.75082036932464058 1.0548986970802119 0.74711385334393465 +v -0.2073303273564337 1.3213727200185417 0.5638311316436565 +v -2.6667235515511378 -0.72763599089356001 4.2119318073923875 +v 0.011413389455154622 0.88728603651452764 -0.7119085394749558 +v 0.31859121838227711 1.9173051202907807 0.027220301988413631 +v 2.1676761768953874 5.6250400495090629 0.62935258267268024 +v -1.145646657598266 -0.78245261655324672 -0.084887624536992501 +v -0.76465520237411577 0.52800015208792939 0.88266749540760747 +v 0.20201868836537842 1.2020432515504116 -0.75392897542877613 +v -1.5389633988464284 -0.91152345815841396 0.80508383041421383 +v 1.4000733034065782 1.7033177046257466 -0.35460819378636299 +v 9196.0543653922468 -5910.1076136992888 7144.7913139206739 +v 0.57778214244509885 1.3942248519418849 0.28935322941753827 +v 1.9280776402321365 1.5748487040399948 -0.26744029182509416 +v 1.3027702934802279 1.8738658755738236 -0.5955872889349989 +v -2.6243589371130129 0.97784363936110952 1.5914438308392391 +v -0.90654403579207321 1.4241651889030416 0.5515100733597682 +v -1.4813894947312842 0.1073783958070116 -0.86559396967699942 +v -1.6292038652146754 0.35923993971072243 -0.10170085211426416 +v -1.2232389052616253 0.81817325513372596 0.52448361550813649 +v -1.8590444864729281 0.31722357929436495 0.059450091316724851 +v -0.63704101088593823 1.2048919924801862 0.77532781442556165 +v 1.6437160617269129 2.0201735568505077 0.11927143842127486 +v -0.78897146276001595 -1.6840314311493383 -0.098161178363935786 +v -14.066124894197833 21.240821370857308 -12.866412296840231 +v -1.0550031384074838 -1.1950743809912181 -0.35904375352882512 +v 2.1829680774183902 11.88064312593476 -0.426617937583471 +v 1.8781128733057304 -4.0614738606586496 1.6871304650029424 +v -1.1667437325518972 -1.0412426110709452 -0.21888012184104522 +v 0.9245038246989199 -5.8195749115189166 -0.077438165680641546 +v 10.188786971107604 9.2615092727373991 -0.0047284694068577549 +v 11469.204889883275 -37511.79894243912 17226.322283099431 +v 2.2260617202861002 4.1362545535191 1.0153468690536216 +v 2.6194828136291322 4.9965791658295036 1.7198320728550942 f 1 2 10 9 6 5 7 8 3 4 11 f 1 2 16 15 19 14 12 13 20 18 17 f 3 4 27 26 13 12 21 25 24 23 22 diff --git a/results/search/topology_12/resume.planes b/results/search/topology_12/resume.planes index 3639029d..8d7254f6 100644 --- a/results/search/topology_12/resume.planes +++ b/results/search/topology_12/resume.planes @@ -1,37 +1,37 @@ 36 --0.14526612870796296 -0.91995413467964438 --0.21448943491704683 --0.51038126332954592 -0.28446319518843038 --0.18430435385263153 -0.15251452689694903 -1.1255307109591421 -0.73498944866244531 --0.39974920028373007 -0.83461916183708773 --0.35253247461843917 --0.06941825568673432 -0.017727745475050082 -0.1040144475178844 --0.6659483853986331 --0.27275651016793723 -0.63164895590513404 -0.11518737039016894 --0.11277554453973138 --0.32226208835435638 --0.55788990635626012 -0.74715854112234159 --0.60088304438606421 --1.3049146802609162 --0.58295378612238358 --0.40049713245823881 --0.056780235545631622 -0.065006147454917326 --0.11661132776468414 --0.66622848292166548 -0.29931878834620745 -1.0954590449480974 -1.1634742812000678 --0.093291882835675077 --0.53581544383332103 +-0.1461973637342453 +0.92585158348083496 +-0.21586443483829498 +-0.51365315914154053 +0.28628674149513245 +-0.18548585474491119 +0.1558263897895813 +1.1499718427658081 +0.75094985961914062 +-0.40231180191040039 +0.83996951580047607 +-0.35479241609573364 +-0.063989929854869843 +0.016341483220458031 +0.095880806446075439 +-0.67021751403808594 +-0.27450504899024963 +0.63569819927215576 +0.11592578142881393 +-0.1134984940290451 +-0.32432794570922852 +-0.56146621704101562 +0.75194817781448364 +-0.60473501682281494 +-1.3132799863815308 +-0.58669084310531616 +-0.40306457877159119 +-0.064972251653671265 +0.074384965002536774 +-0.13343553245067596 +-0.62814867496490479 +0.28221052885055542 +1.0328456163406372 +1.1709328889846802 +-0.09388994425535202 +-0.53925031423568726 diff --git a/results/search/topology_13/resume.obj b/results/search/topology_13/resume.obj index 90d2bdb7..c42b2181 100644 --- a/results/search/topology_13/resume.obj +++ b/results/search/topology_13/resume.obj @@ -1,47 +1,47 @@ -v 4.9569296070805677 0.87856953020276818 0.74192274097008948 -v 1.8920976796195297 1.4193630086951332 -6.9385016345660162 -v -0.89422368816230291 -1.7236327316638294 0.57217590319955236 -v -0.77897357848031534 -1.6477559169677252 0.47734206287055603 -v 14.685262904646162 0.37753386963103747 20.27401192037669 -v 0.84837160277305368 -1.3117228417243589 2.0705129476064807 -v 5.5251048576832709 1.1492350982194444 0.6867140437338195 -v -0.43303122086621088 -1.3633824819607092 -0.033076163024299721 -v 0.110838467500433 -1.3965682624574502 1.079515135319846 -v 1.2407925575415995 -0.50847354544753554 -0.42515168221895505 -v -0.59291235157727917 -1.4331286207808029 -0.043130719199547807 -v 1.4235212433942215 1.3657219077459393 -3.0786633152930003 -v -3.9102702199086208 1.9497609135653973 -3.257554414125992 -v 1.496613010610516 1.0701306772200321 7.5438000434618964 -v -17.398950838617974 3.5358354967232439 -7.7385015548144933 -v 4.8998502055940651 0.81071232845144081 3.4766337053144238 -v 2.0094333493959504 1.4155922412796227 -7.2697697181799619 -v 1.4987803380703788 1.2278150433485362 1.7121581683642448 -v -3.3577592284492281 1.8733780955179455 -2.6524602782706066 -v 1.439294479969484 1.4407075123058735 -5.9109739495751299 -v -0.53311776416133561 -1.4753080203986708 0.26323402770283943 -v -0.70078134202568421 -1.4130512317399488 0.20865174034068157 -v 3.5268177150658429 0.24037115686500266 -2.0098864068930471 -v 0.082762245984681224 -1.427575284879832 0.15544183255501906 -v 0.50600904431090266 1.3819077660122656 -3.0154394951407992 -v -2.7254584429648117 1.4619070399090137 -2.8184096410228241 -v 7.3610841214154741 -6.3199661322043905 4.9671437534947325 -v 0.1371155282846602 -1.4158375546538042 1.1001236226067819 -v 0.59216254971866011 -1.2130448782458025 1.9942131337936582 -v -0.75212764143306476 -1.0737624283147806 0.83447453033773211 -v -0.88587439972385307 -1.1400772823457666 0.55822054073009919 -v -11.742058225380166 1.8200626696655153 -5.1249202593862044 -v 5.9914113390133803 1.657423851265831 -18.556025066551616 -v 0.6853291378545483 -1.0909944951128328 -3.2272835577857832 -v 0.84662573014286124 -1.0840636596430202 1.448643030750522 -v -0.61636159995384066 -1.7591683721253315 0.1258363714278532 -v -0.69264328873686809 -0.95276923420623538 0.65186813156077017 -v -0.70843461505585248 -0.35342308577910592 0.62498725912472519 -v -0.24824227895211951 0.010539984508436009 -0.71945058598041067 -v 0.15227426464186192 1.3855557214751928 -2.8049857537017373 -v -2.674027299310906 1.4442786721555101 -2.2169034058402266 -v -1.1529987234835606 1.334865057691965 0.34323937180150144 -v -3.2795512865929441 1.4654633840564333 -2.4089788102722611 -v -0.448951524954183 0.14431172039337689 -0.93380060927750452 +v 2.8741756153485478 0.61705155881829687 -1.8881021271315179 +v 2.0945933448417553 0.99151436634547041 -6.5763969873378283 +v -1.0807156503775586 -1.9106085470042382 0.75985212150046921 +v -0.96551079428832942 -1.8339725559398701 0.6647717340519903 +v 8.3696327737694372 0.8273211199526086 14.146057926018493 +v 0.36897749513390804 -1.3320634925453945 1.8667725091927838 +v 3.5384440058262321 1.1084843451020918 -2.7321655344954858 +v -0.49192984507905807 -1.4726541273663158 -0.0024143306415487231 +v -0.021084634870162548 -1.4292025744760604 1.2195192273226974 +v 1.01417026990909 -0.61859834361880772 -0.36288166762922913 +v -0.67890412555979485 -1.5682964916480302 -0.019659302846253668 +v 0.88044050861438761 1.2301492994799323 -2.9919874289786699 +v -3.681291028234555 2.595630693635798 -4.3390706722409664 +v 1.4378002243720081 0.75746997280642103 6.835260229982584 +v -102.94299034422824 32.587828379211921 -42.49086333219617 +v 1.6751087021665922 0.84420100077261051 1.9209619375525582 +v 2.2725211239062038 0.95341224443579842 -7.0027410017654184 +v 1.4932589475006226 0.89953184654700358 1.8389211883980618 +v -5.4815707651586347 3.0809322921261377 -3.1778055352230936 +v 1.229895468814967 1.1885063956420774 -4.8779509221720563 +v -0.63510997695392879 -1.5853059955542586 0.35853498621998503 +v -0.83190424818172282 -1.5141303263867223 0.28616793576137678 +v 2.0946905728479233 -0.20107395766888234 -1.3928942733585261 +v 0.45256278351800139 -1.5992602259406303 0.31768064001036278 +v 0.49017378364187625 0.98654753625691982 -2.6884940249276674 +v -0.9044227148651468 0.92734655760683482 -2.5465444510972319 +v 5083.0911059889104 -2218.958629685445 2309.7858257515377 +v 0.15784313220962146 -1.5260040645841368 1.2896546637996751 +v 0.17265675992918667 -1.2473512089376706 1.8199096322312336 +v -0.94017734647961348 -1.0503532810582235 1.030979754605251 +v -1.1006223150563452 -1.1216697058451452 0.73296907423482138 +v -25.481772048617948 6.5921137507408263 -10.273238844927251 +v 63.264860098045602 7.7537695679920073 -155.62640849673241 +v 0.12127595569539175 -2.846469780942833 -1.3168571754823475 +v 0.39751937661859577 -1.1469009131982815 1.3990027182889331 +v -0.72874912741506648 -3.092529907589697 0.54841373334932109 +v -0.8646299599047137 -0.93467724643386096 0.83351808958494467 +v -0.88078595591469599 -0.47966488397485385 0.81593697512983776 +v -0.36252541575882813 -0.11015073342409891 -0.4858017486013847 +v 0.018441179574388601 0.95574249631251573 -2.2553955397913565 +v -1.9792816125103321 0.85038823264481367 -1.317945905722794 +v -1.3148442268356655 0.82319671052700438 0.59334079815493368 +v -2.1406255359808868 0.84524320135637476 -1.3623965724657778 +v -0.58075860082205055 0.060281043908274878 -0.72117467933722934 f 1 2 8 11 4 3 9 10 6 5 7 f 1 2 17 20 13 12 19 15 14 18 16 f 3 4 22 21 25 26 13 12 23 24 27 diff --git a/results/search/topology_13/resume.planes b/results/search/topology_13/resume.planes index 4dc5ba83..9e762097 100644 --- a/results/search/topology_13/resume.planes +++ b/results/search/topology_13/resume.planes @@ -1,37 +1,37 @@ 36 -0.41945621371269226 --0.92798268795013428 --0.23272278904914856 -0.15410579741001129 -1.4191570281982422 -0.038430493324995041 --0.056232180446386337 --0.70798438787460327 --0.63479834794998169 --0.65811991691589355 --1.2334440946578979 -0.61471354961395264 -0.56744670867919922 --1.1948031187057495 --0.017803153023123741 --0.44572010636329651 --0.018814779818058014 --0.1576605886220932 -0.034639619290828705 -1.3118293285369873 -0.035484012216329575 --0.066394761204719543 --0.39014285802841187 --0.28013300895690918 --0.39806818962097168 -0.024181274697184563 -0.77300238609313965 --0.07329888641834259 --0.2652343213558197 --0.096893347799777985 --0.68430572748184204 --0.098640687763690948 --0.28530550003051758 -0.13826234638690948 --0.25013014674186707 --0.46346434950828552 +0.48987239599227905 +-0.92959225177764893 +-0.15570555627346039 +0.37167593836784363 +1.2816979885101318 +0.040568321943283081 +-0.033823359757661819 +-0.74897468090057373 +-0.64466536045074463 +-0.74494212865829468 +-1.3286404609680176 +0.71902155876159668 +1.0438249111175537 +-0.76791244745254517 +0.37438246607780457 +-0.48482665419578552 +-0.024946417659521103 +-0.20010511577129364 +-0.035236213356256485 +0.88978284597396851 +0.024908250197768211 +-0.10388956964015961 +-0.38367396593093872 +-0.2645094096660614 +-0.44358626008033752 +0.022836118936538696 +0.9986451268196106 +-0.11198940128087997 +-0.33714306354522705 +-0.14028838276863098 +-0.73378992080688477 +-0.10583475977182388 +-0.34835773706436157 +0.099175401031970978 +-0.13172334432601929 +-0.34473335742950439 diff --git a/results/search/topology_14/resume.obj b/results/search/topology_14/resume.obj index 1a03a77a..50d93cfc 100644 --- a/results/search/topology_14/resume.obj +++ b/results/search/topology_14/resume.obj @@ -1,47 +1,47 @@ -v 7.2555810233739271 -7.9936012247216066 6.0319158343663712 -v 2.0352875494181699 -4.0746062077430318 1.2004163835860162 -v -0.63573575468117172 -0.46084705111426677 -2.1034963179852442 -v -0.46097558118149146 -0.13192110774664573 -2.1796908347358106 -v -0.67178758659665705 -0.21009261787667532 -2.2525376456957571 -v -3.7720365339314701 -5.8505766626789057 -1.0015126989106085 -v 21.254002475111623 6.882988397040096 5.8603798622486725 -v 1.4212404864663 -1.4181134844497345 -0.50324422463601692 -v 2.1860522405725229 -10.173766448333909 4.435427577584095 -v 1.7778574417507444 -1.6913855028953855 -0.1703164240722993 -v 8.9224257633048421 1.2687515549273101 2.1377670019810449 -v -1.5992381386151686 -2.3004022619080287 -0.9884153571708364 -v -0.74599431123595661 -0.63131335250983711 -3.0424596024612569 -v -1.7797424629275156 -2.3156256118687732 -0.96988739698269677 -v -1.9592436867648162 -2.6829889386249675 -0.51778620826630362 -v -0.012014833002168631 -4.1319087057549408 1.2685226774619487 -v -0.33861928281568171 -2.4580933135234688 -0.79275144192489821 -v -10.791342089556519 -1.383847085120385 -2.1279113791897513 -v 1.7766876603727388 -2.5662058265628325 -0.65710935937567616 -v 3.0795181659683131 -3.5564419893829404 0.56367543455751468 -v 0.72141936004850538 1.9762491751125351 0.42861500313652279 -v 0.17118603999132981 0.92309244259247036 1.1354740514501191 -v -0.88784816576284298 -1.0280368753451659 0.47483971643260386 -v -0.49172466522086489 -0.26785138597604441 -0.087253399114581492 -v 0.61372808265881262 1.7847997865945837 0.17612355779124247 -v -0.64677207529107794 -0.56903503212275941 0.22965754532375254 -v -0.7750268121879158 -0.8149549725317089 0.40608681050230055 -v 3.6400647164983 6.2641243262146356 8.7665740880094987 -v -0.50070591012160359 -0.14285105639968715 -0.050008074043599804 -v 0.98248270631366619 2.2751035231409182 1.9627236971461741 -v 0.37585418351789235 1.4446265611943432 -0.33571868957385753 -v -0.78807100917940298 -0.69579337779713968 0.34634071585899023 -v -0.4093293898788406 -5.4466932334798512 -5.2246040279828874 -v -0.38530250557099971 -1.5500136986473012 -0.29188468293143754 -v 0.40608062668034217 -0.66378709583289053 0.66530727275115442 -v -0.19723270163636328 -1.0319451534272974 0.32519235058982165 -v 0.68167382275437671 -1.0966016772179472 0.059116692653413183 -v -0.61785711877251537 0.84327460000927856 -0.330588109255186 -v -0.62250216636772193 0.75562510913667735 -0.49246607674332843 -v -0.88124585926443133 2.76726379834458 -1.3100145037196538 -v 0.98223515103198478 1.4977104220737096 0.51754150217028438 -v 4.8335292950954445 3.2295310393352188 2.8501396165513917 -v 0.3362143852815716 0.71082131206253596 -0.79656476210901106 -v 0.24037045619729877 -0.31338262889779989 0.45399525474588648 +v 10.302584199093538 -1.2502688565809597 3.1550440868079992 +v 2.4137542057206982 -1.8761024725357605 -0.12654023036498807 +v -0.79724413593855492 -1.2221027521387424 -2.0845496452793393 +v -0.19657295844960929 0.22796570314583522 -2.795061404740256 +v -1.0735028611428663 -0.037692030335776415 -3.0255629100620576 +v -5.8289776897685552 -11.109400592178567 2.3198465368606986 +v 21.836087569461846 6.4176472648480178 3.3283012771821241 +v 1.0987514288232616 -1.6068785365216387 -0.92935791614894292 +v 9.4317485527882816 -18.029028375277658 14.235621611447421 +v 1.3755589721277359 -2.1685208406803174 -0.41455988933505594 +v 10.12839531290385 0.55402467307243919 1.8375375073600879 +v -0.99014296069167129 -1.8666967233295479 -0.60614601121056522 +v -3.0442319628229249 -4.9534130495522559 -11.257408389705544 +v -1.4016850959216729 -1.7678568921628057 -0.33675444136896848 +v -1.1494708314333031 -1.5785852914377685 0.33531995241436241 +v -0.095522903826606331 -1.4655514092486328 0.87232722684396669 +v -0.39388534349838727 -1.8577004014047513 -0.48646875185844618 +v -18.015475766061151 -1.5464971023631713 -2.0897246983883617 +v 1.4045799557348739 -1.8770881770663634 -0.28137859129779208 +v 1.6622951893156066 -1.6982439039829251 0.35658241499348231 +v 1.0929028675469858 2.7175891679554773 0.034874746245447841 +v 0.44590724473266424 1.1348939880244324 0.94549517324787824 +v -0.40704948701998944 -0.74979369858277445 0.73565629246164987 +v -0.28945543983731298 -0.41720156401752534 0.25618683679174714 +v 0.92385446180115949 2.4043368749460812 -0.42789928839116048 +v -0.21408677588847422 -0.24737758678076488 0.25174021290831644 +v -0.27102613855513236 -0.4140022485150201 0.52290997519960092 +v 8.1925686119124919 10.419232211604717 13.253086155915108 +v -0.35799990681522487 0.012250027700637782 0.050488683587908922 +v 1.8242248860345782 3.240225330614356 2.0464855332125942 +v 0.58205473672639874 2.2999165723710959 -1.2439857552799798 +v -0.39555520183701182 -0.17290115122110913 0.32734973274924922 +v -2.4946780166299858 -9.9036547160922002 -11.136827297805539 +v -0.37458982008285024 -1.5230859593479906 -0.33522061250624319 +v 0.49695614432809659 -0.52499275417829028 0.7498459353012954 +v 0.069993463731933631 -0.72907616689031052 0.60889285016780492 +v 0.88377368822678282 -0.91958527101142606 0.082968182395416257 +v -0.61514929922523209 1.3266053189772631 -0.78201560051268371 +v -0.68110994979035755 1.134648244541886 -1.1039828191847736 +v -2.2929710347448542 8.8178698436204854 -6.4360922773367211 +v 1.1147108969876749 1.9319845877996427 -0.092193228841080721 +v 13.356659005709814 6.1794884287388836 4.725369404782314 +v 0.46766609968544448 0.85726062361709066 -1.8353951037512974 +v 0.22103239728622731 -0.07820906284475361 0.37875376755019263 f 1 2 9 6 5 3 4 7 8 10 11 f 1 2 20 19 17 16 15 14 12 13 18 f 3 4 13 12 23 27 26 22 21 25 24 diff --git a/results/search/topology_14/resume.planes b/results/search/topology_14/resume.planes index a175cccb..841a703f 100644 --- a/results/search/topology_14/resume.planes +++ b/results/search/topology_14/resume.planes @@ -1,37 +1,37 @@ 36 -0.69065392017364502 --0.66470587253570557 --1.2853970527648926 -0.0018144443165510893 --1.8688504695892334 --1.5178492069244385 --0.26902133226394653 -0.14418651163578033 -0.0054133771918714046 --0.31593108177185059 -0.17788740992546082 -0.019109206274151802 -0.12584784626960754 --0.7611382007598877 -0.60066014528274536 --0.50248724222183228 --0.048171456903219223 -0.04050137847661972 --0.10422555357217789 -0.84130847454071045 --0.45253920555114746 --0.090151824057102203 -0.032553613185882568 -0.12467821687459946 -0.70983856916427612 -0.28978708386421204 --0.52248495817184448 --0.042561065405607224 --0.25581678748130798 -0.45983311533927917 --0.051480576395988464 -0.086639881134033203 -0.18403996527194977 --0.072584949433803558 --0.11424138396978378 --0.21200336515903473 +0.70859885215759277 +-1.0317776203155518 +-1.5066791772842407 +-0.071062415838241577 +-1.5857479572296143 +0.47325119376182556 +-0.099737465381622314 +0.044430434703826904 +0.0063584465533494949 +-0.28069469332695007 +0.15090230107307434 +0.062840789556503296 +0.17771376669406891 +-0.74913704395294189 +0.54634702205657959 +-0.3493691086769104 +-0.016708530485630035 +0.081536047160625458 +-0.16840894520282745 +1.3782316446304321 +-0.78720110654830933 +-0.078567542135715485 +0.067715473473072052 +0.13994587957859039 +1.1232492923736572 +0.10954076051712036 +-0.48446407914161682 +-0.037965606898069382 +-0.14221867918968201 +0.31948155164718628 +-0.035012964159250259 +0.12932810187339783 +0.18174082040786743 +-0.072395317256450653 +-0.099127680063247681 +-0.076111949980258942 diff --git a/results/search/topology_16/resume.obj b/results/search/topology_16/resume.obj index 7a3333bc..3ebbf5e5 100644 --- a/results/search/topology_16/resume.obj +++ b/results/search/topology_16/resume.obj @@ -1,47 +1,47 @@ -v 1.1752602775036536 0.34647304266758405 0.36193700941648105 -v -1.2120853243901344 0.61495396469013797 -0.80162298800723109 -v -1.2994179745639023 -0.19609844362494133 -1.3395521072671621 -v 0.51921301531836617 -0.045073984387767413 -0.23861716785574605 -v 1.7106645669756948 -1.719382207607429 -0.58743950941907852 -v 1.7936224561737451 2.182879076964324 1.8134808157202635 -v -2.420064161756494 -0.60990758924210997 -2.2115098701074229 -v 1.1083401027354838 0.23048209043518406 0.25478359880323248 -v -3.1130798214840643 3.666025208612167 -0.015954354205020227 -v -0.64675106104008095 -0.019558689429151684 -0.87062312044404377 -v -2.7106759368068047 3.6319337074425899 0.18690819207053622 -v -4.394789196870156 5.3987625232286653 -13.114961821351365 -v -38.353656470274601 29.8230440187121 -79.770558115920963 -v -0.88887448065657004 2.4806114014673835 -5.2690795060459479 -v -11.807284707172602 2.4244951833290131 -7.4683429384095774 -v 0.033219215372301651 1.4856908207168131 -2.6525364465154828 -v -2.8604669040849484 0.92874558919248562 -1.9172794520818599 -v -0.35141592596413718 0.73077210826254002 -0.89913208219996998 -v 0.04436556912135281 0.57496434348808811 -0.43559691522183075 -v 0.271015985980123 1.4612280919211551 -2.5421813980392649 -v 1.6145188167011058 0.17344330336827068 0.20860767653993267 -v -5.2329339622038527 1.2734712912111221 -6.7600147987641419 -v 1.145161071293944 -0.20860686091794292 0.50496394075320783 -v 0.85345687244186241 0.12814691002481676 -0.28240708033830603 -v -0.29515306256524154 -0.16319855511050571 -0.646163024194913 -v -2.7582228802173421 0.079694009352081027 -2.8942867737186897 -v -2.9227442251343585 1.3059548351471451 -5.0918639892413005 -v 1.9015883994795921 -1.8848543490370393 -0.16382864294996136 -v 1.3676129512220536 1.5817655907523336 0.32700639681099686 -v 1.0787195410218746 1.7178714086338553 -0.37771883693499941 -v 2.5898809210624387 4.1921066888504361 5.085913043993556 -v 0.97287336161502103 2.219577573221887 -0.38387555595121103 -v 1.5307664604441953 0.50482040802039219 0.16714025037330027 -v 0.23819819039899057 -1.3408924385729215 -1.1144750543683843 -v 40.918216531631757 -42.247026496827786 106.38664562529307 -v -6.2311511002381161 1.4856338717878037 -6.9817093765221268 -v -7.1574213682227441 0.82663636917798422 -4.5750726323926694 -v -3.4725175398500072 -0.17039500195944693 -3.1040013358805152 -v 1.4305917327540258 0.97918806953931714 0.69847364417466729 -v 1.1107611234546642 2.1393698376170427 -0.46556360735778601 -v -0.81258658525631178 -0.017618866973779287 -0.96009261485044017 -v -1.0848520422096453 -0.048285778774818884 -1.207939015747028 -v -2.7442814075199187 -0.086439411329638588 -2.6039034870473916 -v -1087.704651831775 70.627627950674466 -601.78305396696339 +v 0.94077466261063669 0.69237566212006185 0.28966027654065951 +v -0.57958171449494578 0.77884479520713246 -0.54182203771583759 +v -0.94387278166119704 -0.041850893381968714 -1.2740166636707715 +v 0.014457665119222569 0.026345020721262883 -0.67218602158830354 +v 4.2725514505830251 -2.4013672286342467 0.27221378379379912 +v 1.4561628981148833 2.4264572510916111 1.6884848728654616 +v -1.9312522371880982 -0.63845165945183535 -2.2274798916072491 +v 0.69782231625806812 0.25967413033674042 -0.12604196817141233 +v -0.21717580495741523 2.8149792402255862 0.95915000761269753 +v -0.70670097662723519 0.054937208846863865 -1.0744564180910428 +v 0.62645795602852183 2.7635104981044103 1.4183238244303276 +v -5.9000332362761059 4.0310475762003799 -11.574171164397901 +v -9.9700794563987607 5.3039185148664254 -16.667847700646789 +v 0.75717648477371446 1.3203958947407972 -1.511430343446257 +v -8.6070220520261067 1.5132347662109693 -5.6971261702862037 +v -0.052303986623904501 1.3954289734510457 -2.033979618887213 +v -0.99492605261316902 0.86209661104131918 -0.93318059826590261 +v -0.74658679846455733 1.0227973889734845 -1.2787950147865257 +v 0.095110895018998998 0.79143353181648879 -0.31316984396487335 +v 0.6597270269707759 1.3540070527060197 -1.642020980364852 +v 2.6284271347133514 0.27104192714312825 0.87407477024783753 +v -4.9437709409050807 1.0717816645191229 -6.0569103695501907 +v 0.90382472145403059 -0.25725015436221088 0.44971698913046176 +v 0.50569910128957507 0.15420515256917813 -0.51457237859715232 +v -0.55381554596613192 -0.050141152470518834 -0.97051603934990516 +v -2.8977071812573363 0.4362600041217336 -3.5033467041696484 +v -4.2470883065640423 1.0838192210099715 -5.5584260759123021 +v 9.1151956476821425 -5.1431754770196454 6.4053790151123176 +v 1.3153891868901355 2.0216115699366415 0.76338995775268959 +v 0.63482225591609887 2.013313129458902 -0.70520767708691046 +v 1.4967446488184581 3.2072397687077205 2.9786670759747329 +v 1.0445035889223027 2.1841390336675524 0.43442963162660808 +v 1.9633966299254495 0.79297518336735429 0.25592564259539197 +v 0.10970115650464578 -1.3542375063490362 -0.98923810039969295 +v 9.9774378580876046 -10.585230880983996 22.666815792434662 +v -5.1482394411054262 1.1163787277732706 -6.0979391764370661 +v -6.4581058443354209 0.75230779656983393 -4.3710994557132965 +v -3.3213058542856224 -0.14707034069121946 -3.0826834874252507 +v 1.2890338022131278 1.4092493734835425 0.86113808369176104 +v 0.62664762001192209 1.8081858054462014 -0.67105140812975195 +v -0.77746599617650403 0.10196734612260529 -1.1222637966435807 +v -1.0595341988552565 0.087798402751911919 -1.4269204394591548 +v -1.2749255541755902 0.1081188106269008 -1.642438541377953 +v -85.618281609259867 6.4325211400738667 -49.006505327092526 f 1 2 9 11 6 5 7 3 4 10 8 f 1 2 17 19 18 15 13 12 14 20 16 f 3 4 25 23 24 21 12 13 22 27 26 diff --git a/results/search/topology_16/resume.planes b/results/search/topology_16/resume.planes index a69997ba..c5a1184a 100644 --- a/results/search/topology_16/resume.planes +++ b/results/search/topology_16/resume.planes @@ -1,37 +1,37 @@ 36 -0.16590161413985705 -0.18030557161646743 --0.29878638275657027 --0.029298019370447157 -0.3330242414405396 -0.13695482264678124 -0.1185074548930998 --0.26883530738915129 --0.15888370585447742 -1.3336474855107121 -0.27530635302300521 --0.49354153518684624 --0.20748751042917496 --1.4843925140083145 --0.48632203192603168 -0.78170870183655716 --0.13150284954483221 --0.34584939473816945 -0.10052474723200817 -0.094065990388205581 --0.12206806135376141 -0.080126624695686793 --0.04263523768404022 --0.082745688212690724 -0.21004318542712924 --0.097547176719037551 --0.39143896139764933 -0.27927028619007038 -0.3463395989416615 --0.46481275458350857 -0.6483207250081271 -2.0700200210029118 --0.93815586852820076 -0.064282436830485443 --0.12232637129683299 --0.073071320957736982 +0.23346954584121704 +0.2536914050579071 +-0.400514155626297 +-0.081720180809497833 +0.57661247253417969 +0.20938867330551147 +0.11358498781919479 +-0.24809369444847107 +-0.15275555849075317 +1.3898493051528931 +1.0013936758041382 +-0.64973241090774536 +-0.22423651814460754 +-1.4696091413497925 +-0.47992980480194092 +0.59112828969955444 +-0.06910618394613266 +-0.27354592084884644 +0.15724751353263855 +0.082151599228382111 +-0.14940926432609558 +0.1238173246383667 +-0.023453742265701294 +-0.11354623734951019 +0.27763113379478455 +-0.095064952969551086 +-0.50447213649749756 +0.30507925152778625 +0.35336565971374512 +-0.4960845410823822 +0.54826092720031738 +1.7694135904312134 +-0.80897891521453857 +0.092974245548248291 +-0.1443374902009964 +-0.10652861744165421 diff --git a/results/search/topology_17/resume.obj b/results/search/topology_17/resume.obj index 96a27ad6..231dba41 100644 --- a/results/search/topology_17/resume.obj +++ b/results/search/topology_17/resume.obj @@ -1,47 +1,47 @@ -v -0.93245140986426112 -1.6914220190398468 1.674376262177969 -v -1.4571836142886769 -13.460698832369037 5.2760152547283816 -v -0.52450704569533502 0.25324216991036108 -1.140865485047307 -v -0.58093829855429524 0.62085485159478848 -0.75008731944646101 -v -0.78078141740334905 -0.62916925943855373 0.62841107276556563 -v -0.54484125299965913 -1.3194878326897339 -1.0036530406579514 -v -0.25743288748875587 -1.2053238498859247 -2.9897213384442396 -v -0.33797391384345654 0.98199993788208095 -2.4284773453619617 -v -0.62317176703672772 -0.81622073102048132 -0.46124048157034531 -v -0.68665282049620724 -0.17872335701636741 -0.021170791448908099 -v -0.51090572834150427 0.80527353957113257 -1.2337004991445706 -v 1.6567033803967084 -0.33177175390397573 -0.73392018266669057 -v -1.6972826074541356 2.7138060608524488 1.0836394438131993 -v -0.82317772278420076 -1.4494910107321832 1.5227430185060835 -v -6.850844346869132 11.094132192416039 2.8739307141748629 -v 16.099519202669299 -4.4799819618648407 -10.989599952772506 -v -1.5012909909535366 -1.5861845994375585 2.0940531540690723 -v 1.8654544078788893 -0.31697275611257814 -0.90240265244788109 -v -0.043420925325233006 0.48133440258283006 0.38533220102909604 -v -0.37131698033385047 0.24044296994002262 0.70893493050428846 -v -2.0255822255651981 0.27531466710321795 -1.8541583749633925 -v -1.3289727978791253 0.47825692659412694 -1.2804196593637083 -v -2.083155001821186 1.8331838869157604 -0.10879802663970312 -v -1.5055782235552508 1.1192309250197672 -0.6375284307567799 -v -0.54772419856383314 -1.2596612148188198 -2.8747737915496745 -v -0.38618114360476724 -1.2349548505635821 -2.767177046470259 -v -0.18769885584659066 0.53852891404993397 -0.6503718671319072 -v -1.4685628022751378 -0.89372371623213498 0.13576162784154927 -v -1.2226087630467379 -0.035528470822023241 -0.56627166297969334 -v -2.2609930307177106 0.0044886085051476562 -1.8154446527876384 -v 1.4491230960388963 -1.1260637863641152 3.7836246192232048 -v -0.0090053265087141239 0.57524153615185158 0.1374503444009556 -v -0.18495556171905492 0.36137838034296954 0.17954623048612195 -v -0.3245313870958037 1.247870090211497 -2.37050248488028 -v -1.7417720070945981 -1.5866875360999466 0.80877165937947737 -v -1.3179646055954488 -0.90148359738855566 -0.07529969248557955 -v -0.59243351826489588 0.97809746704976652 -1.8786849394683225 -v -2.2812305542801852 -1.5641075208623443 -2.1835364146760545 -v -7.1931343779083328 -2.3201558634861978 -0.19928770209170166 -v -1.8862537615299237 -1.0913991347437173 -2.2440899057371642 -v -8.4719612386062018 -2.7138682878779821 -0.6385660565413378 -v 13.217144758333365 0.47855509110240424 17.675309046469557 -v 1.8448722484704274 -1.013231992872986 2.4249428433625537 -v 0.45641062166108143 -0.17905207300825715 1.389486975848756 +v -1.3179511180471446 -1.9532260383155311 3.0863648991600892 +v -1.343507508897188 -4.5712194104160941 4.349600455837753 +v -0.82959367501703507 0.1075326585002902 -0.76156027270877558 +v -0.85770627364842766 0.21734437032851653 -0.63668922515085935 +v -1.0435062215860067 -0.58179245067342877 0.83367717602313984 +v -1.1704116578155874 -1.5491023415044616 2.0162690347293379 +v -0.28668124264927974 -1.6502966807142707 -3.3265799035033146 +v -0.53701016523817002 0.9754424894021485 -2.9117833771404666 +v -0.92865193066230523 -0.76243797011865067 0.21014703809268187 +v -0.93061706569782021 -0.127518155606863 -0.046466928711661692 +v -0.57793211865927796 0.93479699391814175 -2.6452012938126841 +v 0.95216671131417163 -0.1182835147920842 -0.28288335164840644 +v -0.16095774493608875 0.87262390241120835 0.47726372663829425 +v -1.0676423258082566 -1.4645401559491216 2.5797713255421595 +v -6.1809521804526817 11.766068752453002 1.9773971405793549 +v 11.530818474105534 -1.1999521708425647 -11.439295539456534 +v -1.7474342262118361 -1.6526753101545522 3.418235283354468 +v 1.6094208407926827 -0.10103487339893176 -1.0158749564398017 +v -1.1565177639652298 -0.78332874896408422 2.3564231720642743 +v -0.14166047323293479 0.24916547041767437 0.75010111122152145 +v -2.1890975588881978 -0.33459657347973254 -1.8925931569331393 +v -1.3923499868766314 0.033675750477720451 -1.0936918212477025 +v -0.76560024275308303 0.58835799265852329 -0.13498116901102139 +v -0.66817338973093143 0.47650782327673191 -0.23282242890440355 +v -0.69327372757931305 -1.7817715611178766 -3.0581462892003355 +v -0.44070805622053472 -1.6660599314762208 -2.8061805909090065 +v -0.49255142704291061 0.41909413760737824 -0.22945743142109062 +v -0.93379464188466343 -0.50922967668968477 0.89930171458389474 +v -0.71917052304969664 0.07685066893096873 0.12560705568913821 +v -2.5154414707738391 -0.73905494136012684 -1.7046984087756094 +v 0.45544327911216059 -0.7653271212332512 4.1166969257798707 +v -0.72148290938385995 0.099637467311949335 0.074835088377008585 +v -0.49659486031240657 0.38975784303145389 -0.077805623655130329 +v 0.71190270849358994 1.9692730225248611 -3.6819289725399238 +v -1.8035168770047609 -1.6888721987278679 3.2331039168593527 +v -1.0722754857540893 -0.4850552110596178 1.1287569207946142 +v -0.41653910459387067 0.48681292346684263 -0.68612848201640475 +v -2.9827921089980061 -2.309521167603577 -1.5270011010781464 +v -5.6608266754941017 -2.8193611232559683 0.27387653457992289 +v -2.8957385278218775 -2.1987120687715156 -1.5768537733086534 +v -10.165282781617101 -5.1614661259132557 -0.70178179168825849 +v 7.9567865807310802 2.5064023521782106 9.5711347926754389 +v 1.0784275363416636 -0.65557919540370202 2.5775383610641316 +v 0.03978870228450835 -0.016311174103208387 1.0743030293526143 f 1 2 6 7 8 11 4 3 10 9 5 f 1 2 15 16 18 12 13 20 19 17 14 f 3 4 22 21 25 26 12 13 23 24 27 diff --git a/results/search/topology_17/resume.planes b/results/search/topology_17/resume.planes index d53e40c4..0fa7e92b 100644 --- a/results/search/topology_17/resume.planes +++ b/results/search/topology_17/resume.planes @@ -1,37 +1,37 @@ 36 --0.6755184531211853 -0.0002062972926069051 --0.097743920981884003 -0.22393372654914856 -0.076992549002170563 -0.28421834111213684 -0.22698049247264862 -0.52532792091369629 --0.46140861511230469 --0.25589269399642944 -0.2539999783039093 -0.22084954380989075 --1.0339903831481934 --0.29822516441345215 --0.72681671380996704 --0.99077457189559937 -0.54003423452377319 --2.2468440532684326 -0.21252226829528809 --1.2184857130050659 --0.039286918938159943 -0.1237698495388031 --0.52196556329727173 -0.10750386118888855 --0.2983136773109436 -0.25639641284942627 -0.055715285241603851 --0.37660139799118042 --0.24811741709709167 -0.30510428547859192 --0.20388036966323853 -0.48767814040184021 -0.15644465386867523 -0.11328992247581482 -0.25590696930885315 -0.054250255227088928 +-0.91795408725738525 +-0.063719585537910461 +-0.15062673389911652 +0.32170522212982178 +0.13761216402053833 +0.29170280694961548 +0.084478765726089478 +0.24680499732494354 +-0.19802157580852509 +-0.36625933647155762 +0.38315939903259277 +0.1886456161737442 +-0.42401638627052307 +-0.16025647521018982 +-0.23901847004890442 +-1.5673397779464722 +0.20940558612346649 +-2.2714629173278809 +0.4173978865146637 +-1.1070547103881836 +0.090007200837135315 +0.14274564385414124 +-0.32467284798622131 +0.12035608291625977 +-0.4699157178401947 +0.39819201827049255 +0.064499102532863617 +-0.47066432237625122 +0.15695494413375854 +0.39194563031196594 +-0.22110097110271454 +0.38132086396217346 +0.10541202127933502 +0.060258317738771439 +0.1865323930978775 +0.037690415978431702 diff --git a/results/search/topology_18/resume.obj b/results/search/topology_18/resume.obj index 9939a4a8..bfe69792 100644 --- a/results/search/topology_18/resume.obj +++ b/results/search/topology_18/resume.obj @@ -1,47 +1,47 @@ -v 0.089324284736971765 0.44531306031166262 0.45949895623130799 -v 1.6198124393223032 0.27629604331430369 -1.2016077135294743 -v -1.2766268954266977 1.594800825544626 -0.480155425339232 -v -0.99661013532526632 1.4726642697670644 -0.5628340835763862 -v 5.4399725758785227 -1.9031281478964672 -1.0848964202162177 -v 4.0182591007284918 -0.77053470905621113 -1.9081165579310593 -v 0.28541306455477483 0.26013936466673948 0.64328665868612123 -v 0.38491458167012227 0.17764707919970094 0.7087245923171086 -v -0.82801054941958341 -1.2601636516119858 5.8374304392190739 -v -1.5348773506917044 1.9118927537072805 -0.89979079655340455 -v 3.4672757254553614 -0.64118921237933268 -1.4762515141985315 -v 2.6486416915554729 0.8170668224975024 -1.5172994190960722 -v 1.6342564313999912 0.15680502999988444 -1.3615838874293009 -v 3.655068706613454 -2.1566101477187858 -6.1132361139937448 -v 0.11960796794739113 0.53390854780259156 0.539161068002039 -v -0.65316192281299468 -0.53151839412301261 -0.03060568260663378 -v 0.97387674467792462 -0.043788874607601419 -0.97962340712988361 -v -0.56554077048892581 -0.72296258434011451 -0.34818079068241869 -v -1.1353874604794103 -0.66310915302951434 0.26653337343402878 -v -0.91851569636886599 -0.32861593710741377 0.46987159067455619 -v 4.6752703316608111 -1.6257972498900679 -2.3189707192820945 -v -1.4711154705803051 0.72014615912240043 -0.54784835198087134 -v -1.5931382475745657 -0.47769649202126468 -0.67496021089883496 -v 1.5253401966439348 -0.91672735449217857 -1.4756099271431262 -v 1.2450017396262925 -0.38242715440679076 -1.3391078856001855 -v -0.84246378404322497 0.67010401275781228 -0.70423525237911155 -v -1.9109772422441385 -1.0173551529755245 -0.66956427639312455 -v -3.883191763938906 7.4191888559329531 -1.9646380211803685 -v 1.7749559949581959 3.1039417720783269 1.7700387666021549 -v -1.145157001196508 4.9221904760958983 -1.1321440116563133 -v -1.6604707998545105 5.1489204836536198 -1.8687533213694796 -v 3.5880886858785108 3.1518930534992946 6.3782796398220505 -v 1.3745342139163887 4.4294517002840221 3.938109874478708 -v -0.61300478342953801 2.7288874099291816 0.11462665330571331 -v -0.92223073445436587 -0.66091968483431018 -0.22027662362207362 -v -0.86343630787376213 2.1713343246722654 -0.077675817659410451 -v 1.0621399460171197 -0.28539730932299312 -0.92887229843918662 -v 0.84022862980877244 -1.1247518995733055 0.79136547989545947 -v 0.40602265410897947 -0.041357740657322638 0.67603900518745008 -v -0.16971652981239294 -0.79724025573313573 -0.43339210460968636 -v 0.65634015845889049 -0.66711375716783816 -0.69959963137818071 -v -0.5607707830933667 -0.86003945112384539 1.0740450142270594 -v 0.83673288510509758 -0.92494498206178977 -1.289233283040673 -v 0.82319419855723952 2.0877795380776392 2.1698678885868108 +v 0.096217770711044565 0.48056133312762767 0.49558502107739494 +v 1.7481683149666696 0.29813090060353398 -1.2973501916003503 +v -1.377273752584389 1.7205319123249461 -0.51800989677066744 +v -1.0751809345487262 1.5887663191667838 -0.60720681103368712 +v 5.4977883509742771 -2.0151041156110452 -0.76062907690470349 +v 3.8767030828761109 -0.72368317596307385 -1.699292127840029 +v 0.31147704757591282 0.2775318405789669 0.69674005653157534 +v 0.41508137306268816 0.1916380951965066 0.76487623457498 +v -0.88785256601545681 -1.3600703014903939 6.2916374635912256 +v -1.6558842637205877 2.0626228967049025 -0.97072867973598176 +v 3.7406292298032087 -0.69173931093413166 -1.5926363907198717 +v 2.5611712169944707 0.68904641939504996 -1.5913845488825249 +v 1.7636628540121133 0.16994953402989668 -1.4689612247402406 +v 3.4485931535771921 -1.9330080033288148 -5.643875258439615 +v 0.12913041621347982 0.57684786691966727 0.58216268106460789 +v -0.70523873912668689 -0.57350647041471703 -0.033021488810415812 +v 1.0535431476596875 -0.045671343989493754 -1.0581312273445833 +v -0.61059748020356763 -0.77987138057264427 -0.37552932849229409 +v -1.2250628127400027 -0.71533146788739088 0.28731661626119398 +v -0.99129291561300525 -0.3547753831514382 0.5064984975731448 +v 4.5062368092800886 -1.6555028644713214 -2.3607921810274473 +v -1.5875247973138569 0.77695525191391834 -0.59093286182759863 +v -1.7191632596926043 -0.5152794157051751 -0.72806140939334796 +v 1.6489595233883692 -0.98890191148388962 -1.5927334987058206 +v 1.3451335690650816 -0.40983664167504535 -1.4447949207549833 +v -0.90888201000535473 0.72293370256996881 -0.75975583012015924 +v -2.0616351603226413 -1.0975615722484844 -0.72235154917642486 +v -3.9281618874924371 7.2775896872063761 -1.9657610887649142 +v 1.7308879028370592 2.9616547689577386 1.7695111597792272 +v -1.105207649499353 4.7823943161986309 -0.91849259837678643 +v -1.7728053028057871 5.0761268317724459 -1.8727823365923388 +v 3.4686912076479981 2.9966929132259725 6.160256152118448 +v 1.3510979294526535 4.2188672968693366 3.8258716588809145 +v -0.65970795051262543 2.9462356562828136 0.12526134509113679 +v -0.99524851860827057 -0.71297875268176558 -0.23745405921348198 +v -0.93088839095443132 2.342487739362543 -0.082973901823860441 +v 1.1484530925469294 -0.30547434974668669 -1.0035582420936295 +v 0.90893444102750987 -1.2142242655441946 0.85674304913806121 +v 0.43956140833630125 -0.043084196769175014 0.73207609133260421 +v -0.18309658252290392 -0.86009327651407519 -0.46755985366970282 +v 0.70808483632046848 -0.71970771043785498 -0.75475472746991301 +v -0.60498093022185939 -0.92784342112242002 1.1587207783696249 +v 0.90269947358921376 -0.99786598405100524 -1.390874258913863 +v 0.88809332370568439 2.2523764726007953 2.3409364101838857 f 1 2 8 7 9 5 6 11 10 3 4 f 1 2 13 12 14 17 18 19 20 16 15 f 3 4 26 22 23 21 12 13 25 24 27 diff --git a/results/search/topology_18/resume.planes b/results/search/topology_18/resume.planes index 03ff0bdf..562a02e5 100644 --- a/results/search/topology_18/resume.planes +++ b/results/search/topology_18/resume.planes @@ -1,37 +1,37 @@ 36 -0.25785189867019653 -0.46217477321624756 -0.19054999947547913 --0.0001874207955552265 -0.00024142290931195021 --0.00019724795129150152 --0.22031863033771515 -0.1205185204744339 --0.92421221733093262 -1.9379062652587891 -1.8642971515655518 --0.78187680244445801 --0.20414608716964722 --0.010711293667554855 -0.29691106081008911 -0.4733961820602417 -0.20698031783103943 -0.16206006705760956 --0.16976113617420197 --0.19242687523365021 --0.62083953619003296 --0.17293925583362579 --0.83043467998504639 --0.079458877444267273 --0.75366741418838501 -0.14163267612457275 -0.57084208726882935 --0.064596265554428101 --0.020811300724744797 -0.047701474279165268 -0.048136010766029358 --0.33887326717376709 -0.16290707886219025 -0.37350457906723022 --0.26011726260185242 -0.22801253199577332 +0.27818045020103455 +0.49861174821853638 +0.20557262003421783 +-0.00032889738213270903 +0.00042366364505141973 +-0.00034614265314303339 +-0.23768813908100128 +0.13002003729343414 +-0.99707537889480591 +1.8513568639755249 +1.781035304069519 +-0.74695712327957153 +-0.22042754292488098 +-0.011565561406314373 +0.32059088349342346 +0.51311570405960083 +0.22434665262699127 +0.17565745115280151 +-0.18314477801322937 +-0.20759746432304382 +-0.66978532075881958 +-0.18657347559928894 +-0.89590466022491455 +-0.085723273456096649 +-0.81308519840240479 +0.15279872715473175 +0.61584621667861938 +-0.069688916206359863 +-0.02245202474296093 +0.051462169736623764 +0.05193096399307251 +-0.36558938026428223 +0.17575035989284515 +0.40295100212097168 +-0.28062441945075989 +0.2459886223077774 diff --git a/results/search/topology_19/resume.obj b/results/search/topology_19/resume.obj index 54e3212d..d533b6b1 100644 --- a/results/search/topology_19/resume.obj +++ b/results/search/topology_19/resume.obj @@ -1,47 +1,47 @@ -v 0.92357376118860768 -0.34576925159094168 -2.0011188446394974 -v -0.30995884728167888 -0.30703281672898208 -1.6028382023870709 -v 12.94108820151105 -15.263652438841854 -3.7013115738132756 -v 2.9245580629083587 4.3852375931720866 -3.3659147291061724 -v -6.1064303705674394 0.20128225973983779 0.2197961333727228 -v -0.88575915777074155 -1.2524195757929044 -1.2724758922958519 -v -1.6015955288271015 -2.2432144895947745 -0.88943183894224198 -v -1.0041442508547327 -0.77504771235734227 -1.3052650390606346 -v -3.5432121499012621 -1.8303813866443084 -0.31527948378066595 -v -1.8423219098392385 -1.6270872779859644 -0.90294670820080825 -v -4.0703512742701902 -1.2366636389653185 -0.23160973297607956 -v 0.61061478702264926 -0.38527129891629142 -0.72117024290795084 -v 0.057065635213837861 -0.36418652062057655 -0.63090722030686597 -v -0.11290346139452885 -0.46438503267746845 1.9461067904928129 -v -0.16528939734471892 -0.37685660726257886 -0.089447728626296172 -v 2.9982261713712046 -0.52852992069720117 0.13972011550818444 -v 2.4770919224449308 -0.5375980692966863 0.91579506732099303 -v -0.91637886024348425 -0.37492359602206921 0.67054114827922029 -v -1.8699243562110666 -0.3551641408198114 1.2218147149344831 -v 1.3361790280458312 -0.45366306130868123 0.13449160610133259 -v 4.2086412886490123 -5.6542989891043201 1.0871123098911883 -v 0.062470780149102748 -0.1213443851525476 0.55889797790471762 -v 0.094281900927965637 -0.05447034863558245 0.24731392150400172 -v -1.7079405111572528 0.048761560846393971 6.6632880200997038 -v -0.33346887485130716 0.15577492095269799 1.2338542056206276 -v 3.7030286790824314 -5.0383220825000343 1.1923167377065089 -v 2.3616822000127082 -3.081846173930558 0.54076772555986108 -v 0.41053966580728679 -0.42136025899984436 0.12838557949214227 -v 0.21750370434125194 0.20181137620041081 -0.92405974390773205 -v -0.06269504182949176 -0.1925900417029692 -0.68933034309580976 -v 5.1272482089322358 -6.2278857315635667 1.1886738166814301 -v -0.87919698549255543 -0.52607854228936179 -0.38604359331005988 -v -1.3443738449980074 -0.97515698944137152 -0.092346473143514601 -v -0.55061632268440208 -0.83961918302018135 -0.29914078035636965 -v 0.99668062277103409 1.0248829435253572 1.9521729466751427 -v 0.66553687680988372 0.51318052486656918 2.8174656626185848 -v 0.84730323118769624 0.9295143546677328 0.59584031070043053 -v 1.5479298575673679 1.4870265945319687 0.79836931692468083 -v 2.0763970133585929 0.60429953985278828 0.66744197624013979 -v 2.7856762043374275 -1.2025595905077746 0.94932284683154633 -v -12.509310241522744 -10.679834257850436 -9.0584643489605625 -v -5.8328550431581059 -4.6415846608682934 -2.843816970808025 -v 1.67481368316146 0.31211858313235402 0.40116263172247257 -v -2.2736650400920344 -5.1425744312649719 -1.5267135277065038 +v 0.88811036191177894 -0.36535779410303687 -1.7669173605392487 +v -0.42515137093508187 -0.32411764220299988 -1.3428938914820963 +v 12.799182749272081 -15.151109129020742 -3.452051361341482 +v 3.1723240197068678 3.7333839379362552 -3.1297023819332495 +v -5.0811426346105133 -0.090353639638522096 0.14729735734471755 +v -0.62880013986785377 -0.86939943556038357 -1.194429422466238 +v -1.4100381664089414 -1.9507171772481164 -0.77638892766272072 +v -0.71548413815368606 -0.51985798498088087 -1.2184383046264791 +v -3.4592117966718137 -1.7009729561921756 -0.14255105402364854 +v -1.5946858006611619 -1.4781207188275589 -0.78675542291412148 +v -4.5665505055265907 -0.4537755129033435 0.03321047093455709 +v 0.63796419323132103 -0.39693152784108243 -0.7438624635583414 +v 0.17599956850624335 -0.37933522109640128 -0.66853341635715713 +v -0.1517811332717533 -0.47579538097585 1.9885281729079176 +v -0.20567425845773502 -0.38574871527291621 -0.1055905901213422 +v 3.0861690773834889 -0.54403260780125107 0.14381829399511137 +v 2.5497492249171465 -0.5533667406020929 0.94265673038360187 +v -0.96613135138723816 -0.38468218765969014 0.68516060537133838 +v -1.9432230878790129 -0.36443480676324147 1.2500469876090001 +v 1.5253742822410401 -0.47372666273207181 0.13890830248916369 +v 4.3481143131889564 -5.8301554646253635 1.1207710365121024 +v 0.047106285468816081 -0.10140035710229045 0.60408662595772333 +v 0.081856536356986295 -0.028347626935725068 0.26371437926859681 +v -1.7593191409602273 0.066676871912660501 6.8485008726739887 +v -0.34983028339498257 0.17641668975101379 1.2807422275035982 +v 3.9433200511740427 -5.3370033955812248 1.2049978994611468 +v 2.750404654843313 -3.5970278201526895 0.62554834494326328 +v 0.42604073069476994 -0.42763491116591446 0.13428433878390197 +v 0.17967179812096717 0.19615801332675378 -0.93776799857965387 +v -0.024790206287707867 -0.091638045426236048 -0.7664851243835602 +v 5.2776383421670703 -6.4105588336820976 1.2235395032329608 +v -0.91596884141443125 -0.53102848252318813 -0.40027173620772938 +v -1.4058116493956661 -0.99832350595315533 -0.093612734293991889 +v -0.57493928357774282 -0.85644815480844672 -0.31007645392854777 +v 1.0033713993191702 1.071887532310043 2.0302541823303812 +v 0.66811565888562763 0.55383107600303805 2.9062917842884106 +v 0.81887963108067685 0.93473181023843699 0.60483615789179423 +v 1.5840230637651913 1.5435823923231802 0.82601498980879373 +v 2.1843551765520202 0.61185718854445736 0.62502724413761812 +v 3.146819742239829 -1.8399809628779165 1.0075286286455416 +v -13.267660314566632 -11.326016544606714 -9.6772034327557126 +v -6.0241220418041408 -4.7748902433236839 -2.9346980073006024 +v 1.9205528633225779 0.41992189856992113 0.45010691965738742 +v -2.3403565864746843 -5.2934147390474315 -1.5714947094584861 f 1 2 8 6 7 10 9 11 5 4 3 f 1 2 18 19 14 15 17 16 20 13 12 f 1 3 24 25 22 23 28 27 26 21 12 diff --git a/results/search/topology_19/resume.planes b/results/search/topology_19/resume.planes index 78001da7..f9c3959b 100644 --- a/results/search/topology_19/resume.planes +++ b/results/search/topology_19/resume.planes @@ -1,37 +1,37 @@ 36 --0.50753629207611084 --0.23228360712528229 --1.5493214130401611 --0.017361991107463837 --0.38656651973724365 --0.016175461933016777 -0.07081788033246994 -0.054882802069187164 -0.019009415060281754 --0.11432374268770218 --0.2950286865234375 --0.63218796253204346 -0.077381215989589691 --0.057634927332401276 --0.0044697313569486141 -1.6576278209686279 -0.82585394382476807 -1.1227467060089111 --0.092203103005886078 -0.12346706539392471 --0.020907875150442123 -0.10670178383588791 --0.32548901438713074 -0.19623014330863953 --0.67315191030502319 --0.8105657696723938 -1.5107320547103882 -0.28005218505859375 -0.037606585770845413 --0.46361920237541199 --0.0043695266358554363 --0.080476738512516022 -0.23664844036102295 --0.0078652035444974899 --0.002628726651892066 -0.020254133269190788 +-0.44384890794754028 +-0.20313586294651031 +-1.3549071550369263 +-0.017871247604489326 +-0.39790520071983337 +-0.016649914905428886 +0.078124634921550751 +0.060545429587364197 +0.020970745012164116 +-0.11767705529928207 +-0.30368238687515259 +-0.65073102712631226 +0.056310951709747314 +-0.041941419243812561 +-0.0032526608556509018 +1.7062488794326782 +0.85007762908935547 +1.1556786298751831 +-0.10393435508012772 +0.13917608559131622 +-0.023568039759993553 +0.10720602422952652 +-0.32702711224555969 +0.19715745747089386 +-0.69289648532867432 +-0.83434110879898071 +1.5550445318222046 +0.32772615551948547 +0.044008448719978333 +-0.54254239797592163 +-0.0044976919889450073 +-0.082837246358394623 +0.24358969926834106 +-0.0080959014594554901 +-0.0027058308478444815 +0.020848220214247704 diff --git a/results/search/topology_2/resume.obj b/results/search/topology_2/resume.obj index 54893c9f..a72ac5dc 100644 --- a/results/search/topology_2/resume.obj +++ b/results/search/topology_2/resume.obj @@ -1,47 +1,47 @@ -v -0.68812851541010933 1.4114446208711577 0.099427135269456679 -v -0.60335784491182554 1.573416329971014 0.12535950727728148 -v -0.88849491405336944 0.14674788052388904 1.1408595640505506 -v -0.9754930192845912 -0.24307391135171558 1.3938416925273296 -v -1.2435865569049949 0.052887840847483707 0.3011937696899567 -v 0.72464568905508808 3.0712442673217621 1.8315850615131419 -v 3.5918719274570639 6.167969856220008 5.6869250221134777 -v -1.1641276673917864 0.84081734363554783 -0.4699263555169102 -v -1.5907615984669117 -1.7841766775470673 1.6626752336717163 -v -1.5210919200839825 -1.0139925823875962 0.88736142397158613 -v -1.3491994840673498 -0.16025661235548277 0.2830774267119156 -v -0.53203581383159326 1.646180422880853 0.12331562272773589 -v 0.43992131106625748 -1.1247187920056936 -1.3181704900776459 -v -0.57830467593481627 1.7273537712222677 0.172875051961769 -v 3.2867765604071404 1.1404185932565976 -1.6399400081181053 -v -2.6150322458167552 -0.3540531056840035 0.22992731165123659 -v -6.4997022205612183 -8.7973662436605604 -1.3419916978351778 -v -1.252381458867432 0.046298005614996376 -0.1810247377022452 -v -0.77077189402454882 -0.1108931077054954 -0.43849217931783246 -v -1.3371491129228337 -0.1244363002507633 -0.2102505955891304 -v 2.3242838373022794 6.4297682610029332 -6.6249520158728696 -v -1.8859463541467749 -0.37493282183502857 3.2741578944047092 -v -0.50044107641504765 1.6609995854712614 0.056073817594150144 -v -0.46869515656680877 1.6268711885806273 -0.0019635294554865568 -v -0.91598234497303621 0.69704205882485892 1.0899106335861939 -v -0.747597278478081 -1.2562736334602045 1.1264981817563884 -v 0.30142334941843818 -1.5126923769685767 -0.96063682412336848 -v -0.61679694877491931 1.4783038331198124 -0.18433760027573909 -v -2.7373280065612793 -3.790979969680782 0.38746662880861327 -v -1.6018959654372282 -0.66790558947545342 0.80413970391642642 -v -0.49443369235846785 1.2783327043214598 -1.4251324701758716 -v -2.1316313261364739 -0.46852629788348354 4.5790615289742052 -v -1.5543544720165841 -0.58495221525184149 0.70701413749890918 -v -5.2903976131629156 -0.027185965136841767 -1.2536144804423777 -v -0.69799536441058074 0.88892045275179032 -1.0321196375890409 -v -0.85266315988438601 0.87397550412226988 -1.0161580476207186 -v 1.1436983617189216 0.045187508790410509 -2.7263498831521158 -v -1.8771704417514126 0.38491750270902214 0.58495696931428809 -v 0.0069485805402685645 2.554450353927435 1.4730715082981045 -v -2.994211411803402 -0.1313721595031121 0.0081518876438870392 -v -2.236029368157368 -0.13543513160278756 0.0077044419619654008 -v 2.1146123273917343 6.6461738162792905 8.8081905001076652 -v -5.1369313394898573 -0.77003993182649522 8.9472376862260159 -v -2.2763670943812007 -2.0820201623229737 2.3030071623594162 +v -0.92187940340901164 1.3218691673745968 0.086625058958120116 +v -0.90273043033998235 1.3612800220780592 0.091166931497820569 +v -1.1322960041576471 -0.074440610568617296 1.0193882389293567 +v -1.1829873438337091 -0.30337129819251485 1.1344794195241443 +v -1.570811919913953 -0.55957612922962729 0.48957973871699956 +v 0.73920428796273807 3.3016474877968855 1.94855546794543 +v 3.4840943624562173 6.2210407996566444 5.3845691127952158 +v -1.4663404953064962 0.60972197120590432 -0.45916746534264119 +v -1.5725118940425533 -1.4113200845297682 1.3545263552425799 +v -1.5995537598339908 -0.60763391794625476 0.47144249400806437 +v -1.4808645215729848 -0.37499750136038107 0.51146875899795585 +v -0.65787034908591047 1.6028252429842835 0.050560192141007487 +v 0.93774770512892736 -0.18520206484866991 -1.4784310879568499 +v -0.85797511640063806 1.7931686650840122 0.22956375114848893 +v 3.5203441514674356 0.91018644965500195 -2.4528724798763362 +v -2.9641474215553396 -0.62363117044578875 0.45130189128790693 +v -4.5010125680784752 -5.5588908171142641 -0.57970424898211503 +v -1.290341536212434 0.017359090369831014 -0.20617027828557488 +v 0.70799395864425885 -0.160210018772666 -1.3456958246279926 +v -1.5010039033180667 -0.41493869783313331 -0.2556587554019043 +v 904.90259308380246 1304.4034253396665 -1407.2045041227568 +v -2.3993484784616066 -0.39981735426547371 2.6398049009339366 +v -0.57413147873115655 1.6549504175732486 -0.063660684143279495 +v -0.50918798978612134 1.6205591760865818 -0.13482773244192697 +v -1.198678093708011 0.20324115647588048 1.0356732090635909 +v -0.89757562749585929 -1.0313260774282353 0.95599360111909559 +v 0.36908497172431526 -0.88460891022959764 -0.62235495209403646 +v -0.71290407230007768 1.4185305553341914 -0.36826550498575594 +v -2.0595933300750331 -2.4868558276364938 0.46736104029249415 +v -1.7554935456373444 -0.86461264510206248 0.75137016221316466 +v 0.0091124248414044332 1.6745856513320925 -1.9896731666969343 +v -3.6747585717663518 -0.4255142917277554 5.7763342920971237 +v -1.6474061174359038 -0.7169485427797434 0.57844851191372459 +v -10.999245381585469 -1.8162328793285718 -1.8898049314009897 +v -0.70875259945904923 0.89010511403297776 -1.1482560322589068 +v -0.87688041826410201 0.86767154002546398 -1.1282723879498371 +v 3.899413169213271 0.1719937898125164 -3.6602533364526759 +v -2.4531129598908286 -0.073741246972568966 0.65893139883660878 +v 0.13311968513881287 2.9354999892847524 1.7377461492867738 +v -3.0756281378392156 -0.60124492294375964 0.42364469092126356 +v -2.8572182599182323 -0.5720985893518149 0.3976806420312915 +v 2.1885412715019736 7.1418607935096849 8.5689167367955772 +v -4.8079401039209042 -0.51169943512545635 7.2544362431115852 +v -2.1641806253123868 -1.7795894208880711 1.6523510262140255 f 1 2 8 10 9 7 6 3 4 11 5 f 1 2 12 13 19 20 18 16 17 15 14 f 3 4 22 21 26 27 13 12 23 24 25 diff --git a/results/search/topology_2/resume.planes b/results/search/topology_2/resume.planes index 890d3461..50b1c551 100644 --- a/results/search/topology_2/resume.planes +++ b/results/search/topology_2/resume.planes @@ -1,37 +1,37 @@ 36 --1.019919753074646 -0.47320511937141418 -0.37842428684234619 --0.22450190782546997 -0.20474550127983093 --0.5449482798576355 --0.25154954195022583 --0.023997735232114792 --0.12348371744155884 --1.0353658199310303 -0.39861351251602173 --0.16634653508663177 --0.1910385936498642 -1.1458448171615601 --0.77830129861831665 --0.6862519383430481 -0.081973135471343994 -1.2556228637695312 --1.0448786020278931 -1.0166740417480469 --0.26689359545707703 --0.00042191459215246141 --0.070964865386486053 --0.070533253252506256 -0.50272452831268311 --0.48570576310157776 -0.31234800815582275 --0.61632388830184937 --0.27238374948501587 --0.53431975841522217 --1.022908091545105 -0.5058521032333374 -0.011743419803678989 --0.00078960531391203403 --0.14617547392845154 --0.010633018799126148 +-1.1181565523147583 +0.48814657330513 +0.47849780321121216 +-0.33997145295143127 +0.23817044496536255 +-0.63330632448196411 +-0.18155510723590851 +-0.034668363630771637 +-0.14892473816871643 +-0.99829810857772827 +0.2578359842300415 +-0.40382656455039978 +-0.25882071256637573 +1.2089235782623291 +-0.82039517164230347 +-0.33504220843315125 +-0.1520766019821167 +1.2273954153060913 +-1.0857558250427246 +1.047176718711853 +-0.31811782717704773 +0.0018969604279845953 +-0.07537531852722168 +-0.068656444549560547 +0.32886388897895813 +-0.34052136540412903 +0.23226720094680786 +-0.34057486057281494 +-0.36136770248413086 +-0.52146679162979126 +-1.0494959354400635 +0.5113217830657959 +0.00092995684826746583 +0.026379173621535301 +-0.18950159847736359 +0.0091740423813462257 diff --git a/results/search/topology_20/resume.obj b/results/search/topology_20/resume.obj index 8e210698..1af016a7 100644 --- a/results/search/topology_20/resume.obj +++ b/results/search/topology_20/resume.obj @@ -1,47 +1,47 @@ -v 4.1635704256254638 -1.2256267803421197 2.0058524560561439 -v 2.9683284821816378 1.6982163741135632 1.3497166548755257 -v -0.83202888295465161 -0.59946570919464348 1.1330902169152626 -v -1.4208903577579652 0.24235006352482349 0.90636934948725234 -v 2.6044820424176311 1.9585689557282338 1.2515218621475555 -v 11.950820756944076 0.15152060837231579 2.9868702053205953 -v -0.13905823205759948 0.37972811422184966 1.0822526399779613 -v -0.067850227728975865 1.2479932707747337 0.95324376973775315 -v -0.71726736884020648 2.0549484588256961 0.72278875521375718 -v -0.079545211650522293 -1.6455601713037491 1.4180302876690198 -v -2.5170953349551963 -0.39530163658384054 0.8398348927351067 -v 1.2349565568708862 -0.6186953566496286 -1.5165467377183743 -v -3.9605771659379485 8.4421667130753235 -5.4340874654219462 -v 1.3311037362590157 -0.47157838291879317 -1.3521281805430405 -v 3.5837854656963057 11.264770390089444 4.9206825446985221 -v 1.4798780698718221 -0.091409733771506282 -1.0531752145909716 -v 2.8051379183434841 1.6302558906354554 1.1237183583225998 -v 1.2631483400118186 -0.6344952965430698 -1.485546598881726 -v 0.26017819381864105 1.5666654184151878 -2.1098181153488667 -v -0.11033397304592552 6.1454522856289469 -1.2408473862300626 -v 0.19314670895204542 0.21625230454314781 -1.1496335652542509 -v 0.15190142283974251 -0.69581321090980686 -0.025859378622301442 -v 0.68443376717512505 -1.2750981312271557 -0.034437205478543217 -v 0.12315816413516381 -0.80959455971144245 0.14484029026122724 -v 1.7785056949711233 -0.0082546249152283639 -2.9356970325473299 -v -3.2370593212428824 5.927683143496477 -3.4183124417526738 -v 0.1226680309179007 -0.27457270439628395 -0.48245824500924145 -v 1.4725043756655323 -0.60988504527219622 -1.4240248495803509 -v 1.4113351466332575 -0.026868892935877752 -0.9301668126337348 -v 1.2220990404383556 2.9432293016551552 1.6293789087778456 -v -0.018275929001694072 1.4406166958317344 -0.14209771990267672 -v 0.92938235122017931 0.46066943719530429 -0.6708448364146129 -v 7.2363803416872834 4.4969277928968152 5.1488105839925886 -v 1.0145121784876996 2.7889688162697261 1.5672237762760894 -v 1.8868252021469205 -0.40833009231681533 -1.7350494617952896 -v -0.25886271492023283 1.0109734951181386 1.6762344113942536 -v 1.1274023666348809 0.47265893573168299 -0.25089633662235872 -v 0.12364648013330937 -1.382862763016931 -0.080758246476966167 -v 0.14290206481735054 1.023081986825616 0.86620306424729188 -v -0.11742251365003323 0.80195178885884411 0.77736439346847019 -v -0.23351812233568839 -2.4743624807250719 2.7858543625049896 -v -5.3865650413556363 -2.6495702420381351 0.052538606551424505 -v -0.025950032305331654 -2.9144158562667868 4.1618931382330242 -v 0.97007829532176304 0.33152985465136786 -0.31243518858329455 +v 4.158815231358493 -1.2290345602001134 2.0071915282082742 +v 2.9646591273138254 1.6921523610381617 1.3516518259021821 +v -0.82355033339610417 -0.58772711827673696 1.1340314830563079 +v -1.4097228541990494 0.250244703285813 0.90834589890668616 +v 2.6222040667415207 1.9583639459430013 1.2558171049460791 +v 11.966456894902127 0.15171920743896913 2.9907780157382327 +v -0.14309061970191178 0.37378814845465186 1.0841117475093933 +v -0.063581151868977434 1.2442111133554083 0.95603745566112497 +v -0.71820575278884335 2.0576370191952185 0.72373450506276615 +v -0.083562702296255925 -1.6520066961725888 1.4199733754507644 +v -2.5203884383101403 -0.39581851283345698 0.84093374811687083 +v 1.2333186886599827 -0.60400969320663944 -1.5059862065917304 +v -3.9452058392808094 8.4271892677770985 -5.4107014069921764 +v 1.3379478415583017 -0.44391427719561422 -1.3270628754755318 +v 3.5801671749754602 11.260274778754784 4.9231401764078146 +v 1.4776402022301485 -0.088452654680625048 -1.0467974517848297 +v 2.8013904157385521 1.6241593015584377 1.1255452994084685 +v 1.2571384943442445 -0.63764736232990471 -1.4857177503447878 +v 0.25516267350682542 1.5733984925807729 -2.1058466389132073 +v -0.11453762096076496 6.1421523216772185 -1.2387799881835189 +v 0.18625871143113323 0.23514567614541163 -1.1372238684065694 +v 0.16273288815979159 -0.6843051792109951 -0.027689572308201148 +v 0.70072625130194099 -1.2749385224626382 -0.030008356977657392 +v 0.13256538544798724 -0.80372446798310193 0.15146838256024731 +v 1.784130600059177 -0.020446793670574705 -2.9029806155956246 +v -3.2178705393621581 5.899437970624855 -3.3842899036486651 +v 0.11510156026678242 -0.26040441782109858 -0.46362575471482104 +v 1.4750340062193101 -0.61063903691546084 -1.4256341807530746 +v 1.41356598855871 -0.024775243541952131 -0.92936394483144613 +v 1.2313510194900747 2.9490571586688477 1.6359891977359422 +v -0.023080561303698954 1.4474451688713084 -0.13961620042483669 +v 0.93059832408442922 0.46127217060248438 -0.67172261702437153 +v 7.2458467408716931 4.5028113544348649 5.1555465350181322 +v 1.0111900644702898 2.7854526955776167 1.5700691641425029 +v 1.88935344468448 -0.40908475542927791 -1.7366576956963518 +v -0.263109987328772 1.0061658068731878 1.6791589543819185 +v 1.1299333436899195 0.47422456244845373 -0.25081150596986573 +v 0.11937313092261155 -1.3866552374893177 -0.078028138780290301 +v 0.13978208788739421 1.0271852965447263 0.87204843279112776 +v -0.12239356146794064 0.80448276515757167 0.78257808555680941 +v -0.23605898374644191 -2.4728607430543228 2.7746800018713604 +v -5.3936132733780768 -2.6530370327582271 0.052607081021332158 +v -0.025983903006075511 -2.9182293963860415 4.167339334143918 +v 0.97134751736266067 0.3319635966775481 -0.31284393419486867 f 1 2 10 7 3 4 11 9 8 5 6 f 1 2 17 15 16 19 20 13 12 14 18 f 3 4 27 21 12 13 26 25 23 24 22 diff --git a/results/search/topology_20/resume.planes b/results/search/topology_20/resume.planes index 2d64d1fb..c3944a8c 100644 --- a/results/search/topology_20/resume.planes +++ b/results/search/topology_20/resume.planes @@ -1,37 +1,37 @@ 36 --0.17143164575099945 -0.17893087863922119 -1.1096302270889282 -1.3645012378692627 -0.31540459394454956 --1.0801354646682739 --0.20631113648414612 --0.18729723989963531 --0.15958429872989655 -0.26333394646644592 -0.65301203727722168 --0.73828631639480591 -0.26103851199150085 --0.17248530685901642 -0.23595696687698364 --0.0027939039282500744 --0.15762528777122498 -0.40053540468215942 -0.27131712436676025 --1.2257946729660034 --0.43293246626853943 -0.67086213827133179 -0.57757097482681274 -0.1319325715303421 -0.037190835922956467 -0.0019865003414452076 -0.0053901649080216885 --0.96039599180221558 -0.76766741275787354 -1.3023034334182739 --0.029147522523999214 -0.055649746209383011 --0.053107760846614838 -0.3930000364780426 --0.36179697513580322 --0.17498362064361572 +-0.17165593802928925 +0.17916499078273773 +1.1110820770263672 +1.360571026802063 +0.31449612975120544 +-1.0770243406295776 +-0.1981116384267807 +-0.17985339462757111 +-0.15324185788631439 +0.26367846131324768 +0.6538664698600769 +-0.73925226926803589 +0.26173648238182068 +-0.17294652760028839 +0.23658789694309235 +-0.0028195867780596018 +-0.15907426178455353 +0.40421736240386963 +0.27167212963104248 +-1.2273983955383301 +-0.43349891901016235 +0.67173987627029419 +0.57832664251327515 +0.13210518658161163 +0.033205676823854446 +0.0017736383015289903 +0.0048125847242772579 +-0.96165263652801514 +0.76867192983627319 +1.3040072917938232 +-0.029185658320784569 +0.055722564458847046 +-0.053177252411842346 +0.39351430535316467 +-0.36227035522460938 +-0.175212562084198 diff --git a/results/search/topology_21/resume.obj b/results/search/topology_21/resume.obj index 296a4bfe..47d87413 100644 --- a/results/search/topology_21/resume.obj +++ b/results/search/topology_21/resume.obj @@ -1,47 +1,47 @@ -v 0.26106328654286182 1.5095916905486635 -0.83542927301685121 -v 0.23513071394477972 0.87969726983109497 -0.75577427582313883 -v 0.20561099167120478 0.66656772362120253 -0.75262870071838261 -v 0.81188353575202921 1.0210352588528304 -0.11846962158329855 -v -2.1273910184134497 -22.800589504943076 0.6464206630512277 -v 0.83106879680350099 0.51041573248660221 -0.0077577558533897806 -v 3.0381866192080649 1.0231036805517706 2.4359755063493642 -v -0.13467920816333939 -0.19595972299779282 -0.9933073886855821 -v -0.21344296137239999 -1.6263015574440756 -0.83523958795918118 -v -0.19402343375056888 -0.72970536989563706 -0.96869534134782709 -v -0.083353416476832309 0.26548064451765424 -1.0145614415392508 -v -1.1525892480649009 -0.18912205938678067 1.1037047629909331 -v -0.20655335624420945 0.40623589223349249 -0.15412576060539021 -v -2.8372478790912559 9.8464141539177881 2.5266502397715538 -v -4.9685151461784711 16.186742790109466 4.7947706878004928 -v -5.0739394430630806 16.906424229679406 4.8770680516059466 -v 1.2676647741031957 -1.0660974562321834 -1.9375061034158452 -v 2.9386665350083345 -1.3860149400600921 -4.0582568838819064 -v -0.70817077160939512 0.97269531501372841 0.44786584866744372 -v 1.5247224258973942 1.4518273913417454 -2.4527610280071555 -v -4.01436625505512 -1.9480771394713452 2.673398950492639 -v -5.4735347823639904 -2.8355618050773694 2.9749930142062784 -v -3.459713616181765 -1.616723517523134 2.8776060590179857 -v 1.9667145994429207 1.7280015035472156 -0.60101182500173655 -v 1.5324354977006127 1.4524929798980208 0.093901266120975047 -v -3.1692823761586193 -1.4354371163283413 2.5705863041435517 -v 1.2444176159751246 1.3223230597736335 -2.2410105453976774 -v -3.9765004465678677 -6.6085177615417265 2.4415618832990198 -v 1.3381104345057182 2.7706968089870307 -0.19805825237172656 -v 1.6704839397382045 1.0051663440112788 -0.46913444532566595 -v 0.010382899814389787 1.4551106337791979 0.50769448521930705 -v -10.421498069879863 -2.3788474370610491 6.345785119811616 -v -3.9402312086377385 -0.22928702272422347 2.708138024580073 -v 11.240616528814394 16.165011662033155 3.0421271287238429 -v -2.2740638662025208 -0.0074810298442844541 2.908124872713906 -v -4.4935274986206704 3.0899340668587909 3.4530118297711248 -v 2.2211726262701843 6.2302632793428545 3.0372837771569232 -v 1.3445523102111885 -0.084061858375463608 -1.1166362293408489 -v 0.25220555047094967 -0.88697448903905385 -1.2571537189293047 -v 0.55410489964272136 1.4703485232613345 -0.53172219708640089 -v -0.040458014572830173 -0.510402040617569 -1.1045565612650976 -v -3.6893695426104269 -2.3081818834800329 2.334722178325678 -v -1.817466403816137 0.71249747684581011 0.70085533036204684 -v 3.3723984531529188 2.9352277198884158 -3.9328257092401211 +v 0.046632877834232776 1.3312021070290503 -0.74513919576649856 +v 0.057611590157221809 0.59193787082210803 -0.61530684455138407 +v 0.016179136285162505 0.54630743470060261 -0.65287671288890525 +v 0.83915398962484533 0.78746843109164466 0.19950643232520571 +v -0.50674775315400722 -18.200055602646962 1.7720038305737393 +v 1.1921207014152839 0.47009396463988451 0.63222485295528097 +v 2.8742744372764735 2.2561855723327167 2.168167882421089 +v -0.19352968699869111 0.057995044425559583 -0.80197465976338633 +v -0.19763161808966617 -0.81828181888858986 -0.66660684150837179 +v -0.2277415718601416 -0.44433642759925762 -0.7588626761348698 +v -0.17008283357339177 0.35848028697915629 -0.82453551783731571 +v -1.0198093770136369 -0.089016275055635585 1.7473003377052059 +v -0.24643762791291438 0.37562402137723622 0.056403735486762224 +v -2.052493237846039 8.3702541221779665 2.1324363748827557 +v -3.3886001800889134 13.266015879890638 3.8783616897033939 +v -4.0407554018109231 18.044007080146784 4.2379415148304229 +v 0.42536009729195445 -0.72294555346440936 -1.1025813249410952 +v 1.0545789108895907 -1.0051531457885312 -2.3421256565558179 +v -0.83737892536348713 1.2752542267187243 1.089656020319999 +v 0.53503453654195909 0.93601116973993037 -1.6709479108955683 +v -3.2252341283686747 -1.0602709002997577 2.8655240696462965 +v -6.0677202946234114 -2.2445172663836948 3.5993751837660342 +v -1.2136042718947875 -0.26545467017507995 2.7992558037483839 +v 5.5452172148326353 2.6833289564465903 -0.33708746403853024 +v 6.5285619921749101 2.9894651319418633 0.49314284713501033 +v -0.81936495039324919 -0.0047152128325937837 1.6872674851040319 +v 0.46361678143145035 0.81088921630612631 -1.5867834033703119 +v -2.9571144181269178 -6.4186154769724872 2.8146480207880682 +v 2.4606076435182338 2.8968506763921154 -0.039959258189059488 +v 2.8445950707051764 0.87620146854400283 -0.20063848404509255 +v 0.77676942344923472 1.405202774882186 0.82545458497598512 +v -12.869928873828449 -1.0471071078028213 7.6895216071887864 +v -3.1298512086260795 0.87023246852964875 2.7878262463891859 +v 13.917794165426638 6.494096259470922 0.33460412326383104 +v 4.2496634751750486 2.5654031101744605 1.9288866812043723 +v -3.6000601854755589 2.933308530157928 3.4011181457373465 +v 2.6753370875420694 3.3214801244032639 2.2582542752878365 +v 0.90587417648875024 -0.47000727911810569 -1.0600268628332192 +v 0.32689876458155726 -0.62118723159725764 -1.0686513308694423 +v 1.1346354650319115 1.6235998702744843 -0.37183041196653821 +v -0.11797557910054929 -0.2148404509116919 -0.89935309145566411 +v -1.540941488905184 -0.76427973827158535 0.82154176256084932 +v -1.7365719067017584 1.060338892080779 1.0959161611534813 +v 1.1679348370447795 1.4724189221365704 -2.2454456363036579 f 1 2 11 8 3 4 10 9 6 5 7 f 1 2 20 17 18 16 15 14 12 13 19 f 3 4 13 12 21 27 22 23 26 25 24 diff --git a/results/search/topology_21/resume.planes b/results/search/topology_21/resume.planes index 6d69667c..2e228ed6 100644 --- a/results/search/topology_21/resume.planes +++ b/results/search/topology_21/resume.planes @@ -1,37 +1,37 @@ 36 -0.42673882842063904 --0.064594283699989319 --0.37186798453330994 --0.18835160136222839 --0.010806768201291561 --0.14677754044532776 --0.23373809456825256 -0.38677379488945007 -0.0072698406875133514 -0.19354613125324249 --0.015137049369513988 -0.33590012788772583 -0.28160163760185242 --0.25692844390869141 -2.6075475215911865 --0.091258816421031952 -0.27245470881462097 --0.84737533330917358 -0.15442894399166107 --0.13022083044052124 -0.14132304489612579 --0.12475708872079849 -0.22497095167636871 --0.3156476616859436 --0.18457233905792236 -1.0979844331741333 -0.3199654221534729 --0.55568099021911621 --0.10721384733915329 --0.80115383863449097 --0.55478751659393311 -0.035451088100671768 --0.5700722336769104 --0.4429524838924408 -0.32529684901237488 --0.22694091498851776 +0.28733265399932861 +-0.042349975556135178 +-0.26543742418289185 +-0.14579480886459351 +-0.014579865150153637 +-0.070689111948013306 +-0.16100020706653595 +0.41075247526168823 +0.039233114570379257 +0.49434533715248108 +0.015352202579379082 +0.98831057548522949 +0.46226492524147034 +-0.12474013864994049 +2.495901346206665 +-0.054543651640415192 +0.25149941444396973 +-0.74697202444076538 +0.1350911557674408 +-0.27885472774505615 +0.13206209242343903 +-0.044783733785152435 +0.18201036751270294 +-0.18408532440662384 +-0.31132650375366211 +1.2993564605712891 +-0.1103774756193161 +-0.44861310720443726 +-0.20535431802272797 +-0.68595749139785767 +-0.50938987731933594 +0.0083227381110191345 +-0.41854479908943176 +-0.2967979907989502 +0.31713217496871948 +-0.030864143744111061 diff --git a/results/search/topology_22/resume.obj b/results/search/topology_22/resume.obj index 36448f97..8ee3250c 100644 --- a/results/search/topology_22/resume.obj +++ b/results/search/topology_22/resume.obj @@ -1,47 +1,47 @@ -v -0.10742810477609141 3.1267643974825168 -1.5148130649688967 -v 0.46695551841079502 1.2340254255328587 0.45111502762255934 -v -4.4527181379316527 3.9531762308631362 -4.5433124136227363 -v -1.3958061305206086 1.8488925478480591 -1.0759167522887312 -v -3.2602403374245483 2.672423656332032 -2.7870059952835384 -v -1.1887848896273572 0.28472802890872928 0.40687347434287002 -v -0.29233144058831356 -0.10065400110862945 1.2203027755986353 -v -0.28183040366825385 -0.08699653957046688 1.2138795470402366 -v -0.23431800185723417 -0.078131473436852214 1.2312796522475544 -v -4.8015714362905602 -4.8140657859808291 2.9679177195836002 -v -0.89717542363993086 -0.98969459014726457 1.6801529937896704 -v -0.25605497019531115 1.9971458218983149 -2.5468910137381893 -v 0.54032171572020571 0.97421470779160946 0.69638976406506592 -v 0.59242828232934919 -1.0761116584680821 0.26757166786487319 -v 1.2546020045627946 -3.984997405266876 2.2990601276161708 -v 0.36074381356117768 0.074062528649873782 -0.40042420370108894 -v 1.1091722676135496 -2.3110042812062561 2.1874441235023365 -v 1.1384553867293346 -3.076915016488281 2.0713187430773292 -v 0.7187805150571398 -0.91492280113646873 0.88669611818962379 -v 0.68544794506940576 -1.3078649334479637 0.61011299224792315 -v 27.927428370430324 15.267845513488254 32.03566158569938 -v 6.9103038258842009 8.8848226537087704 9.063828618042935 -v 1.2037837595965 0.464172500245571 -2.5360723706276591 -v 3.7517722030499634 9.767302994656017 7.0884035238205261 -v 2.0210006274075392 3.217976075633787 0.36636114605441239 -v 1.3817102127202743 3.7742275505993153 0.26935382398102792 -v 9.7653500855638207 -5.8620542658766377 -0.33619833297671547 -v -3.8145475350649054 3.7179706767208147 -4.1898144472930436 -v 0.069618485154764445 -0.53223414587660789 -0.13866110752106853 -v 0.69555319311999253 1.3672104505648894 0.94737132745906905 -v 11757.819431649768 -8401.8406907954541 10036.373083086892 -v 0.15279490217417682 -0.099884630832679358 0.047961322991781588 -v 1.53698573935909 -0.49475483561492223 1.36921525290373 -v -0.50458897798747948 -0.72066675399501168 0.72751723219849895 -v -0.44392273404599009 -0.68275780261099062 0.61620551516565403 -v -0.59483816110246024 -0.69945464231657106 0.80775204381183729 -v -0.25786144642780795 -0.91243533748147787 0.65530396941614577 -v -0.011928296092891076 -2.3665667151368424 1.9724203148069415 -v 0.25619510856687316 0.078515269412717331 -0.082276718977603025 -v -0.33248201406306294 -0.62551603287171942 0.38929457635116665 -v -0.22217689483094916 0.04279273527302787 1.3168449704803451 -v -0.41149979445423551 -0.87885993702596554 0.95505688187318571 -v -0.19698189641193087 0.08103577287799868 1.3490023523524637 -v -0.72890424725219105 -1.0904855863132332 1.6938083742744579 +v -0.28946205686284532 3.2264938427370877 -1.8160090461729093 +v 0.37650252918079585 1.0319729037590915 0.46337079322811825 +v -4.0335581200633843 3.9385670655320348 -4.4254995691890588 +v -1.2662823117222117 1.6621428626414565 -0.96050423042251043 +v -2.9477534133985022 2.4048580743784687 -2.5036787401000424 +v -1.0805464337915869 0.25880364809867079 0.36982781657962194 +v -0.26326905451774185 -0.092540798833746565 1.1114138729944476 +v -0.25237078979205879 -0.0783667089954561 1.1047476679365722 +v -0.21298353752482718 -0.071017667519235175 1.1191721623487767 +v -4.3706751465301803 -4.5336714585414759 2.8329897366035892 +v -0.75548223309545215 -0.99257629468453623 1.6406113913340858 +v -0.41018482946742174 2.30895667651758 -2.6543184996440772 +v 0.41560652726330705 0.69934757607389486 0.53135422843082791 +v 0.45643811368864479 -0.90732217451571662 0.19532528288439913 +v 1.104060184907151 -3.687392893166491 2.203142731423418 +v 0.28703378325741102 0.054863810902197094 -0.25393382513050922 +v 0.92078367073262246 -2.0381463108688838 1.9136844420188648 +v 0.93258034021535396 -2.3466924807654301 1.8669034788575714 +v 0.58334792987982875 -0.83144117503456683 0.78938086314150269 +v 0.55589202356398171 -1.1551060097184156 0.56156044842795005 +v 23.928186510740595 14.50057811847809 27.796637304462489 +v 6.9900538211069456 9.3563678843726361 9.2831636781572211 +v 1.2535244805862744 0.5618995546984038 -2.6419888543304637 +v 3.844631792085655 9.9310878471933286 7.0720863214118044 +v 2.1011245038319841 3.3335672451082017 0.30057928088352359 +v 1.433725817383559 3.9142759462596559 0.19930676190894769 +v 9.9359659524521415 -5.8598519454922471 -0.41603513545105419 +v -3.8659371362761177 3.8767883131710072 -4.3326502914946037 +v 0.057507681494488698 -0.48884531173196866 -0.11383499551522279 +v 0.66282299021476321 1.3252195320107172 0.93105910692840288 +v 10546.847263927813 -7536.5280090101669 9002.7125776673438 +v 0.13170340514138501 -0.10317730953184255 0.052637502265008837 +v 1.4241245391161708 -0.3594279408846191 1.3127301578585318 +v -0.45585818158507418 -0.6572172570012077 0.6604611883500755 +v -0.39590271183799619 -0.61975245876344087 0.5504535859953843 +v -0.54067790853756437 -0.63577002575078001 0.73420686488088138 +v -0.2343830130016272 -0.82935846347578068 0.59563889798513991 +v 0.013243063425129237 -2.2934970902626293 1.9218197393652452 +v 0.22483897538212419 0.057512640901726954 -0.064671670944534743 +v -0.30046993873635436 -0.57073319785055743 0.35613734810883091 +v -0.20194792170083117 0.038895970145469111 1.1969464660350382 +v -0.37403294597909453 -0.79884003578484764 0.86809923694557456 +v -0.12538442127982424 0.15511032584729742 1.2946675153746374 +v -0.70761178073809283 -1.0212497178833466 1.6444961274983387 f 1 2 9 8 7 6 4 5 11 10 3 f 1 2 16 13 14 20 19 17 18 15 12 f 1 3 28 27 22 21 24 25 26 23 12 diff --git a/results/search/topology_22/resume.planes b/results/search/topology_22/resume.planes index d51adfc7..92056cf2 100644 --- a/results/search/topology_22/resume.planes +++ b/results/search/topology_22/resume.planes @@ -1,37 +1,37 @@ 36 --0.33247169852256775 -0.55065405368804932 -0.62729185819625854 -0.43163388967514038 -0.031085532158613205 --0.096181869506835938 -1.4121289253234863 -1.333027720451355 --1.6623678207397461 -0.041201148182153702 -0.0094819376245141029 --0.040329959243535995 --0.20960846543312073 --0.20089760422706604 --0.18265800178050995 -0.12147755920886993 --0.074139878153800964 -0.0409572534263134 --0.75055080652236938 --0.14377924799919128 -0.75903820991516113 -0.16531026363372803 --0.055587299168109894 -0.055101770907640457 --0.20990525186061859 --0.601246178150177 -0.87948834896087646 -0.0096752950921654701 --0.03570016473531723 --0.041220508515834808 -0.094450153410434723 -0.32875919342041016 -1.2627058029174805 --0.2125890851020813 --0.38212406635284424 --0.20080362260341644 +-0.30220028758049011 +0.50051724910736084 +0.57017713785171509 +0.32949957251548767 +0.023729996755719185 +-0.073423072695732117 +1.4935098886489868 +1.4098501205444336 +-1.7581700086593628 +0.028060933575034142 +0.0064578782767057419 +-0.027467589825391769 +-0.19052368402481079 +-0.18260598182678223 +-0.1660270094871521 +0.11299791187047958 +-0.068964593112468719 +0.038098260760307312 +-0.6822134256362915 +-0.13068820536136627 +0.68992805480957031 +0.15025880932807922 +-0.050526097416877747 +0.050084777176380157 +-0.1907934695482254 +-0.54650300741195679 +0.79941129684448242 +0.0087943635880947113 +-0.032449677586555481 +-0.037467394024133682 +0.092380955815315247 +0.32155674695968628 +1.2350425720214844 +-0.1932329386472702 +-0.34733182191848755 +-0.1825205385684967 diff --git a/results/search/topology_23/resume.obj b/results/search/topology_23/resume.obj index 11046ece..1fb92502 100644 --- a/results/search/topology_23/resume.obj +++ b/results/search/topology_23/resume.obj @@ -1,47 +1,47 @@ -v -0.5498138972335046 0.014920924352677178 -0.48390347023767649 -v 0.14021715119230865 -0.43728525242328681 -2.6358706369852949 -v 11.046821341188711 -1.7009915073925506 -7.5974438210608364 -v -7.484999919549626 -0.2032400588376406 -2.3738467793552966 -v -0.021112095460833612 0.1517776719483033 0.25380545567177693 -v 1.5887951013096109 -0.30725181664321793 -1.8240514688980021 -v 0.86668816648062375 0.16669770104316825 0.43151754455821778 -v 0.67852408983262391 0.068324764543645528 -0.076264060390374533 -v -1.3508776198502679 -0.12583864677290482 -1.2728015453736967 -v -0.67922742095837429 0.018911871519480646 -0.47936371411491407 -v 0.16454477359600395 0.16049016091602578 0.31858195344745355 -v -1.7618152213140967 -3.2828675256226489 0.28462915165374247 -v -1.4968937117228831 -3.0342239913590801 -0.23083693179240469 -v -1.3982044212651581 -0.10176439784289278 1.6669249264643677 -v 2.489396476884405 9.1248551843563686 -1.7926292130959047 -v 0.055641083616165238 0.080254846387129902 -2.0320456852865023 -v -0.79954595018364549 -0.42472231484742312 -0.14903620741748269 -v -0.77449743213051725 -0.46540815886447823 -0.24501407719494167 -v -0.85493127051055839 -0.46345829784519899 -0.031523595888961864 -v 0.56508717914867423 3.4404635056795287 -0.90242914363607085 -v -1.6643629265652002 -3.2510854624522807 0.19242864862896297 -v 0.58604730840271224 -7.0118408397231615 5.3996626744395373 -v 0.024458663182067315 -4.5828351121709261 1.6673379391628385 -v 9.8984001889100988 -1.6971346599803092 -7.1285342361525643 -v -5.7208408619132882 0.44919444621033233 -4.1687630586364621 -v -14.528393156364402 3.095109668530073 -4.8430397814504289 -v 0.094493338441356281 -4.6048522994944276 1.6742955000093869 -v 0.46133131762061313 -0.23391937717009317 -0.50874263466619318 -v 0.76647398309389003 0.70819136814966221 -0.3224786714363691 -v 0.29260222010467868 -0.32036202007569831 -0.36681488579147875 -v 1.9231664713942542 -1.0878115945621152 -2.6418664603535134 -v 0.33311144005506993 -0.2781954876767514 -0.38881922446506445 -v 0.067203483193398181 0.37962147403907714 0.282446978552294 -v 0.93996095047072281 0.25497685106325818 0.58856392144869529 -v 0.11697265653260251 0.16012160912176227 -1.9054575482413054 -v 0.31006019421051878 -1.9176745553248105 0.38959867766234235 -v -0.64147405274826308 -0.40669530424117395 -0.1743842132513875 -v -0.2729852236602428 -0.17411680267849575 0.16897554878269472 -v 2.6029933721635885 -0.42479183473630788 -1.514333367844459 -v 0.31517314169690619 -0.50814065275698383 0.37769804690485714 -v 1.2540785220477935 -0.1912827517270097 -0.47579636671353642 -v -0.57600126694563469 1.1315507610744373 -1.0119929141026245 -v 0.27040264265942365 1.5277960940009161 -0.14047988924000196 -v -4.6013909137797748 2.3028670165806298 -1.3672486634584642 +v -0.58106256959229152 0.01576894813971946 -0.51140621821342203 +v 0.30396027646574386 -0.56422351548056993 -3.2714850553539323 +v 10.49152896921461 -1.5806038554949189 -7.0961157155967012 +v -6.6107159306105885 -0.19839148630550268 -2.2754757177659397 +v -0.036084455108698794 0.16433093520421366 0.28600640533648042 +v 1.9886967649592064 -0.41299101910051017 -2.3273168635059172 +v 0.91594650169394154 0.17617200653417814 0.45604294958160552 +v 0.78639459523241018 0.10844173863767036 0.10643274457074835 +v -1.427654961764778 -0.13299071168358861 -1.3451413907320513 +v -0.71783143288565532 0.019986724152845612 -0.50660844127906612 +v 0.36876629147303186 0.18332973844474629 0.42726061814655109 +v -1.8188082383585478 -3.0920439710502454 0.46479831719192666 +v -1.4819788308796618 -2.7759108903210481 -0.19058119823349617 +v -1.4414660759310971 0.20920439638540819 1.8993056365155774 +v 2.6308804073852121 9.643463250083979 -1.8945128807541436 +v 0.14533970377590849 0.40641183112457907 -2.1390243771152653 +v -0.84498817331948906 -0.44886144387849941 -0.1575067399674058 +v -0.81851601203538282 -0.49185968410675074 -0.25893955181648864 +v -0.91270267147901651 -0.49622033854672143 -0.013834963514421067 +v 0.81588365193775292 4.2819800674959803 -1.0548816188848118 +v -1.553758220438308 -3.0056033409900702 0.21403206164599139 +v 0.69553645360179606 -6.7644946215581694 5.4186848801469498 +v 0.097267700229580839 -4.1768384236609064 1.4425835073083908 +v 9.8367898954262412 -1.5784049808254352 -6.828780492576036 +v -4.7159460522644689 0.5023464618873188 -4.2032798929173296 +v -15.05629771478084 3.608736623011739 -4.9949023745765828 +v 0.57223782393918776 -4.3261574072725262 1.4897691816317176 +v 0.48755110617800396 -0.24721413716648713 -0.53765735307647611 +v 0.92178568701472274 1.0934600713111036 -0.2725929874329876 +v 0.30923196279206122 -0.33856989145699845 -0.38766285910580872 +v 2.3728930910108179 -1.3098640367585535 -3.2669968025940559 +v 0.35204358909266964 -0.29400677382512153 -0.41091783887655431 +v -0.01065343895387799 0.22993989703227244 0.29425391463309419 +v 1.0059141503704951 0.2845651613143248 0.64887164157328892 +v 0.038230244321782923 0.26693248912289669 -2.360097917881351 +v 0.32290174952007383 -2.0712789072485291 0.43312996514038066 +v -0.67793234161278071 -0.42980987811705379 -0.18429538402448448 +v -0.25005907872186106 -0.15974981311912895 0.21439908376361108 +v 3.2715666751094892 -0.43340825717387571 -1.7764938970891173 +v 0.53430264539562367 -0.55147660731379322 0.49222749362433993 +v 1.6641442348189246 -0.17018231145994009 -0.53483404747570296 +v -0.58612169344087162 1.4396394566998463 -1.1862075707884667 +v 0.45290763265546435 1.9260627074463068 -0.11635483150791485 +v -5.3891402635017194 2.8372317504843925 -1.6100919310638779 f 1 2 6 5 11 8 7 3 4 9 10 f 1 2 16 15 20 14 12 13 19 17 18 f 3 4 25 26 13 12 21 22 23 27 24 diff --git a/results/search/topology_23/resume.planes b/results/search/topology_23/resume.planes index a68d218a..4dfc5718 100644 --- a/results/search/topology_23/resume.planes +++ b/results/search/topology_23/resume.planes @@ -1,37 +1,37 @@ 36 -0.0022758140694350004 -0.095887444913387299 --0.019419679418206215 --0.60364723205566406 -0.16849258542060852 --0.22896665334701538 --0.62604504823684692 --2.4694950580596924 --1.5129545927047729 -0.062885463237762451 --0.031371355056762695 -0.055653560906648636 -0.58539694547653198 --0.15256103873252869 --0.18736952543258667 -0.030488841235637665 --0.16049262881278992 -0.075991250574588776 -0.025197537615895271 --0.38070595264434814 --0.11361712962388992 --0.17978973686695099 -0.082344844937324524 -0.13717061281204224 --0.081772871315479279 -0.0022728210315108299 -0.2340647280216217 --0.020416997373104095 --0.19476133584976196 --0.41080474853515625 -0.23302045464515686 -0.077709145843982697 -0.28518864512443542 -0.35352936387062073 -0.97620147466659546 --0.78718721866607666 +0.0024051601067185402 +0.10133722424507141 +-0.020523400977253914 +-0.63795554637908936 +0.17806887626647949 +-0.24197998642921448 +-0.57554817199707031 +-2.2703051567077637 +-1.3909194469451904 +0.06645955890417099 +-0.033154383301734924 +0.058816611766815186 +0.6186680793762207 +-0.16123184561729431 +-0.19801868498325348 +0.032221674919128418 +-0.16961424052715302 +0.080310218036174774 +0.026629643514752388 +-0.40234342217445374 +-0.1200745701789856 +-0.19000810384750366 +0.087024927139282227 +0.144966721534729 +-0.093464501202106476 +0.0025977618061006069 +0.26753056049346924 +-0.021577399224042892 +-0.20583061873912811 +-0.43415293097496033 +0.36519205570220947 +0.12178656458854675 +0.4469505250453949 +0.44397634267807007 +1.2259529829025269 +-0.98858135938644409 diff --git a/results/search/topology_24/resume.obj b/results/search/topology_24/resume.obj index a59e35bd..c530e4c2 100644 --- a/results/search/topology_24/resume.obj +++ b/results/search/topology_24/resume.obj @@ -1,47 +1,47 @@ -v 1.9981084700469876 0.33670178501310283 0.44662074591188938 -v 2.1710875554488616 0.96625424232781454 1.2639091101180011 -v 1.9121499100970607 0.22564563754236627 0.298300576982657 -v -1.1554610765340494 -0.36485676221008234 -0.68557499051878568 -v -1.0480717699678113 -0.46022572598829437 -0.7993924904899391 -v -0.55920167186979763 -0.17067483970605354 -0.39288494721212919 -v 1.4421760963593298 1.7283701494447541 2.1831186837023036 -v -1.0859853275390972 -0.22609966531658557 -0.50309521510389843 -v 0.88424896643188555 -0.017061164129606687 -0.088668613899770612 -v 1.5402272925731115 0.15585884200503347 0.18132217890965099 -v 1.1677525421693298 -0.10145305781449596 -0.17529019523490308 -v 1.9594414310203949 0.23637463102364537 0.33724385605787255 -v -1.4003128101212132 -0.41467925516069565 5.471834811776219 -v -3.6880254652762821 1.3840293972576274 13.036757939430037 -v -3.5965547175854673 -7.4872024889286175 -3.2342088585338988 -v 0.31305580667515898 -1.0290460543701982 1.13591195418497 -v -0.35919839380557811 -0.21352608272094767 3.8796589657525882 -v 1.7147930118026196 -0.13706187227780314 0.11947318969630671 -v 1.3437017902040427 -0.52958863598288697 0.10476161059699785 -v 1.916835117213342 0.25625592540245284 0.45341998447213228 -v -4.0332644050274498 2.3721774496209806 -1.6374433814549172 -v -9.459631824103921 7.4135522451140066 -0.79391539111726472 -v -0.33348602326022858 1.120372476597786 -0.3617411198918834 -v 1.3322806589124485 2.474621683921467 1.8368103804580811 -v -0.68871472972819736 1.1887979137993596 -0.52806414283799308 -v -0.63438462489186098 1.3037383227386581 -0.39642286743277955 -v 1.5782619467395482 0.16347432927346253 0.034851503855309385 -v 2.5476376358116206 0.4460763022647477 0.88618856068348917 -v -1.242466519325431 -0.25061850326553375 -1.4092280890531326 -v -1.3764732248741145 -0.11448550103120099 -1.6451262877454274 -v -1.1274058912957881 -0.40036624425356226 -0.48151445939397247 -v -1.2488531285564264 -0.37394532338263875 1.4442061965254021 -v 6.5339152222589991 -7.5391318073897438 -1.208968569652396 -v -0.56519088187349076 -0.29339391540499621 -0.37240414941831335 -v -0.37149019732666344 -0.20381753098356575 -0.10039496819231541 -v 0.03369508452122319 -0.12920571932589275 0.4957577849682292 -v -0.75324798580705632 1.0330611344297491 -0.65140114459383758 -v 0.22412031059623591 1.075325646798021 5.1988466074189796 -v -0.80314183903923875 -0.042983018593087355 0.89614357792770316 -v 0.082069223330280869 -0.13799620877851237 6.4239171274550122 -v 2.8555485052391849 0.40360509044659387 0.28325319022218859 -v 3.8084747743946155 -3.2982461580667577 1.1594562508848834 -v 1.6824708426452424 0.18239282510654914 0.27778789315963492 -v 3.8917731555747248 -2.2640009695013963 0.19319221023548383 +v 1.7003549593227221 1.2882012743938722 1.6792103839246866 +v 1.6822015798611956 1.4493735868844924 1.9038365127198622 +v 1.2640684699480234 0.048039047723825432 -0.088123367647647971 +v -1.8500007000923493 -0.074141161221801338 -0.46974944392987994 +v -1.3841650580899041 -0.52871292020313276 -1.0752705099145075 +v 0.35412567359033831 -0.024310858970413071 -0.2509917836318008 +v -7.9552097677736198 9.8782018009762869 13.064069440066222 +v -1.2509515278005943 0.085228097956412605 -0.20594641080767018 +v 0.75852916968823358 -0.053309828392517911 -0.26430339391670027 +v 1.0575757877872143 0.025137932070014354 -0.13416741281250927 +v 0.78563030664173605 -0.063357159476222558 -0.27655165425262485 +v 1.6881304803581934 0.16988887971887931 0.38440394258485611 +v -0.57810740071755851 -1.2814946767768127 2.9998346509463785 +v -2.1152956235204279 0.23649947321646389 7.7235105311447185 +v 0.52397597994800282 -1.065842101473101 1.1501873915118193 +v 0.76603753345665426 -1.2237641909941972 0.50196021534419843 +v 0.93796524219716859 -0.40580669318031976 1.1378743562387761 +v 1.5374998124907051 -0.58864495791151272 -0.22212341253898776 +v 1.374278923935476 -0.82242974133485292 -0.18610059399200904 +v 1.7851378081761959 0.17938414218335944 0.21041266472904219 +v -7.8963982880678891 5.772759833018287 -0.69136363796327849 +v -17.479061015855876 15.062424170063833 2.47138300191836 +v -0.12121788344426822 0.89754773725639547 -0.19797617583504246 +v -20544.302688255531 31130.010833622091 19667.038546643696 +v -0.62920942616622499 1.1870463940349243 -0.2635668353618571 +v -0.50380747676377735 1.1662288200955186 -0.18916844526063065 +v 0.99202970945338298 0.061852263627791802 -0.28554399804494551 +v 2.4236105605210039 0.36275146939315367 1.1827140745517886 +v 1.245024982842472 -3.0499402871333308 2.2378227112655029 +v 3.0990922657320374 -4.8680244298490027 -1.5138387704569582 +v -1.4251893872589683 -0.48277581415240117 -0.12661245358426915 +v -1.0040704760519958 -0.87932514686738938 1.5074744444985813 +v 6.2111779996743381 -7.8791272759243736 -1.6572661921897545 +v 0.40107551902959082 -0.12350774704773371 -0.23998630916462732 +v 0.35838921454380562 -0.12247809929411152 -0.072192536454126446 +v 0.34325008759641995 -0.18420359337968073 0.11113753432604123 +v -0.83150911112673098 1.1477523186405647 -0.357794225766916 +v 2.1803757757157776 0.33443415385366804 1.5399875032023063 +v -0.16592935008665688 -0.19632159076731565 0.4736726953226027 +v 2.1655223744961423 -0.39097175522714311 1.7887850612355549 +v 3.5132580786173877 0.57324855736048141 -0.44403957976380304 +v 4.1577216678757098 -4.2809251742386332 0.15538320107935677 +v 1.1228750521615662 0.028589140648163012 -0.10781988077006299 +v 4.4525349455406067 -3.6528693493424078 -0.46387470592677238 f 1 2 7 6 8 4 5 9 11 10 3 f 1 2 14 13 17 15 16 19 18 20 12 f 1 3 27 21 22 26 25 23 24 28 12 diff --git a/results/search/topology_24/resume.planes b/results/search/topology_24/resume.planes index aa9a91c7..c9c57ef5 100644 --- a/results/search/topology_24/resume.planes +++ b/results/search/topology_24/resume.planes @@ -1,37 +1,37 @@ 36 -0.0037705258000642061 -0.06441575288772583 --0.050417110323905945 -0.8626708984375 --0.83275985717773438 -0.45888575911521912 -0.32823899388313293 -0.44029676914215088 --0.51990646123886108 --0.73635929822921753 --0.7866281270980835 --0.035646583884954453 --0.18682004511356354 -0.029688632115721703 -0.12325970083475113 --0.84753739833831787 -0.24043701589107513 -0.13985633850097656 -0.062221299856901169 --0.048592820763587952 --0.2729683518409729 -0.01733756810426712 --0.1182466447353363 -0.026593985036015511 -0.024414042010903358 --0.1294567883014679 --0.00039118327549658716 -0.27756041288375854 -0.26735639572143555 --0.4828161895275116 -2.2888343334197998 -0.85165470838546753 -1.1088852882385254 -0.1078946590423584 -0.1681622713804245 -0.18929450213909149 +0.0054827337153255939 +0.11370689421892166 +-0.081143155694007874 +1.0778795480728149 +-0.66553717851638794 +0.56464189291000366 +0.30300238728523254 +0.44412997364997864 +-0.38645166158676147 +-0.92968934774398804 +-0.96117013692855835 +0.006338946521282196 +0.21216754615306854 +0.10633470118045807 +0.053322367370128632 +-0.1867208331823349 +0.12363217771053314 +0.34932044148445129 +-0.0087219784036278725 +-0.030405327677726746 +-0.23684743046760559 +0.03649420291185379 +-0.18222810328006744 +0.010402253828942776 +0.03391927108168602 +-0.18573859333992004 +-0.059735417366027832 +0.15545187890529633 +0.18014067411422729 +-0.40886548161506653 +2.1680383682250977 +0.47475364804267883 +1.5136476755142212 +0.082981772720813751 +0.078551717102527618 +0.11917327344417572 diff --git a/results/search/topology_25/resume.obj b/results/search/topology_25/resume.obj index 563cfdb1..52793145 100644 --- a/results/search/topology_25/resume.obj +++ b/results/search/topology_25/resume.obj @@ -1,47 +1,47 @@ -v -1.3583859828248361 -0.84047121676373493 -0.15038709912090953 -v -0.54351613503303275 0.26416902984039631 0.77345633629713495 -v -3.2047776696275849 -3.1651554940123581 -1.2325297290798702 -v -0.20955600387810186 0.29864374659114551 -1.2199758719926546 -v -3.4400311985269676 -2.5640289335289133 3.7187230122258743 -v -0.46174462330416249 0.39438320599136084 0.9759882289410311 -v -0.55962041336460588 0.20697214414095597 0.55462174460139124 -v -0.090215171373490527 0.40567731218259678 -1.3951618129502639 -v -3.8093533992783626 -4.2095347184094356 -3.1929852781247892 -v -12.59903825468985 -11.610991430546862 12.44216960710458 -v -6.3000008141384392 -5.498028491787462 5.8244000152937057 -v -0.91826175790358489 -0.5524695279416264 0.11633102386266742 -v 4.6953256626231736 0.35978846427181643 1.4403246297440968 -v 1.7560837089465184 -0.68488149585966651 0.32037447396166235 -v -0.27790383222616299 0.40834068319996636 0.91211649960171504 -v -2.8390169638100584 1.1770942671445428 1.1998171942867371 -v 0.21182088994404247 -0.73836433407994384 0.10476303204967435 -v -1.9938604344423141 5.5289502804432713 4.5708273435736881 -v -0.66402202603279592 0.91032576063756387 1.2460442648403172 -v 0.44629275660460999 -0.52784592610805769 0.28981694045791428 -v -1.4775977461696408 -3.4783004915062494 -0.13829569183905716 -v 0.93569824182404804 -0.77390291553784074 1.2871062930610009 -v 1.9779577418576293 -2.4064382166514862 1.994976307409055 -v -1.3350615696143575 -0.28390837548365799 -0.15408574037302386 -v -0.64394478626727514 0.10506565908610369 0.26681989728032895 -v -1.3869472244019336 3.2074617406887986 -0.30167216585269185 -v -2.0580609098956772 1.4788309632971104 -0.66588894793908793 -v 10.534601635922396 -8.8987770194857223 7.5787179781495739 -v 3.0941007693985569 -3.7233887785907411 2.4834077896893536 -v 2.7714609557754644 -1.9538952423496707 1.4740591738492823 -v -2.9352795682826804 -1.3690188251556119 -1.9297773200663455 -v 4.0579579297707582 2.0938904093433379 0.27507877017522175 -v -1.4825421194724764 1.4044760583155815 -2.4381235824852641 -v -0.46567737834089007 -0.97508133002546959 -0.76116471896590787 -v 1.165163309207804 0.85427915374294694 0.20047813331497988 -v -6.0733657516508774 -3.1148174227429442 4.8529490273295703 -v -3.5142814171968144 -2.8965987718097508 3.9488891230906313 -v -2.8243702114282514 -0.70051216149190132 0.76980277203909098 -v -3.8605823403234369 -1.0390102037288602 1.2013912812073477 -v 1.8516236661153531 1.3034353374924152 0.89128089296168778 -v 6.037327315984375 -5.6985066125731816 5.5413875300946476 -v 2.01956127785148 -2.4636219883223194 2.0473565058091925 -v 2.8631820304679225 9.2403301830858222 -4.5758108862903217 -v 0.47835244073712807 -1.1052256805979135 0.85546212045828729 +v -1.3581087841066644 -1.0302781766339899 -0.16358960756186192 +v -0.43827323313301447 0.40116579075358078 0.69183602517453058 +v -3.3297482955683875 -3.9427758425376775 -1.3148166233974787 +v -0.085133474785309526 0.42013806107173579 -1.3041375771895345 +v -1.7638070574006364 -1.0091595344163857 2.3174499605133358 +v -0.34911334255285242 0.55840200168513632 0.85573643538749078 +v -0.45246930200819835 0.3382810322876964 0.49992765692421681 +v 0.016722176587195922 0.52490168184369213 -1.4448556234600813 +v -4.3087992066532284 -5.5791690677055961 -2.7194614463302571 +v -11.409446756368324 -12.006701121197519 10.927284481022772 +v -6.959886117091064 -7.0673520717709701 6.3691808856236571 +v -0.89729143087909236 -0.6784341319994035 0.11412100571861095 +v 4.3087151225497591 0.063651305175080788 1.9165435407348095 +v 1.6514763004934165 -1.0975904011421205 0.67344046804960045 +v -0.17108733203663809 0.53600377422111112 0.8242941847862475 +v -2.4682507871032358 1.6798592168392688 0.63653420402094318 +v 0.34640895017483353 -1.0918992452243459 0.30076999477110811 +v -1.5865683202152474 5.2568037898671749 2.3669648752028931 +v -0.51655203100851887 1.024546252392216 0.92676239376146952 +v 0.63347511151802904 -0.82391459102303588 0.49392282452138647 +v -1.394132593337682 -3.6686366676402371 -0.11668863515954803 +v 1.2609932681154794 -0.93099655136610449 1.4647489581332165 +v 3.3353334146817408 -3.6844919223673154 2.8288256300181143 +v -1.4599600585068415 -0.24494102187450131 -0.24765155215565071 +v -0.51730841187963483 0.26282710171627138 0.32600576848159668 +v -1.6462153065973433 2.828776627347342 -0.44440927979412154 +v -1.8728945660980318 2.1696405429138581 -0.5682438446870679 +v 1601.2869320144644 -1291.2467671952772 1031.7291232707298 +v 3.0723937549397147 -4.1321593443356743 3.2090270858281311 +v 3.0504514929248447 -4.0172639131952508 3.1350523820332041 +v -2.7261986698566485 -1.2985077915895591 -2.250783847386109 +v 3.7151180101279087 1.8469457543499401 0.59341618108288197 +v -1.1671178759891392 2.0345782904636742 -2.8785547166961436 +v -0.44332706698879748 -1.221720126648161 -0.71153490859530022 +v 1.366737032297751 0.88658954944607704 0.17496942323531678 +v -7.3321849599191733 -5.3218654725903995 6.7814117710928254 +v -2.0842602255818821 -4.8359936390022771 5.0588340619961798 +v -3.0814131678217103 -0.59329151522381385 0.50765561752706678 +v -3.4166532130443237 -0.6830009508720708 0.60513537460156996 +v 2.1070631586647925 1.3532768094245473 0.85079202260077924 +v 15.938599527075798 -17.576587049876789 15.358645533030387 +v 4.1808355843490892 -5.3370612101929069 4.2190271937282757 +v 2.5282152781813516 9.4493329230948504 -4.9646635998978272 +v 0.66829195120691043 -1.4714233086416031 1.055753466590577 f 1 2 7 6 5 11 10 9 8 4 3 f 1 2 15 16 18 19 13 14 20 17 12 f 1 3 21 22 23 28 26 27 25 24 12 diff --git a/results/search/topology_25/resume.planes b/results/search/topology_25/resume.planes index 7d3bac00..a8556d78 100644 --- a/results/search/topology_25/resume.planes +++ b/results/search/topology_25/resume.planes @@ -1,37 +1,37 @@ 36 --0.3691311776638031 -0.31939977407455444 --0.056316878646612167 --0.045759167522192001 --0.30325263738632202 -0.40296095609664917 --0.30340650677680969 -0.015928026288747787 -0.48346641659736633 -0.34748083353042603 --0.29817703366279602 --0.63380825519561768 -0.21959954500198364 -0.45762628316879272 -0.73207134008407593 --0.10833536833524704 -0.25636744499206543 --0.059034343808889389 --0.068976186215877533 --0.40114128589630127 --0.29207399487495422 --2.2308645248413086 -1.0278241634368896 --0.76757794618606567 -0.042796332389116287 -0.85999298095703125 -1.2564202547073364 -0.32742643356323242 --0.18361540138721466 --0.20598249137401581 --0.41350919008255005 --0.27684280276298523 -0.21918198466300964 --0.008991253562271595 --0.093457616865634918 --0.094886831939220428 +-0.39131569862365723 +0.29117661714553833 +-0.066466234624385834 +-0.14954245090484619 +-0.21489781141281128 +0.52040600776672363 +-0.29378271102905273 +0.012397886253893375 +0.47177904844284058 +0.40940451622009277 +-0.3030170202255249 +-0.59207445383071899 +0.19584716856479645 +0.51510113477706909 +0.74194872379302979 +-0.10167490690946579 +0.28621599078178406 +-0.086266376078128815 +-0.082244895398616791 +-0.41310334205627441 +-0.36708375811576843 +-2.3097171783447266 +0.93717628717422485 +-0.7603832483291626 +-0.068434320390224457 +0.80356472730636597 +1.1137362718582153 +0.41060808300971985 +-0.23024550080299377 +-0.29080301523208618 +-0.3850095272064209 +-0.17150215804576874 +0.21793799102306366 +-0.0061291120946407318 +-0.092408902943134308 +-0.1061212569475174 diff --git a/results/search/topology_26/resume.obj b/results/search/topology_26/resume.obj index a0628111..13708b83 100644 --- a/results/search/topology_26/resume.obj +++ b/results/search/topology_26/resume.obj @@ -1,47 +1,47 @@ -v 8.7505863765114675 -0.97410421727267971 3.0675004487152053 -v 4.8611261104862784 2.918819201189661 -1.7442879101148241 -v 2.2794553155356918 -1.7731851986370024 -0.21830981233918945 -v 2.4167508782454208 -1.6491899428650569 -0.2180327650690308 -v 1.2070005205061376 -1.3448917519813666 -1.1266007460919896 -v -0.5810316877266225 8.1468834572996496 -8.3349493529477972 -v 2.1493103039449899 2.0347861182587215 -2.7650120352385423 -v 1.5397157948803653 0.21706037418443322 -1.9442315772762175 -v 0.45975658296601307 -1.8768363460345707 -1.2208137039489086 -v 2.3223732195867353 1.6366147346909927 -2.4049840733931687 -v 2.043254263911837 1.7222306944345529 -2.6246072281129202 -v -5.4604928546464846 0.27628649585322346 2.6082487457889809 -v -1.3415604878833782 0.77567408019331197 1.603983429289118 -v 5.7762749922151482 -0.059047012792626162 2.1091037514554651 -v -0.3666370721196292 1.9093507542809383 0.026091264485132215 -v -1.2047596863972154 2.3174413038211323 -0.44225318577468486 -v -0.42315735902646612 2.8675424973528041 -1.23376085692006 -v -13.578756253180352 -3.2357977897811336 7.9237359232916367 -v 10.329681006552125 8.5875739973702885 -9.6840143857087089 -v -1.7678597839202486 -0.081959565753874822 2.7715854962750579 -v 1.9256067410291628 0.47486935189556878 0.58827118782552057 -v 4.4454026902559516 -6.6506289425579697 -2.3625031212443046 -v -9.7372693364197236 5.1336650192833568 5.3412540722063255 -v 0.60623984922533392 0.4911175907922613 0.96535816776512484 -v 2.1104741919809462 0.58828464460675445 0.57180948057832992 -v 0.21572115663472283 -0.44158918276384485 0.78220451787895395 -v -2.3537090663018221 -1.7723181288447296 1.0882231877144077 -v 1.2235969828341222 0.19947673510003974 0.15060623848361709 -v 1.510062111559856 -0.17259994351366717 0.12071698182451618 -v -1.5161809725191968 2.7848250762882687 0.017642550981598892 -v -2.5035525977797075 3.6021183962788026 -0.07951786159441504 -v -0.81373913025101263 1.0221686803413652 -0.42156909226981271 -v -2.3034574041120752 3.3663055517456706 -0.090031844556173635 -v 0.56615879757726117 -1.5633803596069431 -0.90692478196359894 -v 1.4527956351895459 0.25229797887346284 0.41297004851013908 -v -0.41673929958441391 1.1027649129439381 -0.68059359577265921 -v -0.0023779022292843431 0.29740491541785485 -0.94202880292454427 -v -0.12472680315860639 1.0196827228992116 -0.469146310631882 -v 1.3879256623398004 0.14934519893961601 0.62216854204960081 -v 0.26301993415394587 0.26310395403268938 1.6363603021715543 -v 0.9834700052764912 0.59803323457333979 -1.5862575282471527 -v 0.54762339866015153 0.25360919292956119 -1.2993214724978626 -v 0.33533166374898721 -0.4751129596198595 0.64728067134664669 -v 0.21486081005426966 1.3087700463697127 -1.3123046827219249 +v 9.5137149199037818 -1.305699282841863 3.71922489148458 +v 4.7007434878413186 2.8154566786780459 -1.5402282088989301 +v 2.4199171193218172 -1.5994481827405223 -0.02713987761776393 +v 2.6086280423235055 -1.4309336179472072 -0.028561078014191499 +v 1.426203391109792 -1.1122388552129754 -0.88428385268056131 +v 0.47147004165852868 5.0555786881264044 -5.293016639148977 +v 1.8924919916960505 2.2186842819311869 -2.7210849878133798 +v 1.3926668600172412 0.46081535034241144 -1.8923440526399791 +v 0.16276343178210853 -1.9671440902102277 -1.0466899665733373 +v 2.0873633027517626 1.5905551868210761 -2.2179911361802027 +v 1.7207536419902671 1.6927324823104413 -2.4854246277472831 +v -5.5596466576010055 0.20290400355836236 2.6437143532628289 +v -1.5154175778847587 0.707016084083676 1.7046026716278517 +v 5.5197519013171785 -0.029829210391431431 2.2507940786507188 +v -0.15649074179546807 1.8104745304252683 0.12734080291481364 +v -1.0936949965266132 2.2422622052266425 -0.39607257953824881 +v -0.27105893660741903 2.9224688135563124 -1.3673858491077038 +v -12.613751198900204 -2.9092939956661881 7.2978760660395317 +v 8.8629372050399802 8.0415258304546562 -8.8651142923448099 +v -0.98754361114348532 0.098584047522734183 2.4927515430749572 +v 2.0234515069041503 0.42780974490620866 0.67219865950118196 +v 6.1710044217461073 -9.0656023283810985 -3.218211542760915 +v -9.9049568112656221 5.5634565653239845 5.378697258394487 +v 0.69549382787102754 0.52872420591732616 1.0584793755407358 +v 2.3341093532224702 0.61590420845199034 0.64374073366520068 +v 0.007397134252983913 -0.52912765722644306 0.93400049045695266 +v -2.5672597623476632 -1.7601233850543623 1.265735257723603 +v 1.4270463513836467 0.23915352416137298 0.28432162427830465 +v 1.6961333504604188 -0.047516013607927239 0.2940093296788957 +v -1.5477984653649075 2.9622160392516204 -0.021165316734163997 +v -2.371473753743838 3.6591687627577292 -0.13109762015978266 +v -0.80352808648361129 1.0942567394927747 -0.47239370429027561 +v -2.1912395001492531 3.4314617689274014 -0.14048100015603487 +v 0.60967466722891661 -1.6525578174016915 -0.97344602016281301 +v 1.590335016764961 0.26321418121444179 0.46131737542210238 +v -0.44404454788486142 1.1622110254841909 -0.70793026636703194 +v 0.023163731075763628 0.31049116391640946 -0.99700288467974241 +v -0.13873338278210426 1.0782126637947818 -0.48845279689653165 +v 1.5434648885560736 0.15489566153420625 0.67073882166653676 +v 0.36152097774497999 0.30556839272732056 1.7510300111021189 +v 0.98744590075130423 0.73596223289495055 -1.633218326630498 +v 0.37815604444899781 0.23047158535699308 -1.2269288853553979 +v 0.24499568760841903 -0.58830472345145801 0.67938332659206258 +v 0.36698371494535914 1.3954167686635177 -1.4758395733968721 f 1 2 10 11 7 6 8 9 5 4 3 f 1 2 19 17 15 16 13 12 18 20 14 f 3 4 22 27 26 13 12 23 24 25 21 diff --git a/results/search/topology_26/resume.planes b/results/search/topology_26/resume.planes index 88b3856f..b6c37137 100644 --- a/results/search/topology_26/resume.planes +++ b/results/search/topology_26/resume.planes @@ -1,37 +1,37 @@ 36 -0.90143477916717529 --0.99470072984695435 --1.5333983898162842 -0.076685510575771332 -1.207635760307312 -0.91503781080245972 -0.2349265068769455 --0.2619875967502594 -0.83325892686843872 -0.16054058074951172 -0.15196877717971802 --0.35312888026237488 -0.43812018632888794 -0.3741087019443512 --0.45805647969245911 -0.59459567070007324 -0.78624886274337769 -0.57131344079971313 --0.42987912893295288 --0.0066256988793611526 --0.66092568635940552 -0.19151473045349121 --0.32690086960792542 --0.10149116069078445 -0.021181290969252586 -0.75476080179214478 -0.26731002330780029 -0.18206661939620972 -0.14894337952136993 -0.12439562380313873 --0.39165177941322327 --0.13073502480983734 --0.58686721324920654 -0.36486458778381348 --0.59605687856674194 -0.47155278921127319 +0.77270340919494629 +-0.87707096338272095 +-1.3943551778793335 +0.057840213179588318 +1.2238525152206421 +0.90604549646377563 +0.25311893224716187 +-0.27550926804542542 +0.94214928150177002 +0.1921272873878479 +0.16760516166687012 +-0.37693765759468079 +0.46268895268440247 +0.41796517372131348 +-0.48367476463317871 +0.65827482938766479 +0.87237471342086792 +0.59854310750961304 +-0.44649225473403931 +-0.012422008439898491 +-0.68503481149673462 +0.17871947586536407 +-0.31366834044456482 +-0.12223908305168152 +0.026316247880458832 +0.814899742603302 +0.27527016401290894 +0.14490549266338348 +0.11017841100692749 +0.10961280018091202 +-0.41455963253974915 +-0.13099394738674164 +-0.5944669246673584 +0.37547343969345093 +-0.65016865730285645 +0.50148630142211914 diff --git a/results/search/topology_27/resume.obj b/results/search/topology_27/resume.obj index 7c6db05b..197bc218 100644 --- a/results/search/topology_27/resume.obj +++ b/results/search/topology_27/resume.obj @@ -1,47 +1,47 @@ -v 0.25432022688134193 -0.14630563654561329 0.20133633093903913 -v 0.042309497741404967 1.2570858360027954 0.71997038167690297 -v -1.1059875842325575 2.1106369832818936 1.3470849091879189 -v -0.29056585841116028 0.57780772344053799 0.60209525076778847 -v -1.2533431395124375 2.0148728408861123 1.3611736676679982 -v 2.1076438550783188 -1.4462984281091504 -0.78571224750128921 -v -0.11725069236146035 1.1612036483641173 0.73775267480733131 -v -0.64697982725605474 1.0742293222009118 0.87159885182928898 -v -0.11895022333313732 -1.502130342657862 -0.12295983064279814 -v -1.6681932516575448 0.43863016724714599 0.97831524498830424 -v -0.033601869410315933 -1.3379730577705173 -0.095973149422107107 -v 0.69862275424991582 -1.6784031932968733 0.061398757754149214 -v 0.34225688489800093 -0.63739640142079401 0.047381331651714612 -v -1.4824948734604908 4.7760117850855677 0.03138361841677538 -v 0.59250379241638329 1.4964484979305979 1.9826935919434849 -v 0.19557089222703372 -0.10545704801353066 0.11113613411156958 -v 0.84904279606171629 -0.51607301870958211 1.1438385800691866 -v 1.2983007176232289 -2.1516599961950522 0.94426981619331551 -v 0.037827453399853377 1.4828101682284796 0.86270347250589707 -v 2.3685599237880477 -2.4360853046974462 2.8964648878740742 -v -0.79090548349024181 0.12473546680920132 2.3345071856057489 -v -0.30427487605926856 0.24682672042515824 0.9410822328547489 -v -0.057519839680773358 0.072677652049744065 0.45053614555426491 -v 0.00087383883612613799 -0.93333196390757356 1.2173341776160098 -v 0.59613211632732499 -1.873092605611089 0.5095008654957599 -v -0.4766682436935068 1.2988426383319085 0.43243911960239312 -v 0.47325432515680993 3.0062297507758942 -3.6319155385608983 -v -0.83218798749019207 0.61971809216284557 2.0960770991691633 -v 1.5262343358646673 -1.0271307305246702 3.347462375252535 -v -9.7777329672733497 -0.92348797369926305 0.9678156471542545 -v 4.7080679117756077 10.139875875376745 -1.1832492893606719 -v 6.2806586160922908 -5.1459339676427724 6.2412386686045176 -v 5.7873783641743772 -4.4431602723499024 5.8130643205341181 -v 0.20959351874603629 -0.11252724272623263 1.0358448374287696 -v 10.131460282438619 -7.0316016361012137 9.403651377854672 -v 1.0169783733922726 -0.67553398846373125 1.7262109753456476 -v -0.42492738383174178 0.34018512617103241 3.9470057253575082 -v -0.59262561309506112 1.1465850816914713 0.72905786479335655 -v -0.15880100663865854 -0.80547694142354165 1.1842040038474255 -v -4.961095596571802 -1.5878811993099471 1.240794625411697 -v 0.32327487722288151 -2.1454422302792677 1.1678315972480462 -v 0.2448010638466436 -1.808546255068993 1.0957077030469666 -v 0.29525182540769518 -1.3540144874025994 0.71948101669202036 -v -2.0708682003186798 3.3374264446623698 -10.167729093505486 +v 0.25526452277307293 -0.14359038818186964 0.20350373284277884 +v 0.042726622745067749 1.2632909916838391 0.72342746571343797 +v -1.1154368750366193 2.1181755972103344 1.3539898830524688 +v -0.37507318945257445 0.72644023585062967 0.67757512864984959 +v -1.2594029451033186 2.0246142360449655 1.3677545650919627 +v 2.1222646098286044 -1.4531796966844039 -0.79082964818770995 +v -0.27172074870548274 1.0743347445120146 0.75847126314148161 +v -0.6501078511192232 1.0794228057242994 0.87581272624797923 +v -0.13828120440571878 -1.5098628843354314 -0.1179715045216807 +v -1.5508833429203166 0.51878372438623566 0.96994335140266641 +v 0.025598031701754693 -1.1946608957744904 -0.066153780758633207 +v 0.69827223886062895 -1.6833875217191774 0.055798399856753694 +v 0.33231603102256191 -0.61436548466945706 0.041403749216284688 +v -1.4897076337977755 4.7996455488640066 0.031273995775200472 +v 0.595582850881198 1.5038152682833203 1.9922623542432838 +v 0.1952455325466875 -0.10185890120344017 0.1113542432576468 +v 0.84153920093506418 -0.4924587029466948 1.1431341185640815 +v 0.83519279456852247 -1.7914431675990972 0.25737860306743238 +v 0.16175186945978573 1.493148298038103 1.1162804684877445 +v 2.3555342157168031 -2.1954796683769269 3.0305414626771663 +v -0.82939013970130115 0.31527766618920361 2.2504196853033109 +v -0.31266165513474276 0.25607453443542366 0.94362439290978506 +v -0.079022669684502153 0.09118178538957647 0.47915328444774508 +v -0.063247805029350859 -0.708530622025068 1.1694195277932082 +v 0.58768565419839558 -1.8934557685888362 0.53929683673261941 +v -0.51088616579603519 1.2526340395887015 0.55376421528190856 +v 0.46232946570712935 3.0018879140763954 -3.6102515601942136 +v -0.83376243075574374 0.62422113502188636 2.1060162046538631 +v 1.5153762028776305 -1.0161491291242917 3.3524772835268895 +v -9.8250057069291312 -0.92795247597916919 0.97249466799454942 +v 4.7017139541654327 10.166666143442914 -1.1846477496370555 +v 6.0312368249127788 -5.0972445601453833 6.1795332024484084 +v 5.1431558584018537 -3.8320000848138873 5.4086660943334515 +v -0.0068807490338937197 0.042237962227686249 1.0000136585761992 +v 9.4276864016535544 -6.5384276578905158 8.4862789202442812 +v 1.0640843796187378 -0.70457081030961188 1.9157580395279437 +v -0.56659678823225745 0.44084523531359721 3.3202389949045577 +v -0.59549081840494367 1.1521284245641008 0.73258254233678444 +v -0.20768183585011851 -0.59287923720610014 1.1394515931937184 +v -4.9850804716962154 -1.5955580111348213 1.2467934881123539 +v 0.27999234423043234 -2.2005765526452841 1.2816773662599894 +v 0.22001190470743684 -1.9430744854697626 1.2265504006751022 +v 0.30158778267106195 -1.2081236821018537 0.61821435319589557 +v -2.0921088048122205 3.3344274971656058 -10.172565452808772 f 1 2 7 4 3 5 8 10 11 9 6 f 1 2 17 13 12 18 20 19 15 14 16 f 3 4 26 27 13 12 25 23 22 24 21 diff --git a/results/search/topology_27/resume.planes b/results/search/topology_27/resume.planes index 1c844544..a9c6bb44 100644 --- a/results/search/topology_27/resume.planes +++ b/results/search/topology_27/resume.planes @@ -1,37 +1,37 @@ 36 -0.083304100789029847 --0.088100484641329607 -0.27244804273962236 -0.076862692563245419 -0.025795456240544322 --0.038380449174448779 -0.10972608155896313 -0.038123287781163862 -0.04166036326722531 --0.41890156952338919 -0.94337514578079285 -2.0309836703438915 -0.014602660992902789 -0.02086516406540485 --6.190802403701865e-05 --0.02414697874890739 -0.21727733209462741 -0.95488974798684834 -0.15336400759636548 -0.054125121400964961 -0.085955938953040004 --0.14364849385762171 --1.2841402100873487 --0.5907830470543074 --0.42232979223866662 -0.0089230311582001506 -0.50119260729955406 --0.70585211072870024 -1.1903478186731338 -0.33507894591362669 --0.6224041710042294 --0.71591368992295856 -0.23691783088922219 -0.4445299256794486 --0.20099825824422918 --0.18322256987739488 +0.083706840872764587 +-0.088526427745819092 +0.27376526594161987 +0.077430471777915955 +0.025986000895500183 +-0.038663960993289948 +0.10639887303113937 +0.03696727380156517 +0.040397107601165771 +-0.42092680931091309 +0.94793599843978882 +2.0408029556274414 +0.016185840591788292 +0.023127248510718346 +-6.8620436650235206e-05 +-0.024263717234134674 +0.21832782030105591 +0.95950627326965332 +0.15410546958446503 +0.054386802017688751 +0.086371526122093201 +-0.14434298872947693 +-1.2903485298156738 +-0.59363925457000732 +-0.49590316414833069 +0.010477497242391109 +0.58850449323654175 +-0.70926469564437866 +1.1961027383804321 +0.336698979139328 +-0.53622215986251831 +-0.6167837381362915 +0.20411264896392822 +0.43151217699050903 +-0.19511215388774872 +-0.17785704135894775 diff --git a/results/search/topology_28/resume.obj b/results/search/topology_28/resume.obj index 7a2c977d..0801ee58 100644 --- a/results/search/topology_28/resume.obj +++ b/results/search/topology_28/resume.obj @@ -1,47 +1,47 @@ -v 0.8869240119662215 0.67039047981875488 0.87625591508726408 -v 1.1616720571289016 0.097235683495156572 2.0284029785629323 -v 1.1364536309176745 0.71626711018233569 -0.26721381324947691 -v 1.2693720541050268 0.39378266048859989 0.46493175655571983 -v 1.5897412436850229 0.42671109804764246 -0.90274842997341831 -v 13.040791785440875 -9.8220717839247769 -5.6147124719032302 -v 2.0998433030421744 -0.84652547780194842 2.0447837499066703 -v -0.046617766352575071 2.9565601299746018 -4.347972561148878 -v -1.9849079765697759 5.8663607272113465 -8.093150104395944 -v -1.1315743850751876 2.4158906952350767 1.94295565578038 -v -0.045230921891825343 2.8789484843568847 -4.0532854136108947 -v 1.584700257053318 2.4784639918973199 0.89068337452268831 -v 3.1528839837814893 1.3344228462084904 5.5689138076436464 -v 2.6645197717008453 1.1122696102003509 4.6280569387930841 -v 0.22169124488097916 -1.0757453497041536 0.88247516883111543 -v 0.18648206697270381 -0.29850966903162485 0.1069543231899247 -v 0.016295245919593505 -0.57484010759646365 -0.04346059386348021 -v 0.12203388584360667 -0.49928793228601198 0.13575859843272697 -v 0.034947305841323911 -0.72531905076853453 0.13429065154544631 -v 0.17436525470163811 -0.1434119586621358 -0.059674851901656223 -v 0.81644369406236905 0.23294187377817441 0.38754590772869735 -v 0.95356369824393195 0.24293990209789004 -0.2698937997290527 -v 0.22607943548303866 -0.9071908748097075 1.1203392637918146 -v 0.19881378450800438 -1.193466395843495 0.70747013032082351 -v 0.63650245324209731 -0.42082989595437836 0.025281389280925135 -v 0.59865325174387762 -0.47880283619308456 0.10117888758075599 -v -0.069731090914725055 0.91995513040761656 6.0736457037466254 -v 0.59688958978890405 -0.52889737674528536 0.014093040230994502 -v 0.09334131281265011 0.1016912006898045 2.4728320943598971 -v 11.221810944185799 3.5065490634447767 -5.2507788038586156 -v 0.85000680456237554 0.17945297474225838 -0.75761306541600681 -v 0.19485400203280762 0.0093876434799738135 0.2317302990111455 -v 0.15641084872244204 -0.0094107337569943553 0.13460197781749356 -v -9.8409923784190596 3.2039149899552668 2.36341963670049 -v 2.2272620627350515 -1.4212868914678538 1.297474832299305 -v -3.5234326699828382 2.0999089436355005 3.6489107465672355 -v -0.56784405956943795 -1.1163186319348233 0.47193961832253067 -v 1.2542501901544358 -0.41685467238390872 0.0097712704131259487 -v 0.16156525739147357 -0.080727373277812889 0.23006816535348318 -v 0.0036238595655586998 0.34953816498214946 0.47642297642958187 -v -1.3892396382597119 2.5137310608724981 1.7327526969930986 -v 0.20358166644818035 -0.4616682953589239 0.085552693955665393 -v -0.22618464098460464 5.261148626290356 -6.8454227371543732 -v -21.133429827739882 11.080430618560641 -17.569434878230062 +v 1.069736583590938 0.80828662009883834 0.93990526612254921 +v 1.5466617058908856 -0.15938503192580386 2.8804297928985809 +v 1.3686628808701675 0.83837464671499928 -0.37107403392402893 +v 1.6580853648220846 0.35077715651118896 0.41099333055988801 +v 1.8867935679355221 0.48571674110891233 -1.036344819059275 +v 9.7659428873862684 -6.7000201764883034 -3.9162428552737625 +v 2.8941811401588593 -1.5051018530004108 2.8515340499979112 +v -0.02225245959637678 3.4963287517883721 -5.3786622031459839 +v -1.3076380551155999 5.4746055964989582 -8.1086398512627191 +v -0.41860689070122681 2.211667489189673 1.3012104726737215 +v -0.057367335105217014 3.3517777649141465 -4.6648386821524124 +v 1.5960942088485477 2.1081662758910293 0.90711490785974425 +v 5.3631804200676783 0.84874295197178029 10.372234264288849 +v 2.9379129181203449 0.44486161985381056 5.3940356658218045 +v 0.26950963018219548 -1.3396858480935561 1.1474803374916283 +v 0.21083819925473532 -0.37152312370370394 0.12899166859757435 +v -0.0014761355707737813 -0.70469601045184993 -0.033322066384092408 +v 0.12471448317759816 -0.6111052045241121 0.15905341300507841 +v 0.017463818928676236 -0.87779967281432603 0.16741613779561465 +v 0.19139883192571175 -0.14879615764525367 -0.11841818193922882 +v 0.93720234564031757 0.15855135774533838 0.359716624459962 +v 1.1274713126239715 0.24585020640200281 -0.3503613902577255 +v 0.13758769005940896 -0.89539354412964378 2.0899424089516927 +v 0.19192886924479813 -1.442440708342986 0.8432676735653537 +v 0.75093936908788683 -0.48962082056863665 0.027884562258014119 +v 0.70607292038019476 -0.55499603292766631 0.11358270958185029 +v -0.51046355927465359 0.25734515763430332 7.1548693275146071 +v 0.70965731661490994 -0.6117033349002412 -0.0062875495883980559 +v -0.088146701949679163 -0.2712423897546844 3.3816930396078222 +v 9.7661299548300011 2.7587343052741717 -3.8792505985873023 +v 0.89931652078169666 0.21245402347264228 -0.90969045225071565 +v 0.22778514511533279 -0.026986099433695631 0.23739613519305319 +v 0.15603501439315537 -0.037134182486213009 0.054485420627757838 +v -10.493154349860712 2.9384006644396825 2.6487953261596253 +v 2.8683504386583727 -1.8631218913475531 1.9866515827606857 +v -4.7298975274105333 1.7003292134377781 4.3275092984335499 +v -0.62557916905667621 -1.2996469731563407 0.52773900292601295 +v 1.8635891362525114 -0.41704745821574468 -0.012270052507265206 +v 0.15123107644995451 -0.1128615980205438 0.2708975260041131 +v -0.053486955986393338 0.39161343292710243 0.5539246722780129 +v -1.4226029572692098 2.2206571113464495 1.6244673129424883 +v 0.24755673965024386 -0.55121053664089814 0.084767665033093881 +v -0.1710354695502595 4.7133127451747336 -6.2371302197014327 +v -15.59325898308297 9.2035491784630228 -14.236031785125205 f 1 2 7 6 4 5 11 8 9 10 3 f 1 2 20 16 17 19 18 15 13 14 12 f 1 3 22 21 25 26 28 24 23 27 12 diff --git a/results/search/topology_28/resume.planes b/results/search/topology_28/resume.planes index e234c692..b292ebb2 100644 --- a/results/search/topology_28/resume.planes +++ b/results/search/topology_28/resume.planes @@ -1,37 +1,37 @@ 36 -0.86376774311065674 -0.86252391338348389 -0.22309757769107819 -0.19156444072723389 --0.073273651301860809 --0.082132831215858459 -0.67551356554031372 --0.26178833842277527 -0.13690845668315887 -0.021872887387871742 --0.063325710594654083 -0.0035989279858767986 --0.32456579804420471 --1.0138169527053833 -0.72439533472061157 -0.006110040470957756 --0.11954988539218903 -0.21271443367004395 --0.0031837918795645237 --0.2467198520898819 --0.19004024565219879 -0.17084307968616486 --0.067298091948032379 -0.22706779837608337 -0.1567266434431076 -0.015970529988408089 -0.003468572162091732 -0.2796083390712738 -2.6219909191131592 -0.87768125534057617 -0.057145092636346817 --0.34683015942573547 --0.29961258172988892 -0.029521187767386436 -0.029045954346656799 --0.017306016758084297 +1.027101993560791 +1.0229449272155762 +0.2576746940612793 +0.22266757488250732 +-0.092711038887500763 +-0.10095703601837158 +0.78895378112792969 +-0.31511390209197998 +0.17266319692134857 +0.019233418628573418 +-0.07116968184709549 +-0.003596095833927393 +-0.45356866717338562 +-1.3405693769454956 +0.5684780478477478 +0.018779031932353973 +-0.14116977155208588 +0.26520788669586182 +0.012313404120504856 +-0.3204876184463501 +-0.23803883790969849 +0.18775545060634613 +-0.067475698888301849 +0.25607696175575256 +0.14787684381008148 +0.027078235521912575 +0.012757862918078899 +0.27010330557823181 +2.3078012466430664 +0.77472883462905884 +0.066997542977333069 +-0.40817761421203613 +-0.35830733180046082 +0.042312759906053543 +0.042776796966791153 +-0.018971269950270653 diff --git a/results/search/topology_29/resume.obj b/results/search/topology_29/resume.obj index c0f8a7de..785336ec 100644 --- a/results/search/topology_29/resume.obj +++ b/results/search/topology_29/resume.obj @@ -1,47 +1,47 @@ -v 1.8519612444592801 -2.0729877057974089 3.6115567177134729 -v -1.4215243141203167 -2.8263529635150144 1.9968582473585781 -v -0.88295743493124546 0.66943096470594288 2.0678655050511225 -v -3.3072100141653498 -2.2138173435265363 1.0063010504381449 -v -1.4198628567128042 17.106140969189344 0.84703719324110993 -v -1.4423890096335603 15.248233020711366 0.94287981687396849 -v 3.436925557912494 -3.8868275489976924 4.5191319416649192 -v -0.44688938816393076 0.49292728134332181 2.2989455908294767 -v 3.0788166436276057 9.6632008731823813 3.5555155577724182 -v -0.936780391461423 -3.3616216000255004 2.273305943787256 -v -1.4624248343823236 14.723960361733214 0.96299584464760057 -v -0.12602336897713284 0.35379610741638662 -0.57394582981240805 -v -1.1873624746901164 -0.60643207575242031 -0.30005604240988765 -v -0.084742676479573925 0.44074239416980271 -0.63983889241377145 -v 0.27431059067213071 -0.13943440600396562 0.27547489395406982 -v -0.56761678977242058 2.4257073600464567 -3.212551093895331 -v -0.67251907124982169 2.5077291989623864 -3.3825362914700907 -v 0.0045377709497518848 2.2853145275713489 -2.6273092826145206 -v -0.55474469184229358 2.9492481019249599 -3.785996293469954 -v -1.1691070054544246 -0.09839994488623352 -0.85219321232167877 -v 0.51246727792366875 0.59696324410662949 -1.5566777393100504 -v -0.60126865795180451 0.76601797028625918 1.6081557873901593 -v -0.2384413137654888 0.44966007974415895 -0.061800743959745996 -v 2.5437356187189102 4.3275690439791488 2.5478280223626384 -v 0.064933208153375943 0.10924610884735883 -1.6437074614803202 -v 1.7085039639140354 -2.9106418381298389 -13.088778645401963 -v -1.6371646047943469 -0.96361806491965152 -0.062287387436018915 -v -0.92586480959694195 1.1797422869570393 0.61973248772756095 -v 0.12097005333599738 0.095550915291808286 -0.94245171832145291 -v -2.3305992935019284 0.74431423554234688 2.7785341999394157 -v 0.51624255592793711 -0.23766209996583137 -1.5348334149627796 -v -1.0082231514665612 -1.8690778153419019 0.84630461939654011 -v -0.92526640930383963 9.1287017621273208 0.35588578026879564 -v -0.59516416516559278 1.0458956762007505 -3.8367725703559996 -v 0.068309096040188866 0.19570535921639495 -1.7302213763223657 -v -0.96973354551832358 1.3857824361868629 -2.3652032662438645 -v -0.012893132684908968 0.25312810895175958 -1.1023618866517382 -v -0.55897698013839425 2.6232062551144004 -3.789172060632028 -v -0.20592482066844145 2.2925710861680964 -3.0592349116280211 -v -3.5948038759325005 2.8264825014428361 -2.4325466027617435 -v -0.23159765387465564 1.2300586632045321 0.029566233367011717 -v 0.03728830691216773 1.7783165609115508 -2.5515511818071999 -v -1.3663317673153905 0.17696932324374065 -0.97654732072062334 -v -1.3662642098283229 0.033523136000012582 -0.99230191833674408 +v 1.3693551871952083 -1.411334444678074 2.4844926749384872 +v -0.76579840395560128 -1.9817249451447787 1.519281375549808 +v -0.79221517040335432 0.83604278705532953 1.6109398544856726 +v -2.7952874530304377 -1.5861841905953613 0.63622673806859398 +v -2.5874543867398505 30.638172631527691 1.9099702488013111 +v -2.2883670126838944 22.196252027247475 1.7326373323165956 +v 2.2373813360414765 -2.3968472978512469 2.8322419465774629 +v -0.46178368396873271 0.81340056523416648 1.7562459597465201 +v 1.2790669023118173 15.271945967193954 3.0564206276829888 +v 4.5157113359101375 -6.2460754683487183 3.6986850077410036 +v -2.2918028511835162 22.915648497595065 1.7575016439505682 +v -0.17045865194521617 0.48548554818968842 -0.78231738923849881 +v -1.0178357628416537 -0.2811640408459376 -0.56364391805089309 +v -0.12462407359702563 0.58202342662534146 -0.85547951702307923 +v 0.46124407160736197 -0.29836149057556466 0.56420937337036259 +v -0.76273687976973381 2.2032085585562946 -3.1393972644673678 +v -0.98733445739227066 2.2552683676266874 -3.3657344400214062 +v -0.016640710250062845 2.8130048414126638 -3.2592941404400024 +v -0.57954561920456948 3.8441717245083091 -4.8297036306624097 +v -1.3154605912719728 -0.26670286234617796 -0.80284589187909861 +v 0.54410375762303254 0.7576233836322559 -1.8821358723268085 +v -0.65348404120385017 0.89860956424946536 1.4212092592664276 +v -0.35480943411137122 0.638187798796502 0.046523854113612706 +v 1.5959884911569777 3.3574505930224845 1.8767366783910371 +v 0.034876353247780517 0.22624449350694176 -1.9235244892733045 +v 1.6269363625771536 -2.6989985846920947 -13.00989449665553 +v -1.9052053089171126 -0.97357013779596768 -0.064619249670118672 +v -0.88209287515181556 1.2134265652958145 0.27995072799339593 +v 0.21724071298713746 0.074862387705380784 -1.360578206427751 +v -2.8053559956589358 0.24901232486215544 3.2478128093604761 +v 0.58160524506987954 -0.052800248127878792 -1.9125768757773289 +v -0.20763787936472491 -0.58674738538509319 -0.69009432996547349 +v -1.6134151786295856 15.970704658975482 0.90821512485847999 +v -0.5124231494303334 1.085953009417215 -5.1223081081428443 +v 0.041644914778993611 0.30594062675598149 -2.0333034110424504 +v -1.0839972364958714 1.6123168215526205 -3.0232669753333141 +v -0.01809681088706834 0.34818746110888649 -1.5713777123285575 +v -0.51683879695975987 2.7065572077888937 -4.8409977073462347 +v -0.017867924078635019 2.3083038799972395 -3.355030223473662 +v -3.0239538897115827 1.7116376024891373 -1.8845735895213243 +v -0.30623934841208184 1.2809953107146774 0.16083725624894693 +v 0.033482834966214146 2.1538583692947424 -3.2227647155150563 +v -1.6472632306734076 0.34946248426339727 -0.98519870904626028 +v -1.6398069494914633 0.027138835518509045 -1.0179749386010588 f 1 2 10 4 3 8 11 6 5 9 7 f 1 2 13 12 14 18 19 17 16 20 15 f 3 4 27 26 25 13 12 21 24 23 22 diff --git a/results/search/topology_29/resume.planes b/results/search/topology_29/resume.planes index e2b15b35..30dd0fe9 100644 --- a/results/search/topology_29/resume.planes +++ b/results/search/topology_29/resume.planes @@ -1,37 +1,37 @@ 36 --1.0267403125762939 -0.11701013147830963 -2.0269222259521484 -0.022854076698422432 --0.033957064151763916 --0.030488923192024231 --0.33053633570671082 -0.32717832922935486 --0.13379573822021484 --0.34578683972358704 --0.0074925962835550308 --0.22651509940624237 -0.089723631739616394 -0.080523386597633362 -0.0042396183125674725 -0.22535267472267151 -1.0173907279968262 -0.35184386372566223 -1.0231513977050781 --0.0084239309653639793 --0.4986882209777832 --0.34639585018157959 --0.66275244951248169 --0.675850510597229 --0.12348286807537079 --0.010223262943327427 --0.015035268850624561 --0.036474812775850296 --0.0051243919879198074 -0.046501368284225464 -0.032944045960903168 --0.42843407392501831 --0.44976148009300232 --1.5213637351989746 -0.042902551591396332 --0.39715307950973511 +-0.71335768699645996 +-0.059156138449907303 +1.6129839420318604 +0.03044915571808815 +-0.04524192214012146 +-0.04062122106552124 +-0.45142081379890442 +0.44683504104614258 +-0.18272799253463745 +-0.47035416960716248 +-0.010191756300628185 +-0.30811536312103271 +0.12177947908639908 +0.1092921644449234 +0.0057543199509382248 +-0.071682490408420563 +1.2384748458862305 +0.3559931218624115 +1.0768249034881592 +0.062778748571872711 +-0.34476017951965332 +-0.33014166355133057 +-0.66662764549255371 +-0.50430655479431152 +-0.17676866054534912 +-0.014634846709668636 +-0.021523350849747658 +-0.11695950478315353 +-0.018120165914297104 +0.15158775448799133 +-0.10926877707242966 +-0.61717778444290161 +-0.67825168371200562 +-1.7848026752471924 +0.0083458181470632553 +-0.48809900879859924 diff --git a/results/search/topology_3/resume.obj b/results/search/topology_3/resume.obj index 6e7e046d..0f8c6786 100644 --- a/results/search/topology_3/resume.obj +++ b/results/search/topology_3/resume.obj @@ -1,47 +1,47 @@ -v -0.63559573051957285 0.030380092970450308 -0.96627052972280625 -v -0.64436381465747894 0.6409221770329151 -0.61191075281604879 -v 0.47399444260978091 -4.1567993570116197 -1.8169890053978559 -v 0.44972903640872242 -3.370139961785017 -1.379928535077025 -v 2.1582506368913634 -0.87070643074334453 2.6962516717794829 -v 1.6976670570076924 -0.44005174715921075 2.2622930628997659 -v -0.35813360508297198 -1.6220660725285616 -1.5434651509076072 -v -0.23583637902267698 1.2284966432819169 0.35668961493214485 -v -0.56199898936160575 -4.9424266075697068 -3.8492135056171652 -v 0.61031449978203689 -3.7866629600867383 -1.3889867005349616 -v -0.94261452983270866 1.3858293713513834 -0.61235846319970955 -v 1.7476924555418354 -5.5524194666249311 -4.3530362080126999 -v 1.7581821937997513 -5.7632150623044893 -4.4758570482784013 -v -0.8722937724390073 -0.0010770146354258797 -0.96944347526148023 -v -0.1956904516756337 -1.4138364048658401 -1.83115907873899 -v 0.5484452707673102 -0.77963244438700174 -1.5109788417561074 -v -5.6522383209570659 -3.6917680023922945 -2.804109422682834 -v -1.2735166035595702 0.94156807046354862 -0.39767028161467205 -v -0.11029314869530529 -0.3135249195064167 -1.1989733690669806 -v 3.8160824352468943 -6.4890922196234504 -5.027395039358213 -v 0.56406369012994939 -0.1754474098849286 0.090452866797044396 -v 0.72521443332968993 -0.088040077906178224 -0.095395599375153961 -v 0.54375459564845163 -1.0181096009802344 -0.31147930639080135 -v 0.050461529139077324 -1.5632630920728963 0.11543701825278174 -v -0.30539812880686829 -1.1423764741878084 0.839821922218844 -v -0.42223958062798839 -1.4937184536009833 0.82728638425413725 -v 1.2085745244874337 -1.4842848500309624 -1.5010482267428282 -v 1.3149051922326733 -0.7532913460183196 2.0311072739750506 -v 0.96022304123571134 -1.4400661150873464 3.8486990131655112 -v -0.49373862733336882 -0.47898132154574774 0.5405287545378672 -v -0.37911554632784672 -0.10329243512519444 -0.48488301987509941 -v -0.84325644133971067 -0.15908810143515878 -0.50788145842600585 -v 5.3764775059810184 -1.4835286052636976 5.7038745510457032 -v -0.24919306052145937 -1.5316370479461519 -1.4842026749911588 -v -0.18824509847418627 -2.1418804086670922 1.9351974041473037 -v -0.25864360364670946 -1.1477295331359809 -3.4967573407030303 -v -5.1810395389372328 -3.2713757263795773 -2.5274012995191755 -v 2.9085650746058485 -2.0042034978190326 3.5735470718298736 -v 1.3698526769791477 0.40580652683887863 1.8114446496498786 -v 0.10334358566300164 -0.92689270609398844 -1.0750326303948896 -v 0.27984430722795312 0.31741847148620528 -0.21437077495769391 -v 0.67648830877704513 -3.9666004959036378 -1.3462430299521859 -v -0.34149914651666874 -1.9562277552519673 2.2403521828884654 -v -2.9550544000564356 4.9562264784474284 1.6401506325564679 +v -0.67210933386423044 -0.60391506869310263 -1.4186214015681078 +v -0.51352453433737844 -0.2834156209142194 -1.3388002122519473 +v -1.2412566780171506 -3.2064899652790722 -0.85744806640283722 +v -0.42022292149809087 -1.8234435729056397 -0.28295542711522387 +v 0.80435264213280577 -1.3603176888512629 1.5075562141822343 +v 2.6125440878177475 -0.14145411531425611 3.8391404205020585 +v -0.73940946872374647 -1.5606623996241997 -0.9734787049875071 +v 2.979593005799432 0.20200483273092346 4.256381335569329 +v -2.4762037135808068 -4.2984815895809625 -2.2983793656633549 +v -0.36540859836208867 -1.9551570437321462 -0.11383565074428481 +v -0.69877011973308767 0.27928913056632387 -1.9789659005705431 +v -0.46372431462602115 -3.6877166598237094 -1.8634425880575514 +v -1.1666463855268481 -4.6246518853892198 -2.1413899370319749 +v -0.98183696625365113 -0.58627959535182328 -1.4735780250867199 +v -0.35459793281376195 -1.4715670490808475 -1.4955289540641741 +v 0.5395044045279741 -1.1664746051503669 -1.2810490992592918 +v -2.9357695083007576 -4.5997248394912678 -2.4671838840851956 +v -1.9883631681931959 1.1705758084648525 -1.3856182407543924 +v 0.16358382729174289 -1.0195295818780898 -1.3280611637721009 +v 2.885291623332622 -5.4889841487926381 -1.521808682721518 +v 0.64166017535349262 -0.90410558524238815 -0.29239437867619689 +v 0.86415554943247741 -0.87138676603395115 -0.43276844193125241 +v 0.38523332007429767 -1.1499005424728275 -0.31070481364583324 +v -0.24921148419310865 -1.3338191932430992 0.011141720338656791 +v -0.50309619098453284 -1.2234158522775493 0.29918216435998668 +v -0.64020208293133918 -1.523793654000279 0.14316545393847369 +v 0.87516877553646699 -1.0957888394320017 -0.63533127713011761 +v 0.0057321570316386196 -1.1915221531291049 0.87717108550928113 +v -0.33918811863494058 -1.2786646947438345 1.239104854037788 +v -0.63237069419665048 -1.0008984515557735 0.15255403874139639 +v -0.40387191565571473 -0.80832328371485784 -0.62155775147756986 +v -0.96091963165321015 -0.79133378704378099 -0.66203617771943435 +v 2.7021753547724718 -1.5264812818937263 2.0745410303895779 +v -0.53348885012769587 -1.4905067136351509 -0.9256845929052725 +v -0.69406096049988086 -1.4108301115745228 0.99282270944383255 +v -0.25671752851819307 -1.5445549589673075 -3.0203916695761674 +v -2.7525379920141337 -4.1507701112339097 -2.2586346836565054 +v -0.48937393701216636 -2.2234040535493063 0.31382554013226027 +v 3.2882623287416806 0.020420218064704586 4.6068158474523671 +v 0.10333861566837745 -1.2679097476705108 -0.77545706174925721 +v 0.75015140051999829 -0.73015833699363353 -0.48900859559352383 +v -0.33722113751068433 -2.1236205517057862 0.45925002445583862 +v -0.92562776961991311 -1.2168304846810449 1.0909938094964042 +v -3.053844991341772 3.3765568433965911 -2.9633217692245086 f 1 2 11 8 6 7 9 3 4 10 5 f 1 2 19 15 16 20 13 12 17 18 14 f 3 4 26 25 24 23 21 22 27 12 13 diff --git a/results/search/topology_3/resume.planes b/results/search/topology_3/resume.planes index 01d4d4c5..c2368a42 100644 --- a/results/search/topology_3/resume.planes +++ b/results/search/topology_3/resume.planes @@ -1,37 +1,37 @@ 36 -0.011588104069232941 -0.0046350918710231781 --0.0076992744579911232 --0.048628345131874084 -0.44301342964172363 --0.76449060440063477 -0.42688941955566406 --0.1526113748550415 -0.2983839213848114 -0.026664342731237411 --0.19377471506595612 --0.068014293909072876 -0.77651005983352661 --0.82939404249191284 --0.16185848414897919 --0.3873920738697052 -0.11132809519767761 -0.49054288864135742 --0.009794299490749836 -0.19958554208278656 --0.28654438257217407 -0.34836727380752563 -0.082731671631336212 --0.19105182588100433 --0.44476377964019775 --0.17814648151397705 --0.11498585343360901 --0.53214073181152344 --2.4279434680938721 -1.2098824977874756 --0.81512027978897095 --0.31304448843002319 --0.055887576192617416 -0.31797748804092407 -0.29529348015785217 --0.18397457897663116 +0.25812089443206787 +-0.089519761502742767 +-0.15338052809238434 +0.21087507903575897 +0.17746423184871674 +-1.1315137147903442 +0.31861361861228943 +-0.36370065808296204 +0.42023575305938721 +-0.011089644394814968 +-0.91188240051269531 +-0.23012164235115051 +0.36671355366706848 +-1.129234790802002 +0.077590301632881165 +-0.4323786199092865 +-0.00035904863034375012 +0.38066118955612183 +0.017251163721084595 +0.086394280195236206 +-0.20114235579967499 +0.77137815952301025 +-0.78473347425460815 +-0.26861977577209473 +-0.69283139705657959 +-0.64261096715927124 +-0.36436861753463745 +-0.44971299171447754 +-1.1870735883712769 +1.2850342988967896 +-1.1138958930969238 +-0.63161325454711914 +-0.13088075816631317 +0.3682786226272583 +0.21181619167327881 +-0.21462997794151306 diff --git a/results/search/topology_30/resume.obj b/results/search/topology_30/resume.obj index 27c25905..a0497538 100644 --- a/results/search/topology_30/resume.obj +++ b/results/search/topology_30/resume.obj @@ -1,47 +1,47 @@ -v 1.897413464519391 -0.52851932278308966 -0.61768743454043262 -v 1.6712332347596717 -0.29380546662556889 -0.55115419691698175 -v 0.089193731076431249 0.53997852756223075 -1.4579283538348595 -v 0.77210954497198336 0.54626953692856872 -0.44456378838954791 -v -0.072742972553086205 2.5149776728589304 1.6584875967616062 -v -0.30274050162182836 1.8094275234352417 0.12254867978734363 -v -0.60713618456757534 1.6177926594431391 -0.64983248167148366 -v 1.9153573509764101 2.2206776341993084 4.0776695972024894 -v -0.054393806612487106 1.0925725396199926 -0.73026804059704731 -v -0.089161190294729895 0.76879509946432367 -1.3311918226061017 -v 0.027389628762022021 1.0152806114223329 -0.7414570823264186 -v 1.650565947469208 -0.54943896872358844 -0.57230470323808591 -v -1.0064853787543429 0.19793401015169221 0.011769303295106615 -v -0.29436890250774783 0.41321870126281735 -0.10392661243192611 -v -0.70480969044312447 0.58096557120227688 -0.0085637524114748897 -v -0.67130593054310428 0.69056401611759055 -0.004231678384779114 -v 3.62917114524969 -2.9553052784481815 -1.1889843457531695 -v -7.5265321612779275 -1.6965207837356404 1.0786003554205197 -v -1.2857734355664392 2.6188452850948365 0.30335652446360672 -v -0.39826301131999747 -0.0072187236996283308 -0.12527882660579268 -v -1.1282477583621049 -0.3818318460716652 -0.44833923739794995 -v -0.12568064223041189 -0.20392544549680316 -0.72187000277755786 -v -1.2591281996770085 8.3351664239200609 -8.8018921798618166 -v 1.5419355387551592 -0.38290220235353273 -0.72101905481516426 -v -6.8548055192957031 -1.1686193852113449 0.89385591712896306 -v 0.35527088287898828 1.0490719858834505 -1.9738535040498641 -v 0.073951758716331834 0.80503931876262602 -1.7107833001526966 -v 0.077814342704856182 -0.30383569477905026 -0.64683088836719072 -v -0.95841325813740996 -0.046881880005186408 -0.22526646190804922 -v 1.1190922599785895 0.19128518464469921 -0.90740501039261245 -v -0.22309496877101528 2.4295370290805058 1.6475726568020379 -v -1.0996570521647471 0.024037166497322387 -0.10189636673531277 -v -0.20349690840228635 -0.10706754746904691 -0.60282677565676779 -v -0.19556649919630603 1.5684386373756216 0.67568523889906618 -v 0.317694222224429 3.4357734095192649 0.57035963606626039 -v -1.0204291706922723 -0.027646803589794655 -0.43575264728690399 -v -1.0510969623738093 -0.15019378827218266 -0.41945732420368709 -v -0.60523717639922392 1.7831439480563485 2.3054961895316453 -v -1.1711142509086541 2.9655656081010733 -0.13809407900522896 -v -0.22756418006851278 1.5831239493893716 0.81403013512548483 -v 252.22687698961136 -239.4205522760262 -427.47691100050224 -v -0.93970884536425425 1.4458096540158647 2.5164572197683239 -v -0.38684912557123408 -0.060935255693412065 -0.22335741852751512 -v -0.24859828547359705 0.086877169140565008 -0.60873910051621827 +v 2.152658366327993 -0.12718951118562338 -0.80913489126492677 +v 1.9056579449813253 0.13391864052443961 -0.72318134480599161 +v -0.041951315588951703 0.51236372895058258 -1.3153021641513298 +v 1.1704886387718536 0.61395702917426886 -0.69188218645317745 +v 1.7870093594481335 3.2612725009021162 1.586640997073637 +v -0.2591611860658542 2.3124348972807121 -0.05293479559371761 +v -0.66070724970206751 1.7627519981838078 -0.64936891798723295 +v 11.290702900600021 5.8390493389377163 7.8195293763250193 +v -0.055658976720578936 1.2680843071325809 -0.75039034271703375 +v -0.22826568293202595 0.84314143674891029 -1.1493386629390567 +v 0.025111208609543304 1.1986386160282649 -0.76645345992092873 +v 1.827122179352149 -0.21283875611241185 -0.74127835999488334 +v -1.241543514684974 -0.01962830919365062 0.0041302853482900748 +v -0.32889252442534062 0.30289316212143869 -0.17739803738889592 +v -0.88747508556740395 0.45434781130411456 -0.029421864013531307 +v -0.76374676832355748 0.8070229079425012 -0.021376315018055619 +v 4.0040605611921674 -2.833860046075197 -1.5326262506457533 +v -8.5856446743801929 -3.0080026296796785 1.423344525132975 +v -1.1620317593525333 2.167815063973678 0.21655299773655912 +v -0.42750605673482872 -0.089171340332603752 -0.19554044250111283 +v -1.3917361944133106 -0.57033829638777167 -0.45783414512072107 +v -0.20318109059307671 -0.20441926064015231 -0.74771443732540832 +v -1.0727402197711426 4.7776843496499302 -4.6925886775562713 +v 1.6825074859234452 0.0042070887252419814 -0.91312507406734134 +v -8.4342832803453973 -2.8943950203712348 1.3832211781497254 +v 0.23303604393023661 1.1630487407008088 -1.8305645366863426 +v -0.0092813309118032206 0.91839894171603198 -1.6368162465406848 +v 0.14115154259569937 -0.22014582486549428 -0.73530082066118529 +v -1.2197101502291761 -0.2747218647133034 -0.25996103273035231 +v 1.4109607302893257 0.37761105918224119 -1.0572968482207843 +v -0.21059959915195431 2.0768718407094964 1.5110758124953487 +v -1.3575669425652734 -0.26240177957360639 -0.17221457993389699 +v -0.26820349720273179 -0.13447630594077437 -0.64294227447990859 +v -0.092936374630520943 1.9442525182744275 0.76510106329203165 +v 0.13804391130453011 2.7389028724106597 0.64948227106500744 +v -1.2586276877013745 -0.23510460417319751 -0.40682392010214929 +v -1.2933033038130217 -0.34968106304939589 -0.39399134879852482 +v -0.2742385161587757 2.0292792219671871 1.5276131046848667 +v -0.73072863397919996 3.1109751509996775 -1.0878751642963305 +v -0.11836985779998915 1.9511264821280137 0.89848623632962621 +v 8.3567455478607275 -5.5704433712026029 -16.204475704367386 +v -1.3923935893886465 0.89024229306888347 2.3999742727900095 +v -0.41507002326412767 -0.1481953335488263 -0.33192433351229761 +v -0.30417262216293117 0.034627176665599183 -0.64146998274592992 f 1 2 8 5 4 6 7 10 9 11 3 f 1 2 20 14 13 15 16 19 18 17 12 f 1 3 26 27 22 21 23 25 28 24 12 diff --git a/results/search/topology_30/resume.planes b/results/search/topology_30/resume.planes index 1056e327..95ddcfce 100644 --- a/results/search/topology_30/resume.planes +++ b/results/search/topology_30/resume.planes @@ -1,37 +1,37 @@ 36 -0.60915738344192505 -0.70461714267730713 --0.41489112377166748 --0.036927763372659683 -0.018883891403675079 --0.19215419888496399 --0.049373317509889603 --0.4623260498046875 --0.48166730999946594 --0.13018834590911865 -0.26780298352241516 --0.30299586057662964 --0.73353070020675659 -0.21491819620132446 -0.23576152324676514 -0.69311517477035522 -0.54372680187225342 -0.10259345173835754 --1.2485244274139404 -2.0343668460845947 -1.2735321521759033 --0.67203253507614136 -0.51658165454864502 --0.23945245146751404 -0.0010277910623699427 -0.038921736180782318 --0.021197384223341942 --0.1321532279253006 --0.049710135906934738 --0.6225513219833374 --0.37789171934127808 -0.098349638283252716 --0.097842089831829071 --0.39735299348831177 --0.097893521189689636 --0.18009227514266968 +0.42779946327209473 +0.71703219413757324 +-0.9488416314125061 +-0.06357371062040329 +0.028442163020372391 +-0.26908969879150391 +-6.3532112108077854e-05 +-0.44268757104873657 +-0.55906981229782104 +-0.15815898776054382 +0.28515836596488953 +-0.28851839900016785 +-0.82931786775588989 +0.28418567776679993 +0.29642388224601746 +0.94480061531066895 +0.74187302589416504 +0.14191953837871552 +-1.1135610342025757 +1.8177672624588013 +0.94613349437713623 +-0.74896544218063354 +0.54159218072891235 +-0.25283795595169067 +-0.013269451446831226 +0.067165687680244446 +-0.030277816578745842 +-0.15768414735794067 +-0.027678823098540306 +-0.67321944236755371 +-0.40021711587905884 +0.10444445163011551 +-0.081694707274436951 +-0.47502082586288452 +-0.099048227071762085 +-0.22867974638938904 diff --git a/results/search/topology_31/resume.obj b/results/search/topology_31/resume.obj index 8de84ff4..c0b1c781 100644 --- a/results/search/topology_31/resume.obj +++ b/results/search/topology_31/resume.obj @@ -1,47 +1,47 @@ -v 1.090836128425978 0.47830342833314615 1.4255902529373397 -v -2.508085976380046 0.5081220387457539 -3.0210022557262945 -v -0.23669578792417709 -0.059052972318712343 0.59583985071060508 -v -0.50304111316436007 0.28011717829659227 -0.23126567282436836 -v -1.4030633823142136 -1.2978231505303017 0.99991874698459582 -v -0.55643875406154086 -0.27543409625960807 0.52450984296462644 -v -2.6877952999328736 0.080549348130726658 -2.6088927866226039 -v -1.3663109167230691 0.46428675184275908 -1.5594937458030269 -v -3.3674143490431687 -1.7692333645061336 -0.70631271074463819 -v -0.94188487232121787 -0.36254815026973131 0.18175116190157914 -v -0.43516720390984043 0.40235371040790446 -0.32889999768028821 -v 1.0628147364639922 -0.63561424425299462 -3.32446900477533 -v -0.21965483971738944 0.19953991943117294 -1.4193371882863519 -v -0.79884377667393602 0.35463696301114633 -1.4988350808282442 -v -0.31437202338706965 0.42789304492208474 -0.57322160960610102 -v 2.7411546154915523 -0.15553768201993937 0.83986878528474318 -v -0.018659123306910778 0.29603291659704029 -0.75556263707754734 -v 1.2634266399510228 0.4178695462098066 1.3891084621865197 -v 0.58206003771116066 0.4773178930267743 0.77496769186611414 -v -0.36644581172347362 0.48008730236604819 -0.41848386011297217 -v -0.43731859836410697 0.25255317729713872 -0.44130660122782644 -v -0.41653626020805673 0.21726530630335247 -0.31166910705517625 -v -1.2487873824948033 1.0478372368353841 -1.2047569398124185 -v -0.23397516257099701 0.15032384637777427 -0.96612501977359755 -v -3.5694162018164293 3.5609754544982315 -5.149966122702156 -v 3.3124860389337423 -3.0019740856063657 -0.015891897571980583 -v 2.1898634302743596 -2.1017693342193309 0.40378284831192696 -v 1.1531589256842303 1.3775128597640747 0.52764301534307223 -v 2.658617343702415 2.2374389174144835 1.9242849383661313 -v -0.89654692590604734 -0.53239691308818737 0.35568993564102913 -v -3.1385945250443212 -2.3523140264131879 -0.46239674129632186 -v -3.2969718504605372 -2.6240301987613992 -0.18517937240175378 -v 3.1718960124722106 -1.0388427273232443 0.7021428870266806 -v 1.2632876769259718 -2.9822761036536565 -1.4744656973342971 -v -0.28305365049336334 -0.3057832228123637 -1.215329284853333 -v -1.8011476186624691 -2.0004199246209282 0.78125142830801964 -v -3.4943394600305075 -2.0273661821894358 -0.60476602264725288 -v -0.93252377817809939 -0.64660234119147442 0.41739249030452924 -v -2.1268747942804067 -3.6226312571916575 0.22567066246409395 -v 0.2709597305893946 -4.1551542549643061 -0.17073358966545027 -v -0.096156825214482392 -3.5071072622228905 0.093699387318666782 -v -1.811642514894678 -3.2598862120475909 -0.18043404942916386 -v -1.7601370474353535 -3.0587057271865246 -0.13584068741928479 -v -0.04430726372203983 -3.2290641876987167 -0.018073075829729446 +v 2.2134516233706347 0.24280258734531199 1.5362326447007348 +v -3.9185857401888748 1.1587812076558923 -3.2839698653044049 +v -0.17318328513395817 -0.024465012901231178 0.51670187295347259 +v -0.45299567554206721 0.30751575006925869 -0.10171252311115561 +v -1.0263495396404849 -0.57833899809855438 0.78159754382451418 +v -0.63786290573672477 -0.1403326341334333 0.40584656525077512 +v -4.0466382590924974 0.93495790033859105 -3.0510218175029498 +v -2.6702124248880015 0.95509155817625535 -2.2790271748593129 +v -4.6080692862804824 -0.55143369597780567 -1.3361639108859211 +v -0.84822268678639867 0.03225631086175574 0.046648277625516613 +v -0.23196188003567378 0.54783243903411682 -0.30329039013286752 +v 1.0673837165708642 -1.7452487673818289 -1.9941967734184554 +v 0.37070908488738702 -0.82454069571219535 -1.5473204169219277 +v -1.2601744902241372 0.14355411212055597 -1.9470312871977367 +v -0.163716756493584 0.51940059365429792 -0.42797495948273212 +v 3.736160530377008 -1.692262509476715 0.6536512240779967 +v 0.43456417444100831 -0.3043905422818538 -0.8520684468691142 +v 2.4173732677366373 -0.001447859072760631 1.4361751401383918 +v 1.408909208545613 0.35011134145347245 0.88813329480819447 +v -0.16916789722500231 0.58019824369292883 -0.35921185776578562 +v -0.4287429877709254 0.26638151141234595 -0.30892301025149577 +v -0.39912708596074054 0.23586491402065426 -0.14596079040635146 +v -2.630826560154738 3.0411591223297449 -1.7544386924544881 +v -0.13845156469228886 -0.14751949636251319 -1.1336376466646447 +v -1014.1270133768357 1267.9400423069405 -869.49341468412445 +v 2.4638092397963551 -3.4673789398120118 -0.28702432106680342 +v 1.8388355422570009 -2.6441301196153089 0.056863711322008827 +v 2.0569552785701677 1.9642845572994883 0.59879858868428948 +v 7.9252753784674512 5.3264272977510849 4.679581547981627 +v -0.7273038158176357 -0.12818805784655071 0.15360051325048432 +v -3.3052784066578971 -1.9183836218924761 -0.70008693423414381 +v -3.3746710048758897 -2.0064623404768724 -0.60346471356036124 +v 3.6714699609120212 -2.115874549729428 0.51552716812713051 +v 0.88753458102558735 -2.6286507795315175 -1.1596372521681748 +v -0.42003056576885806 -0.87222360867236726 -1.4651912807590537 +v -2.122645239391983 -1.6913087270973801 0.10984789578025772 +v -4.2906455311999165 -1.3982702428150426 -0.90700787554712026 +v -0.82611899594975879 -0.53884762195381342 0.25507808687797667 +v -2.4142700818057254 -2.5642226177677063 -0.35646862491598719 +v 0.062510127684717684 -3.2184028171944354 -0.41874452569021836 +v -0.037801560990957973 -3.0354353070090734 -0.33820349367650226 +v -2.1892114815458132 -2.4280072299681947 -0.53658607165836969 +v -2.1756620651169682 -2.3977382506533029 -0.52525706405953099 +v -0.019099565644892739 -3.0052983263160336 -0.35562658188129631 f 1 2 7 8 9 10 11 4 3 6 5 f 1 2 12 13 14 15 20 17 16 19 18 f 3 4 22 21 24 23 25 12 13 26 27 diff --git a/results/search/topology_31/resume.planes b/results/search/topology_31/resume.planes index 6db88a81..605c42e2 100644 --- a/results/search/topology_31/resume.planes +++ b/results/search/topology_31/resume.planes @@ -1,37 +1,37 @@ 36 --0.20857563614845276 -0.2520022988319397 -0.17050400376319885 -0.12285497784614563 -0.40922480821609497 --0.096690438687801361 --0.087975822389125824 --0.10319223254919052 --0.013985852710902691 --0.22245891392230988 -0.22989693284034729 -0.098241560161113739 -0.35008716583251953 -0.25393646955490112 --0.5337146520614624 --0.23999571800231934 -0.23157157003879547 -0.28868237137794495 -0.10124395787715912 --0.42612984776496887 -1.1848767995834351 --0.67391377687454224 --1.5887249708175659 --1.9422121047973633 -0.032194953411817551 --0.46493315696716309 --1.1416242122650146 --0.05304311215877533 --0.11942801624536514 -0.60005784034729004 --0.54561853408813477 -0.19496430456638336 --0.24937961995601654 --0.35046818852424622 --0.06560651957988739 --0.32577845454216003 +-0.10521635413169861 +0.24868859350681305 +0.18110941350460052 +0.25530326366424561 +0.32119446992874146 +-0.2637486457824707 +-0.13183777034282684 +-0.10210662335157394 +0.0048388377763330936 +-0.23263385891914368 +0.28903350234031677 +0.096402592957019806 +0.41573229432106018 +0.17972813546657562 +-0.74591612815856934 +-0.13498061895370483 +0.11153730750083923 +0.31993007659912109 +-0.099731825292110443 +-0.46669679880142212 +0.93599599599838257 +-0.45780652761459351 +-1.5660892724990845 +-1.7564026117324829 +-0.10896449536085129 +-0.81117653846740723 +-1.5200672149658203 +-0.080818764865398407 +-0.14884738624095917 +0.49435093998908997 +-0.41634500026702881 +0.29701054096221924 +-0.29561054706573486 +-0.23995432257652283 +-0.010318511165678501 +-0.27541577816009521 diff --git a/results/search/topology_32/resume.obj b/results/search/topology_32/resume.obj index 9a844309..84feb334 100644 --- a/results/search/topology_32/resume.obj +++ b/results/search/topology_32/resume.obj @@ -1,47 +1,47 @@ -v 0.4118936513124456 -0.435218626024369 0.5266487910636426 -v 0.32828938042199263 -0.29401337635566399 0.59692236954307398 -v 2.8752986937019829 4.7178144249338247 1.3331628735775283 -v 2.4527664177532906 2.6523047236495896 0.82979927149601362 -v 0.30655426223514065 -1.6094693229384507 0.19748721207484282 -v 0.92005567815711375 -1.665481175313396 -0.01540060522783987 -v 0.040152657494687945 -1.1505155062553922 0.42419413725573052 -v 13.680987509299948 -7.0510305204537751 -5.7472773136691462 -v 0.89925695738570122 -1.9202855766377813 -0.087482903388273303 -v 0.30472180396179693 1.6956949519379598 1.2190868833816568 -v 0.02691920677180544 -0.88142875862345371 0.5115379617914847 -v 1.4350366234028125 -2.1281061837902326 -0.34571718493625525 -v 1.7069073823837755 -2.9816244581188878 -0.43562797703821654 -v -1.4831079470480113 -1.7423576259113918 3.7039758379684176 -v 1.108261741590147 -1.6876801522373517 -0.031858380950971252 -v -0.75491207071280342 0.78248939569850073 1.7720867292292677 -v 0.24756335964420206 -0.93005701488012005 0.93627285726822562 -v 3.4053521557704207 -2.2605351250311978 -3.1250497636122088 -v 0.018438071776090383 2.7784454312808355 -0.038657354989553583 -v 0.0069837479292774616 2.2175850322743678 0.17491462452799744 -v -0.7343954545961956 -1.3772631078165307 -0.77717566149221429 -v 0.14441040580529022 -1.5100909919207177 -0.56991560123904594 -v 0.38698626146447124 -2.4264665873253564 -0.67949211312005831 -v 4.2814637059766456 5.402161820375138 1.8348388068039823 -v 0.13855223560334881 -1.3424571251002757 -0.53968302700713722 -v 1.6420741540905333 2.7178553938941539 0.62779995500961894 -v 0.14836227317703093 0.36000793320865171 -0.2143143887429857 -v -0.19524838219870091 -1.2546034621476438 -2.6382176570288078 -v -1.8074743061282168 -1.055757818746947 -2.5817986047736188 -v -1.8140709972343041 -1.6897066337464488 3.6003335946613229 -v -0.17155454884464413 -1.601116392092975 0.70715527343703011 -v 0.18958795063318321 -1.4680622116862934 -1.0350770355406491 -v -0.29188409970611345 -5.882903878860394 -5.6148861554712584 -v -7.1408315696441669 8.548568792810169 3.350497659581213 -v -0.46840517373111501 -1.134376308887753 -0.1679449254886487 -v 0.08390095181213908 -1.5137032089681794 0.043951072950970005 -v -2.0027051376563914 1.4152545152209453 1.0261366950917374 -v 1.6252621961136147 3.150168732182995 0.27111661319606051 -v 0.0010165556364952987 2.9957516293308935 0.10013115378349191 -v 2.5950507576390964 -5.4842155369242622 7.5110242543749006 -v 0.4496729835062398 -1.7011273484438134 -0.00044561159626699265 -v -0.071847983098924526 1.8285995016784329 1.0414545715214378 -v 0.35496038535636987 -0.068931480036216922 0.47349981998779678 -v 0.039945532561914514 -0.61563972828491553 0.33332278586992103 +v 0.5794826387197195 0.3808126362479165 0.46244135789945084 +v 0.50338206730437818 0.51501509937527257 0.54185598774349442 +v 1.8518085747213875 7.105707023848832 0.14800662442211401 +v 1.8072797047748526 6.7068012629697416 0.14053314452984828 +v 0.42754490717689153 -1.2101094212064647 0.41097656786157566 +v 0.78603262262170437 -1.2872040691500977 0.099593289201381913 +v 0.31127798113684285 -0.8315720354136602 0.55190944823255472 +v 3.0190487283996976 3.3156363760712724 -1.2657120623894831 +v 0.81436787812071698 -0.75299953243558226 0.13602552793362666 +v 0.63826507502963192 2.1856620199611414 0.61672768870666439 +v 0.3173515216138344 -0.44362685842371985 0.5906125943525371 +v 1.0136801004306348 -0.38132279199042796 0.0063584774622227891 +v 1.3350814741350019 -1.643995450086257 0.25175635660662821 +v 0.48961715054182736 -0.83264178881399953 1.7012539094801644 +v 1.2060868822155688 -1.2326872120615819 0.23294312646612189 +v 0.41277264926386281 -0.14308368460556872 1.3190319648929734 +v 0.4904479467191083 -0.33167610427847399 1.2810509423550616 +v 0.9582672419665631 2.1877356791142315 -1.998430378406558 +v 0.30298412530298802 3.5770392096557808 -1.5096763634822228 +v 0.31452784640999898 2.6362452557497633 -0.75351299606153233 +v 0.0068561371962097733 -1.4988473118106824 -0.52788258420853551 +v 0.27494582438143966 -1.4441738948987508 -0.374401303172674 +v 0.36923970886292751 -1.9125875698475676 -0.29787719564784887 +v 5.9553792616903172 11.148792869552478 2.349095471001335 +v 0.28479775351342684 -0.57597495583202685 -0.40879990207601569 +v 1.5842360613781519 6.329035410912736 0.028200003718439004 +v 0.37228324092253856 0.90213746254839011 -0.42621416156105252 +v -0.56740743208737465 -2.5774636783557177 -4.1636873023240577 +v -1.1872117129580604 -2.6304004603734037 -4.265848556775631 +v -2.6466448716811488 -1.9237238556957281 -1.6471045787979526 +v -0.0066330166816194963 -1.3568841257814359 -0.037868381115143457 +v 0.26146346866976755 -1.5580385527200455 -0.76429460543447481 +v -0.88581007008685198 -5.3511093246803894 -5.3501996446338582 +v -4.3585464629077988 5.9750192750372229 -1.1234906899614669 +v 0.0042271054474489825 -1.1255958407726918 -0.20609686293479834 +v 0.29271921937311463 -1.2768813322348631 0.13259219225644081 +v -0.79676385705266706 0.24868337631961165 -0.31282465864297315 +v 1.6391550021269239 6.6837042368404855 -0.053793415531447897 +v 0.33892026703640032 4.9898364947615343 -0.92166565675502254 +v 1.8743541317194521 -7.6949642484653449 6.2573568214116531 +v 0.4556716757419938 -0.9565792934779741 0.014033494086651221 +v 0.33993342562020673 2.4281301901251555 0.1531133451769256 +v 0.50653022968120032 0.967665299219442 0.12935268964598101 +v 0.30671618182752086 0.10654791298317434 0.022727236837696355 f 1 2 11 7 5 6 9 8 3 4 10 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 26 27 23 21 22 25 12 13 24 diff --git a/results/search/topology_32/resume.planes b/results/search/topology_32/resume.planes index 62484f61..9448e4ba 100644 --- a/results/search/topology_32/resume.planes +++ b/results/search/topology_32/resume.planes @@ -1,37 +1,37 @@ 36 -0.21103326976299286 --0.20448923110961914 -0.66195911169052124 -0.43488982319831848 -0.10658339411020279 -0.30322223901748657 -0.076967358589172363 -0.05516999214887619 --0.29099312424659729 --0.19166731834411621 --1.5100314617156982 --0.15505120158195496 --0.54333573579788208 --0.5386347770690918 -0.45196226239204407 -0.057014051824808121 -0.82813477516174316 --1.289483904838562 --0.56423014402389526 --1.0178757905960083 --0.35149273276329041 --0.2741720974445343 -1.225227952003479 -1.4979442358016968 -0.22585667669773102 -0.027775280177593231 --0.050518948584794998 -0.076435334980487823 --0.032895598560571671 --0.043473388999700546 -0.025281999260187149 --0.13559159636497498 -0.47200912237167358 -0.061657939106225967 -0.0010574862826615572 -0.0060839075595140457 +0.44459474086761475 +-0.059494484215974808 +0.526580810546875 +0.70156371593475342 +0.23278190195560455 +0.27890950441360474 +0.26091486215591431 +-0.020725209265947342 +-0.44836390018463135 +0.046450287103652954 +-1.2391371726989746 +0.36027207970619202 +-0.28400248289108276 +-0.15201561152935028 +0.17400833964347839 +0.33020448684692383 +1.0523428916931152 +-2.5486159324645996 +0.37902787327766418 +-0.37420091032981873 +-0.49000024795532227 +-0.34743702411651611 +0.11999344825744629 +0.28632861375808716 +0.43844765424728394 +-0.0052763214334845543 +-0.10532401502132416 +0.25695887207984924 +-0.052706297487020493 +-0.055874869227409363 +0.022076616063714027 +0.0036741320509463549 +-0.071043796837329865 +0.30433535575866699 +-0.0038261478766798973 +-0.0094064055010676384 diff --git a/results/search/topology_33/resume.obj b/results/search/topology_33/resume.obj index 375771d8..1ac647b3 100644 --- a/results/search/topology_33/resume.obj +++ b/results/search/topology_33/resume.obj @@ -1,47 +1,47 @@ -v 0.46342849082699822 -0.31764529058802959 -1.0883964545786622 -v 2.4495752167617937 -6.6498937736915238 -1.9968025029356751 -v -0.40259918459088206 -1.8964667215079334 -1.3699353470291982 -v 0.23085284582774165 9.720347071145941 0.46953834115874948 -v -2.212538167246032 23.236150262842877 2.4810999576348429 -v -0.62099546384677695 6.2666823406626495 -0.10416661450748887 -v -1.4964905279869392 21.350163087491705 2.2155761064101238 -v -1.8756163234764711 0.43432667445457046 -1.0655695308229187 -v -1.6685264645231961 0.48836547817425119 -1.0487575490420311 -v 5.5421407789714001 -23.57773506017303 -4.5148709359545602 -v -1.3583773977636067 21.165740613548429 2.1923652756307068 -v 1.1967483449620744 1.156254246640313 -0.12509094351722361 -v 2.6271140191111213 -7.8670999221677747 -2.2998589162075547 -v -0.11086646440340943 0.90750757273934879 -1.0321328253888256 -v -0.52661691591446191 4.9780390814252735 0.093251151907816576 -v 11.775649979932492 -26.490861463115149 -2.891908861426185 -v -0.86563087980040732 10.768636747151923 1.8529168789140251 -v 2.3704999135237839 -7.6105563117243982 -2.3738264489484688 -v -4.9206129264635257 1.1212204074672876 -3.9839314552489906 -v -26.991134352879786 74.075215881134099 6.9924172205878641 -v -2.8910417807133983 1.4656360623998461 39.611615831567448 -v 1.0255528531706211 1.3420058860995216 2.4532973330960193 -v -0.12828448162765413 -0.8806261440571358 1.4479725283740605 -v 0.9448772751671497 0.94573129113412013 1.1086081537273313 -v 0.45301113465267084 0.10790638110100548 1.2602146976869353 -v -30.431906569271813 -59.190781319169396 -24.618796363633528 -v -0.97398267546691519 -3.1449831442343013 -2.650090438528736 -v 0.38782178583341781 0.020080136193068601 1.4031324056492396 -v -3.5846541904837372 37.789831932788417 4.8045843267467454 -v 1.2135408676541335 1.0285409104793157 1.0203896140614324 -v 0.67299527355158006 5.3315910193675373 1.2623858712355971 -v 1.1868633174100864 0.98645722552965864 1.3224292563803697 -v -1.2997247030568813 21.005050359763363 2.1803377082350042 -v 0.51756241204756248 4.6772128665211312 3.4886789656782247 -v -0.46843267632208357 3.0609111320349425 1.6094944764985419 -v -0.085002100192023089 0.96750363805598172 -1.4912209858098902 -v -0.51642121291324095 3.4688397203640551 1.8163044258479735 -v -0.44787516147681766 2.8319270702769099 1.5882670969102493 -v 25.763087677195184 -77.101880603423766 -8.2774251729082309 -v 0.38657300644464793 1.2983722220279164 1.2995056820372313 -v -4.1424198665223733 0.059006732079179142 -3.1220660733474888 -v -0.65285208058067268 0.60517981938994214 0.31747177915958336 -v 0.76472457376588121 0.86623596700378835 1.3753507389697024 -v 0.50974421263163838 1.3156372244279264 1.4210722273098861 +v 0.60960599599484677 0.12070660919030944 -0.87921151458034008 +v 1.8680528659244471 -3.4452738702525205 -1.3706006029838169 +v -0.53000613592889223 -1.8990799207049482 -1.2302239638196013 +v 0.26099608411838332 10.572461503440234 0.69208598413484512 +v -3.0924452219075458 24.758759259126212 2.7118070461652581 +v -0.98499005261921824 5.2550114217220889 -0.16318118563339157 +v -2.7646183486465925 23.845016613152399 2.586104562362582 +v -2.087852024934389 0.46979906871253285 -0.93211998294054743 +v -1.7220656972907222 0.52854976905660722 -0.90885729474762322 +v 11.942379067576525 -43.816917270833159 -7.0975245579524548 +v -1.8043718039249061 22.73733311264316 2.4558074574013755 +v 1.0717820150980835 0.95222911498679852 -0.39962876232066535 +v 2.7076055060701525 -10.101702732642758 -3.0170182660164615 +v -0.53524008872768125 0.74977010077285422 -1.2383034927981686 +v -0.95318777460030868 5.0228231992515324 -0.12294853765671715 +v 11.573712378430104 -23.85171496009983 -2.9729721489588306 +v -1.5447994930354541 13.030304491889291 2.0597208421140429 +v 5.7442156031314422 -14.82588006991392 -3.0065094747942123 +v -4.6376690775541674 0.7361760774383439 -3.224149996586867 +v -17.965579543726562 47.9811647648012 4.9019581117360875 +v 0.40742107033981362 0.10354660692952963 8.3470414759805465 +v 1.0246225944448812 0.96561144459000881 2.2256813033209237 +v -0.08404910839367985 -1.0175903623696856 1.3872844511353415 +v 0.96943849386672465 0.82541293367038915 1.0545461515936467 +v 0.45580142460046164 -0.072560971218305709 1.2330675479221029 +v -31.839791289185822 -57.90125975214108 -24.769950367575291 +v -1.4687791413250375 -3.618752488755927 -3.0396616921847164 +v 0.42561424353445665 -0.12050484063478227 1.3750905944883138 +v -17.870252629418765 164.81326820706084 27.301024251548483 +v 1.1771962278648942 0.86543008456009551 0.97978052564944329 +v 0.61670053429746285 6.3096781516766391 1.2254064445040351 +v 1.1385156827533438 0.83132657813570432 1.346412070542174 +v -0.89339333166823498 20.509012042845733 2.2870291773875344 +v 0.58651415871200951 4.2455412201449239 3.250058289076617 +v -0.57501574678002965 3.2099724873035935 1.6315640928602317 +v -0.59077683068487341 0.78368014487602866 -1.8086241762565125 +v -0.61322387676868495 3.7111749410291335 1.8823321391020471 +v -0.53607757649942434 2.8484786129576434 1.5769172127980127 +v 38.673530901540623 -115.99694026043811 -13.49557045879469 +v 0.37686964037375098 1.0880418474821214 1.2707738871318555 +v -4.798950698623865 0.20348145708037191 -3.3426398200586585 +v -1.9103917056838569 0.48595088319407648 -0.7573888279385379 +v 0.71384992203489361 0.75835522106227737 1.3824455941552172 +v 0.53364909917582048 1.0912983962705354 1.4116949824426634 f 1 2 4 6 5 7 11 10 8 9 3 f 1 2 13 18 16 17 20 19 15 14 12 f 1 3 27 26 28 23 21 22 25 24 12 diff --git a/results/search/topology_33/resume.planes b/results/search/topology_33/resume.planes index dd698caa..58d7a150 100644 --- a/results/search/topology_33/resume.planes +++ b/results/search/topology_33/resume.planes @@ -1,37 +1,37 @@ 36 -0.041680559515953064 -0.16093814373016357 --1.0307247638702393 -0.52903205156326294 -0.28661996126174927 --0.84126865863800049 -0.3951021134853363 --0.22428382933139801 -0.042391128838062286 -1.4081110954284668 -0.16857045888900757 -0.1478581428527832 --0.1032806783914566 --0.0086282985284924507 --0.0069462759420275688 -0.42221522331237793 --0.018307976424694061 -1.2686424255371094 --0.20361082255840302 -0.75323063135147095 -0.086965017020702362 -0.50548183917999268 -0.29075738787651062 --1.4195727109909058 --0.32828667759895325 --0.14569197595119476 -0.30824035406112671 --0.50717830657958984 -0.040693923830986023 -0.50809359550476074 --0.063971348106861115 --0.043519008904695511 -0.070996373891830444 -0.1897290050983429 --0.03762788325548172 -1.4279322624206543 +0.035290937870740891 +0.13638666272163391 +-0.89936959743499756 +0.44032689929008484 +0.28100588917732239 +-0.91156584024429321 +0.3951389491558075 +-0.22437921166419983 +0.0082417847588658333 +1.3436084985733032 +0.13138023018836975 +0.15397484600543976 +-0.32517856359481812 +-0.039458643645048141 +0.029319142922759056 +0.4469565749168396 +-0.0097833946347236633 +1.2367606163024902 +-0.11925050616264343 +0.72089296579360962 +0.05447513610124588 +0.51463717222213745 +0.32668277621269226 +-1.535332202911377 +-0.37805646657943726 +-0.17548167705535889 +0.40018260478973389 +-0.4896216094493866 +0.027215689420700073 +0.54409158229827881 +-0.13393941521644592 +-0.085757791996002197 +0.15099388360977173 +0.12846052646636963 +-0.053887244313955307 +1.4048185348510742 diff --git a/results/search/topology_34/resume.obj b/results/search/topology_34/resume.obj index ae171733..843464fe 100644 --- a/results/search/topology_34/resume.obj +++ b/results/search/topology_34/resume.obj @@ -1,47 +1,47 @@ -v 1.6191728670224861 0.50996376809635779 -1.2936240670575017 -v 1.3458864906728154 -0.53514952752294864 -0.94937124326800593 -v -0.45220625014493865 -0.21373938574055848 5.1193023611222639 -v 0.72512999407513534 -0.57706488725041416 1.0649327436003202 -v 1.0729953028636494 -2.8050379463339858 -1.2536479043610307 -v -1.6775822462818628 -4.4603194429998183 6.8951643128344626 -v 3.7509490456893251 -9.180491549510446 -13.408056411338791 -v 1.2322245458535284 -0.52213234296228661 -0.56961285301410691 -v -1.8289443501053604 8.9390809278071437 14.472642789188866 -v 1.8406230127642011 5.7393832429634584 0.74337578443270669 -v 1.2459921935105738 -0.64160096066489058 -0.67791225820463918 -v -0.13004464914052669 -0.32867881233192542 0.2104627835451606 -v 1.0143360013182752 -0.66932128461687457 -0.66724614989979747 -v -1.3610625014392237 -0.99145207397881197 1.2776442907698355 -v -0.20854801955662644 -1.7398302117828579 0.44214549509914913 -v -2.0747804652489026 0.49734130312242697 1.672481022721501 -v -1.376438692954284 -1.7010055635242827 1.3747997565490757 -v 0.15649682972003931 1.0789065814055252 -0.18775544626652987 -v 0.9621559184414642 -0.6457128155647387 -0.62819082345385124 -v -1.6058662161960755 0.92560893093161767 1.2449598825081396 -v -6.146850991515846 1.4530847249365282 2.5653761909991961 -v -1.6336819081624794 0.11342627281941142 0.023275539952587021 -v -1.7581245182777421 0.15239126391924396 0.58940622559060196 -v -1.4072763286351517 0.04411167613535355 -0.62075494632717731 -v -1.2568273828055039 -0.00020294307828145442 -0.62137805463065199 -v -1.236115370187197 -0.008116584987874988 -1.0652707098937473 -v -0.040594944240077042 -0.36339694310432236 -1.8390791286587456 -v -0.78814914079952747 -1.9794716713345395 -1.164425566814641 -v -1.0496352921427388 -1.6258561988826528 -0.37006427595104807 -v -1.711327682287513 -2.3567259398701501 -3.7087274801350714 -v -2.2766769151713304 -1.1064933634380989 -0.39325817771648697 -v -1.3232589194560778 -1.2810850523516355 0.37806560917855725 -v -7.6134743064213009 2.4283706840434904 3.7040704512690072 -v -1.1836499835188865 -0.82866129540015587 -0.85881789125633634 -v -1.1035829830987645 -0.51900821984619916 -1.7098998839858353 -v -1.1662408964906852 -1.0663429132940758 -0.60025521949071403 -v -1.8940017832518325 -0.8763823656217683 -0.93139089831271082 -v -1.2576635083701129 -0.57843335377657945 -0.79138005392590216 -v -0.41114909146434275 0.83853014987313801 -0.30518483755173786 -v -1.3489771366797865 1.7222782198557909 1.9015945214944243 -v -1.2322596432216466 0.1170862996404692 -0.91801313196274503 -v -1.4261626149370368 4.6330568866274868 4.491691681494812 -v -1.2650413701441763 -0.88173588332907205 -0.73269306034782067 -v -1.0399340086310633 -0.93737018354467838 -0.50987945815026026 +v 2.7500046902253499 -0.5020771651315965 -2.7770343159475122 +v 2.3795209277578415 -1.0834365376733726 -2.0835055759351917 +v 0.78715569897986681 -1.1538814725328672 2.6731497416897416 +v 1.2422247677263383 -1.1569221577405995 1.2968377311114663 +v 1.5847733268986663 -2.7183640683798602 -0.87938847840436218 +v -0.12844450582310102 -0.46140674065843312 5.9442316924284411 +v 3.8210194013795964 -7.4325801411040446 -11.079314391340699 +v 1.9959185588255184 0.14830252986491818 -0.02443114131293056 +v 0.42716607623710506 9.0112125374656618 11.193961306952261 +v 3.6036003631890292 11.303783965333412 3.2792435726256146 +v 1.9269788016729195 -1.3163086091364038 -0.88734865506136107 +v 0.48821811117344327 -0.72077387846850483 0.67631859134817884 +v 2.1969722440063095 -1.132583711060583 -1.797403449031953 +v -0.54335270623831411 -0.76264091071400997 2.2377814218137582 +v 0.59222024412540286 -1.7417926267246855 0.75919246190409562 +v -1.6622252491572995 1.0618727214864034 3.4931113697062202 +v -0.55145566631625109 -0.44534449336515797 2.1756005418993847 +v 0.39801808090352042 1.6480124003875514 0.25678964023936823 +v 1.203603487307084 -0.82656868474449385 -0.37494053286030504 +v -0.77846831497424984 2.0228601919410689 1.9385579329810456 +v -5.8525413054897291 1.7795765407260498 3.3135699874300792 +v -1.2743951609063073 0.16011166411643385 0.15894510208070711 +v -1.0435430731374657 -0.036810863124886579 0.77546694995377363 +v -1.1501155225571602 0.17247230189792834 -0.30568907724114452 +v -0.83292742396623065 0.029529190654334455 -0.31739120801608989 +v -0.92525449968854268 0.19313125525414859 -1.1348835084470834 +v 1.9405380137188952 -0.83907919429652167 -2.9853042586966492 +v 0.70413410372355156 -2.3504642645163267 -0.85515727214643511 +v 0.32182375700379734 -1.709151512513168 0.53631647371340474 +v -1.5638831946329783 -2.6075704132427293 -4.2468883159596729 +v -1.8147748692234287 -1.1236366413030721 -0.28543030834459637 +v -0.7586952260820623 -1.3503682464147122 0.30046675614561602 +v -10.970713071545745 5.1032625027822061 6.8537450288539397 +v -0.23566982677680665 -1.1888488430812514 -0.61005298817589182 +v -0.77310592309479331 -0.76090658402329647 -2.2788267505611994 +v -0.34001363794630313 -0.98469445649287546 -0.0073851919712788483 +v -1.6681792093237819 -1.0421520844253018 -0.69943422392592036 +v -0.84322749896019966 -0.32874389369242724 -0.42047993832983882 +v -0.15993363832720586 1.4456011658979853 0.1479778144915751 +v -0.55739902828947729 2.5971275155525988 2.2187091882810961 +v -0.7709586123937332 0.89178363229153745 -0.35743724328146897 +v -0.48681073865261226 3.7342738782452121 2.8835742178677153 +v -0.8402051815048015 -1.1787941949470095 -0.42039050422452739 +v -0.49460203936677183 -1.2741954571412468 -0.13567669909770644 f 1 2 11 8 5 3 4 10 9 6 7 f 1 2 13 12 15 14 17 16 20 19 18 f 3 4 12 13 27 26 25 24 22 23 21 diff --git a/results/search/topology_34/resume.planes b/results/search/topology_34/resume.planes index 96a0666a..94b41b44 100644 --- a/results/search/topology_34/resume.planes +++ b/results/search/topology_34/resume.planes @@ -1,37 +1,37 @@ 36 -1.0213040113449097 --0.1645151823759079 -0.31131616234779358 -0.032330412417650223 -0.0048153279349207878 -0.040284417569637299 --0.099691219627857208 --0.33847296237945557 -0.0013826496433466673 --0.65999770164489746 --1.538422703742981 -0.46758297085762024 --1.4195115566253662 --0.41252443194389343 --0.28363364934921265 -0.039035521447658539 -0.13918569684028625 --0.47360643744468689 --1.0423393249511719 -0.70024359226226807 --0.44179359078407288 --1.2828629016876221 -0.019556114450097084 --0.060206972062587738 --0.16816830635070801 -0.67558544874191284 --0.57000011205673218 --0.12712401151657104 -0.029361724853515625 -0.13576401770114899 -0.012825142592191696 --0.060364693403244019 -0.068220674991607666 -0.091927014291286469 --0.88941079378128052 --0.31495022773742676 +1.6706728935241699 +-0.40462672710418701 +0.55329161882400513 +0.56301820278167725 +0.087731346487998962 +0.37430682778358459 +-0.14741921424865723 +-0.32318854331970215 +-0.048029232770204544 +-0.55917972326278687 +-1.3699721097946167 +0.47776710987091064 +-0.67984271049499512 +-0.56561893224716187 +0.073898434638977051 +0.020973201841115952 +0.065285332500934601 +-0.22898723185062408 +-0.99402844905853271 +0.50580352544784546 +-0.25242534279823303 +-0.78727579116821289 +-0.0027898293919861317 +0.088356122374534607 +-0.14810192584991455 +0.75922155380249023 +-0.6528816819190979 +-0.13536043465137482 +-0.00046399759594351053 +0.16415335237979889 +0.099984429776668549 +-0.20112508535385132 +0.33337733149528503 +-0.11221977323293686 +-1.2726691961288452 +-0.2902238667011261 diff --git a/results/search/topology_35/resume.obj b/results/search/topology_35/resume.obj index d64e1922..43d57d26 100644 --- a/results/search/topology_35/resume.obj +++ b/results/search/topology_35/resume.obj @@ -1,47 +1,47 @@ -v -0.68926621357582574 -0.75048508350498833 1.6971537195573314 -v -1.0813590152314998 -0.014916084976507657 0.50227724418009234 -v 0.075895264626239384 -0.41036542186482727 1.1702780669204382 -v 0.78458154916207923 0.10733445070302246 0.35597044987472887 -v -2.9501890724528175 0.69610358168707465 -0.69305403353661577 -v -1.0715266068753664 0.30197344742019511 -0.0076467445669411993 -v -1.9463909042380085 -7.7797776406419842e-05 0.45496905688689371 -v 0.2743041343046459 -0.33908674470580452 1.0608912779646618 -v 0.50422484075873253 -5.8653745771648049 9.9644048805003891 -v 1.150119522797082 -0.21601407607032169 0.88645562069489225 -v 0.48272572902303862 -5.8296801597077827 9.9063550540506089 -v -0.60810774370588294 -0.9071662169052005 1.9856843687119903 -v -0.51929965076944928 -0.93328942909052615 0.94881878478045412 -v -0.30203372735367673 -1.0950045846400303 -0.67753104488436644 -v 1.6487606339214103 -3.9871883576163745 -1.8761606670918836 -v -0.75661381097241065 -0.65905380178382478 1.816864959861467 -v 0.27280719778367446 -2.5025550748971388 4.1377049544770648 -v -3.108230322385197 3.451751876227835 -2.5494812758115382 -v -0.94723983942325929 -0.1922508468220111 0.21970810890986359 -v -4.2806484037668637 5.6279835003045511 -5.9061067099897535 -v 0.81011724622978321 0.18076155742976205 0.88931214782797485 -v 0.58220476473141858 -0.03938528450003765 0.5999922740769974 -v 1.2599152129529532 0.8764555393388539 4.1438290444220058 -v 0.9187847669753757 0.26778969667445407 0.84299436812076922 -v -0.38599120144800697 -0.82916661842553219 0.86488355367271996 -v 1.6811227176634806 1.3639501551088946 5.506925828288928 -v 4.1782468462196602 3.6066981207396562 6.9377278562427138 -v -1.6971019963133187 1.7190327657479167 0.75342493061309002 -v 0.54866852549161182 2.8321627918317285 2.791705954218398 -v 0.20580556949398071 -0.22746389572598386 0.25720417508572752 -v 1.0765830745586262 -0.17051615785665458 0.75926811876207467 -v 0.71502591102817903 0.9251736701484593 1.4120190254507601 -v -0.99986454076535769 -1.4749629027429902 1.5317170526506598 -v -6.1714398648749187 -0.063939609528157373 -4.3982571515003839 -v -6.8391898123230463 0.6695128670422571 -5.1600414791231533 -v 1.7299434881442819 2.102700661262157 4.6923426252029579 -v 1.5809537244984109 2.2787558174816813 4.5224592445743381 -v -3.2753527099353907 -3.0642406470988321 2.6475260177200317 -v 0.48485325016015202 0.40838276775996013 1.3335277163318571 -v 0.81353199569536649 1.0943079996935208 1.4580575893803329 -v 0.52439083711067858 0.36959468999710116 1.2725697212323621 -v 0.13282860252721174 -0.24064755997716863 0.22930404162147788 -v 0.77751608987012277 1.1362923140327701 1.4163898332253617 -v 1.5922314737306664 2.3212152885553929 4.5937208332330881 +v -0.68928969461587797 -0.75051062296733084 1.69721161790593 +v -1.0813958673069288 -0.0149165931773967 0.50229440471629916 +v 0.075897869249631156 -0.4103793926819026 1.1703180116038787 +v 0.78460828716423436 0.10733813518628361 0.35598257032217567 +v -2.9502897719701604 0.69612732867413296 -0.69307772621433772 +v -1.0715630149721485 0.30198372143263108 -0.0076469637928320844 +v -1.9464572674239835 -7.7799289669895335e-05 0.45498460068885554 +v 0.27137580854371857 -0.34035253035118512 1.0628672818545084 +v 0.50424259386378456 -5.8655750970494802 9.9647461376915558 +v 1.1501588328064565 -0.21602148818589517 0.88648598032174653 +v 0.47955616037391363 -5.824588853264987 9.8980902105385926 +v -0.60812842884835538 -0.90719713332370577 1.9857521139735197 +v -0.51931730177540669 -0.93332123232544095 0.94885117248024753 +v -0.30394914041217486 -1.092217327737943 -0.67638352175769967 +v 1.6488168538021655 -3.9873239285626356 -1.8762244465206908 +v -0.75663958333783199 -0.65907623928335579 1.8169269269113435 +v 0.26887948609480594 -2.4948404257702319 4.1219959682698368 +v -3.108336485905864 3.4518696669113136 -2.5495686848804726 +v -0.94727209133453238 -0.19225742012045063 0.21971558713271111 +v -4.2807943460820788 5.6281749755592241 -5.9063080320046835 +v 0.81014487083279108 0.18076776923066823 0.8893425140215685 +v 0.58222444876365309 -0.039386759003327991 0.60001253963386847 +v 1.2538368194343699 0.87064072407780491 4.1368982002338424 +v 0.91881609571582334 0.26779888114280159 0.84302315923212956 +v -0.38600432269125279 -0.82919487806937953 0.86491307489376501 +v 1.6763973825078196 1.3597013509115525 5.504373553304025 +v 4.1783888139494039 3.6068209622396679 6.9379646166372293 +v -1.697159844059454 1.7190913874251337 0.75345066051202125 +v 0.54868719703825364 2.8322594817138889 2.7918012927416163 +v 0.20581266627681519 -0.22747164298876815 0.25721298180782454 +v 1.0766198012932648 -0.17052197422918847 0.7592940132893955 +v 0.7110144900061407 0.92379745466788599 1.408860218631399 +v -0.99989861481918996 -1.4750131644114082 1.5317692963356384 +v -6.1716534966051997 -0.063940998760010775 -4.398410624530757 +v -6.8394246460298023 0.66953439966780359 -5.1602191199617309 +v 1.7273313093190588 2.1059286559120287 4.6894567676273207 +v 1.5810076979291385 2.2788333192851917 4.5226134326497522 +v -3.2754641866782745 -3.0643449372319185 2.6476162409202457 +v 0.48486974695427398 0.40839665918913898 1.3335732169729297 +v 0.81355972818724442 1.094345355460713 1.4581073605834936 +v 0.52255529268536682 0.37142551694754361 1.2754706509399951 +v 0.12941700984433702 -0.24127291015923691 0.22800583417677694 +v 0.7748519177709986 1.1394676598118607 1.4133252661184825 +v 1.5922859188656997 2.3212945600075279 4.5938779963711118 f 1 2 7 5 6 3 4 10 9 11 8 f 1 2 19 18 20 15 14 17 13 12 16 f 3 4 24 21 22 27 26 23 12 13 25 diff --git a/results/search/topology_35/resume.planes b/results/search/topology_35/resume.planes index 9378c297..e0459009 100644 --- a/results/search/topology_35/resume.planes +++ b/results/search/topology_35/resume.planes @@ -1,37 +1,37 @@ 36 --0.0038243983872234821 -0.22743527591228485 -0.14126469194889069 --0.74281615018844604 --0.47967463731765747 --0.051537483930587769 -0.28823426365852356 --0.3421759307384491 -0.03330833837389946 --0.09120679646730423 --0.133347287774086 -0.17331388592720032 --1.3324378728866577 --0.0081851379945874214 -1.1600815057754517 -0.62912595272064209 --0.42459401488304138 -0.67822617292404175 -0.042605090886354446 --0.10455460101366043 --0.062034741044044495 --0.4829154908657074 -0.13155482709407806 -0.54996669292449951 -0.13851626217365265 --0.040413279086351395 --0.028349295258522034 --1.7000848054885864 -1.071063756942749 -1.2882262468338013 --0.013668793253600597 --0.27243256568908691 -0.16448546946048737 -0.49757727980613708 -0.21911855041980743 --0.20930223166942596 +-0.0038245287723839283 +0.22744303941726685 +0.1412695050239563 +-0.74284142255783081 +-0.47969099879264832 +-0.051539242267608643 +0.2882440984249115 +-0.34218758344650269 +0.033309474587440491 +-0.091209903359413147 +-0.13335183262825012 +0.17331978678703308 +-1.3324832916259766 +-0.0081854173913598061 +1.1601210832595825 +0.62914741039276123 +-0.4246084988117218 +0.6782492995262146 +0.042606543749570847 +-0.10455816984176636 +-0.062036857008934021 +-0.48293197154998779 +0.13155931234359741 +0.54998540878295898 +0.1358867883682251 +-0.03964611142873764 +-0.027811137959361076 +-1.7001428604125977 +1.0711002349853516 +1.288270115852356 +-0.01366925984621048 +-0.27244186401367188 +0.16449107229709625 +0.49759423732757568 +0.21912603080272675 +-0.20930936932563782 diff --git a/results/search/topology_36/resume.obj b/results/search/topology_36/resume.obj index 389ccbb8..9ae5c34b 100644 --- a/results/search/topology_36/resume.obj +++ b/results/search/topology_36/resume.obj @@ -1,47 +1,47 @@ -v 2.7934018912362131 2.9508910039058871 3.3395059661429074 -v 1.7273501363792363 -2.8341898345794436 0.63680633757330474 -v -0.86367599733487066 0.82622475165105425 0.90742464545027079 -v -1.5867364607142866 0.91972264441352936 0.62478229732093471 -v -0.0023167505388409816 -2.4326259321107604 0.029346884621428142 -v -0.89242689745582471 1.3436608100149721 1.0944580058957341 -v 0.23461685193249515 -1.8142401315396444 0.37245719639480745 -v 1.1198075265616068 -2.7483453894039522 0.40213089408730163 -v -0.79740646350147526 -0.38049115851279142 0.47089885861338393 -v -0.96344356092554873 -0.58021239254896906 0.32062560818977037 -v -1.0243118023259661 -0.16876500319860083 0.45259467377732848 -v 2.6258746780755255 -2.996364031662377 0.10775561731555122 -v 3.844443300373543 -16.848049425201413 -8.2047343822304821 -v -0.99366954193257762 -5.3262915386409597 0.57682645203577365 -v -2.3175718965766245 -4.4006346379251138 1.7389414233906209 -v 0.46128320704723225 -3.6621065253160658 0.7936712943960178 -v -0.76092756748419788 -7.3104241815242519 -0.64227688189754262 -v 0.79904974902514947 -2.1711554255441445 1.4594516155158137 -v -5.276317716581933 1.5599413465510188 6.5044813698276558 -v 15.345182332560448 6.8786721836636984 -0.60037670699000512 -v -0.039753780025499084 -0.88592684974850533 0.19901888116597299 -v -0.55481051187760222 0.31698436582269396 0.72696361321904479 -v -0.79686257756870116 0.22465171621402785 0.55299959413376043 -v -1.9197442447381765 0.68841585538128247 0.31852253056374868 -v 1.2175373551122506 -2.0545611355280657 0.044808123443804804 -v -0.35788112799314825 -2.024423659425405 -0.68242000196625796 -v -0.25660266439605173 -1.8500360482212375 -0.52250422215391445 -v 1.4394209905187947 1.5733908042168712 -0.78506031155673317 -v -0.9788117509762323 -4.3519192365310637 0.65238874996016916 -v -0.51275594931591661 -0.68417399357987596 0.60261418854792947 -v -2.0936406975652928 0.2653824203875324 1.976290688828612 -v -0.026603634413131575 -2.703586328390795 0.024758094511393353 -v -0.7361492319076669 -0.35051747133285055 0.22696043938057661 -v -0.657818026068968 0.40281680737594522 0.014639021456720946 -v 0.31563626684840629 -3.3421916843273358 0.74605116935966242 -v 1.3859971558407869 -2.2665630262879919 0.21495678116110037 -v -0.44065769209682576 1.0643703228059869 -0.20709786436894537 -v -0.79960076551335513 1.2445301520527046 0.70617157075581294 -v -0.68206465991609722 -2.498330286937712 -0.29131791496126613 -v -0.36674543452609121 0.7797325386470324 -1.1118021702389327 -v 0.66890028391778489 -1.9589362655921578 1.1896664267240302 -v -0.92031264533262436 -3.0927266752869844 -0.032678979503380501 -v -4.6699074467382324 -1.2273631594580448 -2.2267189253553732 -v -0.10639879044624637 1.0299376116729588 -0.67153971277311697 +v 2.7723186304301923 2.9392022002754046 3.3499121893390766 +v 1.6972811019790608 -2.8946412603894625 0.62443172459017426 +v -0.88525015596307899 0.8468635899565915 0.93009171136008195 +v -1.3690619198901599 0.90942467124201143 0.74097107156608466 +v -0.0023746304126692616 -2.4933919769849666 0.030079939434127796 +v -0.87548998822436219 1.2107945312501409 1.0748548834087643 +v 0.24038328506328951 -1.859804853769538 0.38162461979131579 +v 1.1474021325699779 -2.8169445527734371 0.41203003191227422 +v -0.81732524165292153 -0.38999561676317412 0.48266172836618781 +v -0.98750983243217016 -0.59470621206905738 0.32863459202813705 +v -1.0498985890339443 -0.17298063300330066 0.46390030713610553 +v 2.6135199702190488 -3.009745607979879 0.1129574229718282 +v 3.8352973124324921 -16.897889154579801 -8.2214112127263981 +v -1.0162368575564058 -5.3115232682360372 0.60269831197265766 +v -2.3685265504591673 -4.3660183323925912 1.7897314256597028 +v 0.43846871601109172 -3.6787050905586445 0.80218758816843372 +v -0.77418508555164722 -7.3750223635907703 -0.6651697267968486 +v 0.79889404446838497 -2.1925896403808065 1.4542107284053851 +v -5.1161366433026112 1.4400384181785257 6.366095126823847 +v 15.076776099562851 6.6482283025348767 -0.59109819985914946 +v -0.040586832805578163 -0.90843031227635151 0.20382628696105587 +v -0.56866940620556738 0.3249024895720391 0.74512272688478254 +v -0.81676774935190322 0.23026345543041635 0.5668132191273102 +v -1.8325734483291432 0.58747013028935147 0.31468991554360654 +v 1.2479510417598505 -2.1058830356059381 0.045927378127716745 +v -0.36682075113547158 -2.0749925238537705 -0.6994665037753095 +v -0.26301246991970861 -1.8962489075367941 -0.5355562014592411 +v 1.366909303917909 1.4317123550908297 -0.73256580091442869 +v -1.0032619150754207 -4.4606281720705816 0.66868497489130174 +v -0.525564342495904 -0.7012642121124586 0.61766714123569832 +v -2.1459384187694326 0.27201134488460316 2.0256569149923429 +v -0.027268177491216222 -2.7711207318136815 0.025376524946959716 +v -0.75447647809038465 -0.35924317507739606 0.23238553040067791 +v -0.67425501837112378 0.41227024194657369 0.014940485610041234 +v 0.32343189648306869 -3.426025630435142 0.76457562301355741 +v 1.4203786789456863 -2.3228783197315614 0.22008361597524978 +v -0.50607442506868638 0.92461273331480198 -0.15678442550945113 +v -0.81910759226478103 1.1017729126239979 0.69770216870272572 +v -0.69910223043811326 -2.5607373638404156 -0.29859491915696901 +v -0.38393251462851613 0.63448446218888044 -1.1300142826112003 +v 0.68560904830279368 -2.0078693465238149 1.2193836707409456 +v -0.94330154823538681 -3.1699815757717213 -0.033495310763068442 +v -4.6332863576091796 -1.3342725876875068 -2.1926550159456681 +v -0.12309504440612086 0.88516125109605559 -0.6889217741103344 f 1 2 8 7 5 6 4 3 9 11 10 f 1 2 20 19 18 17 14 15 13 12 16 f 3 4 24 25 27 26 13 12 21 22 23 diff --git a/results/search/topology_36/resume.planes b/results/search/topology_36/resume.planes index 40b23df5..d23163f0 100644 --- a/results/search/topology_36/resume.planes +++ b/results/search/topology_36/resume.planes @@ -1,37 +1,37 @@ 36 --0.3180675208568573 --0.27849003672599792 -0.72156143188476562 -0.96438860893249512 --1.1005148887634277 -1.975239634513855 --0.22773674130439758 --0.30842903256416321 -0.48057189583778381 -0.12004750967025757 --0.013255046680569649 -0.14731830358505249 --0.0080958465114235878 --0.0087533993646502495 --0.034044578671455383 --0.62897515296936035 -0.021633557975292206 --0.15528853237628937 --0.47320523858070374 --0.10883048921823502 -0.71617633104324341 --0.43681591749191284 --0.4827435314655304 --0.16900879144668579 --0.44411522150039673 -0.037714995443820953 --0.32242593169212341 -0.1358935683965683 --0.010924721136689186 --0.074151255190372467 --0.38906598091125488 -1.0321987867355347 --0.35653585195541382 -0.32275593280792236 --0.58626508712768555 --1.0500271320343018 +-0.32601267099380493 +-0.28544655442237854 +0.73958569765090942 +0.96647709608078003 +-1.102898120880127 +1.9795173406600952 +-0.23342546820640564 +-0.31613340973854065 +0.49257627129554749 +0.12304621934890747 +-0.013586148619651794 +0.15099823474884033 +-0.0083450879901647568 +-0.0090228831395506859 +-0.035092685371637344 +-0.64468657970428467 +0.02217395231127739 +-0.15916755795478821 +-0.48502564430236816 +-0.1115490049123764 +0.73406600952148438 +-0.44772729277610779 +-0.49480217695236206 +-0.17323054373264313 +-0.45520895719528198 +0.038657095283269882 +-0.3304799497127533 +0.13928812742233276 +-0.01119761448353529 +-0.076003514230251312 +-0.34947842359542847 +0.92717224359512329 +-0.32025820016860962 +0.33081817626953125 +-0.60090959072113037 +-1.076256275177002 diff --git a/results/search/topology_37/resume.obj b/results/search/topology_37/resume.obj index 90864297..2810462f 100644 --- a/results/search/topology_37/resume.obj +++ b/results/search/topology_37/resume.obj @@ -1,47 +1,47 @@ -v -1.5818570483869783 -1.9623881741698428 -1.526945398207056 -v 0.96293154636241052 1.0834461861562947 -1.418528542854653 -v -2.0617620667588121 -1.3496816969052454 -0.18785543758910758 -v -1.6655260036498547 1.3955737592299013 2.4299099125082106 -v 0.5859131137249286 2.1978831832117987 0.35852374335303916 -v -1.370227545188216 6.4834462058985203 7.8646345066509795 -v -2.2128882025771692 6.0254054648983368 8.4592352570406995 -v -1.6629029167439997 6.656136852547859 8.4511250030257514 -v -1.1143654586274279 -0.093389724153200709 -0.0073575404517939591 -v -1.3763332479419765 1.4484461210693234 2.106372543739119 -v -0.69368078307506731 1.0012552687518346 0.68756262914481781 -v -4.9928514888034474 6.7057857446589697 1.7893978542480538 -v -0.56701139842749826 -8.7141040543226342 -3.6464751287642523 -v 1.3792454887956809 3.9455205448641983 -0.75905382271499466 -v 0.59585717695397156 -2.5837592011112838 -2.3104878344150714 -v 0.72360079083991358 3.1698483387748264 -0.78452609076612734 -v -0.32299016699767052 4.3494771880073522 -0.16878151809111519 -v -1.0210677282272282 3.2070601408674637 -0.28183981570438266 -v 1.1328526823219582 -3.0984762715257546 -2.6018401999126071 -v -1.7165526974430709 7.0136472947223432 0.94795916577769157 -v -0.55359208716955011 -3.9690485409905372 -0.057365520654359958 -v -0.70006658498941876 -1.0212057479522902 1.956643167399869 -v -2.6853626230774599 -0.55150634686724553 -0.45617177135530707 -v -2.0860904666031947 2.0104278974069558 2.3065568928553288 -v -2.6994252544763717 1.6787176727635782 1.2023633938930482 -v 1.2888576845845625 -4.8280600812635175 1.8634751189396135 -v -0.68835976404309551 -4.1602609512915256 -0.38902348962691846 -v 1.0661684481410245 4.2553414009987049 0.23442282761045974 -v 0.008957434402597244 -0.50234015560471312 0.38132123353661446 -v 0.39252504355595658 1.2460769951421662 0.34033874063118569 -v -0.34145524502247204 0.03388975387882865 1.5979925239975741 -v -0.51403573520497126 -0.80202392244084686 1.5892164045674035 -v -0.63741603463457985 2.0862953543186915 -0.058833156009487242 -v 17.545834398546639 9.1140968516444509 -20.766170296744267 -v -1.0651066244576828 2.1606257582838144 0.78250407173101255 -v -1.1224345648499825 1.9778847267513882 0.61037941103992865 -v 0.21788232280543324 -0.58349280198044229 0.4540794501447778 -v 0.1804931101518944 -0.81581518469566439 0.46376825717215131 -v -0.53138362332458411 -2.6033064948138427 0.40574392026388517 -v -0.45124554148602142 0.50811632290109876 1.5206681361831502 -v -0.65478158817931309 0.33455939272478435 1.0550486615589105 -v 0.2591103715537848 -0.58327098753993245 0.49380751249588112 -v 0.76369748561694273 0.35454709966068593 0.3135655294665558 -v 5.239682109772394 -8.3633665174084015 -0.83253747388803667 +v -1.4101024416833481 -1.4261003083688522 -0.86196192904489322 +v 0.67079000519664866 0.64678468499474462 -0.96516479486817597 +v -2.4623665664537548 -1.2120771960154377 0.87146547778747296 +v -2.1644416761459424 0.9729390962855573 3.3717310006437748 +v 0.4573184217834726 1.4263769383235656 0.36704117041606826 +v -0.1674173525046323 2.9160445054375717 3.2111059119152991 +v -2.0481645205987853 8.3257109616233791 13.005220231810718 +v 0.50775227956537472 2.9933491888171875 2.3847539827068585 +v -0.95263194751534341 -0.078956000444848004 0.30269673195373714 +v -1.1029211048100311 0.88857270464274973 1.7982592867882445 +v -0.47639216302094034 0.59064420790454408 0.53906504897104968 +v -7.1347601253193007 5.8003984437171665 2.3989106934194995 +v -0.65226793104970326 -6.4785846788772492 -2.236712280399157 +v 0.85522108726272905 1.2343810644871418 -0.88131877834182326 +v 0.21938978586655319 -1.8588714466619345 -1.4161735518883858 +v 0.48270442049245288 1.18581295078355 -0.78858394267031628 +v -0.034574565166332831 2.0038292173109853 -0.4559333694357241 +v -0.66714066665827598 1.8542155023712079 -0.3139207416681411 +v 0.96731205124599551 -2.5172387915252084 -1.7764052153141141 +v -1.4044042511034698 7.252681909457122 1.1347541198623332 +v -0.82508838508823423 -4.4824806881646122 -0.46624427265066259 +v -1.0369286051878128 -1.0525163761671055 2.6742559728176656 +v -4.3090093329923516 0.67149588381782799 0.5988574513241024 +v -2.387328984054899 4.7187133321852004 6.8111516336407956 +v -5.706468832079592 3.6673107223086427 1.9423889454366792 +v -0.87358910918177235 -1.2660507946042598 2.6520553258124937 +v -0.91697935438829414 -4.5694833895342821 -0.65817261028298457 +v 0.57590717472882702 1.8652009008312631 0.36405036645837013 +v -0.075041471775962612 -0.61635914025386596 0.32630330005751257 +v 0.29042265702344827 0.30554827873050766 -0.0031738194025795058 +v -0.36435381870624312 -0.32354001483975109 1.3479750633498651 +v -0.38790898006843672 -0.44423371031961434 1.3236220009398552 +v -0.37863610496023264 1.2906172352465304 -0.19156855520366148 +v 6.9344918523364285 -1.7273190996663537 -9.0107211866954451 +v -0.94642864695026929 1.6476568517961634 0.70942663471778189 +v -1.0480808502246242 1.4918259369394513 0.4834747754517274 +v 0.10158491397647212 -0.71786653784228638 0.3290844195733208 +v 0.2978264732665491 -0.67308492055538593 0.28551139019843474 +v -0.53657799815577678 -1.684890032169938 0.71404288469536303 +v -0.48224403812332839 0.18518459044392074 1.2437024776564933 +v -0.57179819781938257 0.12624283043977849 1.0625700713492134 +v 0.059486942279990448 -0.43561580731676036 0.74848463243574959 +v 0.40066390265995039 -0.48786133529887393 0.27184661636716195 +v 0.30218895181723576 -0.28117808947933576 0.30670120262901701 f 1 2 11 5 6 8 7 10 4 3 9 f 1 2 18 17 16 14 15 19 13 12 20 f 3 4 26 22 21 27 13 12 25 24 23 diff --git a/results/search/topology_37/resume.planes b/results/search/topology_37/resume.planes index 0ce0d9b8..e157515b 100644 --- a/results/search/topology_37/resume.planes +++ b/results/search/topology_37/resume.planes @@ -1,37 +1,37 @@ 36 --0.44985595345497131 -0.38791018724441528 --0.33871003985404968 --0.35268214344978333 -0.33912906050682068 --1.2491549253463745 --1.4699723720550537 --0.79381924867630005 -1.054980993270874 -0.21851243078708649 --0.04598701000213623 -0.083201713860034943 --1.1848315000534058 -1.0242413282394409 --0.69279420375823975 --0.093886822462081909 -0.027638731524348259 -0.30042311549186707 --0.25398054718971252 --0.41547873616218567 -0.26588967442512512 -0.58131980895996094 -0.22531206905841827 -0.5564311146736145 -0.12281562387943268 -0.00018035931861959398 -0.47827157378196716 --0.88829249143600464 --0.13418364524841309 -0.43831509351730347 -0.51875829696655273 --0.21707618236541748 -0.32279261946678162 -0.19130322337150574 -0.096173480153083801 -0.15422877669334412 +-0.26633188128471375 +0.25772711634635925 +-0.19349586963653564 +-0.22866901755332947 +0.18874110281467438 +-0.81971591711044312 +-1.7140874862670898 +-1.4655551910400391 +1.485014796257019 +0.17270050942897797 +-0.046247318387031555 +0.062159385532140732 +-0.29234513640403748 +1.0762152671813965 +-0.6107056736946106 +0.018366007134318352 +0.0352153480052948 +0.11890782415866852 +-0.29260268807411194 +-0.50071108341217041 +0.30760139226913452 +0.25602975487709045 +0.09370528906583786 +0.16770258545875549 +0.087390244007110596 +-0.02108173631131649 +0.37191638350486755 +-0.8643990159034729 +-0.10566780716180801 +0.46175488829612732 +0.46323007345199585 +-0.23085959255695343 +0.35688468813896179 +0.16854846477508545 +0.11511744558811188 +0.13283777236938477 diff --git a/results/search/topology_38/resume.obj b/results/search/topology_38/resume.obj index ab0a5999..fa176672 100644 --- a/results/search/topology_38/resume.obj +++ b/results/search/topology_38/resume.obj @@ -1,47 +1,47 @@ -v -2.1491871713322031 1.1302838080782007 -0.34872995605398893 -v 0.96857766035897563 1.5313656189863607 0.49235903389873442 -v -1.0916702278097663 0.51865903519121115 2.5542185873202934 -v 4.2250513834928478 0.80662218436172262 5.3749662804177714 -v -1.1530575550715028 0.78248485629382503 1.5863293239982248 -v -2.2972782572809094 0.60962204872043446 1.3675073590365812 -v -0.69906967355612926 0.89894325414456744 1.505544788251407 -v -1.4638990707023358 1.6460811310632835 -1.6610640884524863 -v -0.68996887074065472 1.3522883991985684 -0.075106874046655114 -v -1.6743591015122476 1.1518526038312018 -0.082288252242049775 -v -1.5067222056305904 0.91164469408301363 0.87942997106585219 -v -5.7040591474071167 -1.800810888127365 -2.1184418329127146 -v 2.618222933535753 -4.5245601614763222 -1.1167952547637541 -v 0.83398289251444224 -1.3030635650738194 -0.46717052041394019 -v -0.60558110679794075 -1.6991291489746354 -0.92463344867691999 -v 1.1928807240702668 -0.61894407370493498 -0.16128194337825008 -v 1.4466274818098894 -0.18441352940838218 0.038877939790023797 -v 0.051612491541159433 0.88062029519558105 0.070383788940969583 -v 0.36882652341316452 0.25390869294328783 -0.062798595242328226 -v -1.0832970147332908 0.90973908085962985 -0.17839484947186351 -v -4.4939216107660176 4.9616126939097498 5.7250395780702021 -v -3.6926741980912907 -1.3407278744956055 -0.67371688595916801 -v -2.277040144342513 0.052455833837220259 1.4930393185079378 -v -2.8671056845488252 1.2296034874281432 2.4801902642961005 -v -4.5247889084153128 -0.797225367353947 -0.48227245439500016 -v 2.3081023453225544 -3.4092475289724624 -0.063920213185059582 -v 3.528411926378876 -1.5719196257851873 2.488192129070967 -v -1.8044764346562359 1.4877278924440227 2.2814967941368285 -v -1.5420981170984513 1.7071315266916973 2.5150381775842781 -v 0.49520993080815462 0.034286200651797577 0.88437095318080361 -v 1.6767396168885593 -1.1542263158702266 -0.28405201804565278 -v 1.802109303174724 -0.45904731512191876 0.42970122283504369 -v -2.339844882963007 1.0511581126124061 2.1780658564563993 -v 0.54892721661586097 -0.48320458307213199 0.15312679502758869 -v 1.1016625388331789 -2.1170275621055441 -1.12426191125865 -v 1.4977187994213788 -1.8108380382451406 -1.0588858110592472 -v -0.24846544495196468 2.65855258985086 -0.7097503096212624 -v -2.3961114055424626 0.77250729340077473 -5.6487974381205888 -v -0.78984214712113132 2.246623449435174 0.17757002307621073 -v -2.1757539396209458 1.1540258447848253 1.170804851789975 -v 0.14282533334493128 0.28074184824090942 0.35297346397328389 -v -0.28287697456674205 1.7848351670258344 0.024733929759897133 -v 1.3072729059900277 -1.0871670478650644 -0.84904215537496519 -v 3.7253951003031864 -5.7624269139416251 -0.23166175602328617 +v -2.1710356236048569 1.141774171746645 -0.35227509306205129 +v 0.9784241633340236 1.5469333484126533 0.49736432001000636 +v -1.0746440940488025 0.55117335961213976 2.5050627617136034 +v 4.1750615107695497 0.83550679702188901 5.29025558922892 +v -1.1647792689324454 0.79043956549144512 1.6024558207409618 +v -2.3206321620357273 0.61581942875384366 1.3814093109118954 +v -0.70617635631535203 0.90808182596435416 1.5208500604047415 +v -1.4787809360256947 1.6628150402059863 -1.6779502924768486 +v -0.69698304051452942 1.3660356462453125 -0.075870412000351994 +v -1.6913804115373308 1.1635622579056379 -0.083124793957521981 +v -1.5220393547455682 0.92091241879974928 0.8883701513997917 +v -5.6253657160298838 -1.7064207727438914 -2.0719344627275635 +v 2.5383414104599482 -4.3782709851756776 -1.0893736011941351 +v 0.84246112740466195 -1.3163104626454973 -0.47191976970793403 +v -0.61173733147027598 -1.7164024170051353 -0.93403321339068335 +v 1.2050074678634519 -0.62523618364407019 -0.16292152782846056 +v 1.4613337929915489 -0.18628823802808817 0.0392731653004183 +v 0.052137230011986328 0.88957254669829011 0.071099300051562758 +v 0.37257601129754758 0.25648989346072965 -0.063437002465395936 +v -1.0943098034563468 0.91898748253841045 -0.18020837887337404 +v -4.2250404915118827 4.6652329544761715 5.4411606793528984 +v -3.4556876238032519 -1.3862292085062606 -0.70287911142108539 +v -2.1413482819335017 0.022254859922551815 1.432488781412971 +v -2.7235136701458913 1.1836421246891025 2.4064231624515298 +v -4.4703618461552361 -0.72348649934719811 -0.46943326790120732 +v 2.2330550324692258 -3.2803439772640037 -0.052910859713200864 +v 3.4810052116698658 -1.5342151157820223 2.4141858220446846 +v -1.8228204036484708 1.5028521455252744 2.3046903881139786 +v -1.5577749207394427 1.7244860876122459 2.5406057870299303 +v 0.500244197780494 0.034634742716428642 0.89336137270045102 +v 1.6937852581906809 -1.1659601151684786 -0.28693967334950704 +v 1.8204294247105055 -0.46371399942248093 0.43406948329658357 +v -2.3636315078437815 1.0618441254917903 2.200207962762474 +v 0.55450755970706744 -0.4881167711360076 0.15468348828979994 +v 1.1128619207146151 -2.1385490148891622 -1.1356910383134027 +v 1.5129444928107918 -1.8292467592705883 -1.0696503230851631 +v -0.25099129542312676 2.6855791918990848 -0.71696553603507895 +v -2.4204700839817082 0.78036052503140629 -5.7062226254369657 +v -0.79787157959862454 2.269462428851226 0.17937517181804441 +v -2.1978724094138631 1.1657576131330758 1.1827071201930617 +v 0.14427729705309905 0.28359583974152341 0.3565617779156447 +v -0.28575263886754354 1.8029796415608141 0.024985359952768404 +v 1.3205625733168003 -1.0982191314236995 -0.8576734572384983 +v 3.7632673349527357 -5.8210075111628132 -0.23401682477529331 f 1 2 4 3 7 5 6 11 10 9 8 f 1 2 17 16 18 19 20 15 14 13 12 f 3 4 27 24 23 26 13 12 25 22 21 diff --git a/results/search/topology_38/resume.planes b/results/search/topology_38/resume.planes index d092b599..8cc3f959 100644 --- a/results/search/topology_38/resume.planes +++ b/results/search/topology_38/resume.planes @@ -1,37 +1,37 @@ 36 --0.26954862475395203 -1.3104103803634644 -0.37428554892539978 -0.04515322670340538 -0.065011493861675262 --0.19837623834609985 --0.49862915277481079 --1.1352908611297607 -1.0557464361190796 --0.015116406604647636 --0.41514039039611816 -0.40699222683906555 -0.14829090237617493 --0.28272512555122375 -0.42578145861625671 --1.4081758260726929 -1.7391260862350464 --0.051792874932289124 -0.30652600526809692 -0.12140713632106781 -0.15878292918205261 -0.12274489551782608 -0.077178418636322021 --0.04560118168592453 --0.022011497989296913 -0.12416104227304459 --0.44816100597381592 -0.12277036905288696 -0.057243179529905319 -0.23427759110927582 -0.14495320618152618 -0.3310735821723938 -0.057425331324338913 -0.86391013860702515 -0.37815374135971069 --0.52005743980407715 +-0.27228882908821106 +1.3237318992614746 +0.378090500831604 +0.04561224952340126 +0.065672397613525391 +-0.20039291679859161 +-0.4803357720375061 +-1.0936400890350342 +1.0170139074325562 +-0.015270078554749489 +-0.41936066746711731 +0.41112968325614929 +0.14979842305183411 +-0.28559929132461548 +0.43010991811752319 +-1.422491192817688 +1.7568058967590332 +-0.052319396287202835 +0.30964213609695435 +0.12264135479927063 +0.16039711236953735 +0.12399271130561829 +0.077963009476661682 +-0.046064760535955429 +-0.022235265001654625 +0.12542325258255005 +-0.45271697640419006 +0.12401844561100006 +0.057825110852718353 +0.23665924370288849 +0.14642679691314697 +0.33443924784660339 +0.058009114116430283 +0.87269258499145508 +0.38199803233146667 +-0.52534431219100952 diff --git a/results/search/topology_39/resume.obj b/results/search/topology_39/resume.obj index 4826f9bd..d130d142 100644 --- a/results/search/topology_39/resume.obj +++ b/results/search/topology_39/resume.obj @@ -1,47 +1,47 @@ -v -0.24354552905976093 -1.8594605079205808 0.28576120700738228 -v 0.95610953189922221 -0.73388096099640854 0.89201837669116135 -v -0.73876849531524047 -1.3723680939864265 0.95353893729034811 -v -4.0480261718416308 -3.4721072474233834 0.25076924230065228 -v -0.18983246573141382 -1.7581849545433528 0.36198352934778566 -v -4.0157213496368378 -3.5691035415989418 0.1442953008857748 -v -1.3060130243702488 -2.4590823526839074 0.13201110423708795 -v 4.5661220260794737 -0.018747654129509756 0.13899506107974313 -v 1.0123769427301768 -0.877617041103675 0.7308820268213797 -v 5.40757370325381 -0.11320471974465142 -0.28842706417685515 -v -2.6222979909292161 -6.1907929370539847 -2.9415008210116307 -v 0.62326167389721621 11.631900278505475 -6.4553611069946859 -v 2.6370873990181187 -0.8927460782221176 2.7245821426460379 -v 0.15557676452384103 2.8218868085220778 -1.9513751165555699 -v -0.028491056499711613 0.1277447847304595 -0.61658829471591137 -v -0.72083064649912232 -1.709070317845041 -0.29418247902526817 -v -0.6741235365689412 -1.8332543971779269 -0.17544175289388753 -v -0.7990442074530768 9.080716117910189 -6.485159330223075 -v 0.50437194724373202 0.16386333312956008 -0.08464286959502948 -v 0.038349804202901717 -0.42523650856362993 -0.23416214956446035 -v -0.65036194366890532 -0.61845761030720925 0.52982017973868878 -v 0.96576570469442058 -11.629473290059089 8.5054833536261434 -v -13.613502901578217 9.1542100805248428 -13.635730504526355 -v -0.45546131372770271 -0.16166852560845019 0.35997262476904301 -v 0.21792861755295406 0.25004261130571076 0.5128423288554621 -v -1.1240506322918176 0.22267993752825208 -0.29473659584470235 -v -0.045897601003590929 -0.14177911819343908 0.59912399664816551 -v 1.2609686501904509 2.9745841387471543 -3.5167482954771758 -v 0.51536150332509867 0.016619178773211292 -1.3117872314354937 -v 1.4949261545083616 -1.336336062642844 -2.0999632494297953 -v -0.16503560000767334 -0.52663928434977814 -0.16743465612925457 -v -0.39885687845642565 -0.87982467577715473 0.29283789316367909 -v -0.085464513213831333 -0.62968181290755032 -0.23421989062475318 -v 3.2228984825385916 -4.7172623816083314 3.5255976854705153 -v 0.0029279614924213183 -0.96728733241536768 -0.66705786216243501 -v -2.7330578979743985 0.050432690028180446 -2.4295989915528287 -v 11.024210443749535 -6.1784977058168575 4.6463319559204699 -v 0.2681719257484308 0.086812884286668751 0.027362189672313089 -v -0.50027854303133046 -0.28446006516996203 0.28952934138202274 -v 0.34327377549529786 0.17776627368068681 -0.037792077638457766 -v 2.5310925375900206 -0.1547351567657915 -1.8762077916685023 -v -2.5312245718551907 -6.0378829569201331 -2.9364744586741716 -v -8.9179035880433961 0.99766456318748109 -8.589186903608514 -v -1.6375316275605725 0.18186423876359739 -0.85762216804749847 +v -0.15319686573467703 -2.0729974623688086 0.43482648095559284 +v 1.1490837916778565 -0.73389693809370127 1.1600182037098354 +v -0.50876981764439311 -1.4120691008372022 1.0553274011143055 +v -4.1034145637472319 -3.8374036764837567 0.066968559717086484 +v -0.03163387385646637 -1.8187464783293157 0.60557653826169067 +v -4.2617869924254679 -4.1166415783155612 -0.11402300933112841 +v -1.2523650897819933 -2.7764224454505686 0.16305873660972947 +v 7.4054850573812558 -0.36299130352732389 -0.18976683906122369 +v 1.4182415234881991 -1.1247254780762759 0.77760531028881474 +v 7.5919694013346843 -0.37974252824556426 -0.25217112589213331 +v -2.2822598960892138 -5.8254675403959997 -1.997170255089338 +v 1.8895653053146848 16.781338283633378 -7.1501091361619808 +v 2.4368966497429301 -0.81049469378336225 2.6064574732854107 +v -0.53682077295077624 6.2857987981200507 -4.3359779931342111 +v -0.10286225233156941 0.1133599513953623 -0.64847223841753765 +v -0.76395897752379205 -1.9485235567856229 -0.29705760458268915 +v -0.67979561663959609 -2.1217674990962974 -0.11493833526946262 +v -0.80584759865726729 7.9486806142687261 -5.4955510405104766 +v 0.3683158978720934 0.1157745699557045 -0.13510444939331015 +v 0.011154469494248071 -0.32916517817323682 -0.29355206586581023 +v -0.55084941329364656 -0.87609659256925798 0.74192093728278108 +v 1.2524024014095294 -8.2029485766577608 5.807027868668893 +v -12.041490657150248 -0.24325329033374968 -6.9023406095563686 +v -0.46836055805693277 -0.22265746847684179 0.44489143597792563 +v 0.08245381283032957 0.18264064352300488 0.57833764851325753 +v -1.2687418996908055 0.21542236235619083 -0.29829107076833083 +v -0.10087001617097248 -0.17001591067137034 0.65038946791321528 +v 0.57560165477665637 2.6652026707735863 -3.4978311345326007 +v 0.41585916123436412 0.028904256930210294 -1.3899309384833645 +v 1.3034768669988108 -0.62669418045426151 -2.2978703057624266 +v -0.29729951325672299 -0.38975473900743368 0.0069999973040749675 +v -0.37301559142967089 -0.82833464010688962 0.4335650508874771 +v -0.1372628855437299 -0.56516899601242909 -0.1163105191265964 +v 2.2419293213326692 -3.7645542945084363 2.5901186346784209 +v -0.19144224753554107 -0.9400380491739343 -0.86786537683642428 +v -4.0639091564834944 0.18517727325800407 -3.5825375160469792 +v 16.417085740795386 -8.8333807030431792 5.1714016143926855 +v 0.10866441654668335 0.021080563470583093 0.058854244651600898 +v -0.5293666204448263 -0.34077526887100335 0.36091082797811042 +v 0.18075526065782091 0.13561323488922492 -0.027481420153673289 +v 1.826014797420672 -0.12481300018810881 -2.2675134422365222 +v -2.0164280125681251 -5.2971347478222244 -2.0609190704484819 +v -6.0916591012823682 0.68453142895635644 -5.1681587279866381 +v -2.3075934284345667 0.21439833698362662 -1.3656704774531894 f 1 2 9 8 10 11 7 6 4 3 5 f 1 2 13 12 18 14 15 19 20 16 17 f 3 4 24 26 25 27 13 12 23 22 21 diff --git a/results/search/topology_39/resume.planes b/results/search/topology_39/resume.planes index b35806c7..fc918e83 100644 --- a/results/search/topology_39/resume.planes +++ b/results/search/topology_39/resume.planes @@ -1,37 +1,37 @@ 36 -0.37899956107139587 --0.91469389200210571 -0.94826424121856689 -0.22276113927364349 --0.12168127298355103 --0.21488335728645325 --0.18560272455215454 -0.19146028161048889 -0.30193474888801575 --0.2727057933807373 --0.080675117671489716 --0.20044143497943878 -0.27391403913497925 --0.6776963472366333 --0.81650865077972412 --0.00047421461204066873 -0.041753295809030533 -0.057739723473787308 -1.3247383832931519 --0.71073782444000244 --2.3813538551330566 -0.051018476486206055 --0.057608257979154587 -0.067959636449813843 -0.010134996846318245 -0.19664396345615387 --0.023504402488470078 -0.15329369902610779 --0.092849642038345337 -0.04708288237452507 --0.43310073018074036 --0.071555249392986298 -0.40027597546577454 --0.21419923007488251 --0.27718007564544678 -0.17245234549045563 +0.31584861874580383 +-0.95750325918197632 +1.2008818387985229 +0.2114880383014679 +-0.10081056505441666 +-0.19363334774971008 +-0.23456613719463348 +0.19731238484382629 +0.36892813444137573 +-0.2892281711101532 +-0.13221967220306396 +-0.18728236854076385 +0.37819370627403259 +-0.67946052551269531 +-0.82112383842468262 +0.0038615977391600609 +0.038347143679857254 +0.054095681756734848 +0.82059574127197266 +-0.70695501565933228 +-2.4371747970581055 +0.046910800039768219 +-0.051130175590515137 +0.037836600095033646 +0.010013566352427006 +0.1483139842748642 +-0.009888223372399807 +0.086900785565376282 +-0.041632987558841705 +0.017332509160041809 +-0.4753967821598053 +-0.083490371704101562 +0.46277093887329102 +-0.22833521664142609 +-0.33862197399139404 +0.1853623241186142 diff --git a/results/search/topology_4/resume.obj b/results/search/topology_4/resume.obj index 16fc3792..b03ecf92 100644 --- a/results/search/topology_4/resume.obj +++ b/results/search/topology_4/resume.obj @@ -1,47 +1,47 @@ -v -1.4184575984333592 -1.9123722464914616 0.55743982120285773 -v -3.7630927682962048 -2.695814957854441 1.4772662035481379 -v -1.9608656540462195 -9.8435561653639656 4.4833156628241397 -v -0.67483388224238194 0.14569383580359282 -0.60128645151254034 -v -1.7529898763461518 -0.21874837975091493 -0.1763091679190516 -v -0.31620675056609338 1.8935710686110134 -1.5219940483356855 -v -3.5478911539704243 0.14131857986642016 0.067990068681460292 -v 1.6226680939824145 -0.3240700983948393 -0.90974239932585177 -v 0.95894702447844105 -0.53226942946637001 -0.65586273533214179 -v 0.73129270125815982 0.20434885530204183 -0.95591891096641202 -v -2.3370326155009629 -10.741208636658955 5.0007442537316118 -v -1.0531201327532878 -1.5292023048131347 0.72714900266390425 -v -0.42961581287472067 -2.5281349550977126 -0.96489509526674788 -v 1.4999199067174782 3.2569982795705443 4.4411054075468934 -v -0.04025636719982665 1.4082715349875303 3.445853475907751 -v 1.1165450249933513 -1.0158925148124867 -0.37781008836749363 -v -4.3151251740373713 -5.3335306759615744 -1.2474536641130596 -v 0.9149952551321977 0.45545406157095997 1.5460474930233925 -v 1.6993350868579571 0.67409491428311596 1.1862600106245802 -v 1.6128216039986532 1.1092870800373942 1.7766243092551124 -v -0.75427796117751855 1.1454434168338747 -0.50115410927128745 -v -1.2272981117552186 0.26985594305675886 0.9986742044361574 -v -0.91556038818860264 -1.0297836039535502 0.258587031749972 -v -0.43412608622571014 4.2175672901417034 -1.844405968763126 -v -1.3406502869512249 -0.6883219550210341 1.4571208980308625 -v 2.0189531509815035 -7.056623218862307 -7.5295958299541379 -v -0.85804233035017097 0.27686540918990282 -0.082616674514401023 -v -2.5119347164250652 -1.4292614291776202 1.090190269773349 -v 0.081475955585322751 2.4150072244149685 -1.5235966731866684 -v 0.64920864571806958 2.0093636053397868 5.2199413772772694 -v 0.2583175261368057 2.3678012782869016 0.1126785696886996 -v 3.8653840290586361 7.1951512207530266 -0.47560123598370052 -v -1.4616412869881881 1.4016262473688912 -1.648941477173149 -v -5.1699605438845202 3.8324079281779917 -2.5840624587759091 -v 1.3544242110129852 -1.7089296959866243 0.14063116863472069 -v 2.3592931528776022 0.15650992705444206 -1.7604701794724604 -v -1.3013775565432777 0.081832684563913585 -0.57167071011967563 -v 3.2805106037237781 0.56052900903312763 -0.74848765545025686 -v 2.1896937331458139 0.38737378011573176 -0.907854615133451 -v 5.1137384916117714 10.624599922561368 -1.7537869532660402 -v 1.4647803957374781 1.1857784302801595 2.5529008025415303 -v 0.43500487084020423 0.29230935096246452 1.702203654903464 -v 0.78285231550571532 0.93528070168316535 1.5115390753449236 -v 0.58663465772570456 1.5196125958364328 1.1177638106440946 +v -1.3979602093401431 -1.7499852772841473 0.482638342679162 +v -3.4357095383423832 -2.3300886047910332 1.2439908295915461 +v -2.0687548310980666 -10.542988512394508 4.7153541304858484 +v -0.59955286578130873 0.17079176685596384 -0.59962181916821722 +v -1.7974860629482243 -0.48867592300208929 -0.0046306106723357221 +v -0.28095069639281139 1.8235267460156863 -1.4417629442683153 +v -3.1505220483199263 -0.067827024634463898 0.12776629741113332 +v 1.509097115306191 -0.32629430951588206 -0.87946422917698153 +v 0.90717045930919471 -0.51005871893148302 -0.64882549947681289 +v 0.6970762971845329 0.20631615477790441 -0.9296433966833213 +v -2.5650758823492534 -11.731895623691052 5.3857577623330872 +v -0.97333110656566202 -1.4344440999414365 0.57890606256598209 +v -0.31537789537500693 -2.2165854349012633 -0.9364821728438234 +v 1.6070870254605241 3.3884329892857141 4.9687109360114725 +v -0.13327842214453103 1.241521212743427 3.4562365262176229 +v 1.0713769268948627 -1.1205566894170977 -0.5362698263976905 +v -3.794122734694926 -4.4178837496037628 -1.222598664466864 +v 0.94014108011760533 0.39577422642742455 1.547434930292543 +v 1.864013879008303 0.70702095136016663 1.2654275501821024 +v 1.6276468435940881 0.98515749806067343 1.8060994835915196 +v -0.73518446601249399 1.0323558470589884 -0.39577654973547249 +v -1.2079725908582379 0.17355440360089419 0.91334609104633824 +v -0.80464212625568454 -0.99834368652778582 0.091717455915732216 +v -0.38432615994948782 4.1859634910652446 -1.7572639374536991 +v -1.3291779287748793 -0.72787637518244974 1.3545410985547355 +v 1.7688167708895981 -6.2836638098548265 -5.4904246903096707 +v -0.8304882021951836 0.2904476883493633 -0.043732999975882536 +v -2.2852096450885622 -1.3171803265169906 0.98741303157479254 +v 0.10520174817787301 2.3543656287644872 -1.4462289998847946 +v 0.54092247989995867 1.8325910613682899 5.5440274542659331 +v 0.301317588859215 2.3549551891435332 0.23054459362984669 +v 4.4417069281461634 8.2137976725514612 -0.86032193092005738 +v -1.5415341659987996 1.0019455495953551 -1.5424197583374686 +v -4.6274543047276593 3.0658871324937946 -2.3041298632781788 +v 1.3932329604823643 -2.0557991412193539 0.23679252451636079 +v 2.6191192438831794 0.042713446087826561 -2.2721849472312705 +v -1.3886253868316654 0.071184380378115503 -0.70651734345839268 +v 3.1242934184453368 0.48259615059707106 -0.71966252667027431 +v 2.3306742865515906 0.38030425113598176 -0.8355020157588392 +v 5.1778347034023371 10.210986078987267 -1.6165933724731525 +v 1.5855611308750726 1.2172905814046684 2.8400354618244261 +v 0.24989343069675074 0.11377495662598847 1.6361664943369085 +v 0.82669480412950846 0.83636534772201043 1.5094358756194399 +v 0.45388290299171702 1.9646500115572159 0.70904417865325531 f 1 2 7 5 6 8 9 10 4 3 11 f 1 2 20 15 14 19 18 16 12 13 17 f 3 4 27 21 22 25 23 12 13 24 26 diff --git a/results/search/topology_4/resume.planes b/results/search/topology_4/resume.planes index 5fa10f02..d05bd63e 100644 --- a/results/search/topology_4/resume.planes +++ b/results/search/topology_4/resume.planes @@ -1,37 +1,37 @@ 36 --0.1245151087641716 --0.25689718127250671 --0.53619545698165894 -0.44622558355331421 --0.67470908164978027 -0.5627586841583252 --0.78093117475509644 --0.03532254695892334 --0.26691332459449768 --0.97744989395141602 -0.74586063623428345 -0.12715637683868408 --0.15202797949314117 --0.4222254753112793 --0.49466291069984436 -0.19515931606292725 --0.15243829786777496 --1.1701772212982178 -0.23640099167823792 --0.4834345281124115 -0.22157573699951172 -0.81517553329467773 -0.21861462295055389 --0.081793703138828278 -1.6128162145614624 --0.42465499043464661 -0.43580037355422974 --0.042178206145763397 -0.3641892671585083 --0.10700196027755737 --0.53416526317596436 -0.24924977123737335 -0.38482949137687683 --0.49036672711372375 -0.60315954685211182 -1.1393909454345703 +-0.12646080553531647 +-0.24206823110580444 +-0.52291154861450195 +0.39484572410583496 +-0.69273519515991211 +0.52897787094116211 +-0.71211487054824829 +-0.044369477778673172 +-0.28628641366958618 +-0.93314975500106812 +0.67972493171691895 +0.10890242457389832 +-0.22673599421977997 +-0.54951536655426025 +-0.57039868831634521 +0.18145257234573364 +-0.14140374958515167 +-1.1182695627212524 +0.22248135507106781 +-0.4829426109790802 +0.19584652781486511 +0.79721575975418091 +0.19722457230091095 +-0.093311890959739685 +1.7586157321929932 +-0.47245541214942932 +0.46409714221954346 +-0.032372657209634781 +0.35225456953048706 +-0.089272052049636841 +-0.55329209566116333 +0.25252392888069153 +0.38239234685897827 +-0.48894557356834412 +0.57154315710067749 +1.0334291458129883 diff --git a/results/search/topology_40/resume.obj b/results/search/topology_40/resume.obj index 28590613..c7d92469 100644 --- a/results/search/topology_40/resume.obj +++ b/results/search/topology_40/resume.obj @@ -1,47 +1,47 @@ -v -1.1918161579116393 -0.27105200920820821 1.4225928320637506 -v -2.5698297836833697 0.51321060761970994 1.1476407675055276 -v -1.0598561518721228 -0.45034082956582083 0.87089251256816014 -v -0.41104656172060566 -1.271510341068711 -1.5068806886820174 -v -1.6448917090007378 -0.23638623107804921 0.093926855066977843 -v 1.5572083008827824 -2.2113068606391728 -0.11336905348735371 -v -4.3060614746823456 0.76865903927190249 -3.2637261278908438 -v -4.3166045755699685 1.1435198607138215 -1.2193904150170201 -v -1.1048352210171135 -0.62803902000729139 -0.2659741880407317 -v -1.1159839819085589 -0.52482391803244599 0.26923678721472527 -v -2.1913919495485921 0.22999905180331168 0.84681214455512588 -v 1.3883231419133875 0.8451450663839033 0.23780688534633376 -v -0.82051603565222042 1.1033569120004678 0.45393563273580795 -v -0.95694759093956105 1.0500114489710111 0.51285160397127838 -v 5.3035344077287601 -3.6931635378666052 2.5380522154067826 -v 2.5124296489831455 0.064966584040495046 0.55443542865321704 -v -2.5542622253869713 -0.39633364086029249 1.7430193352701819 -v 3.3005924131081379 -2.3276228026217853 1.9900492246829793 -v -2.6667207730394535 0.35187870982741543 1.270658059349244 -v 0.1097982807760759 0.57068081479415744 0.64167042084848258 -v -10.574333856356416 -5.9348285774513831 2.3968059586533741 -v -2.0057065564288732 -1.8746977865598933 -0.80394063886171363 -v 1.5369269769066276 0.76190929198848123 -0.13693204526040606 -v 0.17535848284786421 -0.58903806292223893 -1.09469890118518 -v -0.73493554755589119 -0.75552432702740691 -0.20441337557017475 -v -1.0111230066767916 -0.71938728210841096 0.24573054152893498 -v -2.9761317921670085 -0.87659502435670578 2.5876019564848329 -v 0.38642782751002602 0.38861359278431418 0.64987747756542713 -v 0.060637453378499143 -0.32827549242280563 -1.1765603812406027 -v -1.0197430578210884 1.1555549647567167 0.63152491225678453 -v -3.2752879474575418 -0.11333917981326273 1.3332220105959722 -v -2.8374518316908572 -0.2105751595210264 0.95523903377410802 -v -1.2297210111901924 0.0062293061872839665 -0.028860167162215233 -v -3.6179934146173278 0.60641442598996786 -3.7784548929298674 -v -9.0772254851161787 2.8397013427540374 -7.6423960836392268 -v 1.7132838380473798 4.3515006950528408 -0.023482377937418863 -v -3.423483046702708 -6.6300227728654688 -3.6185568035910158 -v -2.8466823462723436 1.2187365544131925 -0.012149566833367098 -v -2.2647716871670904 1.1927561574824292 0.1608460884397237 -v -2.4068656437848786 1.2298909951583263 0.28699234289948439 -v -1.7317959066920696 1.2327398003979206 0.66809087755897933 -v -1.6776340079819776 -0.58459563386663183 0.9322717967409454 -v -3.0405243214134838 1.1548426553984705 -0.10142286400102485 -v -1.8629092923617103 1.3772948622392587 0.65561483881420557 +v -1.2142460285992356 -0.37826748248037984 1.6515711957726282 +v -2.222492280270207 0.15818772340561871 1.4026532063008879 +v -0.91349842126924174 -0.61337984693669145 0.73537664749433851 +v -0.22047604364275056 -1.1577627859787512 -1.4102107890835813 +v -1.2391155697086698 -0.47899798820458767 0.14233807985385638 +v 2.8007267635813569 -2.6584652162062206 0.74405140701897321 +v -3.5453857104988633 0.61247322202952037 -2.2157830312718896 +v -3.7675653787517449 0.80655109375674949 -1.2700493208538322 +v -0.92971900481157832 -0.66742061491342042 -0.095219547857191333 +v -0.91061041737301884 -0.64968299298864474 0.27754221764835707 +v -1.480596986615393 -0.30509377614818112 0.68177708851582164 +v 1.574309894705451 0.89087675195225302 0.12049873138607881 +v -0.2252228938974227 1.0016342673808087 0.35890184241902412 +v -0.41937357705858463 0.9062484303383368 0.47116361670686613 +v 6.6880886734041765 -4.424871602120791 3.4751490955457185 +v 3.8895910800151765 -0.55587006402213868 0.86533449034472987 +v -2.3745517592476859 -0.60871538108374212 2.0486696014148178 +v 4.6443869284494355 -3.0683320630735635 2.7535883309920894 +v -2.3893044927946216 -0.35851243585850329 1.8496267292148296 +v 0.25172651214715119 0.56290612466072942 0.6257775895026938 +v -5.3785573237757278 -3.2775611552581383 1.9108684167722472 +v -1.5592455993834333 -1.7258848637597761 -0.56288437165668104 +v 1.8730767289490091 0.72996805275194321 -0.64296715061009468 +v 0.31784709266177824 -0.68190266878304173 -1.2105624186264645 +v -0.63176871775765486 -0.78124841839754999 -0.017131434991896857 +v -0.82553165675106821 -0.77517340794032252 0.2795740351738093 +v -2.4761972101609779 -0.90819060680476316 2.434146219153428 +v 0.47879767336948031 0.36003184550036871 0.65688390979655864 +v 0.24589667869602042 -0.47037830736085617 -1.3054313245369762 +v -0.3835117930451315 1.0447079346147352 0.5491676061018127 +v -2.669844177874388 -0.42152790842758897 1.5909302957579803 +v -1.8410660965176338 -0.52101338973251299 0.69771601741102363 +v -0.93329540356718532 -0.29233839641113452 -0.0047416480290829082 +v -2.3965011136501411 0.40150450679752248 -3.0803789640895527 +v -6.052768704885735 2.1158187169650389 -5.6622337559873968 +v 6.1706674185417834 9.574948383726845 -0.29967986141233383 +v -0.19211245373131261 -4.0831030157713766 -0.66849001291684695 +v -2.8989189484946629 0.94695466937503003 -0.40044391859166606 +v -1.8281062605940193 0.98580480921466862 -0.010229515954099861 +v -2.0729403362967065 1.044024613300923 0.24137655599202235 +v -1.6695405153262259 1.0822015980420443 0.50794939297714214 +v -1.2279143435797888 -0.73227016209535223 0.74084762367063206 +v -3.1455705295870637 0.80732056369789318 -0.52229325917791569 +v -1.8335342898512883 1.2669429874257789 0.4808431013769196 f 1 2 8 7 9 6 4 5 10 11 3 f 1 2 19 17 18 15 16 20 14 13 12 f 1 3 28 25 26 22 21 27 24 23 12 diff --git a/results/search/topology_40/resume.planes b/results/search/topology_40/resume.planes index 35f638ab..6b92eef9 100644 --- a/results/search/topology_40/resume.planes +++ b/results/search/topology_40/resume.planes @@ -1,37 +1,37 @@ 36 --0.54019492864608765 --0.89275234937667847 -0.16091415286064148 -0.12374356389045715 -0.46572980284690857 -0.70824766159057617 -0.069646939635276794 --0.10655433684587479 -0.051286198198795319 --0.31987440586090088 -0.31840226054191589 --0.45243498682975769 -0.57514631748199463 --0.0025282737333327532 --0.81406611204147339 -0.089125789701938629 -0.90019237995147705 --0.16460466384887695 --0.29550927877426147 --0.909709632396698 --0.10828034579753876 --1.0481868982315063 -1.5299843549728394 -1.1809349060058594 --0.087854944169521332 --0.12098298966884613 -0.27735114097595215 --0.53019899129867554 --0.38515269756317139 --0.48384702205657959 --0.42108672857284546 --0.31735023856163025 -0.7482762336730957 -0.048099786043167114 -0.10528549551963806 -0.71441149711608887 +-0.49321454763412476 +-0.89547407627105713 +0.067893803119659424 +0.12176214903593063 +0.53909921646118164 +0.66863930225372314 +0.12846179306507111 +-0.17668578028678894 +0.08750934898853302 +-0.25361597537994385 +0.21153365075588226 +-0.25888064503669739 +0.65591692924499512 +-0.27554455399513245 +-1.1118277311325073 +0.031473927199840546 +0.88746845722198486 +-0.17472690343856812 +-0.28637722134590149 +-0.8657451868057251 +-0.16929206252098083 +-1.2802611589431763 +1.3333655595779419 +1.0635685920715332 +-0.1194627434015274 +-0.08219156414270401 +0.33600854873657227 +-0.53115570545196533 +-0.37370288372039795 +-0.43038749694824219 +-0.44431409239768982 +-0.28967362642288208 +0.71385776996612549 +-0.019285500049591064 +0.082129262387752533 +0.67642509937286377 diff --git a/results/search/topology_41/resume.obj b/results/search/topology_41/resume.obj index ed053587..0619aef2 100644 --- a/results/search/topology_41/resume.obj +++ b/results/search/topology_41/resume.obj @@ -1,47 +1,47 @@ -v 0.73354370110203915 -0.23004078026337543 0.18575376844125482 -v 0.656368937419197 -0.33084881883543588 0.10850600776137267 -v 3.1184831387931564 -0.16461201320187341 -0.99984325045299849 -v 1.1299806657528029 0.12521346117655491 0.39210455775612962 -v 1.6313645222429818 0.94216368772699077 1.0837718060580708 -v 1.4428874638035838 0.28902646644670582 0.41839768645573283 -v 0.83966855822449593 -0.29099245967204745 0.058183803655682806 -v 0.27224555762845637 0.44998605340894132 1.2265257905996445 -v 6.4108294072737229 0.616834266332423 -1.8269023318979678 -v 5.9726957967234195 4.5422077462914086 3.0034168145145208 -v -5.3622193930733166 3.9276340247669403 8.2825422149852415 -v 0.58542342145501669 0.33474803995328328 0.16812816584080259 -v -2.1968950674260403 1.5774765895834451 -1.776596708175961 -v 1.2334642552355364 -0.81705802553347529 0.47251443920539726 -v 1.2749941277885113 -0.63346924052498021 0.53636655531611277 -v -1.3270919656974269 1.65910695980348 -1.0876463421583475 -v -1.7690687953525297 1.766267516182713 -1.412117959039999 -v -2.0096314145597214 2.7311747368761727 -1.4325377113695046 -v 2.4369075725952287 2.0173864036479974 1.8945949671878264 -v 1.2369346162282526 -0.42008396119548008 0.54359799824679045 -v 1.3287492129999214 0.35390125180099274 -0.94494290713582041 -v 1.1338613177529913 1.2766801102504752 -4.966659484591843 -v -0.04446142480150355 0.32602690643414334 1.0764192482561108 -v -0.40686207273056857 0.46312497232159178 0.93827255536750975 -v -0.21506101287362162 0.3587186936509289 1.1594501761765301 -v 1.2353441564693215 0.066083483184250696 0.52186133773010057 -v -0.4838317528645209 0.54253514887021947 0.67511273561491802 -v 1.3596653380998498 0.55618210856654504 -1.0342756679140472 -v 1.1830631836237777 -0.7272436228733179 -0.25710309449487023 -v 1.6370813764929351 1.0270271183053248 0.9682538266042271 -v 1.9680550932478964 2.5725173017858904 1.3052945647306833 -v 2.0705085618701742 3.2231063000443445 1.0504579601801818 -v -0.035259956904257483 0.54346622633370634 0.97450905525498333 -v -0.09275923208229174 0.43587487315861684 1.1009846187333709 -v 1.3736635151782848 2.2667444577735263 -1.7521217650945027 -v 0.86870882821603079 -0.50020499182703615 0.10180984611782107 -v -0.93805803962123935 2.7433909373328449 1.3738899393426631 -v -1.5678267396024945 1.5226749446045726 -0.99399502001554263 -v -0.17128015379425598 2.1156522663024782 -1.2617782712331986 -v -0.29430768811268765 2.0492664059212911 -1.4077690219598606 -v 0.26527041284337904 0.033336240766300665 -0.6492770153255325 -v -2.9254944129616396 -6.8328773949374071 2.708292065003671 -v -3.2161986741477078 2.610412879379794 2.4027123912693802 -v -0.089223082798024808 0.19742532138499413 1.1104085204882352 +v 1.1770428646010784 -0.39224611151625544 -0.76268057974903969 +v 1.2148899592147422 -0.055840428474421083 -0.48034932291837401 +v 1.32353116965118 -0.83841397248882399 -1.386001010828551 +v 1.1869638347981675 -0.68202324826697025 -1.0596830055483208 +v 4.2665519547607973 3.2946227547320062 -1.0528498356572136 +v 2.0042499025012521 0.69600171327044036 -0.74113197413288345 +v 1.3954236682252401 -0.43370793443315309 -1.0797038877169902 +v 3.2609448269519108 2.6103503572976243 -0.45211572349073426 +v 8.2389444386220969 3.6204076065463249 -5.759443247425752 +v 41.958242771054572 34.702181464157128 -17.915203929147282 +v -17.185912488062961 2.6538269399920624 25.462587601435501 +v 1.2608933487963134 -0.70522246627518981 -0.97860663431343575 +v -1.7171759437822451 1.0649933766343123 -0.74027276383549157 +v 1.3106396896488548 -0.11410531677403433 -0.48908519092638314 +v 1.3957702797923717 -0.026161182919251961 -0.38574055567247162 +v -1.5457053174628104 1.2104364618088848 -0.5573153622326148 +v -1.6665812598997727 1.2057407136925691 -0.60850310686117404 +v -1.6996040829887378 1.3370218127672822 -0.51708702744508606 +v -70.563278660244066 8.6827683345319553 -21.711465029377003 +v 1.6812073386130071 -0.81192272672885213 -0.89843363995570968 +v 0.87317632446746563 -0.54650217508390475 -1.2484268176449254 +v -0.14056181499988085 -1.2408118951776888 -6.6055423451942632 +v 0.24143189990544081 0.29526323779248165 0.75723288688849533 +v -0.65044317449020628 0.76682795576194795 0.58296144025522045 +v -0.061429365363824817 0.57057927895432048 1.181049341042435 +v 1.6375898675780198 -0.89937144508519595 -0.88393641259238187 +v -0.15587474634034876 0.46923607379734117 0.52823572099560367 +v 4.5095438385109281 3.8281980854473581 -4.0614746456673387 +v 1.3738182164846566 -0.0059376860923397359 -0.91398873958148952 +v 4.5439231911252111 3.6463056843292532 -1.4778051842874331 +v 5.2961078560961674 4.5067429109095949 -1.5397192174999499 +v 10.164422652368007 10.354925600283334 -5.2052227429229987 +v 1.4265222766829513 1.9895238206473811 -0.35454010594902113 +v 0.13372230649449618 0.71801495733186704 1.0411698606970412 +v 5.7426655608140331 5.8231485517811326 -5.1447303506919635 +v 1.5449919605303821 -0.029618628141538587 -1.1596852389800119 +v 0.22775640390347421 5.1208424899102294 2.3065140978404033 +v -1.0764705314736898 1.5451797427878158 -0.86220999821100652 +v 1.0960154871284764 3.0223837733937402 -2.1583022711053634 +v 0.95344488389908177 2.878992977857167 -2.1522880110509228 +v 0.83170476524925008 0.54825297918035731 -1.5057850749067276 +v -18.01690841850418 -18.855417193519624 12.247894613901281 +v -6.1706197121174888 1.91930653046425 7.394930410395415 +v 0.15453217106510597 0.15818073932954274 0.84917462137324695 f 1 2 11 10 8 5 6 9 3 4 7 f 1 2 14 15 20 19 18 16 17 13 12 f 3 4 26 25 24 27 23 12 13 22 21 diff --git a/results/search/topology_41/resume.planes b/results/search/topology_41/resume.planes index 5427aef9..77deaae2 100644 --- a/results/search/topology_41/resume.planes +++ b/results/search/topology_41/resume.planes @@ -1,37 +1,37 @@ 36 -0.16830252110958099 --0.37252333760261536 -0.31799808144569397 -0.16347187757492065 -0.036296851933002472 --0.21068465709686279 -0.14223767817020416 -0.4800247848033905 -0.10324852913618088 -1.2883983850479126 --0.24980103969573975 --0.11975094676017761 -0.50949388742446899 -0.14468848705291748 -0.35471484065055847 --0.22465108335018158 -0.78423953056335449 -0.56501126289367676 --0.075436197221279144 --0.20779688656330109 --0.49663221836090088 -0.47538021206855774 --0.016030136495828629 --0.39331725239753723 --0.42858269810676575 -2.243553638458252 --0.65903329849243164 --0.50048291683197021 -0.37207934260368347 -0.74869352579116821 -0.097970381379127502 -0.1225072368979454 -0.0083127142861485481 -0.40259650349617004 -0.041414536535739899 -0.89682984352111816 +0.39461910724639893 +-0.30613622069358826 +0.31187045574188232 +0.20063433051109314 +0.40633770823478699 +-0.51105833053588867 +0.10512115061283112 +0.18271386623382568 +-0.043572951108217239 +0.81366419792175293 +-0.71570086479187012 +-0.06121286004781723 +0.45800301432609558 +-0.10437607020139694 +0.3291451632976532 +-0.27293694019317627 +0.89487302303314209 +0.562427818775177 +-0.35699591040611267 +-0.19232000410556793 +-0.76056677103042603 +0.33874854445457458 +-0.3936614990234375 +-1.3554204702377319 +-1.3696887493133545 +1.3245706558227539 +-0.88890588283538818 +-0.12229475378990173 +0.44822618365287781 +0.55270421504974365 +0.23159107565879822 +0.36162018775939941 +0.12649266421794891 +0.45052003860473633 +-0.14602616429328918 +0.47462481260299683 diff --git a/results/search/topology_42/resume.obj b/results/search/topology_42/resume.obj index bba118be..d6efa006 100644 --- a/results/search/topology_42/resume.obj +++ b/results/search/topology_42/resume.obj @@ -1,47 +1,47 @@ -v -0.28833617160305158 -0.53769032808135264 -0.70913844587264818 -v -0.23413702896948863 -0.67143075715609579 -0.57798803978953661 -v 2.631899205248684 -0.63986633560013007 0.19855462561770543 -v 1.579582804189388 -0.83527617718279912 0.072798370788356492 -v -0.28351683302063513 -1.284137626294964 -0.060645388718120863 -v -0.58204518997381205 -0.73805043873996456 -0.61781769940940889 -v 2.9145938409851597 -0.73934526436409775 0.36409338318697893 -v -813.13455576957745 987.79512454354222 -1085.5548991477424 -v 1.7794776828676799 0.33292180429911922 -0.88391515685773669 -v 1.60340135297947 -0.93127639846357357 0.16270786630958056 -v 1.4240764390244272 -0.14998998290484364 -0.56493725225239455 -v 0.063077394232230896 -1.4192096676693398 -0.91330761447811959 -v 0.57710118932336318 -2.7557126670479057 -4.6641459754537227 -v -1.2713357423892808 1.9485514766517207 1.3573389797302191 -v -0.19914540365131525 -0.72754863664891367 1.7232394858705953 -v 2.3414882377404864 -6.8537697495670233 18.356096654138316 -v -1.0541129098285724 1.8196702091300911 31.738535281620592 -v -2.3572034297108164 4.6701076962653705 1.8167757959936046 -v 0.017914274522062706 -1.302372627521541 -0.62706747561741039 -v 0.22869703346773565 -1.8158682957720582 0.36891365373234675 -v -1.1985827946265077 -16.014653024813253 -39.297531168426026 -v -0.33521100283742211 -1.2015270077865698 -0.18446950340563095 -v 2.4995912459010716 -0.51535873910139829 0.57962692521853376 -v 4.4596525280990784 -1.1055936781989499 -1.7265089494855808 -v 1.2269028075561195 -1.2248377301022593 -0.83211571457819611 -v 1.7117845709488166 -1.1187674505190848 -0.73149343066369499 -v 0.25767335889185372 -1.3837210334760788 -0.89177468155868389 -v -1.8122970810795132 2.81298338538179 0.061427630245442261 -v 0.33509403476802913 1.3787224827334239 9.77466707173717 -v 0.35258320314344727 1.357114740823832 9.8310659670892093 -v 0.38392067624396331 1.2597679034597888 9.7979934988249227 -v -0.37362068746201471 -1.4246561646900724 -0.9273582665747756 -v 1.8705825440980102 0.19783620780594932 -0.12307234362731223 -v 73.831707538999026 -448.85645021156188 1092.4514628212789 -v 1.7374619417372636 0.40304870559616407 -0.42129057258728297 -v 1.6362279790572209 0.34607646167775363 -0.061280195375527147 -v 3.0126981776203046 -1.0064747114891539 -0.72696356077995605 -v 8.9474715356295071 -7.3497102130242498 -2.096866657417999 -v 2.8050074140183132 -0.38937496549787826 -8.8711654041216264 -v 0.50571265974770685 1.0912118833148563 8.5729487260630783 -v 0.78338596950106387 -1.2708668166525696 -0.82599653381077376 -v 0.19924241511072305 -1.3463071816650645 -0.87616009315457732 -v 2.224900337285233 -2.7324723932705193 -1.1697311341965522 -v 1.8038162204439576 -1.3990938841910316 -0.85768765224231724 +v -0.28002735167457893 -0.52219616968817784 -0.68870371498544047 +v -0.22739003631930543 -0.65208267414134335 -0.5613325948728789 +v 2.5560576280724554 -0.62142778743939031 0.19283291907458111 +v 1.5340651248102652 -0.81120663069191667 0.070700512253764947 +v -0.2897713638253448 -1.220747487257875 -0.085819561181251558 +v -0.56527280095792665 -0.71678262457459474 -0.60001451221964008 +v 3.2061889071194338 -0.66306273283662398 0.41128715971910013 +v -881.89673236713713 1071.5208858472504 -1177.3978407886111 +v 1.7281997365953932 0.32332821862220118 -0.8584441288353396 +v 1.5571973314029519 -0.90444056338610868 0.15801922871008101 +v 1.3830397736412245 -0.14566797291699418 -0.54865787055466275 +v 0.061259738886342383 -1.3783132982287765 -0.88698948807050726 +v 0.56047150963326875 -2.6763038624320847 -4.5297444482765163 +v -1.4472896133055067 2.4230065228137008 1.2456766081832509 +v -0.1934067270814068 -0.70658347325259963 1.6735822300559469 +v 2.1667191788508373 -6.3822014526232662 18.250007986134293 +v -1.0237372246275456 1.7672339677805662 30.823948307216156 +v -2.2892775598699346 4.5355325451097457 1.7644230317905936 +v 0.016351150044443742 -1.2620706226958662 -0.59766156387504443 +v 0.22125753182277616 -1.7612506328577213 0.37055286452885139 +v -1.1640459960124512 -15.553199178617072 -38.165199718924974 +v -0.32537366816270608 -1.1638527095697986 -0.17109849912768549 +v 2.1498717029889445 -0.2391890027099399 1.3627263300776038 +v 4.8568495013303066 -1.0543435140970934 -1.8222039891328201 +v 1.1915457293012357 -1.1895428162317883 -0.8081373894572712 +v 1.6624573086552741 -1.0865286951680861 -0.71041448577592037 +v 0.2565919344879658 -1.3426914069824978 -0.86537777768370816 +v -1.9017351278347532 3.1491900432589772 0.15702011691078188 +v 0.32543800598919076 1.3389926300022374 9.4929978061089457 +v 0.342423108644129 1.3180076573742874 9.5477711936247296 +v 0.37285744581343389 1.2234663246161093 9.5156518622988902 +v -0.36285430752245473 -1.3836029541744777 -0.90063527859874981 +v 1.1123425954158235 0.9372025558875372 0.20364711864531859 +v 79.755150859828049 -486.08828276153298 1183.9670177033345 +v 1.8187946567482733 0.62331893233592883 -0.34892062021271947 +v 1.7075442005894956 0.56070962163751747 0.046710617415149147 +v 2.9258834408319498 -0.97747193651280517 -0.70601518803653263 +v 8.6750049587241111 -7.1222781492168066 -2.0330651058442166 +v 2.7219826020678792 -0.37660876332384219 -8.5984360400218023 +v 0.49113941185426985 1.0597680354936048 8.3259126851302039 +v 0.76081176599014166 -1.2342452241161441 -0.80219440476081272 +v 0.20028236431625657 -1.3066358874527855 -0.85033008645853669 +v 2.1585326703117675 -2.6465942788540326 -1.134353308258818 +v 1.7518369835000149 -1.3587772718191089 -0.83297230589341975 f 1 2 6 5 8 7 10 4 3 9 11 f 1 2 18 17 16 14 15 19 20 13 12 f 3 4 26 27 22 21 13 12 25 24 23 diff --git a/results/search/topology_42/resume.planes b/results/search/topology_42/resume.planes index 30d742f9..26b99f91 100644 --- a/results/search/topology_42/resume.planes +++ b/results/search/topology_42/resume.planes @@ -1,37 +1,37 @@ 36 -0.16772036254405975 --0.51839542388916016 --0.59794497489929199 --0.43061599135398865 --0.17220695316791534 -0.0023483398836106062 -0.13160379230976105 --0.93463921546936035 -0.35106700658798218 --0.64856457710266113 --0.2451956570148468 -0.10717817395925522 -0.66398072242736816 -0.9117242693901062 -0.33099150657653809 -1.1015785932540894 -1.0200196504592896 -0.049196492880582809 -0.11411622166633606 --1.0635929107666016 -0.27066624164581299 -1.2161335945129395 -0.36759954690933228 -0.070327393710613251 -0.015668906271457672 -0.13078072667121887 --0.53768879175186157 -1.0006579160690308 --0.61484742164611816 -0.18408171832561493 --0.66727942228317261 --0.90609335899353027 --0.32593390345573425 -0.0057914005592465401 -0.099878832697868347 --0.21764613687992096 +0.16288729012012482 +-0.50345724821090698 +-0.58071446418762207 +-0.41820722818374634 +-0.16724458336830139 +0.0022806695196777582 +0.12781146168708801 +-0.90770637989044189 +0.34095054864883423 +-0.62987536191940308 +-0.23813003301620483 +0.10408969968557358 +0.7979540228843689 +1.0956854820251465 +0.39777663350105286 +1.0698351860046387 +0.99062645435333252 +0.047778833657503128 +0.11082781851291656 +-1.0329442024230957 +0.26286664605140686 +1.1810891628265381 +0.35700669884681702 +0.068300820887088776 +0.015217386186122894 +0.12701211869716644 +-0.52219456434249878 +0.97182273864746094 +-0.59712976217269897 +0.17877718806266785 +-0.64537286758422852 +-0.87634658813476562 +-0.31523355841636658 +0.0056245140731334686 +0.097000695765018463 +-0.21137438714504242 diff --git a/results/search/topology_43/resume.obj b/results/search/topology_43/resume.obj index d3ff8b77..b2173cb4 100644 --- a/results/search/topology_43/resume.obj +++ b/results/search/topology_43/resume.obj @@ -1,47 +1,47 @@ -v -0.20901778205529281 0.88400895912023292 0.92351276412308281 -v -1.908559533808911 2.7058235178617305 0.10535355268604568 -v 1.0334175556077596 -0.13825615195594498 -1.7097273684810719 -v 0.92767548538087252 0.057104344565254948 -2.6167127082481851 -v 1.1750942371460265 -0.45009980644765307 0.028386480875811637 -v 1.410200302002272 -0.69314103756236989 0.047833456671984687 -v 0.84939346661770321 -0.14822555971056356 0.364912684441004 -v 1.2973121435854829 -0.59653623854075277 0.24824442930713242 -v 3.0930918617768732 -2.3141788088653219 -1.0515480514875084 -v -4.2544888614785945 5.6795694320763639 -5.8157228028016332 -v 0.12312877439550066 0.59416081231541296 0.39242754961643911 -v -0.94560335635888049 -0.62655460512277694 0.10731356549014921 -v 0.35789864797420956 -0.76309327621002698 0.98783312656441358 -v -4.5922550925369592 2.2503841453472004 -1.8553064009081397 -v 4.1908822191968067 8.6480507180300421 5.5462871057768446 -v 1.2920564487382795 1.6976296898673513 2.1323301427366066 -v 0.81758105907088341 0.24261435287693986 1.5098448579728718 -v -2.3099134925906775 -0.72650983351684062 -0.86302142083441491 -v 9.2427460539126631 0.88109118420472499 7.5063116642590124 -v -1.6237490972265189 1.2168809043796709 0.0049206602573519387 -v -0.42918484913238508 -0.40369810452202132 -0.79955293257393634 -v 0.88961717700209431 -0.49081137355182225 -0.14006245039631238 -v -1.1976823221115467 -0.64116006415649418 0.12297586667401161 -v 1.2367317967316995 -0.57782915204955887 0.32410267800644404 -v -1.619801894114663 -0.38083371947011796 -1.1420248125207411 -v 2.1200419218963313 -0.17154227136836436 -1.3408606262887834 -v 0.11189271689440325 -0.33664548850551307 -0.99504911598480672 -v 1.0619008742676077 -0.58226668083179256 -0.088444040477968278 -v 2.3074042945125215 1.8447943468651589 1.616627238588797 -v -1.7568956311769461 0.035362776510773526 -1.3119628074768794 -v 4.7699390991515775 3.7529404629270751 3.7411683375122009 -v -1.8040365572280841 0.50122327229546315 -1.1359612443839633 -v 1.7847268269685803 -1.5868337119149258 -1.1652654779349148 -v 1.8714993981888441 -4.0335664957003949 -3.5883576719235566 -v -9.5072353005105494 -1.180538971206742 0.58215070723022433 -v 2.5116905789188522 -2.3151648833327574 -1.9701820001996633 -v -1.0230730545966793 1.7548154045377065 2.464841466316694 -v 1.0902461087790141 -1.9706188143293608 -0.86780005989810771 -v -1.6942309591457374 -20.880357108471379 -16.288789299945233 -v -0.33657949579740104 5.0985736351656792 7.2584668487490784 -v 5.3112442067741013 -5.1237717055142227 -0.12601698661743344 -v 3.413765937766688 -2.5094807709909666 -1.0157595494211571 -v -0.14792890116885907 0.19744441764981255 -0.12036233296327693 -v -1.7942776238542462 1.0269631660033394 -0.72045899372834787 +v -0.091905214965499665 0.63521407537681285 0.8966511950557936 +v -2.2745972091287663 2.7405519253343722 -0.11764871158516166 +v 0.95204693450350542 0.024329253691698 -1.5198314635871786 +v 0.7176506138255474 0.36423877648886266 -2.4626024185857913 +v 1.2653231995961218 -0.46765294164015059 0.016284909981679474 +v 1.4944665138335602 -0.67803844443353922 0.044841285173425338 +v 0.71772735498992901 -0.032048907540970187 0.44009519484318327 +v 1.2606838791635289 -0.51883701086786904 0.42188674131601522 +v 2.7234451156944193 -1.7129470123130324 -0.48672598014245272 +v -2.0444655327403334 3.1188909229495869 -4.4086138459435489 +v 0.11416564949579076 0.51039613918840543 0.45065609659058314 +v -1.2669732220810961 -0.50997148885997323 0.052557791731935553 +v 0.33260199212210978 -0.85180233538943961 0.95297832470873156 +v -5.9364331389752882 2.41051624829193 -2.3244636285639837 +v 4.0250213347799315 6.7490482599416728 4.1288724569789883 +v 0.69349546061088774 1.0029378302759451 1.4088137086043853 +v 0.850318526043915 0.054017938623156556 1.3773579133656049 +v -2.441145105192148 -0.53060503359229338 -0.64391688732493635 +v 8.5823208024389501 -1.3931329842584852 5.7566348624900057 +v -2.0119482586020938 1.2666016933678255 -0.15524876171478785 +v -0.35629342772396888 -0.25925121080777391 -0.68071937449582187 +v 0.78516298489187053 -0.44366885560142472 -0.20467843188444984 +v -1.7139578286104644 -0.50937214403630726 0.066507277290655697 +v 1.2521798567678399 -0.6348080058992438 0.31374521571723363 +v -1.7070692552335152 -0.1083809908016819 -1.0555869833993934 +v 1.5751790899844327 0.052143891725846561 -1.6194327805385669 +v -0.18108522426440685 -0.13776473055926911 -1.0267274070521073 +v 1.1118594941810562 -0.61012252403404699 -0.11236586495137005 +v 2.3885116423657622 1.3753108997650341 1.2671709772071729 +v -1.7331276915873342 0.097180877887291114 -1.2031369309461022 +v 4.3777476093918564 2.3766934205361769 2.6080406181970615 +v -1.8497838700099403 0.69040738800468948 -1.0297843981810311 +v 1.7122892464032171 -1.2253839121795105 -0.70578697429187964 +v 1.4784199113862695 -4.443256069039875 -3.708362916875815 +v -4.4795207372507138 -0.82531976946887775 -0.14614983186304287 +v 2.5490077707995691 -1.9065072825089462 -1.3678846318820286 +v -1.8649246410648757 0.11538996972347708 0.65535096430809014 +v 1.2315620792142425 -1.4450842641898485 -0.47796053280438733 +v 0.26559979220503865 -8.9308909572391624 -7.0699999982194877 +v -2.7133016204701734 2.4134098547170684 7.0573604077978489 +v 4.883209557552453 -3.5599038703683505 0.57347217058102418 +v 3.6166701491572364 -2.1791725391742323 -0.26709229031156956 +v -0.23450783329318636 0.19387303428849859 -0.1452107555743283 +v -1.9187052458243794 0.99110306150179373 -0.80040874407996099 f 1 2 10 4 3 9 8 6 5 7 11 f 1 2 20 17 13 12 16 19 15 14 18 f 3 4 26 27 22 21 24 13 12 23 25 diff --git a/results/search/topology_43/resume.planes b/results/search/topology_43/resume.planes index 960db6a5..48e07cba 100644 --- a/results/search/topology_43/resume.planes +++ b/results/search/topology_43/resume.planes @@ -1,37 +1,37 @@ 36 -0.3772217333316803 -0.36772435903549194 -0.035227257758378983 --0.40715578198432922 --0.11731185019016266 -0.58455348014831543 -0.023623792454600334 --0.53403377532958984 --0.11778264492750168 -0.14377211034297943 -0.11731318384408951 --0.27200910449028015 -0.036764509975910187 --0.30396997928619385 -0.30825218558311462 -0.696480393409729 --0.69615012407302856 -0.72788345813751221 --0.21984629333019257 --0.59591704607009888 --1.2821090221405029 -1.6614925861358643 -0.72146403789520264 --1.4234782457351685 --0.040798526257276535 -0.20660983026027679 --0.13827642798423767 --1.2124886512756348 --0.25567135214805603 -0.35198178887367249 -0.056267775595188141 -0.05780569463968277 --0.074463792145252228 -0.061571445316076279 -0.093937285244464874 --0.03906925767660141 +0.33215871453285217 +0.36860308051109314 +0.050314359366893768 +-0.37533479928970337 +-0.083086922764778137 +0.63523048162460327 +-0.0056170346215367317 +-0.44951644539833069 +-0.16067349910736084 +0.14241725206375122 +0.11479997634887695 +-0.29701635241508484 +0.0078503787517547607 +-0.24511754512786865 +0.26208195090293884 +0.68663585186004639 +-0.73786699771881104 +0.73729312419891357 +-0.1211833581328392 +-0.64618164300918579 +-0.8788377046585083 +1.5742573738098145 +0.60588920116424561 +-1.3767995834350586 +-0.060858972370624542 +0.25357338786125183 +-0.099085770547389984 +-1.7368470430374146 +-0.30643010139465332 +-0.1201682984828949 +0.042747702449560165 +0.048553168773651123 +-0.050805293023586273 +0.041345551609992981 +0.068289883434772491 +-0.023185854777693748 diff --git a/results/search/topology_44/resume.obj b/results/search/topology_44/resume.obj index f6ef27ae..11026f0b 100644 --- a/results/search/topology_44/resume.obj +++ b/results/search/topology_44/resume.obj @@ -1,47 +1,47 @@ -v -1.4707270014513465 1.0785196275925373 1.1466553165473803 -v -0.93892391383565754 0.55725158059796054 -1.4716576631542331 -v 0.74482075633295475 0.79730817564967116 0.39765504041778205 -v 10.475072985821118 -0.72376623951295893 -4.4290199159674515 -v 1.9208754326523909 1.0891287743310303 2.3704840390525579 -v 11.00952539562614 -0.59554623225815628 -3.5561036274785529 -v -1.9621242995571337 1.0370520816203097 0.75475490068319506 -v 0.19953141775468816 -0.056412228121594819 -4.3777940062278802 -v -0.043157018348901052 0.030989443428214389 -3.9915938878665709 -v -0.25386466320556794 0.012699093625751936 -4.162375273260805 -v 4.2626597854623816 -2.2159191984407229 -14.585040172352743 -v -1.6286044008430269 1.3123697764390541 1.5339655626527753 -v -2.3336037528664435 2.7109065163882691 1.516754187585007 -v -1.5884476601436066 0.80253991473861153 3.6558370734309338 -v -7.8081894997994574 10.444510192855937 16.798187965069538 -v -0.15341315296317265 -0.96991588052147815 -1.6057319050209238 -v -0.09485268500185251 -1.4209784798045677 0.046845939051856078 -v -0.18466034218098823 -1.1977395245249964 -0.17762585115312923 -v -0.038031306493578117 -1.4811994750530233 -0.21060089821412609 -v -3816.2746363183392 2213.361673732918 26311.610233124866 -v -1.067245939022601 -0.70548995533095493 1.8052125900347589 -v 1.8631261923230871 -0.89337516995272082 0.27465075962437219 -v 0.99068034887806189 0.022374125012787967 0.48545734376992855 -v 0.64252229637273817 0.63497173087634018 0.49918915582331447 -v -2.8301216156602615 1.7879797445025325 2.0480132677128982 -v 2.3858753443136811 -0.52286996702399546 -0.11345456976962298 -v 3.6796615529376369 -0.92769175678161486 -0.69754115521503168 -v 1.7623932989417033 0.35523588660303557 1.6568398954769905 -v 2.6385392659049915 -0.58187655102596925 0.25628278896258272 -v -0.29938348836621032 -1.3937540282953675 0.72014398812370217 -v 1.5892458156851776 -1.0070759961720588 0.27720187992596812 -v -1.0862287137747277 -9.2490442351905013 -7.3310267406711702 -v 0.010125021432986154 -0.8064940858101457 -1.8457786993765366 -v -1.1610872149575984 -0.91020198880790149 -2.789964573228362 -v 0.47907558553747925 0.052285598542343277 0.22919056429802653 -v 0.75521101684580316 -1.3428532760790071 -2.4957853617924286 -v -0.75375794329684165 -1.6118666468296285 -3.9933930581259078 -v 0.0088163703792040696 -0.97922396155454994 -1.4158402887756796 -v 0.20757339003322453 -1.2818791354191761 -1.3902238081470668 -v 0.5533685786956295 0.018997114586553242 -0.046657506017861894 -v -1.2411542376828206 0.47012304726040177 -1.899682126769465 -v -1.1257372351660335 -1.5671403143811382 -3.2080317796601951 -v 2.2406190250619455 -0.87912643500144705 -9.7404309611514073 -v 0.21450233387939102 -1.2084099194233371 -0.6323031585658565 +v -1.3004657987301127 0.84913889870270709 0.11565824816091463 +v -0.95974164462836509 0.55499560403059434 -1.2495430275356152 +v 0.70570326545919848 0.78619963443688134 0.44088104178976212 +v 9.6837755440060516 -0.68313886859817852 -4.0552967678914396 +v 1.757157785958543 1.1205090721567987 2.4519210731688288 +v 10.340777754516919 -0.49230895993093299 -2.8892167020257156 +v -1.5407758149848132 0.8183358059900171 -0.11543872756433438 +v 0.65214921048833441 -0.29631718080681374 -5.0009010711323931 +v -0.26730694824835799 -0.093953771360474558 -4.2804291566136827 +v -0.34916405938008943 -0.11404411618940775 -4.407244509025106 +v 3.1916159562067596 -1.91474070207753 -12.300185713316663 +v -2.30157807603161 2.3571516127864478 1.6337037814022646 +v -2.6183083460489303 2.9585063513705996 1.6327756355731697 +v -1.6017651287080648 0.59475556074060509 3.3154219106120562 +v -7.9111785408946922 9.4545365804358408 15.378099462370265 +v -0.098200374639030655 -1.0694828012939293 -1.2906758335987025 +v -0.16473925183792132 -1.3489798481116952 0.28083166773946999 +v -0.23433269820355077 -1.1686782452154512 0.094077778480754048 +v -0.053430900913005001 -1.4288345099950528 -0.22803579299080456 +v -813.4229556448721 406.05078172152747 4400.0419489119977 +v -1.1408213022316875 -0.59842399741465035 1.855357796438625 +v 1.1129697182213911 -0.80748402388354978 0.68027605205533248 +v 0.79568561020907302 0.10133070851867192 0.59038485224251558 +v 0.55653325210141213 0.54063354306562594 0.59396936411489731 +v -3.0927300661785111 2.1182009385004621 2.1368774753907385 +v 1.6746236091275732 -0.16033783869937179 0.18442490774204368 +v 5.0302086601858536 -0.83937125197364382 -1.4583328833064448 +v 1.6225108775868435 0.54770785797809562 1.9015677952510281 +v 1.8876145842384471 -0.14462823282190015 1.0553702339100877 +v -0.28411048490758944 -1.3511140809831477 0.69490113431963674 +v 0.81838413545062527 -1.0145515031587073 0.58535160214916826 +v -1.3742094558735229 -8.9678784017046027 -6.9196363059480124 +v 0.033801479271232698 -0.88607524171183838 -1.4911966239415841 +v -1.2857095361351683 -1.3387311167029405 -3.1899524063404869 +v 0.44601478914088249 0.056183598323802514 0.25362540808378031 +v 0.45118051288942707 -1.3143230956951706 -1.8201757561146381 +v -1.1667019524332816 -1.6629574035202515 -3.5901792131765276 +v 0.025348516293298557 -1.0332052349169976 -1.1152414826643879 +v 0.17327617479829438 -1.2600210352970456 -1.087207964402134 +v 0.46990054107387452 0.046108829769760093 0.1550189972941563 +v -1.4495146846852975 0.24443985581483069 -2.057304713594827 +v -1.3540297588130588 -1.6387822960582725 -3.2089756173974036 +v 3.5701791225318269 -1.265763074498419 -12.713454918407711 +v 0.11591036820951325 -1.197904736544992 -0.47358850638836447 f 1 2 5 6 4 3 11 10 9 8 7 f 1 2 16 19 17 18 20 14 15 13 12 f 3 4 27 26 22 21 25 13 12 23 24 diff --git a/results/search/topology_44/resume.planes b/results/search/topology_44/resume.planes index 40684773..bb21a38a 100644 --- a/results/search/topology_44/resume.planes +++ b/results/search/topology_44/resume.planes @@ -1,37 +1,37 @@ 36 -0.047517500817775726 -0.74224978685379028 --0.1381199061870575 --0.63840699195861816 --0.32262489199638367 --0.065436318516731262 -0.40439015626907349 -0.21305860579013824 -0.74808025360107422 -0.40055304765701294 --0.94503486156463623 -0.88289642333984375 -0.019384166225790977 -0.064676687121391296 --0.031149011105298996 -0.297658771276474 -0.17467696964740753 --0.24573561549186707 --0.68122667074203491 --0.4632987380027771 --0.18820607662200928 -0.47956016659736633 --1.1656298637390137 --0.46683785319328308 -0.049665573984384537 -0.16882345080375671 --0.0069968681782484055 -0.41185039281845093 --0.17681099474430084 -0.13225892186164856 -0.094987772405147552 --1.1468857526779175 -0.11030525714159012 --1.7551895380020142 -0.45094379782676697 --0.85701096057891846 +0.04536731168627739 +0.71194750070571899 +-0.14207197725772858 +-0.64600735902786255 +-0.34038421511650085 +-0.087890759110450745 +0.41811567544937134 +0.22139619290828705 +0.76255142688751221 +0.36868920922279358 +-0.92405128479003906 +0.8715398907661438 +0.034306660294532776 +0.067781306803226471 +-0.044708970934152603 +0.1867460161447525 +0.10290952771902084 +-0.1527954488992691 +-0.64869606494903564 +-0.44647324085235596 +-0.18931250274181366 +0.66602599620819092 +-0.80921405553817749 +-0.30171090364456177 +0.019729489460587502 +0.1141512468457222 +-0.0068838698789477348 +0.3905777633190155 +-0.16760118305683136 +0.11173499375581741 +0.10764159262180328 +-1.1328072547912598 +0.12473649531602859 +-1.9297866821289062 +0.50154310464859009 +-0.9801260232925415 diff --git a/results/search/topology_45/resume.obj b/results/search/topology_45/resume.obj index 2e676043..7d89b166 100644 --- a/results/search/topology_45/resume.obj +++ b/results/search/topology_45/resume.obj @@ -1,47 +1,47 @@ -v 21.984722985341083 2.6377794228950688 -15.249738265622124 -v 6.5258958437959134 0.73545072646839149 -4.1913876925436426 -v -2.5039303083408235 1.1009965843349929 0.55695586561167176 -v 1.5081532932780131 0.94136132845903397 -1.5560260906337415 -v -1.016803392049207 0.010723879855726769 0.96847596094985844 -v -1.2181471900188916 0.57459800300975783 0.43044464559730228 -v 0.58496717742231896 1.603251188290475 -1.7941865225185467 -v 1.5960980578418456 1.1047129044240924 -1.7956700586450962 -v -2.3751344875307447 -0.29584130180933116 2.1016820017985949 -v 0.794294821092697 1.2200342035134546 -1.4700526927771003 -v 0.4014413720571543 0.47161492105928443 -0.37786108141541053 -v 2.9981970609559632 -0.32964600626977386 -2.2597138694764602 -v 0.37630589769508677 -1.1162012488754371 -0.81929339315828187 -v -1.3366419908303806 -0.89918516152463301 0.80731561221110204 -v -1.8504431026596271 -1.8425463367142763 0.34933132689426255 -v -17.659842961468652 7.6368373893596679 22.374483161907136 -v 8.2150654118191344 -1.0982331131640333 -7.31460745802391 -v 1.0769418843049547 -0.28304046327969135 -0.6198882262871922 -v 4.695400009799755 -0.14664800626124935 -3.4980464856168529 -v 0.7699227137045157 -0.11423087211599069 -0.20649128052387267 -v -1.2827813634646068 1.777205935005125 -0.13464853908183966 -v -1.3195514622151903 1.5307681794249479 -0.098701620439206716 -v 2.1991576488309343 2.1216038473246921 -2.0007306802370923 -v -3.0057728900671776 1.7027437165580506 0.78233900985850191 -v 3.3110391041570337 0.066907751777785213 -2.4518311416910126 -v 2.1367996179651327 0.1521028243883793 -1.8359860700260846 -v 0.75992205343308161 0.31473003641808989 -1.1180607764273351 -v -4.1970503084314581 -1.2604934505813561 -3.6207187467849931 -v -1.1716888972565371 1.6998608506615336 0.072423898082893401 -v -3.6396009195192871 -35.235558320783795 10.318518842997765 -v -6.2246366869941951 25.901824293305211 -17.290455839464812 -v -1.6442314705154188 0.32067916028255017 -0.15229759656957809 -v -1.6494635770289643 2.2536674497541336 1.0032274131324206 -v -2.0906430885928402 1.9525869451518398 0.76700978862560998 -v -4.3452944985847672 2.1921016090994043 2.8245276786207967 -v -3.7176450410278137 -1.2590805471122151 -3.9621112914370413 -v -3.9773993515104618 -1.1550142252559858 -3.5846672247179292 -v 2.0305304399543136 1.300909702306706 -1.6983053734513414 -v -1.9152857982861897 -0.64809110441130147 -2.8078689351887984 -v -0.58951449240374287 0.22759917393205931 -2.1372322272421185 -v -4.1647654199253799 1.7002159074308396 3.098710343028158 -v 0.90133325367824702 0.13108808649408857 -0.56716241520837529 -v -0.52353437735841457 0.017246843529276936 -1.9975822614734535 -v -0.55879949725936073 -0.1210141533429286 -1.7488579784357443 +v 17.786105614197769 6.5370380796446197 -7.274190577429672 +v 6.8982893288225959 2.2649273891086401 -2.337965237997587 +v -0.48427428727539129 1.1037255396339645 -0.95554434328385096 +v -0.16235437550562223 1.1190269227491969 -0.97582811533785385 +v -0.72159108287253726 -0.30001164353613524 0.63566875904164333 +v -0.98296875519776528 0.11137359656870886 0.17238653338124876 +v -0.63418491908678298 1.6956932777731273 -1.6242716039856726 +v -0.29266566302460667 1.3216881014962218 -1.2040411142274061 +v -1.92682769800896 -0.73942153006442302 1.1441720747452599 +v -0.31782071494636494 0.035595912770557465 0.25204545279579216 +v -0.47649016200320476 0.159084819106731 0.1137163662469402 +v 0.57127696063148192 -1.289618905779979 -1.2146608611783065 +v 0.92092355663287695 -1.0581867394420752 -1.2197592631996972 +v -1.9174207310496358 -2.0705546261570906 0.23202728504271211 +v -9.3397545663249701 -9.5900962589006991 -3.9033990660265316 +v -10.206589805949626 8.4569804481255133 26.423874969921471 +v 5.5167306872644142 -0.38748558507716008 -5.1472023499516766 +v 0.54134361116569929 -0.87926580220141737 -0.51391607353247581 +v 3.0156450352491335 0.20623024124693698 -1.4490584977863259 +v 0.27288396676180637 -0.55319900793608012 0.31011908799088783 +v -1.2288041750683965 1.756450435012739 -0.85439263075959249 +v -1.4638510204193336 1.2852221457733413 -0.8758460492900193 +v 6.6463820059267968 4.6074253079735348 -1.1553786875147876 +v -0.37358177618037064 1.5245689418312396 -0.92976113780808567 +v 2.6957310852347973 0.2185276291951242 -1.2376015891054579 +v -0.51623780595893942 -0.12907274353869744 -1.0505845989978817 +v -0.33831922612341087 0.82824812571257933 -0.98700183881264458 +v -11.863600320321554 -5.1107311404464033 -8.6150226072813378 +v -1.7047280859778442 1.0931358865165324 -1.0344555988300588 +v -0.49834256849918174 0.050995739070030237 0.70140988970098506 +v -0.6027980867624636 0.38031651343534989 0.43879298991961108 +v -1.1989602268855244 0.038926958172138031 -0.016717415096909494 +v 2.5690653784432631 3.8744363448300509 1.0118769069026516 +v -2.0553716464209759 1.6906706297417773 -0.19087212555673005 +v -2.3789206206162348 3.4942324280844099 5.0205554241822314 +v 1444.1766174623826 -534.60895985410571 -2924.3781681196742 +v -6.5754192484003431 -1.9193004713972279 -5.3604554256359673 +v 2.9849769618739468 3.6638916252884814 0.62155831712970544 +v 1.807608870398822 -0.62486636102009718 -4.2571287499090156 +v -0.23466863309855265 1.0269492153891313 -1.5835460926686191 +v -1.7902220045367201 2.2769110950768225 2.8462471881516285 +v 0.07429491307779186 -0.42162848638555839 0.055609625165596949 +v -0.40738177350354299 1.0508413596084301 -1.1685582266168542 +v -0.84815262342273767 -0.14532013503921684 -0.95040698990960137 f 1 2 8 4 3 9 5 6 11 10 7 f 1 2 17 19 18 13 12 20 15 14 16 f 3 4 27 13 12 26 25 23 21 22 24 diff --git a/results/search/topology_45/resume.planes b/results/search/topology_45/resume.planes index 948b44ee..b398123b 100644 --- a/results/search/topology_45/resume.planes +++ b/results/search/topology_45/resume.planes @@ -1,37 +1,37 @@ 36 -0.085469633340835571 -0.17290468513965607 -0.14922495186328888 -0.17465174198150635 --0.19718672335147858 -0.21023000776767731 --0.28626707196235657 --0.036175094544887543 --0.54082459211349487 --1.1212265491485596 -0.26973271369934082 -0.7022775411605835 --0.63415813446044922 -1.622652530670166 --0.88380986452102661 --0.34655752778053284 -1.2141400575637817 --0.90027076005935669 -0.080434642732143402 -0.021105680614709854 -0.10212365537881851 -0.16334789991378784 -0.14999398589134216 -0.16153775155544281 -0.6919751763343811 --0.37020033597946167 --0.88456237316131592 --0.055486429482698441 -0.4921669065952301 --0.17388229072093964 --0.90682685375213623 --0.58608877658843994 --0.45436888933181763 -0.23317338526248932 --0.41753354668617249 --0.19903853535652161 +0.0011674219276756048 +0.14359705150127411 +0.12685263156890869 +0.34023106098175049 +-0.50715667009353638 +0.3115222156047821 +-0.070996016263961792 +0.08383120596408844 +-1.0635249614715576 +-0.55998939275741577 +0.25464257597923279 +0.54205602407455444 +-0.74591296911239624 +1.9830754995346069 +-0.73260897397994995 +-0.35682958364486694 +1.3729500770568848 +-1.120820164680481 +0.12810708582401276 +-0.11907584220170975 +0.20073860883712769 +-0.17379096150398254 +-0.16962872445583344 +0.047915086150169373 +-0.13062363862991333 +-0.081062711775302887 +-0.049697011709213257 +-0.021617241203784943 +0.17662960290908813 +-0.042976792901754379 +-0.9577290415763855 +0.27730539441108704 +-0.41456106305122375 +0.1023460328578949 +-0.057719402015209198 +-0.10969719290733337 diff --git a/results/search/topology_46/resume.obj b/results/search/topology_46/resume.obj index 8272e28e..d01d04b7 100644 --- a/results/search/topology_46/resume.obj +++ b/results/search/topology_46/resume.obj @@ -1,47 +1,47 @@ -v 1.4035502662787496 2.9085146473732983 -3.0440689328075479 -v 1.1276707390184597 2.0645344086988531 -2.9191360812252185 -v -0.16564956865938765 -0.71350517646278355 1.3277435451637096 -v 0.25525009140240057 -0.22559944361135056 -1.3472690661538629 -v 0.41739230641432984 4.5532483206018641 11.884200097572926 -v 0.71172590732102237 1.2177304387048391 -1.4084013793706982 -v 0.41080572657488118 0.78551404344335651 0.24502690309464026 -v -0.10928091463438716 -0.11348611426785182 2.630508351719747 -v 0.77944203043102178 1.4736946147965142 -1.2874514396011354 -v 1.071851077220666 1.9436269954273608 -2.738970201894606 -v 0.14064363975170766 0.31518763894974416 1.4738175542245036 -v 0.86206922509713169 -0.49098548477766668 -2.1421528964689864 -v 0.7177523461503339 -0.31513094984182743 -2.3093993862381925 -v 1.0727023514799805 2.5202502173044259 -3.1293020714346 -v 0.99200388246508731 1.9296385197836687 -2.9632478246724139 -v -4.6509426546111001 -3.1915869110911661 -4.9825250071221543 -v 4.5381058487251442 -1.442373709560278 0.78870868220595791 -v -0.0867571784592122 -1.258514026207519 -2.5169376393090466 -v -0.44680868754149611 -1.2189623353505448 -2.7837953698620481 -v 1.1100967298695861 1.9378956963961997 -2.8837202131060011 -v -0.91402033250451031 0.67042161702835967 -1.0312402203065636 -v -1.1106597569915009 0.59228110753778984 -0.25492994977000605 -v 0.5805918468450415 -0.73821294457060327 -0.60308845681029166 -v 0.82159192058867991 -1.2545679606946054 0.37996816015901136 -v -1.0329093999776475 0.43842740010790976 0.0219873218773236 -v -1.0320462373861887 0.48843789746088956 -0.13838482733646912 -v 1.132375083527372 -1.1055787704580013 -0.92752580088001024 -v -0.93237041371555041 2.2176267034094677 7.463972905364491 -v 1.27332379443889 2.4901325679139585 -4.5164845266883713 -v 1.0831965435935347 6.1157470196829617 16.288240385223759 -v -0.78272433748108583 0.82452737279954913 -0.99728463650386689 -v -1.3189393468599753 0.41384392715792079 0.048957302666772007 -v -0.26891312072526702 2.0320982547357689 2.4109539587377893 -v -0.10448745000122414 0.092281873965351868 3.0740942615960565 -v 0.72740860615073488 1.0941528049415516 -1.4875629360236025 -v 0.30721774496402571 1.1098476973055922 0.79150442719881609 -v 0.38955786169001433 -0.23458888095784147 0.40924278585702256 -v -9.6414127138405714 0.97933514018742263 2.896517385992706 -v -5.3890588014095595 -0.78177314454321667 0.038778984089491209 -v 3.3409285268083129 -1.2644274370963162 0.90963823930432375 -v -7.43823123125203 0.55657493212473763 1.7029031005843906 -v 2.5290791694499082 -3.3356778425511453 -4.8573530408688077 -v -1.4334656281310354 0.34465068722092468 -0.035832906618542548 -v 1.0490555389907332 1.8234250618939827 -2.5697236450299599 +v 1.7110215323505227 3.4763873550614681 -2.6421951736557596 +v 1.0648540905728545 1.651931588219431 -2.3720916225922908 +v -0.2114766571097664 -1.0557849479718666 1.595778150147362 +v 0.26819055173843365 -0.43462125538576835 -1.4149632732639001 +v 0.6833017536393875 4.2825537284067794 11.999741220600811 +v 0.71646444151466759 0.95476890802390313 -1.1282575960771366 +v 0.44934722748877454 0.50920088395472818 0.16639520162368671 +v -0.097271474255740092 -0.31393639750258806 3.1555404684896611 +v 0.74422416202187625 1.0466126548895929 -1.0882541910936341 +v 0.83790088257757911 1.176249816372241 -1.6443212264036018 +v 0.13844343410422663 0.11918333943503981 2.1661471897537066 +v 0.8545382751356797 -0.98587401535189145 -1.5186861214246996 +v 0.53664297034988184 -0.52925484001101097 -1.8929645913675843 +v 0.78729896931708065 2.5066646044479732 -2.8696735177373052 +v 0.999154038312979 2.1121451598014098 -2.5864566735827568 +v -6.2767140155620931 -3.5836698815389969 -5.1056737801457439 +v 4.548386001294598 -1.8301561225543514 1.1594394041607172 +v -0.33354804461790771 -1.5254705886831972 -2.0762916975691263 +v -1.0288078209309783 -1.3201003408879908 -2.5977704539605169 +v 0.84525675298366365 2.0958438324728066 -2.6787571857319619 +v -1.2663016048402982 0.72946639075890995 -0.38330881252150162 +v -1.2931745795568608 0.71605297581763472 -0.27300038210384026 +v 0.55929155433297106 -1.2004347191523004 -0.12338644224344841 +v 1.2064132693487932 -1.9391975477626013 0.11793827606492457 +v -1.1615839208052214 0.3597924244574835 0.33835536017219348 +v -1.1601820510629413 0.48296026898682176 -0.0016226835640359427 +v 1.3098076473822498 -1.8328950731324594 -0.45573962918694155 +v -1.137541608776599 1.8389464411203065 7.3469885651918485 +v 1.3807955996892289 2.9103413211236036 -4.4569324329117439 +v 1.3092190777422947 5.3154533550818508 15.123399499168112 +v -1.4521427771394355 0.53664194119062913 -0.41112707849132701 +v -1.769219874424967 0.32043168154883594 0.43256418694029519 +v -0.42032468601818335 2.0203835917504391 3.0078794718319299 +v -0.72518309822458482 0.92208182808886963 5.5544531093940011 +v 0.73112642231300995 0.86658975472083877 -1.1848565832439204 +v 0.19115780994606565 1.1167977658682759 1.2844480663803823 +v 0.31733020812924734 -0.56863255857184014 0.91638066690823217 +v -9.1153718470016294 0.70647307495331146 3.0597784538334092 +v -5.3456295319045104 -1.0183020631713777 0.41906662782691939 +v 1.9771252022366035 -1.3851549348160987 1.4502582321395145 +v -7.5671849635740411 0.4746116375983136 2.2462214404942409 +v 3.7439572149844258 -6.1682173507469216 -6.5118192040511627 +v -1.4654642175363628 0.28140247735799506 0.28410195158807861 +v 0.91434538954998179 2.3145596368347037 -3.2229875023713959 f 1 2 10 9 6 7 4 3 8 11 5 f 1 2 17 16 19 18 13 12 15 20 14 f 3 4 25 26 22 21 13 12 23 27 24 diff --git a/results/search/topology_46/resume.planes b/results/search/topology_46/resume.planes index 4318c337..dd761615 100644 --- a/results/search/topology_46/resume.planes +++ b/results/search/topology_46/resume.planes @@ -1,37 +1,37 @@ 36 -0.17186105251312256 --0.053622674196958542 -0.017261020839214325 -1.2567847967147827 --0.67667216062545776 --1.7959786653518677 --0.20271380245685577 --0.23797427117824554 --0.075301021337509155 --0.9244655966758728 -0.82101929187774658 --0.15152642130851746 -0.44766876101493835 -0.0039577661082148552 -0.082509279251098633 --0.11171470582485199 --1.0987943410873413 -0.51090937852859497 --0.51044070720672607 -0.69687134027481079 --1.1889963150024414 --0.05897492915391922 -0.40815591812133789 --0.25341901183128357 -0.02172870934009552 -0.097255624830722809 -0.071999289095401764 --0.1742091178894043 -0.62459880113601685 -0.19383743405342102 -0.6410631537437439 -0.11074385046958923 -0.16499599814414978 --0.075257405638694763 --0.17924812436103821 -0.074972443282604218 +0.25841918587684631 +-0.088120691478252411 +0.02299029566347599 +1.0048024654388428 +-0.58851337432861328 +-1.5714194774627686 +-0.32038268446922302 +-0.31879955530166626 +-0.11681633442640305 +-1.0256977081298828 +1.0069359540939331 +-0.12743449211120605 +0.4767971932888031 +0.013216800056397915 +0.10292313247919083 +-0.17562371492385864 +-1.4846407175064087 +0.71897858381271362 +-0.39344549179077148 +0.50810360908508301 +-0.89352899789810181 +-0.039046432822942734 +0.2526182234287262 +-0.14630025625228882 +0.029495876282453537 +0.11520757526159286 +0.084499627351760864 +-0.22371506690979004 +0.69389230012893677 +0.25046205520629883 +0.68011772632598877 +0.16732263565063477 +0.15358297526836395 +-0.31043887138366699 +-0.485423743724823 +0.22272060811519623 diff --git a/results/search/topology_47/resume.obj b/results/search/topology_47/resume.obj index 0e4f6856..bfb959c5 100644 --- a/results/search/topology_47/resume.obj +++ b/results/search/topology_47/resume.obj @@ -1,47 +1,47 @@ -v -0.40751971731735803 0.84748631403054075 -1.3876004179509633 -v -2.001689558653498 2.5345813206066743 0.44815933492913251 -v 0.54330094240961635 -0.60801866833482443 1.9600466832517038 -v 0.090840231455138754 -0.05707598858886332 1.7680305602604804 -v -0.50183714725666351 0.69628883516929641 1.2031774280535532 -v -0.63618701470578343 0.85268200736458988 1.2173508765897068 -v -0.31270799951384737 0.48754376090166895 1.0703442208637695 -v -0.70699611790775974 0.96018014740784985 0.97690254366103202 -v -1.8976950120079843 2.3995843699822799 0.57503168065772592 -v 0.099928965325407751 0.26171003365138906 -1.4898999818218268 -v -1.7911136353976864 3.5859089712142804 -12.394179527878483 -v -1.8402489466262359 0.4206460757711889 0.36951410032148307 -v -1.6591425232758157 -0.57913405340655655 0.2055709555680979 -v -1.1841299934282277 -1.7324813390916314 -0.30551118408411521 -v -1.5753190962525871 -0.53133561275892349 0.10150899408364267 -v 5.9203845187433028 10.396536287194669 -9.5712648104177038 -v -2.2165387238671208 7.9438335343575375 0.40952081558094666 -v -1.8940488729410554 0.94620885778602759 0.40559831024619919 -v -1.2156559854755928 1.5746835569185829 -0.44992609529384353 -v -1.3660894200969651 0.089911197511609045 -0.18594532352354887 -v -1.7220754498138677 0.22242744939367029 0.40287795663976933 -v -1.3875237850538786 0.84066967905353729 0.86178528985085734 -v -0.4257949853055607 0.0091220881817688781 1.3748392311695248 -v -1.2242867757021978 2.2505983675273291 1.4281715086885844 -v -1.967391294855497 0.9184455087414517 0.42154429187028875 -v 1.8176395087098489 0.3632016956761801 3.2804764703870699 -v -0.66324359289874812 -0.67685348916712751 0.97274749526162152 -v 0.16669753026852324 -0.52656850302301417 0.91458662233876953 -v -0.37414761934407009 0.27484115372723067 1.0559129273841206 -v -4.8391685511368392 -4.7608089554687938 -3.4917668065950491 -v -2.4023308079841614 -0.33763054478885668 -0.18838546423620994 -v -0.53267051734529325 0.10770909601205521 0.90016893170707746 -v -0.23902228478111748 0.16656563113148981 1.1080056378565866 -v 0.0045256715516414437 -0.62429860000063109 1.1317321970662642 -v 2.8289754605531496 4.4619286053846663 -3.9127848886564465 -v -0.32920995042235091 1.1265157281444078 0.85032783131752898 -v 0.29315700827387481 -0.6247517809865476 1.2701910615381511 -v -1.9086770819525296 -2.698810980516881 -0.030743542621888054 -v -2.1520469511627018 -0.33037336279254736 0.13142690440664873 -v 1.8480529713594094 0.30767880879871612 3.5068840491000102 -v -4.2479602639716623 -3.4293555178924935 7.5552915482592731 -v 9.9231817367331683 -3.7976268374405664 15.394854352773471 -v -3.5125185864879391 -3.8937431382623608 -1.7604820014488551 -v 6.6487112201663239 -2.9381041711097686 11.252316554338682 +v -0.38228241135474678 0.96963942827673721 -1.4103296049348082 +v -2.4530018255567141 3.3673864209527093 -0.069277661952851358 +v 0.87485700087839557 -0.69349107373963825 2.2341120457777595 +v 0.46849944216724526 -0.20328805519996759 2.0745357799503727 +v 0.27422220283226839 0.072937782057964681 1.0985240802452494 +v -0.33956364615404477 0.79686286992902666 1.2122364860534351 +v -0.015281836023086491 0.4069080712517375 1.3129863957710584 +v -0.41879329419742223 0.90033069159650114 1.0115411467682436 +v -2.2725860765314039 3.1417690706926171 0.17298611929718061 +v 0.75815259979018124 -0.49562145350360559 0.9613967890733367 +v -1.0942528498922515 1.9564413188488201 -4.4393675281884066 +v -1.911860281830742 0.42100765601862888 0.33367417533896804 +v -1.3741347851584533 -1.0337657792506512 0.25568412336557189 +v -0.31144992296381857 -2.506136322679132 -0.35398895762210203 +v -1.2498543838885732 -0.86663313630609784 0.074178112165106336 +v 8.8458891079835027 25.718886638958558 -18.895143143219972 +v -18.822275427122989 100.53086180327266 -14.868585083752777 +v -1.9886670110312754 0.76922251910063377 0.29920869713364112 +v -1.3060797647889657 1.7026954411920592 -0.70272269813131616 +v -1.1211428165109161 0.0031117718291859085 -0.34005625815287954 +v -1.7277709456470605 0.22963956086572546 0.41698012820265284 +v -1.6117056012511417 0.66736632219762326 0.66979971564437046 +v -0.058159295262566302 -0.25955069568418332 1.6196379225568598 +v -1.1440821516879114 2.6781954795544043 1.7770896682467048 +v -1.9645477982852069 0.71428327159064808 0.39538540279569601 +v 1.2647338522228257 0.0050238218608914427 2.8064889116503648 +v -0.055499673634723141 -1.0869393694446738 1.3250412396724265 +v 0.61425070055438469 -0.54348683949281928 0.93270668878095475 +v -0.12390308472888507 0.48508254351488911 1.1448696049651745 +v -8.1239688181794065 -17.079874221189932 -10.2630395046172 +v -2.3431822923171453 -0.77944592910886967 -0.29725820328920349 +v -0.37933382800020754 -0.065795677197879363 0.78537942534449545 +v 0.14502306132241755 0.034082021310191432 1.2663803071368642 +v 0.36930049266560544 -0.91963434642116626 1.3670889062957119 +v 2.3605485548016416 4.7732375565324485 -3.1758706291752667 +v -0.077871222357749251 0.91042044693326551 1.1937447751844816 +v 0.68781330526562978 -0.86311730311352675 1.5116470879192394 +v -0.28682767168953482 -2.9737934147038541 1.0671953588034189 +v -1.909407770901334 -0.80679972357973118 0.33345145299179579 +v 1.1497348568121282 -0.96957453467608234 4.7176664619490882 +v -504.84750515830046 -606.08556319856734 617.45253564477548 +v 12.070905136657414 -7.0633152660724319 20.157570615654066 +v -7.2806251245231248 -15.616978991498677 -8.8948503286718967 +v 13.85004278398338 -7.7972195640188362 22.686226163003706 f 1 2 9 8 6 5 7 4 3 10 11 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 27 13 12 21 22 25 24 23 26 diff --git a/results/search/topology_47/resume.planes b/results/search/topology_47/resume.planes index ba7feca5..a7c15a25 100644 --- a/results/search/topology_47/resume.planes +++ b/results/search/topology_47/resume.planes @@ -1,37 +1,37 @@ 36 -0.11226850748062134 -0.095568619668483734 -0.009664515033364296 --0.8994331955909729 --0.041034247726202011 --0.7433546781539917 --0.78977310657501221 --0.30481457710266113 -0.98640644550323486 --0.34982147812843323 --0.3686349093914032 -0.75165289640426636 -0.42302319407463074 -0.14166156947612762 -0.37968564033508301 --0.46404886245727539 --0.11389434337615967 -0.96698343753814697 --0.32620987296104431 -1.2337150573730469 -0.64762645959854126 -0.21143457293510437 --0.17909649014472961 --0.072322718799114227 --0.19614799320697784 -0.47459313273429871 -0.14273515343666077 -0.034614238888025284 --0.21935819089412689 --0.072874806821346283 --1.403411865234375 --0.047888878732919693 -1.0993911027908325 --0.75985211133956909 -0.18012586236000061 -0.58011323213577271 +0.22142423689365387 +0.186374232172966 +0.0086717084050178528 +-0.70677071809768677 +-0.22422969341278076 +-0.69041156768798828 +-0.80296385288238525 +-0.34894931316375732 +0.97279143333435059 +-0.26464003324508667 +-0.33440637588500977 +0.70047640800476074 +0.67398625612258911 +0.21861931681632996 +0.56937456130981445 +-0.45168271660804749 +-0.001082831178791821 +0.99564015865325928 +-0.421160489320755 +1.0890636444091797 +0.72772711515426636 +0.67705452442169189 +-0.2900719940662384 +-0.107181616127491 +-0.20965211093425751 +0.33607488870620728 +0.15876507759094238 +0.073018781840801239 +-0.16076198220252991 +-0.09803406149148941 +-1.4861576557159424 +-0.095323070883750916 +1.0179800987243652 +-0.62334293127059937 +0.020107308402657509 +0.41209545731544495 diff --git a/results/search/topology_48/resume.obj b/results/search/topology_48/resume.obj index 63e38b77..6cdd60cb 100644 --- a/results/search/topology_48/resume.obj +++ b/results/search/topology_48/resume.obj @@ -1,47 +1,47 @@ -v 0.33657939405142306 -1.1613946027268287 -0.82014709799873708 -v 0.54598322970167412 -0.93896623478850838 -0.91070100625125161 -v 0.30731665685026566 -1.2180404365444155 -1.5846641177604595 -v 4.335566776536159 3.1858999378848409 0.47791806238404611 -v 3.9316381885980154 2.664843910641256 -2.1445257051413291 -v 0.16942088118849205 -1.2737437537118372 1.234552755290097 -v -0.012082402582225989 -1.5704102119191017 -1.8449552484785663 -v 0.46540980123110087 -1.0488004204216923 -1.6130879268059153 -v -0.12537476420138258 -1.7344090334709126 -3.1233193305971985 -v -4.9996198457271861 -7.0794669456267654 -6.1122538769871095 -v -1.4434239760346081 -2.99119946023088 1.8014325332231289 -v -0.13409602180021127 -0.9262026613668527 -0.73826337860292046 -v 0.70426874002746387 1.3204890537012348 -1.3252282410258345 -v -0.15828127575516124 0.96903809067180358 -1.0456861666717945 -v -0.012997994908261703 -0.038066594045360932 -0.91631596742542798 -v -0.11386898935299899 8.0191302158781745 -2.2237557320017753 -v 0.25840344274627386 0.14004425148195326 -1.0154484404590025 -v -2.2847854251070618 1.8241168691507719 -0.6413966390204513 -v -2.3415058945898064 4.0272581294584473 -0.99142121960264096 -v -3.7637392744595068 2.6856757026992502 -0.40438032173637506 -v -2.2348256409912857 0.12498277510499745 -0.35691071882225645 -v -2.4120290779580102 0.62596988087250083 4.1277629034083674 -v 0.061541641111481526 -0.88386990031565815 0.74051120607537857 -v -0.08137722680055702 -0.78673872147266877 1.043076001522601 -v 1.2194447188743858 -1.5864108321116577 -0.79941517736271517 -v 0.53506794610280028 -1.3416007639906018 -1.7296304526006951 -v -2.6487584011114556 0.23450402521915586 -1.33580126175157 -v -1.2986006765650053 -0.22238498087072681 0.78097643386205862 -v -0.3743265271386893 0.80977800035866021 -1.5258493188757134 -v -0.79288206688842489 0.81801075796280409 -0.0093603510579491345 -v 2.1040714128576901 2.1002918178154135 -0.16115996763831042 -v -1.8470582385671508 0.41298632452116801 0.52156443122271057 -v -0.76318464469179648 0.88359144181474958 0.39409009997599348 -v -4.1425356590716662 8.6789782062606076 -5.6625326399985809 -v 0.50135164576567182 -0.6362858421582025 -1.4377496472295805 -v -2.8178853508732891 5.0348391326627189 -2.2049646304270358 -v 0.11818980394738636 -0.10393984078198384 -1.2471857344087292 -v 5.833885870490005 -6.0526747526272073 3.2525135351423078 -v -4.8496879752524746 -6.7792407297761086 -5.7912222495923142 -v -0.32344171150789924 -0.95345880765354829 -2.1279827460241205 -v -2.9564690410507475 4.925884512547551 -2.5183272400265633 -v 0.59856811688554823 1.1631135006621531 0.3495329902663834 -v -0.36350820534431505 -0.66108284547444174 -1.5200065113017365 -v -1.6013720158257496 2.5767283180175942 -0.2701395075832112 +v 0.38326061021854907 -1.1202052362560864 -0.71770342201409032 +v 0.63820670462902074 -0.84858698225916973 -0.81698667009444981 +v 0.36085699768612195 -1.1722450220930845 -1.5470005638954003 +v 4.2672174700895464 3.1098285668124483 0.50911474596884299 +v 3.8555270756515951 2.5946795008707935 -1.6073291075554317 +v 0.12989951099008148 -1.3310216081217601 1.1394381333178687 +v 0.052923068154954088 -1.5128348201301933 -1.7994797048827769 +v 0.59362473043045583 -0.91873206342470648 -1.4733386620616142 +v -0.082218307206608846 -1.706595280384178 -3.2277318883729662 +v -5.2270346405913433 -7.3682587701027247 -6.5907376629252727 +v -1.563786140306751 -3.1360934263044093 1.7803300680538443 +v -0.042064106235633725 -0.90888763243867021 -0.64966568284774495 +v 0.84252562999729919 1.341239262175945 -1.1862243336836484 +v 0.0058867302363927506 1.0131429936315246 -0.94314457736814794 +v 0.022433096343029528 -0.0067401374505465699 -0.79719783282833334 +v 0.033665295160250838 8.0293130579702421 -1.9801550009377671 +v 0.3919040878011017 0.22119587846535166 -0.9167427221256953 +v -2.3538150641518105 1.8887826779317367 -0.52208424940537035 +v -2.4103057031295338 4.2273645374582838 -0.8524176003848879 +v -4.4184436209705105 3.0200472722544194 -0.20730537412867767 +v -2.2075477857733454 0.18763629354680095 -0.031279281043328 +v -2.5903039208127296 0.69854184542429065 4.2587454552232868 +v 0.12910253167638086 -0.90878957591911713 0.44549251966458081 +v -0.2413293080489764 -0.69212136033130656 0.93487685276848553 +v 1.386818764679604 -1.6036844847783973 -0.67879755126598829 +v 0.6892331932835114 -1.3386613143533233 -1.6425962832984329 +v -2.6942001570158847 0.33466939105431764 -1.2027301544760705 +v -1.3045840590781934 -0.18766554078611414 0.79103880286092954 +v -0.2469207564519994 0.80994918699912044 -1.5275041084945609 +v -0.75693155358714426 0.77892570101595437 -0.3110355445009565 +v 2.1788030386291228 2.1019503894612752 -0.078225918348267975 +v -1.9320474480163843 0.40920277572488295 0.60637713481740185 +v -0.70623773905160547 0.9151122872827695 0.40951313130581918 +v -4.2311888160611666 8.7887582480592936 -5.5713888038745241 +v 0.64737450008713593 -0.55773321410088161 -1.3172121928512994 +v -3.1333278755973981 5.5130910409773088 -2.6821986144265857 +v 0.20345958463269914 -0.050644053159252043 -1.1384873868666687 +v 4.9306780764687774 -5.3164863126235744 2.3584533790324116 +v -4.8988614284336487 -6.7076390627378553 -5.864377838194013 +v -0.25550816566418533 -0.92723124057598472 -2.0683447873866498 +v -3.2804542625251276 5.3943137130780974 -3.0226904901053251 +v 0.69281360149723881 1.1326712752120829 0.3048416117562488 +v -0.3010008607979559 -0.60078615456974915 -1.4094303595093116 +v -1.5773859520907325 2.6393417189216315 -0.14554585134482151 f 1 2 6 11 10 5 4 8 9 7 3 f 1 2 15 17 14 13 16 20 18 19 12 f 1 3 25 26 27 21 22 28 24 23 12 diff --git a/results/search/topology_48/resume.planes b/results/search/topology_48/resume.planes index 30895a3b..1674ecfc 100644 --- a/results/search/topology_48/resume.planes +++ b/results/search/topology_48/resume.planes @@ -1,37 +1,37 @@ 36 -0.74596118927001953 --0.6930006742477417 -0.022794436663389206 --0.21738258004188538 --0.14015817642211914 --0.84696400165557861 --0.35912930965423584 --0.74264705181121826 -0.068771481513977051 --0.43349206447601318 -0.96456962823867798 --0.12488160282373428 --0.19603742659091949 --0.12196844816207886 --0.053444776684045792 -0.92824697494506836 --0.033357080072164536 --1.0938796997070312 -0.58949089050292969 -0.28320044279098511 --0.35916799306869507 --1.7621850967407227 -0.074340328574180603 -0.75347340106964111 -0.085390441119670868 -0.42916059494018555 --1.0271806716918945 --0.19676804542541504 -0.23083001375198364 --0.12397351861000061 --0.3570021390914917 --0.15644809603691101 -0.051708992570638657 --0.028751315549015999 -0.24567645788192749 -0.66251617670059204 +0.75216782093048096 +-0.69742941856384277 +0.023444915190339088 +-0.17169399559497833 +-0.10826072841882706 +-0.73706597089767456 +-0.34379333257675171 +-0.70928299427032471 +0.053796336054801941 +-0.41751939058303833 +0.95298343896865845 +-0.15074333548545837 +-0.19357059895992279 +-0.13959693908691406 +-0.084715612232685089 +0.92059487104415894 +-0.018918365240097046 +-1.0972747802734375 +0.66182184219360352 +0.30945801734924316 +-0.39392438530921936 +-1.8692237138748169 +0.065699130296707153 +0.78477221727371216 +0.074821256101131439 +0.40301385521888733 +-0.95761573314666748 +-0.17015911638736725 +0.21404097974300385 +-0.11779014021158218 +-0.28745093941688538 +-0.13076497614383698 +0.044938560575246811 +0.014421178959310055 +0.20954310894012451 +0.62828892469406128 diff --git a/results/search/topology_49/resume.obj b/results/search/topology_49/resume.obj index 15b3a5a5..a0af0c6d 100644 --- a/results/search/topology_49/resume.obj +++ b/results/search/topology_49/resume.obj @@ -1,47 +1,47 @@ -v -1.2321821866595177 -1.1917958546128653 -0.87820916875860311 -v -1.6937532627951144 -2.8696518388048715 3.5274739084006344 -v -1.5030494838112491 -1.2409356429375167 -0.45580614157055432 -v -2.5386964200104138 -1.2613862312216257 0.77209524900627713 -v -2.2066765630953715 -6.755508533315755 13.096988049595783 -v -1.617286244460528 -1.8176767375977156 1.0079494444343173 -v 0.42789742026168853 -3.0540984076550122 1.5353095013554741 -v 0.07694079768526764 0.27416508398967443 -5.7601447568370734 -v -0.008140923436714808 0.16726280304669189 -5.415976263687285 -v 3.5683782740497487 -5.5019967548315432 3.6152031997553156 -v 0.044722217507332976 0.17103814980998294 -5.4849684196987081 -v 0.74256240783586169 1.9591116392211352 -2.4912068093368438 -v -1.0022904892094426 -0.84667458751620328 -0.97314463027960585 -v -1.4342709588931863 -2.4230179163263861 3.1759972713598508 -v -0.14183158299223383 0.42124583367666507 -1.2264958724252186 -v -0.84655915288820338 -0.76658978871330474 -0.37966655779292047 -v 0.61352572057418009 2.0570122910136863 -3.6859061592842353 -v 4.9751111025131758 10.054453296728154 -11.691059587082897 -v 1.6327029617803792 2.7710836510870056 -0.61485927042879174 -v 0.19289397505770636 0.56540800008572722 0.16881410998859683 -v -0.44307943245165088 0.20233425404688912 -1.4299083847027709 -v -0.31233916722801752 0.37313079493363599 -1.5514923767352311 -v -0.43501639072724591 5.9366144906317579 -0.30002269517153135 -v -0.72497175625961341 3.1962553129010205 -0.49964864258421932 -v 0.49776274738870108 0.43797586354175172 -2.5022724394539706 -v 1.9811360853184865 5.322002738000565 -3.2963148886226192 -v -0.13942715616956344 3.8402888597828766 -1.0682116891212043 -v 1.0474278998115949 0.36022351349513465 2.1385360562050653 -v 1.0953311608665082 0.38357956223055917 2.202599513829433 -v 1.0181101632083704 0.47300004396418549 1.7474652807560949 -v -1.5635904528701534 -1.7580742542036374 0.98721261799042648 -v 0.3044431355540152 -0.01545086626913242 1.1820639456075459 -v -0.136697027438617 1.398832379975282 0.43796388423897403 -v -0.50010921303980393 0.4460024558818223 0.0081047104258564762 -v -0.18669105401630101 -0.33478848554899271 0.49484017931576935 -v -0.36968954538706866 0.47808663196435591 0.18480218957233041 -v 1.0694120076682505 0.48761490385777745 2.1517043355561372 -v 1.2389481786709882 3.9970781424741415 -1.0859669749785525 -v 0.91133753599384193 0.70398487769884832 0.56072311034008937 -v 1.0406871268081681 2.2742542763348843 -0.44629841544547777 -v -1.6578793182322122 -1.531209931688128 2.6908506176626967 -v -1.2717054430604768 -1.1410704768792834 0.76469428064576128 -v 2.2800685023768446 0.88539402328316219 0.048943246452078482 -v 1.4816757520319961 0.83892744632968319 1.2517049195958214 +v -1.0217802391753186 -1.6001490413934409 -1.6455804375384138 +v -2.1446893313008468 -2.8709555194599359 3.7430696281287603 +v -2.6771566672008222 -0.70815151389653286 0.40551541344660325 +v -3.6818649150975955 0.12925725969612506 1.0196070512478668 +v -3.2182081506607041 -9.1389297851223645 19.662238363112962 +v -2.4994815215773794 -1.3642778320182745 1.3794897466080884 +v -0.13625157024503437 -3.415972465650245 0.10973930502744911 +v -0.55557975417298311 -1.2990839887247703 -3.400068664187732 +v -0.72919021813702367 -1.3371904692293333 -2.9044111063273812 +v 1.6758846763100872 -6.7374724320580519 2.8614222960572873 +v -0.61898713397122129 -1.4776878629029173 -2.8681118643025254 +v 0.5145243676869482 1.7955748544104462 -1.1457270152988224 +v -0.75196516657140411 -0.81378238654151291 -0.65520509484023681 +v -1.4008799206447595 -1.4810716392797623 2.7775700456510961 +v -0.14100945849645924 0.47772088690061021 -0.73626121724734506 +v -0.77672684711950413 -0.97646514539602103 -1.1761106649434301 +v -0.35354433394674595 -0.48652368283821884 -3.1545293491127868 +v 2.8571669989337427 5.6948013707787757 -6.458581375745168 +v 1.3025453431968868 3.6118588476185405 -0.53537790361730353 +v 0.15010141796806989 1.3176602081441109 0.29193287714614619 +v -1.0892680395572987 -0.047793668060320794 -0.41152572764428008 +v -0.22634721752714895 0.48563546080885361 -0.84203099726243802 +v -0.076643931186052006 12.394289228056289 -0.002451534902977559 +v -0.33487824923330506 5.3661794700803735 -0.40506503371186786 +v 0.12101393456210477 -0.44619451315620201 -1.1040413407915508 +v 1.2063093436371461 5.8309978287059305 -1.2117033870703415 +v 0.71299054840303577 5.2281438992827551 -0.98863992675182 +v 0.87485416991721909 -0.23616095012512936 2.0380332825051397 +v 0.9769927137227602 -0.27565653000548962 2.2380381578759332 +v 0.7659598475631918 -0.014265191292151489 1.3851825841399827 +v -1.9918017821354086 -1.1010052940010817 1.2498368695241486 +v 0.35007095938493693 -0.11523837251821048 1.2109331426758572 +v -0.065523645275789383 3.4307824183775724 0.14885320434616031 +v -0.56067862976838789 1.1293922972531261 -0.78470465235565579 +v 0.230604197084532 -0.26099157222716735 0.78044150784754374 +v -0.036069841196780236 1.5586718549986953 0.23343053269603292 +v 0.9625845397642393 0.21697780834580793 2.0655366655340801 +v 1.2134543456827123 5.7512845415787837 -1.1992662525287292 +v 0.73917432921915815 0.77417091388013703 0.64571480388925051 +v 0.93946205136977101 3.1650639784086576 -0.36143941841507121 +v -2.0334097904213695 0.038146836452296003 2.5978310384638026 +v -1.6726025741627886 -0.40999234374986465 1.0032321012014795 +v 1.499857940354185 -0.50431395706194881 0.65863545164532145 +v 1.3955368216496682 -0.11541109975328984 0.8212732169261473 f 1 2 10 5 6 4 3 11 9 8 7 f 1 2 14 15 20 19 18 17 12 13 16 f 3 4 27 24 23 26 21 22 25 12 13 diff --git a/results/search/topology_49/resume.planes b/results/search/topology_49/resume.planes index 0794770e..247897d2 100644 --- a/results/search/topology_49/resume.planes +++ b/results/search/topology_49/resume.planes @@ -1,37 +1,37 @@ 36 --0.75124424695968628 --1.5237210988998413 --0.65899819135665894 --0.15490201115608215 -0.11027102172374725 -0.025766856968402863 --0.96790885925292969 -0.16168676316738129 --0.81366896629333496 --0.054308883845806122 -0.055957689881324768 -0.020208433270454407 --0.3453066349029541 -0.018211144953966141 -0.25156265497207642 -0.70244783163070679 --0.11242750287055969 --0.08508271723985672 --0.57684141397476196 -0.24939453601837158 --0.065136164426803589 -1.5615618228912354 -0.91340553760528564 -1.0718519687652588 -0.2512909471988678 -0.53100895881652832 -0.86029094457626343 -0.081128925085067749 --0.11127477884292603 --0.0062730163335800171 --0.079995952546596527 -0.50926798582077026 --0.033426612615585327 --0.0097709987312555313 -0.12310245633125305 -0.32852426171302795 +-1.5918164253234863 +-1.420859694480896 +-0.66679090261459351 +-0.35548588633537292 +0.16597273945808411 +-0.034936226904392242 +-0.42038556933403015 +0.059494629502296448 +-0.76891809701919556 +-0.072699807584285736 +0.17554521560668945 +0.071791812777519226 +-0.13242067396640778 +0.00098049419466406107 +0.067818246781826019 +0.41764986515045166 +-0.075082361698150635 +-0.095182798802852631 +-0.9846007227897644 +0.34109976887702942 +-0.31864514946937561 +1.4653048515319824 +0.20245353877544403 +0.45578271150588989 +0.55583250522613525 +0.33998769521713257 +0.91763567924499512 +0.054343990981578827 +-0.47581389546394348 +0.14601700007915497 +0.36391684412956238 +0.21372054517269135 +-0.27762505412101746 +0.060107316821813583 +0.20422224700450897 +0.65005403757095337 diff --git a/results/search/topology_5/resume.obj b/results/search/topology_5/resume.obj index 45e803bf..265e97ea 100644 --- a/results/search/topology_5/resume.obj +++ b/results/search/topology_5/resume.obj @@ -1,47 +1,47 @@ -v -2.9865121727212633 -0.13079644098837173 -1.0582011595324052 -v -7.7872249379528284 -0.16226576743379989 5.0360295234653067 -v -2.4967087034073372 0.0064482512517669722 -0.92119049967630773 -v -0.45891293221702456 0.077756576435394742 -3.1799897461772271 -v -0.21874280572883339 0.35604609403750864 -1.9183421708478514 -v -0.64919742591695051 0.46033040823599625 -0.76556001366587689 -v 0.80464962174046584 1.1133219759452881 1.0316044306393279 -v 3.4463623430606507 0.77443690238996366 -4.3384159905904358 -v -0.096535109337160724 0.64472682541056736 -0.44374411648017065 -v 2.0494337920573482 1.1554305601340482 -0.356387966147513 -v 0.56194604911304513 0.86518239447462164 -0.056049344377141708 -v -1.8055586268171138 -0.61960850776118648 -1.2069239259660589 -v -0.48242995825080071 -0.27347992717014219 -3.8043061642954621 -v 2.3059080405308352 -0.3211429483755423 -7.164608485813174 -v 0.85003979805304464 -1.7460525467977439 -1.4672263427693368 -v 4.7396961728615059 -1.1596750177966035 -7.930297269844905 -v 1.1425312694558563 -2.4170423192837931 -0.0084843501355872097 -v 0.4759476260263602 -1.6852972402235264 -1.1642373754442019 -v 0.77989337979801854 -2.2333394686734387 -0.05420080871659827 -v 1.3431371339816687 -3.2225421781782071 1.9310777376273469 -v 0.97725423021317581 3.5288973761114737 1.5402888920439732 -v 0.28866050087130213 0.11446042549320599 -0.53505346138761078 -v 0.2139222725423427 0.37462968080801978 -0.39167080635748985 -v 0.50074140846402126 0.039338822799328189 -0.55436207082565347 -v 1.5511423716393682 2.4782817343164858 0.99283338292033219 -v 0.41615677124371353 -1.1426868160832706 -1.2549784187654902 -v -0.66765381216904152 0.098436201578526672 -0.65531966756517313 -v 2.0325648309606343 0.24981736551257805 -0.25371131927341239 -v -1.5756408707978329 0.78325083170910981 -0.56019029248794494 -v 0.78122572661701073 3.4472079403718943 1.6186894617609586 -v -0.60599683458226139 1.1664263100917502 -0.98677966899188185 -v 3.5484168435194521 1.7964104699804624 -4.6922913059618985 -v 0.4206763038090795 2.0407845253912282 -0.56862899065340855 -v 0.96565523636809469 4.0792385720791478 2.575358052800631 -v 2.9034674115976471 -6.6493936990848725 -1.9369394296857276 -v 0.86796678532158145 -0.43745461284084641 0.61750536715611082 -v 0.59927878662662826 -0.41314544849796514 -0.27515612961321578 -v 1.1743948464826404 -0.082826734316008135 2.2265414361394615 -v 1.4957553646806339 -1.3495470392906144 1.3811998329260484 -v 0.9916836089977713 -0.18718112071405829 0.61701010142729662 -v 1.9374764132613334 -0.5019878282174729 0.063989292298629652 -v -0.99911159807394168 0.57403176009689161 -0.49700595446729673 -v 0.73864278689060781 -0.087302415318731716 0.4032088334129505 -v -0.18822974965568545 -4.5198110432593062 0.14210740410501477 +v -2.5548692835477564 -0.48400178588535092 -1.6026011110042655 +v -10.89101503981342 -0.57285579026037203 5.9384133797020588 +v -1.3881355612458681 0.027823969926880021 -1.1306476583252578 +v 0.54360909950983061 -0.15996987285368178 -3.5154852938024002 +v 0.35974240162721077 0.22111515070388235 -2.1776010659246019 +v -0.30719382885724528 0.43546314075851644 -0.89694663487642434 +v 1.5599267435461797 1.6688645485802378 1.1255555240358324 +v 4.9403066984774267 1.0404439354858848 -3.9646393696212234 +v -0.061351652049711436 0.58798839554900084 -0.66085052849770831 +v 2.8291291222049795 1.6740522905457693 -0.048095625623559249 +v 1.3970463079397681 1.4980575257103845 0.75579086793342021 +v -1.2229063169045966 -0.89929632386452329 -1.7365364101439105 +v 0.71995359758095301 -0.51908254921420438 -4.3905409089123726 +v 2.4875929048999543 -0.45117524208001647 -6.1119280311051636 +v 1.5739848291769456 -2.1404841240744985 -1.0972868447369635 +v 5.992979363127267 -1.1629665524269808 -7.4148664885370206 +v 1.6609770061996416 -2.652025549675221 0.10190999363312447 +v 0.64256587188257319 -1.9986994997259573 -0.63302012024098375 +v 0.8329708777278263 -2.2612862822451363 -0.14541668816930545 +v 0.6530966494263537 -2.3635688760446323 0.26757140377200328 +v 1.921850074520755 3.0932684279663678 1.294082252024088 +v 0.31059620330650944 0.33994396749576083 -0.73495876685894734 +v 0.19556820815500842 0.56746198565242079 -0.59441098198261422 +v 0.71193260999360808 0.26958274979560981 -0.73845394609260384 +v 2.5903509480112312 2.2889988018589573 0.82586772372854034 +v 0.52393164778771106 -0.27265896286729913 -1.1239228207861314 +v -0.27626596938241677 0.25549647656050378 -0.85592258677262478 +v 2.499600014562231 0.98693393241560423 -0.060328889301571001 +v -0.76887662816601443 0.52112162585515487 -0.83119390827347006 +v 1.7260342258164523 3.021624265364069 1.3615170464760289 +v -0.34607297484506455 0.68639053624509372 -0.95646966480365392 +v 6.059986662505561 2.1141773032587281 -4.9234177003897024 +v -0.077748976350811169 0.96426293790457285 -0.70344845882844664 +v 2.3095949395782323 4.005683597433725 2.6417357672949793 +v 2.9908874923029214 -4.9141164463480687 -0.97978619478586926 +v 1.1173581128868526 -1.218557835009149 0.65952185377833716 +v 0.84565891967889195 -0.70137882656149642 -0.30181242263733354 +v 1.1191988024087967 -1.2259663724548604 0.41633361169219202 +v 1.0629266599238625 -1.1129134037483575 0.59701532560893034 +v 1.4224789409264127 0.26813047598296702 0.86645896386585952 +v 1.6094252805375591 0.22869011313567267 0.77760871481074978 +v -0.56020854119201768 0.48892245505920245 -0.7756438432265963 +v 1.3521138427796173 0.27492920241650581 0.79460955048568527 +v 0.79554460192191312 -4.4339221209789077 0.067463921536635718 f 1 2 7 11 9 10 8 6 5 4 3 f 1 2 17 19 18 15 13 14 16 20 12 f 1 3 21 25 28 23 22 24 26 27 12 diff --git a/results/search/topology_5/resume.planes b/results/search/topology_5/resume.planes index 2b360b85..35abdc26 100644 --- a/results/search/topology_5/resume.planes +++ b/results/search/topology_5/resume.planes @@ -1,37 +1,37 @@ 36 --0.15863111615180969 -0.68733298778533936 --0.12141196429729462 --0.64722466468811035 --1.4063401222229004 --0.51711142063140869 -0.054382346570491791 -0.27406418323516846 --0.46894538402557373 --0.77856111526489258 -1.2315024137496948 --0.66350835561752319 -0.3853495717048645 -0.17203949391841888 --0.11130385845899582 -0.061699260026216507 -0.17227131128311157 -0.0074546053074300289 -0.44457235932350159 --0.21801371872425079 -0.88442516326904297 --0.56928539276123047 --0.17442440986633301 --0.66790550947189331 -0.024267520755529404 --0.040919501334428787 --0.35692510008811951 -0.59887844324111938 -0.042039141058921814 --0.14322711527347565 -0.064951516687870026 --0.032289229333400726 --0.091956384479999542 -1.7371786832809448 -0.036341618746519089 -0.60593962669372559 +-0.20998166501522064 +0.68525850772857666 +-0.22404807806015015 +-0.55533063411712646 +-1.5771217346191406 +-0.63246804475784302 +0.074426747858524323 +0.45835822820663452 +-0.68107509613037109 +-0.47719985246658325 +0.87554866075515747 +-0.4554821252822876 +0.38868451118469238 +0.1984269917011261 +-0.0031029719393700361 +0.075896970927715302 +0.43456166982650757 +-0.033208787441253662 +0.48953616619110107 +-0.25989970564842224 +1.1453826427459717 +-0.3607952892780304 +-0.21222963929176331 +-0.65901917219161987 +0.13658908009529114 +-0.055794991552829742 +-0.54542392492294312 +0.85550343990325928 +-0.042760696262121201 +-0.35709455609321594 +0.27833864092826843 +-0.018933020532131195 +-0.27438005805015564 +1.2187182903289795 +-0.59789252281188965 +0.75366461277008057 diff --git a/results/search/topology_50/resume.obj b/results/search/topology_50/resume.obj index eae2b2b9..2ae9011b 100644 --- a/results/search/topology_50/resume.obj +++ b/results/search/topology_50/resume.obj @@ -1,47 +1,47 @@ -v 1.0015061688949762 -0.05820809744240981 -0.78422634535619595 -v 0.69542828029565185 -0.47676270222353206 -1.9255928152438537 -v 5.6177161103704556 8.2132126686658733 -0.13371801916676618 -v 1.4014522561152594 0.51507098822972408 0.4842694212994858 -v 0.29667242637198921 -1.1325975616373496 -2.4778269398868789 -v -0.22051212299854153 -2.339399708628743 -0.18228572301535984 -v 1.4955690335364438 3.6987962401597039 -24.996897185351976 -v 0.44688686392915739 -1.0999633678069136 -0.45670770422360457 -v -0.19120031740218782 -2.8611521515638585 4.6776904410414639 -v 0.71205761729541539 -0.88891306442897289 1.8136903248364542 -v 1.5339446742877285 0.30051973124488851 4.3244932720116935 -v -0.083378959498994695 -0.64835995608539909 -1.0503953861156465 -v 0.31906666194794381 -0.34992866316994925 -0.61530466934721118 -v -0.32519715284671452 -0.34375736706389054 0.73530816889062989 -v -0.68377377388472116 -0.08964913222754238 2.5474422266307748 -v -0.44136277030786775 -0.81176915061841826 -1.0057075587209585 -v -1.4918836158069779 -0.6049088663464669 2.0290829650456779 -v -0.6722101057566201 -0.73658382771004949 -0.21306418055228851 -v -1.2588408663891861 -0.52000732806728933 1.9091429564270994 -v -1.1214723769010944 -0.35782843697769684 2.3128014061653355 -v -0.1261126582403386 -1.2692804826335864 -0.42942865539624986 -v -0.027727695628622966 -0.76565400501988978 -0.81069559960794313 -v -0.2605935918757456 -0.98528424888748722 -1.0092911196994876 -v 1.7210274521683251 2.8851431139066328 -1.5854608977709175 -v -0.37349666953015065 -1.5563478764632845 -0.57955294554301173 -v 15.022162133981046 19.947696710999981 4.6432422170304211 -v 4.255920816680713 -0.81653543831011655 7.4747002920873022 -v -0.11083949162081967 -0.88299629784458433 -0.42631309448124655 -v 0.086138467018674697 1.2563660621875052 -0.96093830389385759 -v -2.9658158481492709 -16.493664224517659 10.43600025091177 -v -0.24957573797407478 0.78982949299466298 0.59320684532936196 -v -0.38919644619273541 0.16294935037428107 1.1520333765596691 -v -1.0392556017957975 -0.15402775849633493 -1.3091308805484401 -v -0.81292103713219266 -0.63307576145868427 -0.32916377596217483 -v -0.96397163827362153 -0.4686342012266792 -0.39931811879882728 -v -3.0204609762740389 1.5638528823604265 -0.57861765789161701 -v -1.608477297950814 -0.46800963828558773 1.9374435991253063 -v -1.1248517317428477 -0.2728247778203704 -0.91846835708591867 -v -6.7033524928534254 0.94888865834865099 1.7925507924325053 -v -1.3464589923490526 -1.6943625429184355 2.9200630177133684 -v -5.3379226019289412 3.5829833455596898 -0.71653564664861658 -v -3.2168086951057573 1.0054375198279701 -0.41784216956780451 -v -1.110345881735276 -0.26814641308345288 -0.42527714762076174 -v -1.2318974256086923 -0.41216081310832664 -0.76402612793836799 +v 0.82442713757329733 -0.1455103910500142 -0.68996466030436721 +v 0.57423839985921132 -0.48421232310469586 -1.8637964404957301 +v 3.7634008815512496 5.7579034323159446 -0.82027651311369087 +v 1.8116964294267583 1.8236431758109839 -0.63292638511029065 +v 0.15535545315792307 -1.4672916583438027 -0.82055827039122553 +v 0.24072147896421808 -1.2497625649885915 -1.157432614704403 +v 1.1034146930243844 2.5463874212908344 -16.117500525755979 +v 0.3727799787837392 -1.0909270979197792 -0.39361044248704063 +v -0.19106282158511506 -2.9718609614481482 5.0435898402628334 +v 0.67130302838474998 -0.79773592044415254 1.809356402778957 +v 1.1812619964246311 0.0084509517455737919 3.3644173996571562 +v 0.13273245489178961 -0.58960501621033035 -1.4246130731572373 +v 0.74715653950355054 -0.17595301938371799 -0.67428259490531095 +v -0.37932258847428263 -0.4136232581584891 0.60555238947165391 +v -0.95518891218713209 -0.30525812143166464 2.4320510132778819 +v -0.49490887085225066 -0.78091479379402928 -1.0118306728796043 +v -1.6754946827926531 -0.66977682964393936 2.1665050702064019 +v -0.71432325487609283 -0.71560214829717794 -0.19339148557201657 +v -1.5430515671636829 -0.62491375724789699 2.1023158995315816 +v -1.4825350385309455 -0.55192791126523588 2.3406523900150678 +v 0.095995286575266917 -1.4723467161053649 -0.62769085625219667 +v 0.19965441410269288 -0.71401635544968745 -1.1766271861589357 +v 0.005071109655839498 -1.2641419026759462 -1.0030507614175159 +v 1.887355412377274 2.9835606367006156 -1.6285442953038869 +v -0.087670284199704268 -1.9735647681984438 -0.48155328080808768 +v 4.5672693064338086 6.7255479099996327 -0.25698625797964347 +v 3.5948495195472527 -1.2623515239964824 5.7500740285755594 +v -0.022918201805565766 -0.92365955652585985 -0.39949333469824283 +v -0.033948668183442936 1.1887012925521223 -0.96179606692871844 +v -404.75537958459284 -2845.2902730827277 2109.9240672158103 +v -0.55771341149281095 0.55982364498519821 0.9053417555878247 +v -0.59106295782639617 0.38033757266722062 1.0636952802693258 +v -1.0851372212613801 -0.076465314318176589 -1.4384229248957565 +v -0.95481675011695921 -0.54105995748569014 -0.38424052868603908 +v -1.0665309669446446 -0.41830220766642978 -0.43213323265497827 +v -3.4453252780150607 2.0000273135284541 -0.84429732564972448 +v -1.9012359563362258 -0.39156479445428505 1.97605979524063 +v -1.2043980153607243 -0.21960990307345946 -0.94284012347835833 +v -6.9044836059386929 1.1381938745173474 1.6748268142964853 +v -1.8665873278175216 -1.4128170845449179 2.8325755432645643 +v -5.475712033685924 4.2610712315288986 -1.2486122560880673 +v -3.6226012424834129 1.7901976971263203 -0.77098348273806527 +v -1.2131021742913299 -0.22974383778047566 -0.46807762542787656 +v -1.3263576771332988 -0.36623375551348447 -0.77182103975189986 f 1 2 6 5 7 3 4 10 11 9 8 f 1 2 16 17 19 20 15 14 18 12 13 f 3 4 24 13 12 22 21 23 25 27 26 diff --git a/results/search/topology_50/resume.planes b/results/search/topology_50/resume.planes index b2b9206e..033cff64 100644 --- a/results/search/topology_50/resume.planes +++ b/results/search/topology_50/resume.planes @@ -1,37 +1,37 @@ 36 -0.82820796966552734 --0.45795643329620361 --0.054159969091415405 -0.1352323442697525 --0.27826738357543945 -0.065779455006122589 -0.52249801158905029 --0.30800941586494446 --0.27202922105789185 --0.1546204537153244 -0.006367457564920187 --0.031488455832004547 --0.72555899620056152 --0.75176334381103516 --0.19991655647754669 --0.34001252055168152 --0.82830005884170532 --0.32637718319892883 --0.088545545935630798 --0.14292198419570923 --0.604542076587677 --0.62614881992340088 --0.63159459829330444 --1.0038084983825684 --0.54558324813842773 -0.43238767981529236 -0.011945228092372417 --0.55666202306747437 --0.36069595813751221 -0.35308900475502014 -0.14221888780593872 -0.58175933361053467 -0.68813854455947876 --1.2892529964447021 -0.86206799745559692 -1.4196823835372925 +0.75329321622848511 +-0.37616997957229614 +-0.052014250308275223 +0.1300763338804245 +-0.29987338185310364 +0.058802343904972076 +0.77028828859329224 +-0.40161764621734619 +-0.40935793519020081 +-0.20641879737377167 +-0.018115999177098274 +-0.064005792140960693 +-0.75004243850708008 +-0.78061151504516602 +-0.25130569934844971 +-0.34249609708786011 +-0.82147330045700073 +-0.31969594955444336 +-0.058693304657936096 +-0.15993955731391907 +-0.59968167543411255 +-0.62215602397918701 +-0.66210067272186279 +-1.0113356113433838 +-0.60473859310150146 +0.5025942325592041 +-0.00035909257712773979 +-0.56344854831695557 +-0.36653625965118408 +0.37479710578918457 +0.14334265887737274 +0.61117297410964966 +0.72292327880859375 +-0.76228523254394531 +1.1223748922348022 +1.3690817356109619 diff --git a/results/search/topology_51/resume.obj b/results/search/topology_51/resume.obj index 82414152..7ca99d26 100644 --- a/results/search/topology_51/resume.obj +++ b/results/search/topology_51/resume.obj @@ -1,47 +1,47 @@ -v -0.98904300123562361 -0.24036226994470986 -0.80425257747483414 -v -2.5469630298308901 -0.68614986442771175 -0.93483345627211811 -v -0.97218246498682581 -0.23584460570193716 -1.0940025099828203 -v 2.4383000984090564 0.74015631789689618 -0.6981684615335022 -v 1.2110638125647659 0.39159084333794641 1.6653777104902709 -v 2.0467740148868048 0.62737774220699749 -1.4390288576724379 -v 0.62348670157771668 0.22038029179788277 -1.3059649621607838 -v 0.68879521583996206 0.23986702659184461 -0.54218937606887618 -v -2.2513470973097096 -0.60097751009305977 -0.35593792360353471 -v -1.4707933326402867 -0.37746002936135109 -0.13144440416092973 -v 1.0466500944333126 0.34396208416078861 1.0984532704945247 -v -1.0617655365486998 -0.5022194898722544 -1.1247782102395043 -v 2.2207628452413859 0.8914909184672215 -0.25686229635494562 -v 1.706557394505438 1.6057504441425123 0.82366774004755516 -v 1.9430005987685628 0.9985600648745534 -0.036803964153941826 -v 0.13960383258255415 0.90514641354134895 0.36331157350772753 -v 0.2556519686989604 0.76116685467249978 0.1419120345275835 -v 0.80852543997911208 -0.20350240450553819 -1.2764515814752391 -v -2.3835502245755045 -0.48226236831943015 -0.71617418553170498 -v 0.49286791030202537 0.25088506204870292 -0.59237297027047287 -v -0.50166105266842509 2.1090156324117695 5.1950429393298396 -v 1.1883734254849099 6.6073632092368459 2.3615756234507259 -v -0.38919048780717064 1.9432515317322456 1.9930366772677077 -v -0.4770570499238086 1.2501449980531341 -0.83491117896527001 -v -0.46405043325052819 1.6630344512234905 1.594003839271771 -v -2.5631888281978492 -4.8066892817215283 -0.60394140199545909 -v -0.99721615336674552 -0.13874823933181479 0.0087253415101888332 -v -0.55955573669274083 1.0297051539084061 -0.70212845691959491 -v 2.5793270570261231 -1.7763164260072875 -1.2378661921562717 -v 1.8345827409948154 5.9093979504054275 1.0245951164787168 -v 3.3999513435425346 5.8633054761055181 -2.0416205960917964 -v 0.28940499946643444 1.70056843687584 3.6051275303837906 -v 2.033209057076355 2.1396617446299269 0.24082608141212408 -v -0.46949835481465596 1.512954876445276 0.21821307417535757 -v -0.67093961543300962 1.8580749388189668 1.4438810631611125 -v -0.94215339170184409 1.568939475644705 0.089632270609267373 -v -1.0771253990395553 1.2466246728379695 -1.2954784802296044 -v -0.046973252172464959 1.2499807611531306 -0.51552234602685354 -v -1.4649281116633508 2.4368055956754078 -0.63286407083722274 -v 0.441051204546836 0.602618347601102 0.41991110597294368 -v -6.6965245165819738 5.5389258886262871 -1.3493133123165035 -v -1.3515088279225425 1.8535227510862051 -0.012648394183981504 -v -2.2000459895662741 0.84882676489669107 -1.1829662462062933 -v -2.443295779449866 -0.13186507161007505 -1.0707678133171969 +v -1.0024126713960579 0.021543934410077653 -0.63514828998948969 +v -1.4381455596217345 -0.048813572853933278 -0.61983600805572137 +v -1.0335152663397986 -0.060406178134360507 -1.3098111632205367 +v 2.3611320780407903 0.41358379903444908 -2.080382777447336 +v 0.99666574151534959 0.59755458388431248 1.5189592587852969 +v 2.0510352708730428 0.28887074279680974 -2.7251599390972947 +v 0.75163158005192943 0.13650719238648845 -2.1748382011093494 +v 0.62979710925093646 0.29617837898303107 -0.59515410839112903 +v -1.03404101619938 0.11094827585456563 0.19617586184873076 +v 0.26463760797934627 0.38388523469264452 0.70605673089588961 +v 0.90007553656399442 0.53841290358436389 1.1398399515973456 +v -1.3589818514354204 -1.1652301017977922 -1.2528336012053523 +v 1.6063637608039083 1.0887410986513413 -0.36630879547438822 +v 0.70304531112335589 3.3253851250220441 0.99513006127577763 +v 0.91722148785565882 1.2994886350726391 -0.16236760499909503 +v -0.65477849997262927 1.9880888587474062 0.4188530283418555 +v -0.016725589396669415 1.1477356930357447 -0.13007706586635193 +v 3.5410132326855317 -3.6381973918806909 -3.2467857033721854 +v -1.3926898914265764 0.11873156251913065 -0.53202135726965549 +v 0.42650380358273643 0.26426404391030611 -0.67866858134637953 +v -0.44697780864079334 1.7119100237898512 4.8829602528871163 +v 0.11019312376907826 3.6853288763963219 2.4237821615623418 +v -0.37609419052934884 2.0703480076350376 1.479621602871509 +v -0.59053879286392175 1.4244325810201688 -0.84390112960012265 +v -0.47538962604055229 1.751442031067304 0.97431514229894978 +v -2.5877796974762659 -5.3508417497474197 -0.62461410082766822 +v -1.1342249817501313 -0.45184745363507356 0.13460718361777901 +v -0.64563246478635172 1.2343189588623702 -0.74522212271722221 +v 3.4746201415984053 -3.4505233382950555 -3.2238805174890079 +v 0.37178046963047762 5.2768559692336154 0.9480231659930638 +v 1.547255851185587 6.1909210361276532 -2.6708024245702702 +v 0.29468621492488967 1.7721919045153334 2.8491032605965994 +v 1.2141270106455846 2.097883104494934 0.20652180385196389 +v -0.51018546735424108 1.7975589278553212 0.46655517373471139 +v -0.64033570337674495 1.9687771314551645 0.94595942279210132 +v -0.82573999127178366 1.8305097697536121 0.34673806055792167 +v -1.0639355552613363 1.3485949350790085 -1.4439203091970119 +v -0.2088662607630791 1.4374498169344687 -0.52159842651900035 +v -1.3174065411933424 2.8615827068855899 -0.45209123641349747 +v 0.20957367440311017 0.84935191126018217 0.29790008253265299 +v -3.4547395297798231 4.9474259533158635 -0.53484018392640309 +v -0.9590637462120416 1.9359841948514256 0.29987221898784894 +v -1.6951085192540161 1.084255781701418 -1.1715300479616135 +v -1.6950878546901427 0.58772333595849413 -1.1582946018198326 f 1 2 9 10 11 5 4 6 7 8 3 f 1 2 19 17 16 14 13 15 20 18 12 f 1 3 28 25 21 22 23 24 27 26 12 diff --git a/results/search/topology_51/resume.planes b/results/search/topology_51/resume.planes index 80bf6673..7002ac50 100644 --- a/results/search/topology_51/resume.planes +++ b/results/search/topology_51/resume.planes @@ -1,37 +1,37 @@ 36 --0.011477177962660789 -0.040122352540493011 --4.2284937080694363e-05 --0.080740071833133698 -0.36387965083122253 --0.2789570689201355 --0.84751218557357788 -0.2901972234249115 --0.044792059808969498 -1.6147826910018921 --0.086585938930511475 -0.82568264007568359 -0.23308500647544861 -1.2484484910964966 --0.31322649121284485 -0.50027984380722046 -0.48815938830375671 --0.05523240938782692 --0.074380591511726379 --0.010342354886233807 -0.2689153254032135 --0.080229386687278748 --0.12041741609573364 --1.2264713048934937 --1.4555281400680542 -0.43867948651313782 -0.678730309009552 -0.37161827087402344 -0.48128360509872437 --0.14820684492588043 -0.18694563210010529 -0.15454444289207458 --0.69594413042068481 --0.19903616607189178 -0.23741491138935089 -0.26814094185829163 +-0.041309136897325516 +0.24964751303195953 +-0.028419854119420052 +-0.072930619120597839 +0.32495266199111938 +-0.58223915100097656 +-0.92187219858169556 +0.27205890417098999 +0.0094526614993810654 +1.4248743057250977 +0.25459906458854675 +0.52713918685913086 +0.29636779427528381 +1.3619765043258667 +-0.40596809983253479 +0.54207438230514526 +0.41143518686294556 +0.00022093088773544878 +-0.19671174883842468 +-0.021025961264967918 +0.51228457689285278 +-0.66238361597061157 +-0.042027350515127182 +-1.5756367444992065 +-0.91089999675750732 +0.011924136430025101 +0.44876039028167725 +0.4269554615020752 +0.45950412750244141 +-0.18045918643474579 +0.26681658625602722 +0.24393841624259949 +-0.74271148443222046 +-0.28545260429382324 +0.25366222858428955 +0.32778948545455933 diff --git a/results/search/topology_52/resume.obj b/results/search/topology_52/resume.obj index 061b32ed..0d514545 100644 --- a/results/search/topology_52/resume.obj +++ b/results/search/topology_52/resume.obj @@ -1,47 +1,47 @@ -v 1.1848432555767554 0.73454529435240035 -0.019936188189784307 -v -1.8491578535115163 1.4888499291010255 -2.1258401987839313 -v 1.0646815864360673 0.49188606462703094 0.028424975276933079 -v -2.7471704027311565 1.5553549029209042 -2.6733626975822338 -v -1.0570926965493512 -1.0510491241411732 -0.44327474860252047 -v -0.1978965568963186 -0.43023128287171758 -0.25033841220936964 -v -1.7022489126428957 -1.5280321033367417 -0.58291563716258721 -v -1.4534326094154766 -2.2236610820853882 -0.10379486976410524 -v -0.99478651700712062 -1.1609367517376865 -0.35438840922921178 -v -0.75150465612599515 0.79863075598520883 -1.1621884202539543 -v -3.6649886641232508 -1.6070085709238073 -1.6711459876563679 -v 2.9455533770551088 0.45435876527623009 -0.35572676308194728 -v -2.3732261407073074 1.8014574517589299 -4.2923133226720154 -v 0.43503321252483873 0.651464521994501 2.1243767295478011 -v 1.0695262393770004 0.67950126766365959 0.72777706235495732 -v -2.8580709725250597 1.7855659429165387 -3.2798145606999509 -v -3.0268275693746602 1.2845267453946967 1.9721386911555665 -v -3.6043734840834944 2.1056507191697933 -5.1281557501642983 -v -1.4207282707105009 1.2721244940659602 -0.73871474594403796 -v 1.8698982203206143 0.50014254911985323 1.0892416117775126 -v 4.609797462330933 1.3963343896783187 -0.79042044369508901 -v -0.60980501079566773 1.1480037832693399 0.30989791791031068 -v -1.9092484023591303 -1.2621896040937455 0.81208557161549821 -v -0.82979537689180227 -0.62945395868510901 0.52802219790917593 -v -1.7676372441810495 -1.6113588725482295 0.81682688105673407 -v -1.0089493017353592 -0.017285599952194301 0.50545831849545664 -v -0.40940387191589689 -0.65204929092248365 0.44354184628713145 -v -2.8783022653238177 -4.4181707093514628 1.3186428756165647 -v -2.917233013925935 0.0093524048252971014 7.7367763508597216 -v -0.63153284813760002 0.55617406126809443 4.2998104882789772 -v -2.8610245668083243 0.7978307939410707 2.4241283702598411 -v -1.6380613166555218 1.2203364651090363 -0.29128055485812476 -v -2.3542595985693997 1.4774337620105891 -2.1044580349556794 -v 1.7585506775050874 0.88272354021563482 2.3602305075876129 -v 0.24130603302237164 -0.37323895269146962 -1.0826842615315959 -v -1.4356343317160332 -0.95477985725439019 0.79398991380895334 -v 1.0867374077930716 0.15230929254458356 -1.1979357959866048 -v -2.5201149367189006 0.90868181854666641 -3.0186199208751758 -v -1.8816923955803391 -1.2623005186550995 0.42414471599312265 -v -2.4455522356608532 0.78702885570125936 -3.3726659771076921 -v -1.0922945315940991 -1.3411377291079314 -0.77054581266642785 -v -2.0421068755355121 1.160935033247708 -1.475024780211214 -v 0.3365658479304201 -0.73246654051429028 -0.70298558853976145 -v -1.3919777229953718 1.1653972481764281 -0.62666799835506959 +v 1.0022114212211435 0.55138048893476188 0.054044004158024621 +v -1.4790401630343473 1.2639012477404643 -1.9451269876993922 +v 0.95077777783963369 0.48815921057550271 0.054761973759160101 +v -2.4408562836384631 1.1754423907478244 -2.5229553540724283 +v -0.59592666332547473 -0.81719111742584605 -0.24572740734853793 +v -0.17766608137925288 -0.4771918344418713 -0.15744481496259588 +v -1.7519736211249715 -1.8473613562058344 -0.44085108853702093 +v -1.6117177803577409 -2.058016015937894 -0.23574615562317425 +v -0.49731456526817619 -0.95800545440984131 -0.10546370845706887 +v -0.88651253540059372 0.85503825383657139 -1.3386838776998811 +v -6.288144250244029 -3.3734545893882504 -2.5666144750534201 +v 1.8789700176256994 0.38967096690284492 -0.092431531717118542 +v -3.908094919239185 3.3201544050324987 -16.769354329280326 +v 0.52754631974518584 0.53345339453869822 1.1321881905528022 +v 0.91864504028844807 0.53330366645421323 0.38515413320318714 +v -3.7595729393567461 2.1850114410735642 -6.303761973333434 +v -6.3673374583707529 1.8106730507250952 2.2317497146480556 +v -220.80501539655839 101.512540190077 -531.57358869668656 +v -1.3379179813322057 1.1749113913978737 -1.3724594979121658 +v 1.3420329106295104 0.43100798698216508 0.54365153142011557 +v 8.6053202762678183 3.0287293037308975 -0.79597140533620292 +v -0.76971951438884234 1.0079354959545404 0.36412313926472983 +v -2.1141989919382227 -1.7326717877259148 0.26505266164594576 +v -0.52963874363646868 -0.61581619661927456 0.15294564982379139 +v -2.157109911936955 -1.6936876376757568 0.27558664129053345 +v -0.57610853202689494 -0.46236445371248375 0.17640078725643821 +v -0.17245008770038564 -0.66626341002496259 0.094943462731906708 +v -3.285073442143799 -3.0622951798392495 0.29326687787727035 +v -5.3536685110410174 -1.1711670880299792 7.9140063121073974 +v 0.29780933560566036 0.86305731299193822 2.4304448970599881 +v -4.7223434990409867 -0.32512830558625766 3.673624115209519 +v -1.5621420296209796 1.098324319799129 -1.0691325705344417 +v -1.9066709841740481 1.1858538672560865 -1.9750425759500998 +v 0.40853423205643324 0.8943971951987042 2.3729310427389922 +v 1.1412122963802482 -0.13792065366526016 -1.7904237071807694 +v -1.5011480726799717 -1.1870889166561645 0.51766231868277157 +v 1.5425726121909547 0.10510717847978335 -1.9227963172183709 +v -2.968251305890703 1.0200090534913935 -5.2142169554528248 +v -2.1584899256989241 -1.6910022564105285 0.27180530243492462 +v -1.8143967628624644 0.49785969950719106 -7.0115654902940019 +v -0.58126499613663429 -1.3609300557090007 -0.76243085744832695 +v -1.7815866383858856 1.0642287383763567 -1.7385262886657005 +v 0.86969305780482309 -0.61624053530380041 -0.89896408874589029 +v -1.2909419729434406 0.98867514020317171 -1.1610278152568938 f 1 2 4 11 8 7 9 5 6 10 3 f 1 2 13 18 16 17 19 14 15 20 12 f 1 3 22 21 28 25 23 24 26 27 12 diff --git a/results/search/topology_52/resume.planes b/results/search/topology_52/resume.planes index 0e23729d..84e0e592 100644 --- a/results/search/topology_52/resume.planes +++ b/results/search/topology_52/resume.planes @@ -1,37 +1,37 @@ 36 -0.12658452987670898 --0.1066417321562767 --0.22056938707828522 -0.16161805391311646 -0.90582829713821411 -0.091609649360179901 -0.057966582477092743 -0.027326885610818863 -0.2811446487903595 --0.019227506592869759 -1.1777046918869019 -0.17458599805831909 -0.10011185705661774 --0.15174040198326111 -0.0424359031021595 --2.0206668376922607 --0.82145941257476807 --0.14329606294631958 --0.9908415675163269 --0.27699628472328186 -0.35210233926773071 --0.34073764085769653 --0.30227598547935486 --0.20049390196800232 -0.20271719992160797 --0.49436882138252258 -0.16656965017318726 --0.82182782888412476 -0.43738740682601929 -0.62749838829040527 -0.33107766509056091 --0.69500410556793213 --0.74059528112411499 -0.24756591022014618 -0.71481835842132568 --0.19347931444644928 +0.11369902640581131 +-0.094484806060791016 +-0.17479158937931061 +0.14591847360134125 +0.72207683324813843 +0.07624875009059906 +0.020175080746412277 +-0.014855745248496532 +0.13716277480125427 +-0.22229306399822235 +1.1432263851165771 +0.19500003755092621 +0.12474251538515091 +-0.17042204737663269 +0.065341271460056305 +-1.7636493444442749 +-1.7746682167053223 +-0.61665999889373779 +-0.64323270320892334 +-0.22880275547504425 +0.22252242267131805 +-0.23546665906906128 +-0.36027523875236511 +-0.26502662897109985 +0.21722030639648438 +-0.38502785563468933 +0.20838402211666107 +-0.38347110152244568 +0.32079586386680603 +0.36776778101921082 +0.47718864679336548 +-1.0016461610794067 +-0.39210006594657898 +0.19425719976425171 +0.6876869797706604 +-0.075072117149829865 diff --git a/results/search/topology_53/resume.obj b/results/search/topology_53/resume.obj index adb63181..6f48a0f8 100644 --- a/results/search/topology_53/resume.obj +++ b/results/search/topology_53/resume.obj @@ -1,47 +1,47 @@ -v -1.7122911124931028 1.8005188404528378 0.10331801289785235 -v -1.0226080485182405 1.1215137216164495 -0.39229823742164904 -v -1.6658807134305431 1.8783517255407496 0.61044022471025017 -v 1.4089304493488717 -0.87465509476590819 -0.39942656509688096 -v 1.4156602771637781 -0.82206928641379717 -0.14518741438293503 -v 0.84818868191497865 -0.33805343141120692 -0.064106835590515276 -v 0.59730093054990385 -0.23635384308323676 -0.51958141624124221 -v -1.4100362987802408 1.6011003611790775 0.31559075594811592 -v -1.5236738510874119 1.9094486170964 1.2568927278146724 -v 7.3956727976431589 -5.8748606736824707 -0.79062184056172213 -v 0.82561210844691846 -0.42595442937934208 -0.52974007129663214 -v -2.04997845226164 0.82983525133341307 -0.039147165548945817 -v 0.29403670682026106 1.5472829342697663 -0.82952790676413812 -v 0.65316712758856899 0.61557009560477882 -1.2584691236505869 -v 0.12887429040413786 -0.10045962947899674 -1.2458719508952436 -v -3.0380493233985075 -1.700901296852481 -0.36453612984926098 -v -1.6116915367221343 1.1167018269341606 -0.14179931989629302 -v -3.3983207337817047 -1.1671320149351589 -0.052715635369771752 -v -0.8453792696764697 1.0154488002450668 -0.49943650776764759 -v -3.1573783246557321 -1.0720119887491804 -0.12764256787093187 -v -1.5532219780757375 3.3824597563983541 -9.6963647789894143 -v -0.66406240935009131 4.5985459119327272 2.4326820469643282 -v -3.0138338014257324 -2.0418082423359891 0.44060378617861146 -v -3.083612539278783 -2.3086414587468971 0.99240134687289872 -v -2.1480603916988916 0.528844749946631 0.086627777423384345 -v -2.0121377105508667 0.88417198060243662 0.4543817644236019 -v -3.5543834388364193 -3.8396621137381892 2.3534966423572876 -v -2.0807353533694184 0.65676880105707047 0.69054812710070768 -v 0.028162995476788136 1.2116652665019061 -4.3514274283196377 -v 0.90730091673862079 0.10079538319192112 -1.0207922818046637 -v -0.36884095972781039 3.8571252362584612 2.1717708761930536 -v 1.6081718641244735 -1.1731079637555506 0.18056603838380153 -v 2.4264665564995798 -3.1641091341421594 -0.30273061022706371 -v -7.5438995848205632 -4.9861533373206468 3.2071926874147842 -v 0.36215116486093257 -0.62001035360569567 0.15468220614429387 -v -1.2218283495667077 -1.1862025360332293 0.056861067936682039 -v -1.9412011883319722 0.73411564140226071 -0.045703316716583176 -v -1.1756970862344474 1.453308412624587 -0.61880846726768635 -v -0.8368911001269338 0.65971922980987086 -0.21398100922751562 -v 0.73620799898417399 -1.1200331542367019 0.31604510561584054 -v 0.22579856060292264 -0.94046991093576604 0.32705812377349774 -v 0.50178930153251589 -0.72906334878138468 -0.27077006093599232 -v 0.80129357457335804 -0.65110594653779352 -0.32753339077058485 -v 0.88474985655726468 -1.2997167861356953 0.2619661158096746 +v -1.68763255048224 1.7851187540711126 0.078935312768225047 +v -1.0367193587662162 1.14428335202835 -0.38882029634832938 +v -1.6454882134047319 1.855797245370244 0.53944277955712494 +v 1.4146977440401114 -0.87317419071076596 -0.41775157529011914 +v 1.4216427299869554 -0.81890713874456811 -0.1553840558630894 +v 0.8664607222227354 -0.34054861149775462 -0.054948195720005928 +v 0.60148186336264386 -0.23313707933093461 -0.53600439897657748 +v -1.4120601276159619 1.6028378458316201 0.27042711472959691 +v -1.5326688153097892 1.9301017068695656 1.2694730914576522 +v 7.5690063415741946 -6.0133324969940753 -0.81989624725988997 +v 0.82253635584690499 -0.41671133715248221 -0.54584017378448313 +v -2.019868682012842 0.83010439635697897 -0.061230145324568053 +v 0.29100127145105259 1.5736342877598872 -0.82972801096503002 +v 0.66167074761531841 0.61198488917517913 -1.2724513500899199 +v 0.12588100967164145 -0.10329643399159004 -1.2547163387147151 +v -3.0623469001851769 -1.7145048165738572 -0.36745173721786717 +v -1.683586539047377 1.0502070771850398 -0.13999152626354427 +v -3.4255005499645286 -1.1764666910130437 -0.053137053338543794 +v -0.85101277347090631 1.0156360265496063 -0.50625811652868391 +v -3.1826303730145571 -1.0805856130104758 -0.1286634730654157 +v -1.5334113514194805 3.3521368603625792 -9.7141316410068299 +v -0.64321785903444317 4.5696377706011564 2.4290228349829861 +v -2.977260033887807 -2.0222815419687246 0.41530342134162079 +v -3.0474207398407005 -2.2905754385464512 0.97012144436842851 +v -2.0900707811502501 0.6123737298024805 0.048942755264962834 +v -1.9691466791693422 0.92849196372420684 0.37611667104313629 +v -3.5336147183869677 -3.8717547939958949 2.3758084328888902 +v -2.0595397556759174 0.62883620401737361 0.68731996204517998 +v 0.028388647283748916 1.2213559762884889 -4.3862277301136334 +v 0.91210945791184272 0.10469489400789905 -1.0382301946438837 +v -0.37179050764060201 3.8879736124774786 2.1891403788825663 +v 1.6324846975106084 -1.2033707302630503 0.20138672763607524 +v 2.4466177187684957 -3.1949922317034027 -0.31968870506622049 +v -7.6042454969452757 -5.0260400086164614 3.2328503265676569 +v 0.36343065575980826 -0.63236320875142649 0.17149001336297698 +v -1.2670818721947388 -1.2057446851913531 0.049083363482601561 +v -1.8878485611633131 0.81304316593420134 -0.080421928997361891 +v -1.1868375875579933 1.460795514489025 -0.62762024458396937 +v -0.936983644009036 0.74898412110430956 -0.22531720403589597 +v 0.718362680168392 -1.1068207418125369 0.32460265149432821 +v 0.16653726040567823 -0.91268722888473353 0.33650930636663978 +v 0.49027001272658993 -0.71987813507155618 -0.28720223002502215 +v 0.79845567684335084 -0.63966108099511376 -0.34561088302415555 +v 0.88615623715054326 -1.309792171792405 0.26351478068545947 f 1 2 6 7 11 5 4 10 9 8 3 f 1 2 13 14 19 15 16 20 18 17 12 f 1 3 21 22 28 26 25 27 24 23 12 diff --git a/results/search/topology_53/resume.planes b/results/search/topology_53/resume.planes index d8ec1989..49b19bd4 100644 --- a/results/search/topology_53/resume.planes +++ b/results/search/topology_53/resume.planes @@ -1,37 +1,37 @@ 36 -0.1770516037940979 -0.21584318578243256 --0.049330778419971466 --0.39089834690093994 -0.27014324069023132 --0.91406327486038208 --2.0851047039031982 -0.71344321966171265 -0.081323981285095215 -0.88771998882293701 -0.39014193415641785 --0.10419375449419022 -0.19889938831329346 --0.51754724979400635 --0.22511851787567139 --1.4593760967254639 -1.1204719543457031 --0.54322153329849243 --0.0094315707683563232 --0.023654591292142868 --0.051436182111501694 --0.042085587978363037 --0.029812764376401901 --0.26300323009490967 --0.065559916198253632 --0.051710564643144608 --0.0082629071548581123 --0.092434413731098175 --0.10447799414396286 --0.12745003402233124 -0.023841219022870064 --0.47297394275665283 --0.52377605438232422 --0.068447083234786987 --0.22987496852874756 -0.57577836513519287 +0.18199662864208221 +0.22187168896198273 +-0.0507085882127285 +-0.39402469992637634 +0.27230378985404968 +-0.92137384414672852 +-2.0574996471405029 +0.70399761199951172 +0.080247275531291962 +0.89481991529464722 +0.39326220750808716 +-0.10502707213163376 +0.20049014687538147 +-0.5216863751411438 +-0.22691898047924042 +-1.4710475206375122 +1.1294333934783936 +-0.54756623506546021 +-0.0077583747915923595 +-0.019458172842860222 +-0.042311210185289383 +-0.044741272926330566 +-0.031694009900093079 +-0.27959930896759033 +-0.069433815777301788 +-0.05476611852645874 +-0.0087511567398905754 +-0.095982752740383148 +-0.10848867148160934 +-0.13234253227710724 +0.024031898006796837 +-0.47675666213035583 +-0.52796506881713867 +-0.068994514644145966 +-0.23171347379684448 +0.58038330078125 diff --git a/results/search/topology_54/resume.obj b/results/search/topology_54/resume.obj index e7001f83..02c075ad 100644 --- a/results/search/topology_54/resume.obj +++ b/results/search/topology_54/resume.obj @@ -1,47 +1,47 @@ -v -0.81311312149228221 0.32130136790454722 3.5351984806432415 -v -1.2696557883274915 1.3713390308503732 4.9011970856874578 -v -0.25351768482238168 -1.819614632583427 -0.8267741355995033 -v -0.32509330080808724 -1.7570104876775698 -0.93373182571914359 -v 0.97986889522502763 -3.5515516344103455 -1.0395498952190294 -v -2.5691367387599957 2.060089553744322 1.5496744252587784 -v -2.2356570222250909 1.1550615195615952 0.11741136082141163 -v 137.20982785599199 161.95863983913344 1098.552992021672 -v -0.060490822985816345 -1.7785582584272734 0.12232452280446982 -v -8.2026348947049836 9.1964176934388551 0.084313745273759844 -v 6.790884419592496 -14.88074504695995 -12.017793286137984 -v 0.21466894467509187 -1.3033363272806542 -0.78765922183808157 -v 0.35992959729020935 -2.4579041131727868 0.16250235482581218 -v -0.14482674686095548 0.071403092430653139 -0.63678628179989405 -v -1.2214866974662184 2.6206834089227948 2.4614470254423124 -v -0.5178435837823524 1.1409344341322503 0.12215922085478825 -v 0.087797403780847175 -1.6053993579843269 0.59426923852485025 -v 0.069460543194903884 -1.6256734661115133 0.75453432256073505 -v -0.63155109178973545 0.28608776053432161 2.3465849234623062 -v 0.01953041265673303 -0.89604976220722432 -0.13370483583536416 -v 2.0718721573519057 0.67244855301949946 -0.58099432576392429 -v 2.5135935376336822 0.83641921638341077 -0.31355336777456611 -v 2.608605490038824 1.290445199722942 -0.55479585842802392 -v 2.5726210332823722 1.3608784489459882 -0.63636451036860442 -v 1.8709920521919881 1.0287286406123164 -1.0100121540665894 -v -0.33566162542702399 -1.2674677866592792 -1.2922002132721468 -v 0.41815682949311189 -2.2983004030101228 0.099305826573983014 -v 2.0386120234068539 0.63383915440563887 -0.64284765227749174 -v 0.92747042115970835 0.66741686325740812 -0.60709867846122778 -v 1.2199734741012975 -0.30891346938259018 -0.71532936741964348 -v 2.5451783012472506 1.3542008064516864 -0.58400391771793891 -v 0.5577583726952523 2.7631474098418454 -0.38228625837238112 -v 0.09063020081762875 0.28996837726977542 -0.62131057899190978 -v 2.0588570077424961 -1.0477068784194921 -0.81519029180358293 -v 0.7229367025917135 0.56525681287253893 -0.77260615456660375 -v 0.78632958410722054 1.7783681653736536 1.1552957115764495 -v 0.99626228821553531 2.146711254134777 1.7436921273304198 -v 2.6593943651089975 1.3456151890900616 -1.1878198577876127 -v 2.4918970529356468 1.1582804689970272 -0.13526650168746635 -v 2.0971044990784193 0.69778048100650958 -1.2944379038256411 -v 0.66818862834860937 0.7431313195268191 1.3600445999785034 -v 0.12902571846027547 0.33941692372029225 -0.50209824966148953 -v 4.7905399405770073 0.66291827187150221 -2.5202547748077526 -v 4.1327674525571343 0.93092875930175201 -2.0772949894833284 +v -0.84121129505297365 0.35768503102564608 3.7343485480615835 +v -1.2436695943105009 1.2812814593319932 4.9585548086454594 +v -0.28432362952426588 -1.8155018484405383 -0.8759465104662747 +v -0.40527966578476904 -1.7086011744428493 -1.0640574810389658 +v 0.89586484864836702 -3.5020350967517633 -1.1368511212926682 +v -2.5297533481550407 1.9552394600139229 1.4511252679321105 +v -2.2126006474941127 1.0998102560558365 0.070711970353278142 +v 62.702805028824983 73.1049511873602 522.51009336602078 +v -0.084342810141158839 -1.8642198657269227 -0.14785987094405328 +v -8.5994733786951478 9.7619638700642639 -0.031965229601627843 +v 7.247909387636617 -15.904877944443024 -13.374968350839366 +v 0.20968818047858864 -1.2683669424391792 -0.82939489199704486 +v 0.35036312508677597 -2.3784594975444193 0.1126032225726871 +v -0.21719469600809588 0.33249314009830494 -0.61186132776214697 +v -1.2162953789960382 2.602370684795849 2.4671525321733228 +v -0.45096910194549494 0.99789992868582911 -0.12509591905175985 +v 0.12759388564943996 -1.6145965866886962 0.35062270286843938 +v 0.10612618431565679 -1.6392187805806901 0.54449601319519003 +v -0.61654761175278139 0.3242417778894518 2.2120017923839717 +v 0.0042561274352292348 -0.77876096290614683 -0.23611188754445295 +v 2.1583405838860426 0.76185232424503913 -0.55187576698817353 +v 2.4019657133980337 0.8581290208826905 -0.40159368437200127 +v 2.5668617975873262 1.2404626219797523 -0.53257211131581417 +v 2.4798881706003204 1.4240100756247873 -0.74610118543784076 +v 1.6941685828115527 1.0424896720342016 -1.1786760251293253 +v -0.49155433711306235 -1.3482773014781164 -1.4066473256019201 +v 0.44093719134090714 -2.1041568314527037 -0.006511222103696479 +v 2.0962923936541156 0.68885145030001316 -0.66805704413436051 +v 0.82363860186566051 0.71052398478186607 -0.61008228314800839 +v 1.1106251862041301 -0.46607145352470986 -0.76880196694743108 +v 2.4014937633577618 1.4029780675059575 -0.59254650234956807 +v 0.37703532987829741 2.8523581172353132 -0.32444770284147256 +v 0.026630856750984134 0.59252535429973985 -0.59012983586464718 +v 1.8817577977543507 -1.1008490786211971 -0.88120241580608594 +v 0.52466318111333832 0.55898880892977409 -0.84815606180186209 +v 0.78007733648427702 1.7705522808456291 1.0941383447559958 +v 0.98095182878885456 2.0573837240402626 1.5514127979882906 +v 2.7862616057115872 1.4949154023641893 -1.4765900897285318 +v 2.5162210475046987 1.1816368439375295 -0.34943316689445059 +v 2.173873706930435 0.77729476048116575 -1.5669789426770184 +v 0.7097511610464593 0.81670554665849437 1.1920824891193775 +v 0.0038028091256957987 0.3541373517323394 -0.5798744085692249 +v 5.1702483025286678 0.61000947345833456 -3.1660361037157103 +v 4.1346199233796783 1.0216936914207091 -2.4169894497003788 f 1 2 10 7 6 11 5 3 4 9 8 f 1 2 15 16 14 12 13 20 17 18 19 f 3 4 26 25 24 23 21 22 27 13 12 diff --git a/results/search/topology_54/resume.planes b/results/search/topology_54/resume.planes index 72c49e44..b83ed3a3 100644 --- a/results/search/topology_54/resume.planes +++ b/results/search/topology_54/resume.planes @@ -1,37 +1,37 @@ 36 --0.8770485520362854 --0.64995193481445312 -0.20648917555809021 --0.2033679187297821 --0.049934018403291702 --0.0295853391289711 -0.73126095533370972 --0.59948384761810303 --0.84024465084075928 --0.018646303564310074 -0.065478287637233734 --0.64106160402297974 -0.0075551983900368214 -0.7582545280456543 --0.47737187147140503 -0.84637188911437988 --0.73524069786071777 -0.0038277453277260065 --0.1183207631111145 -0.27958884835243225 --0.026356665417551994 -1.2249016761779785 -1.6065654754638672 -0.84687197208404541 -0.18391083180904388 --0.030223548412322998 --0.046696856617927551 --0.22032827138900757 -0.27218267321586609 --0.4918588399887085 -0.71454942226409912 --0.37664222717285156 -0.76690870523452759 --0.108248271048069 --0.081582687795162201 --0.30577465891838074 +-0.89311206340789795 +-0.65613168478012085 +0.2014043927192688 +-0.20522497594356537 +-0.050761006772518158 +-0.029171399772167206 +0.74912178516387939 +-0.60609835386276245 +-0.82612472772598267 +-0.028292218223214149 +0.08096226304769516 +-0.65133267641067505 +-0.0088178794831037521 +0.77906179428100586 +-0.48480322957038879 +0.87157148122787476 +-0.74401742219924927 +0.0020183026790618896 +-0.14703655242919922 +0.33578002452850342 +-0.029075734317302704 +1.2258555889129639 +1.557032585144043 +0.83910006284713745 +0.15527905523777008 +-0.017336189746856689 +-0.05733763799071312 +-0.29167965054512024 +0.32199302315711975 +-0.58024579286575317 +0.6463698148727417 +-0.3375287652015686 +0.67756223678588867 +-0.14919552206993103 +-0.11447605490684509 +-0.37706872820854187 diff --git a/results/search/topology_55/resume.obj b/results/search/topology_55/resume.obj index 11ec6f3f..c14c2ea8 100644 --- a/results/search/topology_55/resume.obj +++ b/results/search/topology_55/resume.obj @@ -1,47 +1,47 @@ -v 0.10817070422444157 -0.52670658917636493 0.28570621833562426 -v -0.2389422774455022 -0.34709390430711717 0.75888316667178146 -v 5.894396271917512 0.99358456776113102 -3.4256622793738751 -v 6.5027413586506819 1.5603546431877588 -3.4394060554038166 -v -0.9181997004594431 -0.41149873853986096 1.3000920158821341 -v -0.87715024480271908 -0.27847821783060833 1.3868434983447462 -v 0.11637035695996109 -0.58536665928365816 0.22418660613275676 -v 0.80771236128015855 -0.73853268469373878 -0.52898838066845133 -v 5.8207617071291962 0.98226777747290461 -3.3710031800557703 -v 5.3109202860489653 3.3838896847107773 -0.69828715692874632 -v 7.46953451206452 4.0663907971549653 -1.9761509493984155 -v 0.14916970975273067 -1.0132554272989929 1.5948155850423713 -v 0.87435988940848341 -1.2601908545148304 0.22986408956727256 -v -1.7060730826694148 2.131175044740429 -2.2839352846599983 -v -1.3626187182998555 1.2963524193094689 -0.82459630159029451 -v 0.070510984624828132 0.27943744584224406 -1.9705157712573531 -v 0.0060290422465033031 -0.40770054513407733 0.23089176150546131 -v 0.08613882633676373 -0.46456509559706927 0.16689684856738762 -v -1.4045145718536378 2.5488845366099859 -4.3780366455929567 -v -1.0764155771915596 1.0650011438083644 -0.97052068549606219 -v -1.0197943421002826 -2.1148834215829262 1.6028764601784571 -v -0.88073657870265953 -1.7579913671130092 1.9320476954288317 -v 0.0062129542244813932 -0.053663564345041742 3.1954243433327054 -v -11.936104787113225 -3.0512418552266283 15.347260883871858 -v 4.6914073932041553 -0.93540087132504945 -4.5798927144821375 -v 6.6803797779830907 3.6653217295423595 -0.60838375363739827 -v 2.190586193051884 0.021807536779757442 0.28158362831046341 -v 0.90477524135515586 -8.1352853149992583 10.285912202265468 -v -0.19270331712213742 1.5746230959841279 2.9707074787428738 -v -0.70696482640468417 -0.21201295035715328 1.9291534865625257 -v -1.3965629716744545 1.0653371267962075 -0.85075829661714675 -v -1.3605779495149981 1.1861121124295642 -0.77627843193991131 -v 0.22572957641063399 -1.5162682797083613 0.64648858859666414 -v -0.022739276280896135 0.58957477304737071 -0.23598463856012861 -v -0.17681481390379139 1.8864670633878304 -0.70840397686361811 -v 0.05075290818012998 -0.232652435740587 1.692924308586109 -v -0.21317134922206771 2.1542440545854387 -0.49991261199724546 -v 1.9375885004328102 0.54241182489116546 -2.4761126552550428 -v -12.287776266563204 -0.55254626349148317 0.046723323843707476 -v -4.3495234771810152 -0.53726407119159381 -0.48955722024372811 -v -0.30005636772988359 3.0645536101851159 -6.0210505027353438 -v -4.7627926834870298 0.16784490199910823 5.4492922340275429 -v 0.031853755532681605 0.6121954362134483 -0.31037190413307564 -v -5.2055145307523576 -0.5604696332304071 -0.61224375130720754 +v -0.21096471506188633 -1.0493222412241001 0.22783900064900769 +v -1.2649786745043348 -1.4066002881851902 0.88611293667603186 +v 5.1212077729274785 2.2724107642467044 1.6201004556254817 +v 2.2053582203689808 1.5544709857659715 4.2845585770608769 +v 0.2076580307917997 -0.7800133125383798 0.36372487351147365 +v -0.58283534959027794 -1.4347465964826664 -0.34878037227991587 +v 0.058357351260639991 -0.38023473376689171 1.8615296134589805 +v 2.9768383031533761 0.31530137941745834 -0.87722083850370636 +v 1.6810481962782413 -0.039608540192274638 0.19501789228136956 +v -0.18222802200250013 -0.37258127132355812 2.289974616529463 +v 1.8708940237930272 1.3514990131431692 4.2140246702641004 +v 0.19538496987972892 -1.8870322468996361 0.91429348039552538 +v 8.3307681461509198 1.2440082435866182 -4.5264973587859467 +v -1.8979871987816472 -0.80878362698361073 0.4983924205317049 +v -1.3710051841221003 -0.86216135701310048 0.39290381925771811 +v -1.3812069981513635 3.8652126423886637 -4.1607734567574495 +v -1.9238427853366138 -1.8886280393408694 1.5469543687594853 +v -2.4098538127726394 -1.0124951671515583 0.84718786549757019 +v -2.2045541951471526 -0.2637952285833513 0.06437620692917162 +v -3.2825001638777418 -0.062504411718668149 0.19137279617947991 +v 2.3104246022850381 -0.47487006424046097 0.55679069114220214 +v 2.1580446606009906 -0.80699626691581328 0.17543301618460749 +v -0.43555166841016046 -5.827162002905208 -5.1972476289221365 +v -0.96785189438654839 -2.2836238205097552 1.7825429352454372 +v -4.5152579855854738 -3.4650701548990113 4.4798326347663728 +v 0.8335648087393065 -0.0298913438607088 3.3352173859066259 +v 3.2256476761969304 0.047814006751091445 0.24589975677079057 +v -0.19716104215104718 -0.14256319800080744 1.1515498262887578 +v -0.14792350445261382 0.68919970188173973 2.1332448146435725 +v -0.53688399565672096 -1.986776568556172 -1.0066201815052258 +v -9.054337358478616 -3.162024411860342 -1.7166464612941272 +v -6.6599806282986735 -2.0626256996510377 -0.60575581964818159 +v -0.020769754517183169 -0.44227624818015693 1.5110770298204019 +v -0.45799995849165914 -0.30987315991511077 0.03212039800999076 +v -1.7713472594667958 2.4172634910458211 -2.1676668466708118 +v -0.3672212544104122 -1.2821919328914904 -0.57046235941250745 +v -0.33913564525578405 1.1203949441492982 1.8458505269082746 +v -1.5519533074734218 2.766163576633923 -2.4911047049606498 +v -0.88029136108014461 -0.17524163889447233 1.4925289135124806 +v -1.7808780062279561 -0.65765012734589468 2.5801478319224067 +v -1.5503635782373104 0.6271709019477596 0.61497588134301606 +v -1.4321163371825634 -1.4600973862990587 1.1255993116768306 +v 1.0912851531413963 -0.42127033353631183 -0.040184379461311009 +v -1.9443855400494308 -0.65196064529602116 2.8750435258310985 f 1 2 6 5 8 9 3 4 11 10 7 f 1 2 17 18 15 14 19 20 16 13 12 f 3 4 25 23 12 13 21 22 24 26 27 diff --git a/results/search/topology_55/resume.planes b/results/search/topology_55/resume.planes index 59f342cd..788a0614 100644 --- a/results/search/topology_55/resume.planes +++ b/results/search/topology_55/resume.planes @@ -1,37 +1,37 @@ 36 -0.29122766852378845 --0.30460605025291443 -0.32926374673843384 --0.15248715877532959 --0.15525679290294647 --0.052927732467651367 -0.89927172660827637 --0.94948601722717285 -0.64955037832260132 --1.144150972366333 -0.12924788892269135 -0.34321203827857971 -0.046265300363302231 -0.0057467017322778702 -0.00068689428735524416 --0.03205949068069458 --0.7244642972946167 --0.49520301818847656 -0.014923698268830776 -0.0064805401489138603 -0.012923234142363071 -0.0042886943556368351 --0.42917102575302124 -0.051253147423267365 --0.42622902989387512 -1.9682376384735107 -0.33122491836547852 -0.064111337065696716 -0.40511801838874817 -0.17024514079093933 -0.0062311119399964809 --0.01748957484960556 --0.040166761726140976 --0.48030847311019897 -0.93652158975601196 --1.2865822315216064 +0.39027318358421326 +-0.72375446557998657 +0.23207937180995941 +-0.12492532283067703 +-0.40433958172798157 +-0.41948294639587402 +1.0243333578109741 +-1.3419276475906372 +0.75939595699310303 +0.043376687914133072 +-0.64134281873703003 +0.54121637344360352 +-0.47949618101119995 +-0.12564735114574432 +0.13050694763660431 +0.11214015632867813 +0.37908145785331726 +0.26099586486816406 +-0.017581328749656677 +-0.13926626741886139 +-0.16215556859970093 +0.040643498301506042 +-0.024023693054914474 +0.022998642176389694 +-1.1876211166381836 +0.19910058379173279 +1.0888831615447998 +0.00034237935324199498 +-0.09989330917596817 +0.16123796999454498 +0.12163084745407104 +-0.60163670778274536 +0.07904680073261261 +-0.95271778106689453 +1.305217981338501 +0.76172327995300293 diff --git a/results/search/topology_56/resume.obj b/results/search/topology_56/resume.obj index 4e8b5b67..f676bae7 100644 --- a/results/search/topology_56/resume.obj +++ b/results/search/topology_56/resume.obj @@ -1,47 +1,47 @@ -v -1.0391296908781773 -0.18850318470548583 -0.84794181318661022 -v -0.29394307651022317 -0.48382254101377165 -1.0013199310742849 -v -2.0515549955850543 -0.25434454572582094 -2.8105188525024669 -v -0.83964394886314264 0.38034290139014632 2.1224887911125379 -v 0.69048083511290781 -0.8454055190905051 -1.0712522376013554 -v -0.43132100729234041 -0.078558273138356949 0.65759246080812472 -v -1.5741042617190177 -0.42755353577942284 -2.8343936010930326 -v 1.0099340023632843 -0.70015529296650181 0.12657239066370884 -v 0.66869208536997204 -0.37277372373044942 1.089916751723065 -v -0.092511927615616482 -0.27481204029100259 0.29975709370033221 -v 0.93958342739787515 -0.50839153745176613 0.90279298737401992 -v -1.103977459599546 -1.5541760161539768 -0.61508031542404651 -v 1.7815364687164676 -11.824373388486507 0.23090476173624119 -v -0.34851550371195406 -1.2985384158029809 -0.8581392653346529 -v 4.9279142762872254 -0.66972288155988802 -2.3732711231285228 -v 5.9415026366742723 -1.3459879869975051 -2.5385734863957201 -v 2.4483446684409964 -0.4527262520057177 -1.74211618453517 -v 0.35886151742389211 -0.92853416844142178 -1.106338082906642 -v 0.79087410678392223 -0.56272329797893816 -1.2799815416999545 -v -0.11397752334398852 0.70853203018950128 -1.2377290748552188 -v -1.3133792468626002 -4.9222966495648057 -4.4819386062008579 -v -0.60352460672706731 2.0894322128908889 4.5503314762658951 -v -0.75768368119809537 1.9709638023685043 3.8879276595173193 -v -0.54543792655656964 -0.98050689808883285 1.9185275490368983 -v -0.64949553971732665 -1.0293991093624173 1.5001516423856658 -v 2.0849137784822553 -0.83925323388182804 11.481484083933829 -v -0.6374988265748035 -0.2842726875985162 2.2325114707897247 -v 3.1723939434893165 -0.49913327509258437 -2.4586924689269027 -v -0.38581977189228828 -1.080841587323252 -0.571323643068125 -v 0.087906552312648586 -0.28366668827762392 0.036166072033993024 -v -0.036020475752539423 0.93876590245894109 1.5846573093771517 -v 0.071101641796744816 0.7528557729646187 1.2851167481424504 -v -0.43997839865578431 0.92551432173185022 1.8619136222342372 -v -7.8536246933014606 11.830243252640118 1.1867350355018957 -v 1.6617312290391275 -0.69664680353505426 -2.6600985327368285 -v -0.154061997061711 -1.1593031500952962 -2.9858574609726354 -v -0.018253963697423912 0.43709395846452548 -2.3813402799883026 -v 3.793761668342952 3.2157363773527479 -1.026081717240239 -v 0.15400716907738857 -0.83613818473288981 1.4394701110441697 -v -0.10806676282913226 -0.31550397804433122 1.6237306154090851 -v -0.4602649728136296 -0.25288220230892822 0.71521873265136349 -v -0.48010033850604739 0.081926256277250323 1.2652698968988538 -v 1.1356504354894077 -0.48924116083661229 3.3441424626589473 -v -0.48424608575391886 0.60516174697942315 1.8896537244673728 +v -1.1515440538329624 -0.18367759525011951 -0.99201841969636118 +v -0.1739310188441672 -0.51344578035348432 -1.1902064373318872 +v -3.0065916574301017 0.32084004469260624 -1.8154985914051138 +v -1.2383447413049986 0.17847060287396094 2.319342453159658 +v 1.6752256094077567 -1.1371234572253259 -1.5642939618834335 +v -0.52367690989119187 -0.23504916427990219 0.46807040890448715 +v -1.313116720795048 -0.21463288970100725 -1.8048673362925063 +v 1.5624281271633587 -1.0490420751912126 -1.0463503301247994 +v 1.7395418227174393 -0.98076150414262309 0.18455786813400721 +v -0.36967564455845303 -0.24532525085351911 0.84919423264917171 +v 1.9596926691097041 -1.0690576120422326 0.0010511087309453826 +v -1.5567077409518351 -1.7093471446682644 -0.59059306657470745 +v 3.5514996833603658 -12.116567790843096 0.041810214383232625 +v -0.32133412700500308 -1.4908647492738891 -0.9630394494111969 +v 2.6819139243943426 -1.4320170456157564 -1.7777591714098548 +v 4.394853214803252 -3.517979307894032 -1.8353439001579526 +v 1.7859118621821872 -1.1270572985181069 -1.5966383973773195 +v 0.15108252158223523 -1.2780419074531197 -1.1302956357644685 +v 1.1307441695768572 -0.82754970797014415 -1.4788974548447207 +v 0.11823789516093797 0.010272676359604365 -1.3689576597250677 +v -1.5263463583469308 -2.9585856916183841 -1.9306117948764276 +v -2.4745843540711889 3.255817311338062 2.7985725682253264 +v -1.1218526145526428 1.6142758176362839 4.2272826148609646 +v -0.79547524200027353 -0.7053841707339118 2.3950240195813226 +v -1.109891298623654 -0.9676923313239153 1.3342909629722852 +v 5456.5221611301504 -872.17914004603563 12274.709332048933 +v -1.0253248120604792 0.10866045182444374 2.757870002241563 +v 1.9772961153967152 -1.2029933829355832 -1.7819071370878683 +v -0.39907925677372152 -1.2719653998438338 -0.69281070191544447 +v 0.32672778666431951 -0.55575087348583974 -0.28804823506577426 +v -0.062968753157221391 0.97392931051032738 1.5252049461840893 +v 0.6856549123546456 -0.02662999162672753 0.0976859160573611 +v -0.29323237469559482 1.0506387178156298 1.7191964377118034 +v -2.8778329703943824 2.2964300282039281 -1.7254670759615265 +v 0.76510532168125545 -1.3240131564915048 -1.8118332391125034 +v -0.44445103474795739 -1.5123447781565083 -1.8446845503528593 +v 0.16480110948784599 -0.14081878636224598 -1.7716438918558819 +v 3.5631484744996955 0.77469517630144646 -1.6622477542711482 +v -0.17837841484607508 -0.72312064283409605 1.8504551900420818 +v -0.51753785550250864 -0.10726711122651277 2.070118981261766 +v -0.69567795140997668 -0.10843470203753303 1.2671635121650335 +v -0.72367817186035532 0.072273285639807519 1.6526569953725678 +v 1.5800740902871326 -1.0042038564817288 -0.83829193542537839 +v -0.6954691651460454 0.44841293190196629 2.154801067554454 f 1 2 6 5 8 11 9 10 4 3 7 f 1 2 20 19 18 17 15 16 13 12 14 f 3 4 23 22 26 27 25 24 13 12 21 diff --git a/results/search/topology_56/resume.planes b/results/search/topology_56/resume.planes index df39c374..440d5fc4 100644 --- a/results/search/topology_56/resume.planes +++ b/results/search/topology_56/resume.planes @@ -1,37 +1,37 @@ 36 --0.11186544597148895 --0.31778097152709961 -0.068368546664714813 --0.28293684124946594 --0.16634462773799896 --1.0543613433837891 --1.1652387380599976 --0.30061861872673035 -0.32494670152664185 -0.10781645029783249 --0.17732064425945282 -0.14861169457435608 -0.18814778327941895 -0.82461512088775635 --2.2198958396911621 --0.57283365726470947 --0.35820466279983521 -0.19737724959850311 -0.21974444389343262 --0.8978273868560791 -0.050267435610294342 --0.025947513058781624 --0.27135202288627625 --0.0086447717621922493 -0.32850959897041321 -0.23476400971412659 --0.028224436566233635 -0.72424250841140747 --0.0087419664487242699 -1.0547916889190674 -0.15901724994182587 --0.13399338722229004 -0.11334268748760223 --0.33625766634941101 -0.043141629546880722 --0.038385476917028427 +-0.12788307666778564 +-0.40363034605979919 +0.04079098254442215 +-0.32227569818496704 +-0.23138795793056488 +-1.2046971321105957 +-1.5218201875686646 +-0.70889639854431152 +0.62639135122299194 +0.09541599452495575 +-0.20694677531719208 +0.1950889527797699 +0.035767544060945511 +0.078083902597427368 +-1.7645727396011353 +-0.7232087254524231 +-0.45574671030044556 +0.16111055016517639 +0.15130721032619476 +-1.0073992013931274 +0.20426969230175018 +-0.12539902329444885 +-0.38529059290885925 +0.028380721807479858 +0.22857971489429474 +0.28689506649971008 +-0.081214569509029388 +0.78529888391494751 +0.11642087250947952 +0.8860965371131897 +0.20698867738246918 +-0.29065075516700745 +0.20608891546726227 +-0.21699310839176178 +0.099720373749732971 +-0.062507212162017822 diff --git a/results/search/topology_57/resume.obj b/results/search/topology_57/resume.obj index 19ad5793..a35251a8 100644 --- a/results/search/topology_57/resume.obj +++ b/results/search/topology_57/resume.obj @@ -1,47 +1,47 @@ -v 0.58385505417555639 -1.9603788493372911 2.725011399492872 -v 0.15737493855981086 -6.2099424881279539 0.17022093822660878 -v -1.3169229962187672 0.45670682244923988 -0.75145638213340282 -v -2.0874248562805824 4.2990329936657972 -1.1004860435291628 -v -1.9480458292128162 0.27109053515608267 -2.2717503015975526 -v 0.004106786562609017 -1.2691345184824498 1.6476387994989632 -v -1.891553759664925 -0.73578549910907098 -2.5147381709770649 -v -0.79417961269919246 -0.94632641854876121 -0.068816944994384954 -v -1.2726086976781843 2.0613882802078258 -0.05521042492960393 -v 5.3362340641626194 -4.2231129256546938 12.817169227879965 -v -0.77752208967254399 1.0942287818360448 0.7252544436058832 -v 0.6424288843410586 -1.4264610929709749 -0.50756040652353962 -v 1.3574657744050875 5.6313844757868576 -1.0505869237059615 -v 0.66849324383799946 -1.1445914563223298 1.2452602310507292 -v 0.68546668297009339 -0.97336616623932137 1.4980749490746281 -v 0.6103988502722546 -1.7140006508713233 1.578887745859038 -v 0.6451143151615425 -1.3909403105742661 0.13995856547881402 -v -0.9554836328087789 -17.298986479659501 -6.5120463736295786 -v 0.078164113180065442 -6.9919598816278494 0.21893694009236864 -v 0.69528279439361984 -0.87691948469084713 1.4586061272158044 -v -1.1774491238635234 0.25231348991634728 -0.72835470938381874 -v 0.51740141064150369 -1.151507514841613 -0.53575490234587064 -v 0.20628071069383946 -0.90704661561126954 -0.57002998821444639 -v 0.4955396777837065 -1.3804792449126841 -0.51807645125468371 -v 0.3707259274368831 5.4286115154418528 -1.0794755942321548 -v -7.2530339176818499 7.5482190783976515 -1.6034918179798372 -v -1.4583944788873511 2.0224321350693217 -0.88574074714647399 -v 0.38604929762577 -1.2893501502250948 0.48624081902673433 -v -1.2067038559691137 0.22557986655235418 -0.82193878988286517 -v 1.0392291679993673 -1.4320400437040823 1.6328453776874872 -v -4.4532014891670233 5.2442265347150823 -1.0268811913054599 -v 1.3475564437573226 -1.7923688167139755 1.8005825161124311 -v 1.2217201953687316 -1.8342636704182709 1.4912303188471976 -v -0.31100955966083138 -1.0082597624376468 1.5558470789385288 -v -0.88429288820118845 0.31993221912170022 -2.2813829114253328 -v -1.7492693160870616 0.93880640057606313 -2.1153560886841247 -v 1.2550970893234432 -2.2334917325011716 1.7054820370567298 -v -0.32477359740425304 -1.2411333137282936 -2.6675908318873067 -v -1.1558870868050746 -0.74430633431405047 1.4860140920060525 -v -0.26396187577318653 -1.0308534344962972 1.419180710873295 -v -3.0460908700403815 4.8314219404560133 -1.1542980080204819 -v 1.1198464941902868 5.401063041513404 -1.1011381546908874 -v 1.7162458723860832 -7.7040938190523001 4.6510783138341045 -v -0.93527007645286031 1.6896757202766901 0.49114436153284069 +v 0.38301212178343219 -1.6452347944426804 2.0475654365152303 +v 0.36792628805385774 -1.959080182372875 1.8847352295646855 +v -1.1650087265806639 0.43040409561955251 -0.48522048045147859 +v -2.112676002027543 3.9836663516346715 -1.0918294132028772 +v -1.6301095315028253 -0.061984632339072677 -1.7076916023480075 +v 0.21461226617172097 -1.4391480921048472 1.7638885345421673 +v -1.5809762449502311 -0.73017319688333904 -1.8763723926235274 +v -0.97431098359950141 -0.78443583850007692 -0.56984242466187496 +v -1.5603761379551984 2.6160290326974533 -0.4475065433479537 +v 4.4179227707842514 2.1645374245806277 12.461930883774677 +v -0.82980161914121164 1.3217212746091485 0.61767076310515567 +v 0.61616691781715249 -1.2044421240032239 -0.14264634801096504 +v 1.1064174405796361 3.3796210709635535 -0.8444074341517952 +v 0.54944005229727622 -0.96245827578161014 0.87710482871231743 +v 0.55245327285327028 -0.51365850868343821 1.3217488613013013 +v 0.45128163030547414 -1.5692927330479898 1.3495508364707316 +v 0.56874879039487924 -1.1336056583220564 0.47408353647826118 +v -1.0427492276761607 -26.70653141695551 -8.4314329964432062 +v 0.21703293296091133 -1.7207905939947661 3.8610270472628399 +v 0.57114636655773321 -0.3738332436498023 1.2576722797965392 +v -1.0185307543934365 0.23174625669959598 -0.4468939996028265 +v 1.0754722840570512 -1.8587287335815281 -0.017507948691628139 +v 0.26467009238274941 -1.1034752783195729 -0.17519898514741933 +v 1.6868303583599042 -1.5047397985499049 -0.044636869733861273 +v 3.3924286567446429 3.6527450485954382 -0.77972562078821872 +v -5.4313104371146927 7.6652700953564663 -1.8306142723553083 +v -1.1715913451247075 1.5561234397692332 -0.66354528307032412 +v 0.12415044406440306 -1.037269181486981 0.12721805977977396 +v -1.0441272322550796 0.14389731820265073 -0.5737110828837636 +v 0.9831463281833881 -1.1710317492989568 1.362647610544617 +v -3.6982697945942968 4.4642060357505526 -0.56186700673102563 +v 1.3327903391811888 -1.4295760752288604 1.6654863876358639 +v 1.0223953330451023 -1.7442084284342971 0.86333923165342519 +v -0.53432610087869237 -0.71934150664761087 1.5051712720361514 +v -1.0366375083289099 0.33997971506538044 -1.6073705397176099 +v -1.3227583095612598 0.58342839518133849 -1.54541688043515 +v 0.73557857735324994 -1.8280017624004428 1.3736941473594544 +v 1.8608538235908729 -1.7491267205783185 -2.1398317488413396 +v -1.0649083794741303 -0.56814875572752499 1.4822489435358479 +v -0.5034361925675257 -0.74720727098217388 1.3007280853944136 +v -2.1526883056665698 3.5763086882077144 -0.78875112506164968 +v 9.5151383687161992 2.9319644671437475 -0.9729137089384694 +v -0.17776985558040814 -2.234993045541227 2.1512124401272841 +v -0.96256943807070949 2.0455451882619347 0.30529115996679645 f 1 2 10 9 4 3 5 7 8 11 6 f 1 2 19 18 13 12 17 20 15 14 16 f 3 4 26 25 13 12 24 22 23 27 21 diff --git a/results/search/topology_57/resume.planes b/results/search/topology_57/resume.planes index aa482f05..b0baa42a 100644 --- a/results/search/topology_57/resume.planes +++ b/results/search/topology_57/resume.planes @@ -1,37 +1,37 @@ 36 --0.75445818901062012 --0.1214936152100563 -0.32803326845169067 -0.77810710668563843 --0.078746676445007324 -0.0010927722323685884 -0.029831616207957268 --0.052868206053972244 --0.64785957336425781 --0.40449339151382446 --0.25354030728340149 -0.19887353479862213 --0.41121488809585571 --0.54098576307296753 --0.12581740319728851 --0.34308061003684998 --1.0820716619491577 -0.060781773179769516 --0.045099243521690369 -0.53937900066375732 --2.2455258369445801 -0.14321373403072357 -0.31469085812568665 -0.56202733516693115 -0.74576270580291748 --0.093646205961704254 --0.29067414999008179 -0.042613361030817032 -0.39378222823143005 -0.97285109758377075 --0.10538209974765778 --0.057054407894611359 -0.026249632239341736 --0.78282958269119263 --0.099950261414051056 -0.27326765656471252 +-0.69312423467636108 +-0.13084205985069275 +0.3164064884185791 +0.70474368333816528 +-0.065915949642658234 +0.061756175011396408 +0.01663762703537941 +-0.055755253881216049 +-0.35258296132087708 +-0.33518490195274353 +-0.20649543404579163 +0.21069683134555817 +-0.43846625089645386 +-0.49081870913505554 +-0.096284031867980957 +-0.26808232069015503 +-0.92775344848632812 +0.085948184132575989 +-0.002948645269498229 +0.4020828902721405 +-1.5936139822006226 +0.15672457218170166 +0.19913418591022491 +0.28834050893783569 +1.0632989406585693 +-1.8133963346481323 +0.29983335733413696 +0.079414859414100647 +0.42172661423683167 +0.94344210624694824 +-0.11515819281339645 +-0.052735336124897003 +0.051484856754541397 +-0.83038771152496338 +-0.061573952436447144 +0.21025721728801727 diff --git a/results/search/topology_58/resume.obj b/results/search/topology_58/resume.obj index 21907317..c4099e4b 100644 --- a/results/search/topology_58/resume.obj +++ b/results/search/topology_58/resume.obj @@ -1,47 +1,47 @@ -v 12.529400931752006 7.3981907539494536 -4.3673352196725945 -v -0.52746929926617148 2.1226538778829043 -0.82917224893951635 -v 0.40489705170002793 1.4158195858322049 1.3810397651156929 -v 0.45606564852870091 1.7015058968429213 0.76481265948463595 -v -4.191497105425448 0.6940092388683442 0.046015391612745593 -v -3.546019935319114 0.67282192005767727 0.51205017287068832 -v 0.0676837024872773 1.8503204987941337 0.17512774256996533 -v -0.082619725723123746 1.4434647548646504 1.0025888792049376 -v -3.6311748440045122 0.71300037969530139 0.36559756135086802 -v 0.40551375193983219 1.7567434926630432 0.60653296932158085 -v 0.51343743809316966 4.9731683282518411 -6.6343996723057668 -v -0.78229979707141484 -9.0553479470025451 5.7878806839506991 -v 0.33113149111362261 0.22524451357028141 0.26509411832539254 -v -1.1205054789822815 -0.29025346390717138 0.61646684550680875 -v 6.4775536482738305 -2.8132043019369135 1.8642761018719423 -v -0.86797210947881964 0.20078172892890245 0.31804251470317724 -v -0.21926572386699461 0.1264185111142149 0.34118884638893127 -v -0.5702409062360565 1.980636107390974 -0.74383301118368594 -v 0.021844026381043907 0.26794646525900323 0.24977357666724265 -v 1.2959429119206218 -14.770030329369625 9.0999247414732203 -v 0.22799429042047506 -0.27602135943747569 1.6991225335836178 -v 0.47046682562490072 9.0145937432553449 19.207119314040369 -v 0.46897039344016567 2.252840500777427 1.8429994029347492 -v 1.6967133915306762 7.6522967411097413 -16.688557902155218 -v 0.47026292311376566 2.3656218346792124 2.0991399809510431 -v 0.19635760843777686 -1.6398773760200782 -0.97558704687956277 -v 0.25765513816160313 -0.024630958426081154 1.5627162684902631 -v -0.77627054759187608 0.12372366565908482 1.6577376096625762 -v 0.14590455587935305 -1.6646769539931905 -0.95368119934910855 -v -0.086581156621844388 -1.5268540207030841 -0.87885308834677023 -v 10.074339098893359 -13.238896187268658 -14.752697352509909 -v -1.1628226916018054 0.17852352879313185 1.457144533476614 -v -0.77948198576766714 0.33483404766206926 0.42901514567107513 -v -0.19784892631927928 1.2486504406562793 0.9729424209591202 -v -0.74336396330158816 0.90343059834550199 -2.4396743169907373 -v -0.90208450407192742 0.55910018826148833 -2.0496254170732628 -v -0.35208237431079809 3.3396611313697835 2.7276014266595547 -v -9.4085895530959665 3.1735212976287337 1.5039942160680875 -v -0.85716615025562304 1.2330369426774244 1.0911695358587237 -v 2.6109461900612732 -1.5592400912169231 -2.6618518639588218 -v -0.33600034972121606 0.90630029133686874 -2.7153225912265055 -v 3.2145969018222922 -0.33769101796423762 1.2328039491607155 -v -0.96819919510815655 0.86283548286333245 1.3032872413979864 -v -1.1250494332805574 0.25228504171182137 1.0637792967477699 +v 8.0648811201265325 4.807204315604956 -2.0731344784576473 +v -0.57445917097153654 2.1183651486092954 -0.98372799862608473 +v 0.47508148496808694 1.2165760859665786 1.6110864194053931 +v 0.50967263521954154 1.3786125185447353 1.2709009820691195 +v -4.1761260083304226 0.50144714804417234 0.57148588228283304 +v -3.1994834404874193 0.48217916733938737 1.16591057993887 +v 0.1117200933974499 1.6001365499227616 0.55433279143202618 +v -0.036946054788969028 1.180689016174933 1.4015413940589698 +v -3.4157390997014714 0.5623140433277235 0.86585918749006263 +v 0.37951692153998784 1.5279904109216209 0.86576168641649942 +v 1.0034864040568485 5.3751099634400479 -7.3224730842658445 +v 1.3897482654877311 -8.2189644512093292 5.2585302929438091 +v 0.90160434965750647 0.062161180334035143 0.32129521734635202 +v -1.6900904010287909 -0.399746315290744 0.44377227132923636 +v 5.2000269269811215 -2.009203525583688 1.8000971468221483 +v -1.5034328811509541 -0.14807995141802904 0.30549268041533717 +v -0.24279904634037563 -0.13298728541549609 0.37015226487654795 +v -0.73009048739124283 1.6793599061348121 -0.73258955442598928 +v 0.41363749008574929 0.14178511556672094 0.24560577783570503 +v 2.3000960747819024 -10.021560527061148 6.3801934569460927 +v 0.72071624035653481 -0.49022862701739556 1.8284451516589071 +v -1.0594356024876384 3.3643700904078813 8.0994124128317484 +v 0.43467101736898917 1.7228466639668421 1.3675578848817889 +v 1.7862949918824087 6.8741255929646838 -10.837442665887522 +v -0.1565756549520424 3.1463675643518769 3.3183207126966896 +v 1.4217482952297944 -1.1453947581924182 -1.4361285436349993 +v 0.69295012960286018 -0.13329312212914568 1.6527529530764922 +v -0.91989525445551001 0.058823408769557786 1.824782947553846 +v -0.17662030393911965 -1.6542881244661927 -0.99320583029866816 +v -2.7515035518173541 -0.13554830266753851 0.26614747081189627 +v 6.2423720601621868 -8.9745941019418662 -10.937815409146545 +v -1.4174514952841348 0.15123464417545276 1.6809873487440392 +v -1.0349260757477878 0.26469774151925402 0.69513710149573771 +v -0.32030460880593881 0.8897046214924933 1.3049837526153869 +v -1.2515001893781612 0.65225489249065416 -1.4315254575740957 +v -0.020353932825683246 2.9056805704380171 -4.3410400747715547 +v -0.55078227825792014 3.7049094990363973 3.8038778943110709 +v -9.1170942624922695 2.2038554261014398 2.1087312623885528 +v -1.1264138566007733 1.0228532309325593 1.3722083204174917 +v 2.0864406630405847 -1.175220803792896 -1.8308790154636934 +v -0.21121132789532207 0.61514267124283173 -2.0583643806167746 +v 3.038318232988217 -0.412684411807623 1.4026000117914021 +v -1.2679415727402128 0.62279479246372971 1.5979313798588151 +v -1.362980350066795 0.20951915310758887 1.2902589231093211 f 1 2 11 5 6 9 3 4 8 7 10 f 1 2 18 15 14 16 17 19 13 12 20 f 3 4 26 12 13 27 21 22 24 23 25 diff --git a/results/search/topology_58/resume.planes b/results/search/topology_58/resume.planes index bbe5a437..878bdb54 100644 --- a/results/search/topology_58/resume.planes +++ b/results/search/topology_58/resume.planes @@ -1,37 +1,37 @@ 36 --0.42635568976402283 -1.4969117641448975 -0.65857404470443726 -0.0097167789936065674 -0.17899893224239349 -0.30275207757949829 -0.31576809287071228 --0.030769806355237961 -0.011954842135310173 --0.31325337290763855 --0.74556648731231689 -0.39997303485870361 --0.75696128606796265 -0.43602761626243591 -0.076893597841262817 --0.021079255267977715 --0.12983523309230804 -0.17364659905433655 -0.80866885185241699 -0.95733433961868286 --0.42560485005378723 -0.04309280589222908 --0.034626826643943787 -0.060049396008253098 --0.69169443845748901 --0.84911108016967773 --1.0310524702072144 -0.20433433353900909 -0.640064537525177 -1.2240406274795532 -0.038905169814825058 -0.30354958772659302 -0.06065572053194046 --1.0645896196365356 -0.29210805892944336 --0.047453828155994415 +-0.36558058857917786 +1.4368530511856079 +0.64722549915313721 +-0.013166381977498531 +0.1336665153503418 +0.22549793124198914 +0.91466456651687622 +0.15274323523044586 +0.16576038300991058 +-0.29095494747161865 +-0.86639547348022461 +0.44995656609535217 +-0.78306287527084351 +0.69410526752471924 +0.20623704791069031 +-0.011198657564818859 +-0.24803969264030457 +0.2762310802936554 +0.61659461259841919 +0.74588954448699951 +-0.35741394758224487 +0.094263307750225067 +-0.148177370429039 +0.16991910338401794 +-0.44695553183555603 +-0.66285967826843262 +-0.70251327753067017 +0.22118879854679108 +0.6697726845741272 +1.3257509469985962 +0.031393151730298996 +0.22902512550354004 +0.038539908826351166 +-1.1862063407897949 +0.35632669925689697 +-0.11221525818109512 diff --git a/results/search/topology_6/resume.obj b/results/search/topology_6/resume.obj index c481f65f..1534b918 100644 --- a/results/search/topology_6/resume.obj +++ b/results/search/topology_6/resume.obj @@ -1,47 +1,47 @@ -v -0.14751010247362523 -1.2311298390642016 -0.044320772869701132 -v 0.032314607412680885 -1.1825601238886698 -0.12701758385319337 -v 2.9492224662572117 6.0426154317575307 0.4632310598866054 -v 2.0167474578243398 4.7305018043077816 0.57389970728240547 -v -0.0084486171184301948 -0.81665712312164651 0.0048292119316897253 -v -0.33369966432172793 -1.0305249463391795 0.11658912408155017 -v -2.6149408026953478 0.51179902189739868 1.8133708027076696 -v 1.1077640516873428 -1.6161726106045116 -0.83886692745430502 -v -5.3643209072627744 10.386081043273366 6.263562349574654 -v 2.0996021820538546 5.1249578911524321 0.64744676353723007 -v -1.9113954654972058 1.2393672127086133 1.6511299028565767 -v -1.6200445288469281 -0.40389315774470991 -0.21045642793024399 -v -1.7534253386605112 -0.58950674651360824 -0.046134929196952834 -v -1.7707711475753947 -3.6948819840615053 2.0964936885382426 -v -0.78205214622474606 -0.89153299901038396 -0.10429445650219726 -v 0.3322644134912639 -1.4453858329032263 -0.028241868173661144 -v -0.55659635489670467 -3.8279059762906749 1.8554750582295725 -v -2.376288129314414 -3.5770687746762486 2.1812548061355166 -v -0.3213526631983325 -3.4483088751185869 1.5297035246263688 -v -2.2878669158406288 -7.7207396108713349 5.0097191459884947 -v 1.9567702429340985 4.5791990549176171 -4.2172598584540317 -v -1.4576155099319397 -0.18422650107629204 -0.86743650549335127 -v 6.6701887611876547 11.118082018098056 -11.482788085648988 -v -1.6384476313941925 -0.42542346395835051 0.10478453897777144 -v -1.089122632332062 0.3693528614895904 1.6033196200120894 -v -8.3027011880685286 -9.5624129439601084 18.142041697201122 -v -1.735191406114023 -0.53819259165680899 1.7916830034883142 -v -0.79437519645879351 -0.94104170330577763 -0.064272667737793721 -v -1.5106530523724069 -0.4096283666770123 -0.6845373210174327 -v 0.41867942219245996 -1.4356389116701302 0.63580421066181925 -v -0.26332344124469537 -2.9443568300601228 1.7865510277804419 -v -0.23284358988784418 -2.8912896024235999 1.7475336581743985 -v 0.56303668329888756 -1.6416914426879958 -0.15320668877158372 -v -2.2639700332920936 -0.30066170468656123 1.8529409272884052 -v -1.4729059124565371 -0.6133345730271389 1.2636112931499883 -v -2.6204554154937356 0.47213866792775633 1.8361739497580307 -v -2.2335271862747756 -6.193138001729948 4.457745334779343 -v -0.90007565596604588 -0.77014361447675528 0.10821143789734999 -v 1.7689478760203394 -7.140059151393773 -7.170994528916947 -v 0.88881434985050334 -5.4792150264521657 -5.396324594908374 -v 0.59661610351827965 -0.54961781977841684 1.4233577157040556 -v 14.224337582977029 -4.1391764071870503 -38.47079473474242 -v 0.18962070269156592 -1.4180549288899906 1.5701402918997238 -v -9.6140154425801274 -18.344508871972849 23.408551148856677 +v -0.16699645707001201 -1.2228859307222488 -0.044987768528579324 +v 0.013538481312141318 -1.1741243951426941 -0.12801118345252074 +v 2.9215308129140807 6.0041259367086086 0.45298036113184476 +v 2.0230522604615442 4.7398496751808477 0.55961396718730894 +v -0.11159228096021527 -0.87294122900286708 0.030051359855435639 +v -0.3476992478178268 -1.0281926057096558 0.11118034119597621 +v -2.5722621843248032 0.38119319832388271 1.7374126901045761 +v 1.0911461606355046 -1.6086070829219987 -0.84128911062350487 +v -5.3637243113077044 10.406609765231153 6.2557199335166702 +v 2.1145349407525034 5.1753819085682595 0.64081982027976003 +v -1.9152241277048339 1.2716185955353692 1.6491975828583971 +v -1.6206168810924002 -0.40403582638473018 -0.2105309018228958 +v -1.7540448713075176 -0.58971508148844465 -0.046151273994186504 +v -1.7713968302216294 -3.6961874253139078 2.0972343645231044 +v -0.78232824938875745 -0.89184702795690374 -0.1043320718440679 +v 0.2068430711237699 -1.3898338393883978 -0.03245910657761264 +v -0.89068510745793039 -4.3316706552767918 2.2934761935643442 +v -2.3771277720059936 -3.5783326353980818 2.1820254418696341 +v -0.25640443408009506 -3.3081741939024778 1.4151080184217475 +v -2.2886741601581839 -7.7234641855967228 5.0114865840635305 +v 1.7892397667232578 4.3461301248497737 -4.0537090715663275 +v -1.4581306047390958 -0.18429172717744866 -0.8677428292886149 +v 6.7623714048477312 11.245311116723169 -11.719574068080739 +v -1.6390264970963258 -0.42557375432973077 0.10482163390651623 +v -1.0895075201770692 0.36948326479570254 1.6038859926690903 +v -8.2451313905988606 -9.4826562042783724 17.997826749405281 +v -1.7358042911110283 -0.53838250767204576 1.7923158759902766 +v -0.79465588537039711 -0.94137416729379808 -0.064295380850304729 +v -1.5111868399327348 -0.40977303108971969 -0.68477919011680377 +v 0.41882726533708936 -1.4361461177895145 0.63602877567553318 +v -0.28961856349538317 -2.9584425204620985 1.7925695062824036 +v -0.16687612773475108 -2.7447406793509805 1.6354464775844952 +v 0.56787702187662958 -1.6969460643189038 -0.22796155035607713 +v -2.4221118020389709 -0.229112596229224 1.8717307016414462 +v -1.3955327061702909 -0.63487420146811668 1.1069463448829109 +v -2.6026910633353388 0.16235285960906948 1.8632373119219305 +v -2.1395940131099676 -6.0931976474694549 4.2315396872406916 +v -0.90039368510681728 -0.77041569337805105 0.10824968992640782 +v 1.7451126609022374 -7.0964246726464681 -7.1242081719995003 +v 0.88912839872713678 -5.4811510758890076 -5.3982317991107251 +v 0.57883205737418542 -0.54000230991311438 1.4257815358380355 +v 14.120468208282789 -4.1148281440379737 -38.222886524119311 +v 0.18968760351174344 -1.4185559156431744 1.570694946875854 +v -9.6174248634913528 -18.35100241730817 23.416855383563828 f 1 2 8 3 4 10 11 9 7 5 6 f 1 2 12 13 18 14 15 20 19 17 16 f 3 4 23 21 22 13 12 24 25 27 26 diff --git a/results/search/topology_6/resume.planes b/results/search/topology_6/resume.planes index 54c7b4f3..df1d6ebf 100644 --- a/results/search/topology_6/resume.planes +++ b/results/search/topology_6/resume.planes @@ -1,37 +1,37 @@ 36 -0.095973066985607147 --0.05324014276266098 -0.17742486298084259 --0.16486990451812744 --0.41435381770133972 --0.60187000036239624 --0.88794422149658203 -0.63029080629348755 --0.0087887514382600784 -0.087398722767829895 --0.33615905046463013 --0.38893264532089233 --0.16545361280441284 --0.080217324197292328 --0.17953048646450043 --0.34799551963806152 --0.74021673202514648 -0.52015423774719238 --0.4485306441783905 --0.96164166927337646 --0.091862410306930542 --1.5563013553619385 --0.14783178269863129 --0.63348537683486938 -1.0491088628768921 --0.3180382251739502 -0.38698855042457581 -0.22455872595310211 -0.13434092700481415 -1.4174776077270508 -0.83846044540405273 --0.21519804000854492 -0.20960414409637451 --0.76523709297180176 --0.10473064333200455 --0.36517941951751709 +0.090620651841163635 +-0.050270970910787582 +0.16752989590167999 +-0.164928138256073 +-0.41450023651123047 +-0.60208266973495483 +-0.88825798034667969 +0.63051348924636841 +-0.0087918564677238464 +0.08742959052324295 +-0.33627781271934509 +-0.389070063829422 +-0.20817510783672333 +-0.1009301096200943 +-0.2258867472410202 +-0.34811845421791077 +-0.7404782772064209 +0.52033799886703491 +-0.44868913292884827 +-0.96198141574859619 +-0.091894872486591339 +-1.5568512678146362 +-0.14788398146629333 +-0.63370919227600098 +1.0329806804656982 +-0.31314897537231445 +0.3810393214225769 +0.22463805973529816 +0.13438840210437775 +1.4179782867431641 +0.83875662088394165 +-0.21527408063411713 +0.20967820286750793 +-0.76550751924514771 +-0.10476764291524887 +-0.36530840396881104 diff --git a/results/search/topology_7/resume.obj b/results/search/topology_7/resume.obj index a9485378..7c272263 100644 --- a/results/search/topology_7/resume.obj +++ b/results/search/topology_7/resume.obj @@ -1,47 +1,47 @@ -v 0.98951781925272342 -0.33185372029453247 2.9061141117263456 -v 1.7145777658587458 -1.8796639681695824 0.16650376801953595 -v 1.0460562008227174 -0.84059569184818439 -0.92138646174540073 -v 0.3972784516418566 0.21314021385042592 -1.5547579415490744 -v 1.0436883775607502 -0.40902445852873764 3.059693209155292 -v 13.486137558288723 -19.507911460933428 25.543767296695961 -v 0.99854804798283947 -0.71952430492216546 -0.55884079066226433 -v 0.21630875416300266 0.5981359664781889 -0.88332423151001627 -v 0.21381122330674779 0.74077585126733725 0.40485989722444859 -v 0.36720636484419189 0.35991738331202938 -0.67205554972477433 -v 2.734295480933544 -3.6731938978949477 -0.11683479396866703 -v -0.43702738998336166 -1.0212713321957327 -0.23792508437255844 -v 1.5449349700824153 -1.9523757380417044 -0.18619173835001968 -v -0.46688443155640685 -0.64783708167549403 0.58257748256817443 -v -0.3892196846481854 -0.62972781575520687 0.70936035300987843 -v -0.48294892937905498 -0.70924136198983534 0.42459790075813336 -v 23.535901075610475 -10.475004607451201 4.5203913444701627 -v 0.063903268956092371 -2.0717215592902081 -2.0874752643356178 -v 0.13879859439388298 -0.98988500378131761 0.46698340171472663 -v 0.060174743985402256 -0.91026436717386749 0.56246828972814722 -v -0.40043423831118702 -2.375065772740371 0.86315015777380677 -v -0.32866666887837986 -2.574819695609996 1.0016848240758531 -v 6.2283226377598577 -0.42738832994168657 -3.1300448499226334 -v -2.1125669699161227 3.0684815960597636 -2.9999381003179808 -v -4.5654229415252798 -2.0847940784137813 2.125997264994806 -v 0.9404156464748531 -4.4777687870654228 2.1103574883258212 -v -2.1365890008778505 -4.3795791147609666 3.1390096404437053 -v -0.39657023564218308 -0.59089066397485623 0.69335654572876226 -v -0.31634892370453194 1.0120997804656469 0.66786200308397792 -v -0.50511017004891301 -0.112143928921106 0.46639553848232507 -v 2.3906054096477241 -6.7983402636274315 5.9204216569429944 -v -0.27720166304275878 -1.2954054519587097 0.9605389530564008 -v 12.520055262551439 -1.0581984089552261 -8.9162096473748633 -v -0.77824928192088871 -0.63090750724863842 0.82975299785221135 -v -0.65475632136992812 -0.73473823155196483 0.46547808403342783 -v -18.508423656928194 -2.7351191105464308 6.4932948863794175 -v 0.90650738501529782 -0.70083456717937953 -0.44825698991549401 -v -0.67671592187003238 0.88073954783298969 1.4741432567716259 -v -2.7677288417246468 1.8544468951386235 1.2308576868346963 -v 0.22968818294207663 0.8789293472332429 0.38805175403405989 -v 0.69959017860826533 1.4189738907076985 -1.7088050890088544 -v -0.68014914710912544 -0.32036159263671432 0.7726730105957309 -v -3.315526565301353 -4.8770633738447104 4.5436454775832082 -v -9.0351268838734402 -3.1837706774968044 3.602717688470062 +v 0.98976447425811698 -0.33193643395299699 2.9068392802510314 +v 1.7167040961623474 -1.8837589316922672 0.16012684799926927 +v 1.046317132718825 -0.84080528889373563 -0.92161628245358151 +v 0.39737757918126726 0.21319339066279386 -1.5551457108036753 +v 1.0439479521724035 -0.40912558073788735 3.0604550352403854 +v 13.489502412401613 -19.512779400924476 25.550141388050655 +v 0.99879710741010275 -0.7197037001504587 -0.55898016059027855 +v 0.21636272254413119 0.59828512339052986 -0.88354453435741931 +v 0.21961506083861773 0.73025949179452121 0.39789885822531429 +v 0.36729797858756114 0.36000711186717821 -0.67222314002453831 +v 2.7349776025338381 -3.674110028614618 -0.11686381207432273 +v -0.43713638687765388 -1.0215260082691557 -0.23798439298142737 +v 1.5453204752784349 -1.9528626566575176 -0.18623820924809542 +v -0.4670010340328431 -0.64799876848695148 0.58272246488237611 +v -0.39248006201257402 -0.63062254840501408 0.70437332248920614 +v -0.48306948554207396 -0.70941822875628879 0.42470381878303487 +v 23.541775622843563 -10.477618397519953 4.5215188863335527 +v 0.063919293110979464 -2.0722381073873284 -2.0879959240416501 +v 0.13883307873677611 -0.99013179248649053 0.46709995997041298 +v 0.060189669900185219 -0.91049136581792423 0.56260859162324939 +v -0.40363718561915202 -2.36702102166557 0.85737542904981623 +v -0.32874866155213189 -2.5754616438859976 1.001934555820577 +v 6.2298760228368213 -0.42749486067714981 -3.1308256002658732 +v -2.1130936171336439 3.069246554659006 -3.000686094330443 +v -4.5626818109939906 -2.0771632600060248 2.1184200434143476 +v 0.94065028003760254 -4.4788855482469616 2.1108838734237283 +v -2.1371224075554043 -4.3806713773620691 3.1397928347817849 +v -0.39666913165003498 -0.5910380084725223 0.69352942723936972 +v -0.316427803823431 1.0123522232907538 0.66802852788847333 +v -0.50523613274569557 -0.11217189652944741 0.46651181265228059 +v 2.391201854517544 -6.8000361618145249 5.9218987844472837 +v -0.27727081722593527 -1.2957283802388437 0.96077842396578506 +v 12.523177288830093 -1.0584622195244155 -8.9184331410068651 +v -0.77615599770866317 -0.63298802110483066 0.82321268406623926 +v -0.65491961973388413 -0.73492144222401878 0.46559417449836599 +v -18.479078636895117 -2.7339658394641173 6.4780487978475021 +v 0.90673340094954291 -0.70100928762381554 -0.44836868430215371 +v -0.67688456836880229 0.88095929863367395 1.4745105990219809 +v -2.7571248185543018 1.8534909878510899 1.2215888375947257 +v 0.23672418360242958 0.87913465548232783 0.37978628731029485 +v 0.69976472896502773 1.4193276994221731 -1.7092312395635025 +v -0.6756811968823816 -0.31492486389227159 0.7647509922304947 +v -3.3163531211234858 -4.878279280876356 4.544777810163291 +v -9.0501811987939522 -3.1805149673487949 3.6010195745364677 f 1 2 9 7 3 4 8 10 11 6 5 f 1 2 15 14 16 20 19 13 12 18 17 f 3 4 12 13 26 27 22 21 25 24 23 diff --git a/results/search/topology_7/resume.planes b/results/search/topology_7/resume.planes index 8f47462b..7a56124f 100644 --- a/results/search/topology_7/resume.planes +++ b/results/search/topology_7/resume.planes @@ -1,37 +1,37 @@ 36 -0.46109083294868469 -0.26667854189872742 --0.028635198250412941 --0.38124793767929077 --0.79226624965667725 -0.3467099666595459 --0.24658511579036713 --0.56288188695907593 --0.68387973308563232 --0.57009989023208618 -0.034007586538791656 -0.34437468647956848 -0.14854201674461365 --0.63156294822692871 -0.23037417232990265 -0.36234021186828613 -0.85331588983535767 -0.30097094178199768 --0.23519419133663177 -0.056672342121601105 --0.095886804163455963 -0.14991120994091034 -0.041756778955459595 -0.48482328653335571 --0.032797187566757202 --0.024083457887172699 --0.035116482526063919 --0.015019661746919155 --0.14656899869441986 --0.15453794598579407 --0.49924120306968689 --2.389434814453125 --1.2652962207794189 -0.31931564211845398 --0.004274189006537199 -0.26649388670921326 +0.46120581030845642 +0.26674506068229675 +-0.028642317280173302 +-0.38134300708770752 +-0.79246389865875244 +0.34679639339447021 +-0.24664661288261414 +-0.56302225589752197 +-0.68405026197433472 +-0.57024204730987549 +0.034016069024801254 +0.34446054697036743 +0.14857906103134155 +-0.63172042369842529 +0.23043161630630493 +0.36243057250976562 +0.85352873802185059 +0.3010459840297699 +-0.23525284230709076 +0.056686475872993469 +-0.095910720527172089 +0.14820899069309235 +0.041282642632722855 +0.47931826114654541 +-0.032805364578962326 +-0.024089464917778969 +-0.035125240683555603 +-0.015023407526314259 +-0.14660555124282837 +-0.15457648038864136 +-0.49936571717262268 +-2.3900306224822998 +-1.2656117677688599 +0.31939524412155151 +-0.0042752549052238464 +0.26656034588813782 diff --git a/results/search/topology_8/resume.obj b/results/search/topology_8/resume.obj index 03d9006d..1d3b4835 100644 --- a/results/search/topology_8/resume.obj +++ b/results/search/topology_8/resume.obj @@ -1,47 +1,47 @@ -v -1.3139927595989556 -0.48909995533959377 -3.1918976420816003 -v -0.16392867584319015 -0.9003414395365239 -1.809253530534833 -v -0.10784358205076011 -0.10313601322152516 2.5843739419262537 -v 2.0333770256961499 -2.1560596721586083 -1.6555593882252082 -v 1.512861734651582 -2.0988267988167748 -2.9636434967408851 -v -1.3328144829316975 0.14661490388638329 0.11502882021894267 -v 1.1944124838602124 -1.8942935858623138 -2.8665721962310169 -v -0.72523340406610037 0.13123229912539233 1.9141265776131093 -v 0.74183341471874042 -0.9686717077549627 0.63246470853368164 -v 1.9707540412212707 -2.5333926715204398 -3.8468110822288324 -v 2.4032110711684163 -3.7653827826079969 -9.0299000812631061 -v -0.8076151770224046 0.86659593006126201 -1.0884262521790902 -v -0.96786678180981833 1.0434939321227004 -1.1647655845764977 -v 0.5209649903398117 -0.63211211362465791 -0.48676819362840651 -v 1.8575969354555442 0.62160136953902656 2.8044261353704001 -v -0.87774005892811513 1.3886232785107702 -0.68938798658241973 -v -1.0403098391177232 0.84434186686471158 -1.4707529136700312 -v -0.77376375733423519 0.67383839811140267 -1.2234353149219559 -v 1.1610154880719741 0.55010758313886898 1.6551730817860753 -v 1.6810297720322172 7.5067737244754591 9.2273884193908025 -v 1.6142757451574854 -1.6817286931004956 -2.0531813728939348 -v 2.0957094691551017 -2.1572610910455947 -2.7703176332804995 -v -0.91049757855918112 0.97350783092503113 -1.0247351799833375 -v 0.071252155897190583 -0.0070570209440529294 -2.3034757591755546 -v 0.90705152849684145 -1.0532505261860894 0.1865723324786418 -v -1.0563431328416419 1.0764182282742238 -0.11093108859291011 -v -1.0230678406740141 1.0740241589910922 -0.67635864693967407 -v 1.7649116487388625 -2.1655636174450663 -2.965138500921781 -v -1.0384724876326252 0.51660140373262986 1.0324960770962111 -v -1.3214729973420027 0.22000488197231369 0.2717332708086912 -v -0.59134782020724563 -0.40853172662592707 -0.62573879616614703 -v -1.2435643621668808 0.52781704378747574 0.94528880453464847 -v -0.59735810551411883 0.44946501200567307 -1.375864884659685 -v -0.70897324053909472 0.53952294846752546 -1.3272971430576037 -v 2.0381625962065364 1.5025583260101976 -0.0051815239164563209 -v 22.745296959468163 103.28808508176195 84.803345861843638 -v 1.8313928436642442 13.283886427223752 9.2807492603608672 -v 11.043206201563374 10.626946651325456 -156.64043947705707 -v 2.7845698434777311 -0.77071860544543092 -14.425771596035762 -v 3.2995844126826195 10.654710341112766 -18.210551595068928 -v 0.52851467524081297 5.0654599706174182 -7.7208205246266637 -v 2.168492484148735 -2.5270080159563415 -4.246744446806634 -v -1.5762067910168693 -1.436253789627868 4.8327463957224621 -v -2.0380031952824509 -1.0381871054992511 6.2799406784333751 +v -1.2106194143373465 -0.47459345183102619 -2.8098392696971088 +v -0.081387913741651802 -0.8730856910434166 -1.5181417226451401 +v 0.31403085343891179 -0.16873864658369861 2.4332865379531574 +v 2.1621261058050951 -1.9268183879688683 -0.038310747746569618 +v 1.4213756006502525 -2.0617032284994874 -2.5288140399970009 +v -1.142819467538684 0.17200194571730662 0.047989889311122136 +v 1.0588005560738221 -1.8061862680711585 -2.4145986552615635 +v -0.66851793668655213 0.19553083832738313 1.3821031494822762 +v 0.96552384758828236 -0.95017156566371652 0.89163153372625414 +v 2.1244064472887936 -2.7781764628185828 -3.6667533240289951 +v 2.4274904865191038 -3.9298818858524371 -7.6520578230059879 +v -0.51693658126395192 0.3397668941004876 -1.1379756499005707 +v -0.55785659310634206 0.37354523423578617 -1.1687453928231777 +v 0.63328293045644291 -0.63930235575177963 -0.29761338541028864 +v 2.111074564234201 0.32851283018113508 2.6279101600993733 +v -0.56999561553332179 1.1939632511143492 -0.505792875134213 +v -0.9752956031724539 0.59551721281299519 -1.5843231887870042 +v -0.50867471341701387 0.27674339265463754 -1.1783739895616083 +v 1.3990105787980938 0.42165860213257922 1.6822561119703761 +v 2.0661188075733281 6.4114788955015367 7.6080665758140267 +v 1.7288812104829421 -1.6365309897257121 -1.4823813665091632 +v 2.2420277026659985 -2.1185311762907033 -2.0664868219112953 +v -0.55088989264233035 0.37027458955698905 -1.1223220039495623 +v -0.20145131305624236 0.038536759465524803 -1.5783511335159532 +v 1.2200713836760779 -1.0918124631136525 0.20590559117924889 +v -0.97702941745009109 0.81383255598977666 0.081497089332781186 +v -0.97583078489460573 0.80824122047741831 0.0059811175632586699 +v 1.8970842181433878 -2.2527300684553491 -2.5699979598938665 +v -0.99709002678473468 0.47101071981662856 0.73462416688718934 +v -1.1344291403102762 0.21690833722013325 0.14168056196835638 +v -0.43059335020056905 -0.4470390675626591 -0.66502216614402498 +v -1.0607848169205962 0.47663856376204933 0.70112120265642575 +v -0.44133989048900957 0.1902870528963945 -1.2342805157431485 +v -0.47958503902756078 0.21707562315643145 -1.2223563273859952 +v 2.2396960668123511 1.340570980802418 0.21159010087949504 +v 30.31460827925396 135.60016217295259 107.4416581084119 +v 2.1799816395012974 14.282412421113133 9.9504740223149213 +v 1380.2992409686672 956.01841374760932 -32241.858364890955 +v 2.6480556966382598 -1.4233856696931795 -11.300301425653275 +v 3.3674658675567462 11.965307711266059 -19.850065530417908 +v 0.16907882903187932 4.3538057826493812 -6.328581522124697 +v 2.306818585931266 -2.7783936869043133 -4.0351839119599564 +v -1.4945766350671708 -1.7661230716489253 4.8662640276775804 +v -1.7881146084595203 -1.5408511291241969 5.7322219152538691 f 1 2 11 4 3 8 9 10 7 5 6 f 1 2 18 13 12 16 19 20 15 14 17 f 3 4 22 21 25 24 13 12 23 27 26 diff --git a/results/search/topology_8/resume.planes b/results/search/topology_8/resume.planes index 4ed46324..fca7e8a2 100644 --- a/results/search/topology_8/resume.planes +++ b/results/search/topology_8/resume.planes @@ -1,37 +1,37 @@ 36 --0.2777579128742218 --0.47504794597625732 -0.08974108099937439 -0.2421945184469223 -0.15197382867336273 --0.15625226497650146 --0.033098652958869934 --0.030768377706408501 --0.0018175727454945445 --0.051830936223268509 --0.19791418313980103 -0.096441149711608887 -0.19658581912517548 -0.76407843828201294 --0.9650309681892395 --0.12034571915864944 --0.13936062157154083 --0.018157601356506348 --0.74977576732635498 --0.33401748538017273 --0.37604284286499023 --0.14464953541755676 -0.93610811233520508 -0.46057507395744324 -1.0213053226470947 --0.61529439687728882 -0.49513968825340271 -1.9903569221496582 --0.05283224955201149 -0.11134906113147736 --1.261924147605896 -0.35681074857711792 --0.075774736702442169 --0.75222539901733398 --0.22512920200824738 --0.17810915410518646 +-0.24143567681312561 +-0.38398894667625427 +0.092606939375400543 +0.25930511951446533 +0.14969912171363831 +-0.18050786852836609 +-0.020673014223575592 +-0.023741476237773895 +0.0014297268353402615 +-0.067097969353199005 +-0.18779309093952179 +0.096018992364406586 +0.1715724766254425 +0.59850513935089111 +-0.79429155588150024 +-0.095420300960540771 +-0.13265877962112427 +-0.0080193756148219109 +-0.66290402412414551 +-0.30417203903198242 +-0.32802832126617432 +-0.14690263569355011 +0.79514938592910767 +0.41285628080368042 +1.2311452627182007 +-0.74058246612548828 +0.60998386144638062 +2.2069590091705322 +-0.059474460780620575 +0.092566698789596558 +-1.1094293594360352 +0.28860950469970703 +-0.038978651165962219 +-0.63754981756210327 +-0.18746988475322723 +-0.1673445999622345 diff --git a/results/search/topology_9/resume.obj b/results/search/topology_9/resume.obj index 23dbe608..3f029d43 100644 --- a/results/search/topology_9/resume.obj +++ b/results/search/topology_9/resume.obj @@ -1,47 +1,47 @@ -v 0.580229697637204 -0.11184027863027367 6.3597460286389067 -v 0.70595781546957381 0.2555321772049407 7.7153515586672654 -v -1.179698829863435 -0.12768154364233342 -1.6093534758040349 -v -1.3221160175156321 0.022073615811272682 -1.9299619678027704 -v -0.63080605084773622 0.083720020228142095 1.3193377146568011 -v -0.90331706077809981 0.51416030160492954 1.0147830714844228 -v 0.23172411609556104 0.13384653260242746 5.3158950267128642 -v -0.95576361540874577 -0.030404901607744526 -0.39083662562437854 -v -1.2783581806886906 0.71195564237118703 -0.25153051307464025 -v -0.64438378618327019 0.063630161235587526 1.2149872114962537 -v 0.56133070602371726 0.39017867643141824 7.3523416211731512 -v 2.7019718402633681 -0.80541331296213414 1.2657703565535101 -v -1.3268244668750369 -1.8609314445652705 1.3114301171117533 -v 9.0468567609023278 0.26206016425637435 -1.2198459862331914 -v 0.38257352238000519 -0.13400046364359866 6.4821935177281764 -v -3.6672648376235939 -2.9495754703521304 -0.59134046403139751 -v -1.4255445958860238 0.07045470660428832 9.2545042332025353 -v -1.413718201441307 0.60600077590779156 11.414888736360723 -v -5.8354960487412502 -0.94374620935161224 9.877340651328538 -v -4.1971140932906552 -3.3676800544509233 -1.7186036788011707 -v 3.8412091194025799 0.10501749184890979 0.19876521291538135 -v -1.3398681413181386 -0.1651871796086784 -1.6152165275840789 -v 3.3575527568376056 0.49648084544156096 -0.68831170193351732 -v -0.80811618691819032 -0.676541187082769 -0.50046918094946591 -v -0.81294294815250245 0.22339064332631703 -2.0527192368421909 -v -1.1839512996063837 -0.97635405557299615 -0.14939164604399968 -v -1.101166193466885 0.20563420010429231 -2.1489372839642868 -v -0.35612200059566068 1.7393901225576816 -0.17815941195701052 -v -0.59771819558251738 1.6222872972427724 -0.017487936215119904 -v 0.43356979841135945 0.30687111803135375 0.86430174800058235 -v -3.1082010035552812 -0.48286180938852991 2.4192075426774471 -v 3.2106832650888499 0.42977689451737427 0.073711058518102668 -v 0.22547987742742875 0.14087197124660572 1.0589409312476521 -v -0.26863280789306787 1.9686224703807709 -0.15146936878153711 -v -0.97424416361251698 -0.044014836664783584 -0.089907213662750785 -v -1.2175209568853722 -1.0045411391385803 0.38176779090432333 -v 1.0214174251168162 -0.25426109536608255 9.7081974949756749 -v -0.20351908130947319 2.0877574465296216 -0.044646188923707308 -v -0.92118698411273825 0.12568115293456544 -0.37048213812839426 -v 0.18421169581602376 0.21771196673424259 -0.45315600305414322 -v 2.6880489062807329 0.79876915476159349 -0.584629454158619 -v -0.54813404821465872 2.066068858756192 0.99403631051792729 -v 0.69321435108150675 0.49771149737726372 6.4033277387835685 -v 0.7971189956105279 0.61835296331569656 -7.0978420838996144 +v -0.006912127704871816 -0.32443221599687805 0.22196928849191211 +v 0.95627737418131187 -0.7137016195401511 0.62415761715188389 +v 0.10992227069813015 1.2100668646383899 1.2981955436965951 +v -0.76687541832670914 0.070738171148774898 -0.038175552680638547 +v 0.71717564659077959 -1.4755745441533061 -0.033343193237474922 +v 4.1210440938687523 -4.8605363857703159 0.08278422058852955 +v 0.31968182909593756 -7.1803229477102022 -4.0093225587997035 +v 0.17513760531355527 2.8191962799212313 2.3877944927343573 +v -1.2982218387653339 0.7609716382707199 0.048822733362943904 +v 0.81289870200864001 0.15940702981892546 1.0937963567534439 +v -1.1125450637698544 -0.82820224910193785 -0.85718658292039285 +v -0.77584600962854322 -0.014775876570889718 -0.044888879219433409 +v 0.16958841753315443 -0.42134109040115197 1.5501599997394722 +v -1.4767562168184343 0.24845679224541797 0.64524008810814393 +v 0.61040138794637488 -0.5808818910412622 0.82134043948251068 +v -1.5407549942911127 0.28439378304702645 0.12449986646898537 +v 1.8606394663221406 -1.0931824046621188 1.687779031254194 +v 1.5158210073587959 -0.96585995149876014 2.1340705456410465 +v 7037.1241504455093 -3172.1532587093034 19016.494386989947 +v -1.0442434426222684 0.11230229131718995 -1.0695639806452468 +v -0.27052489132412172 -1.0728626015312326 0.88686440330285043 +v 0.54744205648772848 0.8631225496214433 2.0513008248762064 +v -2.5174503513297246 -0.65345802003404074 -2.8524129650574999 +v -1.1720634700680765 1.2560291495454863 -0.81703677509556771 +v 0.19012809862013269 5.872643968809836 0.99093149911089151 +v -1.0079080174889838 16.326780779838732 -1.9667775931402387 +v -1.3733253291545751 0.5209947015784 -1.0791736079940917 +v -1.7965172951406929 -1.2320954218517994 3.5948574193022216 +v 3.3810497969346955 -4.7724972573726134 1.1239394005530396 +v -0.65074148763854001 1.0947283658856843 -2.0717350692836249 +v 14.167935839156513 -17.28379798936782 4.4290881765025265 +v -0.050886445286717499 -0.82771393938517979 0.13129156367548567 +v -1.1571452198279546 0.83476738956315155 -0.8321482781924725 +v -0.60102109564561346 0.97195331594747481 3.7070537083616286 +v 0.33127663675573743 1.4215556506579348 2.7891036012478598 +v -6.9836595691715697 1.9744244109433988 13.223982220959485 +v 0.53437465923849559 -0.83884756439300967 0.72088549448787109 +v 0.29136902556599342 -0.95748562909365209 0.95900419103060686 +v 0.60739899374339557 3.9723326876011096 1.2371970454250627 +v -0.77211782921075411 1.8645979942734203 -0.34885427737622077 +v -2.7125791303577849 1.1575020455776204 -10.129599015285145 +v 1.0391534218967138 -1.294867867865884 2.9784201349973025 +v -0.15436228331571744 0.0029205369134637669 -3.2195788650618136 +v -1.1345051562946791 0.28731208240647671 -0.85966575732049433 f 1 2 11 7 5 6 8 9 4 3 10 f 1 2 18 17 19 20 16 14 12 13 15 f 3 4 27 25 26 24 23 21 12 13 22 diff --git a/results/search/topology_9/resume.planes b/results/search/topology_9/resume.planes index e7c3e642..4b00a229 100644 --- a/results/search/topology_9/resume.planes +++ b/results/search/topology_9/resume.planes @@ -1,37 +1,37 @@ 36 --0.69248080253601074 --0.3297400176525116 -0.1535857617855072 -0.42914822697639465 --1.6207332611083984 -0.39942058920860291 -0.13855290412902832 --0.54246443510055542 --0.3149297833442688 -0.16865012049674988 -0.59093278646469116 -0.68428528308868408 --0.80154013633728027 -0.28619378805160522 -0.16939745843410492 --0.039788108319044113 -0.068277083337306976 --0.45598602294921875 --0.91856777667999268 -0.20960384607315063 --0.046931076794862747 --0.040998116135597229 -0.1757301390171051 --0.004132760688662529 --0.01407316792756319 -0.17748250067234039 -0.0094031859189271927 -0.75282734632492065 -1.5704337358474731 -0.28256571292877197 -0.017255781218409538 --0.021702835336327553 --6.1128484958317131e-05 --1.090721607208252 -0.90370118618011475 --0.34301048517227173 +-0.15785783529281616 +-0.15077637135982513 +0.23211608827114105 +-0.11033192276954651 +-0.27887445688247681 +-0.0056857536546885967 +-0.54495608806610107 +0.031184695661067963 +0.33096092939376831 +-0.33512267470359802 +-0.34416750073432922 +-0.20908378064632416 +0.82723695039749146 +-0.47951376438140869 +0.60530591011047363 +-1.3063466548919678 +0.69794976711273193 +0.20871597528457642 +1.7132145166397095 +0.52819877862930298 +1.1729921102523804 +0.4142073392868042 +0.29730671644210815 +-0.10367080569267273 +-0.12885022163391113 +-0.011746439151465893 +0.12768150866031647 +0.1659940630197525 +-0.69714593887329102 +-0.1779387891292572 +-1.2670061588287354 +-0.026104889810085297 +-0.52307987213134766 +-0.41362026333808899 +-0.33074778318405151 +0.097904719412326813 diff --git a/src/CudaSearch/cuda_search.cu b/src/CudaSearch/cuda_search.cu index 95a760a1..7a520c6f 100644 --- a/src/CudaSearch/cuda_search.cu +++ b/src/CudaSearch/cuda_search.cu @@ -52,6 +52,32 @@ struct DeviceBatchRunConfig { int fresh_denominator; float step_scale; int refresh_fresh_cohort; + int baseline_weight; + int replica_exchange_weight; + int adaptive_move_weight; + int pbt_weight; + int injected_weight; + int total_weight; + int replica_group_size; + float replica_temperature_ratio; + float pbt_exploit_chance; + float pbt_state_jitter; + float injected_state_jitter; + int injection_active; +}; + +enum DeviceCohort : int { + kBaselineCohort = 0, + kReplicaExchangeCohort = 1, + kAdaptiveMoveCohort = 2, + kPbtCohort = 3, + kInjectedCohort = 4, +}; + +struct DeviceStrategyCounters { + unsigned long long additional_evaluations; + unsigned long long replica_exchange_accepts; + unsigned long long pbt_exploits; }; struct Vec2 { @@ -95,6 +121,8 @@ struct DeviceChain { float step; float temperature; int stagnant; + std::uint8_t move_weights[7]; + std::uint8_t reserved; std::uint64_t chain_id; std::uint64_t iterations; }; @@ -185,6 +213,92 @@ __device__ __forceinline__ int random_index(DeviceRng& rng, int count) { return static_cast(random_u32(rng) % static_cast(count)); } +__device__ __forceinline__ DeviceCohort chain_cohort( + std::uint64_t chain_id, + const DeviceBatchRunConfig& config) { + const int residue = static_cast( + chain_id % static_cast(config.total_weight)); + int boundary = config.baseline_weight; + if (residue < boundary) { + return kBaselineCohort; + } + boundary += config.replica_exchange_weight; + if (residue < boundary) { + return kReplicaExchangeCohort; + } + boundary += config.adaptive_move_weight; + if (residue < boundary) { + return kAdaptiveMoveCohort; + } + boundary += config.pbt_weight; + if (residue < boundary) { + return kPbtCohort; + } + return kInjectedCohort; +} + +__device__ __forceinline__ int cohort_start( + DeviceCohort cohort, + const DeviceBatchRunConfig& config) { + if (cohort == kBaselineCohort) { + return 0; + } + if (cohort == kReplicaExchangeCohort) { + return config.baseline_weight; + } + if (cohort == kAdaptiveMoveCohort) { + return config.baseline_weight + config.replica_exchange_weight; + } + if (cohort == kPbtCohort) { + return config.baseline_weight + config.replica_exchange_weight + + config.adaptive_move_weight; + } + return config.baseline_weight + config.replica_exchange_weight + + config.adaptive_move_weight + config.pbt_weight; +} + +__device__ __forceinline__ int cohort_weight( + DeviceCohort cohort, + const DeviceBatchRunConfig& config) { + if (cohort == kBaselineCohort) { + return config.baseline_weight; + } + if (cohort == kReplicaExchangeCohort) { + return config.replica_exchange_weight; + } + if (cohort == kAdaptiveMoveCohort) { + return config.adaptive_move_weight; + } + if (cohort == kPbtCohort) { + return config.pbt_weight; + } + return config.injected_weight; +} + +__device__ __forceinline__ std::uint64_t cohort_ordinal( + std::uint64_t chain_id, + DeviceCohort cohort, + const DeviceBatchRunConfig& config) { + const std::uint64_t block = + chain_id / static_cast(config.total_weight); + const int local = static_cast( + chain_id % static_cast(config.total_weight)) - + cohort_start(cohort, config); + return block * static_cast(cohort_weight(cohort, config)) + + static_cast(local); +} + +__device__ __forceinline__ std::uint64_t chain_from_cohort_ordinal( + std::uint64_t ordinal, + DeviceCohort cohort, + const DeviceBatchRunConfig& config) { + const std::uint64_t weight = + static_cast(cohort_weight(cohort, config)); + return (ordinal / weight) * static_cast(config.total_weight) + + static_cast(cohort_start(cohort, config)) + + ordinal % weight; +} + __device__ __forceinline__ float random_normal(DeviceRng& rng) { if (rng.has_spare_normal != 0) { rng.has_spare_normal = 0; @@ -599,13 +713,63 @@ __device__ __forceinline__ void add_to_plane( state[offset + 2] += delta.z; } +__device__ __forceinline__ void reset_move_weights(DeviceChain& chain) { +#pragma unroll + for (int move_type = 0; move_type < 7; ++move_type) { + chain.move_weights[move_type] = 16; + } +} + +__device__ __forceinline__ int choose_adaptive_move(DeviceChain& chain) { + int total = 0; +#pragma unroll + for (int move_type = 0; move_type < 7; ++move_type) { + total += static_cast(chain.move_weights[move_type]); + } + int choice = random_index(chain.rng, total); +#pragma unroll + for (int move_type = 0; move_type < 7; ++move_type) { + choice -= static_cast(chain.move_weights[move_type]); + if (choice < 0) { + return move_type; + } + } + return 6; +} + +__device__ __forceinline__ void update_adaptive_move( + DeviceChain& chain, + int move_type, + bool improved, + bool accepted) { + const int current = static_cast(chain.move_weights[move_type]); + if (improved) { + chain.move_weights[move_type] = + static_cast(min(255, current + 4)); + } else if (!accepted && (chain.iterations & 7ULL) == 0 && current > 2) { + chain.move_weights[move_type] = static_cast(current - 1); + } + + // Periodic shrinkage keeps every move reachable and lets the selector + // recover when the useful local geometry changes. + if ((chain.iterations & 1023ULL) == 1023ULL) { +#pragma unroll + for (int index = 0; index < 7; ++index) { + chain.move_weights[index] = static_cast( + max(2, (static_cast(chain.move_weights[index]) + 1) / 2)); + } + } +} + __device__ void apply_move( float* state, float step, bool large_jump, - DeviceRng& rng) { + DeviceRng& rng, + int selected_move_type = -1) { const float scaled_step = step * (large_jump ? 3.5f : 1.0f); - const int move_type = random_index(rng, 7); + const int move_type = + selected_move_type >= 0 ? selected_move_type : random_index(rng, 7); const int a = random_index(rng, kPlaneCount); const int b = random_index(rng, kPlaneCount); @@ -705,10 +869,11 @@ __global__ void initialize_chains_kernel( chain.temperature = fmaxf( config.minimum_temperature, config.initial_temperature * (0.75f + 0.5f * random_uniform(chain.rng))); + reset_move_weights(chain); chains[chain_index] = chain; } -__global__ void search_chains_kernel( +__global__ __launch_bounds__(kThreadsPerBlock, 4) void search_chains_kernel( DeviceChain* chains, int chain_count, const DeviceTopology* topology, @@ -720,8 +885,12 @@ __global__ void search_chains_kernel( } DeviceChain chain = chains[chain_index]; + const DeviceCohort cohort = chain_cohort(chain.chain_id, batch_config); + const bool adaptive_moves = + cohort == kAdaptiveMoveCohort || cohort == kPbtCohort; if (batch_config.refresh_fresh_cohort != 0 && - static_cast(chain.chain_id % + !(batch_config.injection_active != 0 && cohort == kInjectedCohort) && + static_cast(cohort_ordinal(chain.chain_id, cohort, batch_config) % static_cast(batch_config.fresh_denominator)) < batch_config.fresh_numerator) { randomize_state(chain.current, chain.rng); @@ -745,9 +914,23 @@ __global__ void search_chains_kernel( config.minimum_temperature, config.initial_temperature * (0.75f + 0.5f * random_uniform(chain.rng))); chain.stagnant = 0; + reset_move_weights(chain); + } + + float temperature_multiplier = 1.0f; + if (cohort == kReplicaExchangeCohort && + batch_config.replica_group_size > 1) { + const int lane = static_cast( + cohort_ordinal(chain.chain_id, cohort, batch_config) % + static_cast(batch_config.replica_group_size)); + temperature_multiplier = expf( + logf(batch_config.replica_temperature_ratio) * + static_cast(lane) / + static_cast(batch_config.replica_group_size - 1)); } for (int iteration = 0; iteration < config.iterations_per_kernel; ++iteration) { float candidate[kPlaneValueCount]; + int move_type = -1; if (!isfinite(chain.current_metrics.energy)) { randomize_state(candidate, chain.rng); } else { @@ -755,14 +938,20 @@ __global__ void search_chains_kernel( candidate[value_index] = chain.current[value_index]; } const bool large_jump = random_uniform(chain.rng) < config.jump_chance; + if (adaptive_moves) { + move_type = choose_adaptive_move(chain); + } apply_move( candidate, chain.step * batch_config.step_scale, large_jump, - chain.rng); + chain.rng, + move_type); } const DeviceMetrics candidate_metrics = evaluate_state(candidate, topology, config); + const bool improved_current = + metric_better(candidate_metrics, chain.current_metrics); bool accepted = false; if (isfinite(candidate_metrics.energy)) { if (!isfinite(chain.current_metrics.energy) || @@ -774,7 +963,9 @@ __global__ void search_chains_kernel( fminf( 0.0f, (chain.current_metrics.energy - candidate_metrics.energy) / - fmaxf(1.0e-6f, chain.temperature))); + fmaxf( + 1.0e-6f, + chain.temperature * temperature_multiplier))); accepted = random_uniform(chain.rng) < expf(exponent); } } @@ -784,6 +975,13 @@ __global__ void search_chains_kernel( } chain.current_metrics = candidate_metrics; } + if (adaptive_moves && move_type >= 0) { + update_adaptive_move( + chain, + move_type, + improved_current, + accepted); + } if (metric_better(candidate_metrics, chain.best_metrics)) { for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { @@ -824,6 +1022,229 @@ __global__ void search_chains_kernel( chains[chain_index] = chain; } +__global__ void inject_seed_states_kernel( + DeviceChain* chains, + int chain_count, + const DeviceTopology* topology, + const DevicePlaneState* injected_states, + int injected_state_count, + DeviceConfig config, + DeviceBatchRunConfig batch_config, + DeviceStrategyCounters* counters) { + const int chain_index = blockIdx.x * blockDim.x + threadIdx.x; + if (chain_index >= chain_count || + injected_state_count <= 0 || + chain_cohort( + static_cast(chain_index), + batch_config) != kInjectedCohort) { + return; + } + + DeviceChain chain = chains[chain_index]; + const std::uint64_t ordinal = cohort_ordinal( + chain.chain_id, + kInjectedCohort, + batch_config); + const int seed_index = static_cast( + ordinal % static_cast(injected_state_count)); + for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { + chain.current[value_index] = + injected_states[seed_index].values[value_index]; + } + if (ordinal >= static_cast(injected_state_count) && + batch_config.injected_state_jitter > 0.0f) { + for (int plane_index = 0; plane_index < kPlaneCount; ++plane_index) { + add_to_plane( + chain.current, + plane_index, + multiply( + random_vec3(chain.rng), + batch_config.injected_state_jitter)); + } + } + if (!normalize_state(chain.current)) { + randomize_state(chain.current, chain.rng); + } + chain.current_metrics = evaluate_state(chain.current, topology, config); + atomicAdd(&counters->additional_evaluations, 1ULL); + if (!isfinite(chain.current_metrics.energy)) { + randomize_state(chain.current, chain.rng); + chain.current_metrics = evaluate_state(chain.current, topology, config); + atomicAdd(&counters->additional_evaluations, 1ULL); + } + for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { + chain.best[value_index] = chain.current[value_index]; + } + chain.best_metrics = chain.current_metrics; + chain.step = fmaxf( + config.minimum_step, + config.initial_step * (0.65f + 0.7f * random_uniform(chain.rng))); + chain.temperature = fmaxf( + config.minimum_temperature, + config.initial_temperature * (0.75f + 0.5f * random_uniform(chain.rng))); + chain.stagnant = 0; + reset_move_weights(chain); + chains[chain_index] = chain; +} + +__global__ void replica_exchange_kernel( + DeviceChain* chains, + int chain_count, + DeviceBatchRunConfig batch_config, + int exchange_phase, + DeviceStrategyCounters* counters) { + const int chain_index = blockIdx.x * blockDim.x + threadIdx.x; + if (chain_index >= chain_count || + batch_config.replica_exchange_weight <= 0 || + batch_config.replica_group_size <= 1 || + chain_cohort( + static_cast(chain_index), + batch_config) != kReplicaExchangeCohort) { + return; + } + + const std::uint64_t ordinal = cohort_ordinal( + static_cast(chain_index), + kReplicaExchangeCohort, + batch_config); + const int lane = static_cast( + ordinal % static_cast(batch_config.replica_group_size)); + if ((lane & 1) != exchange_phase || + lane + 1 >= batch_config.replica_group_size) { + return; + } + const std::uint64_t partner_id = chain_from_cohort_ordinal( + ordinal + 1ULL, + kReplicaExchangeCohort, + batch_config); + if (partner_id >= static_cast(chain_count)) { + return; + } + + DeviceChain& left = chains[chain_index]; + DeviceChain& right = chains[static_cast(partner_id)]; + if (!isfinite(left.current_metrics.energy) || + !isfinite(right.current_metrics.energy)) { + return; + } + const float log_ratio = logf(batch_config.replica_temperature_ratio); + const float left_multiplier = expf( + log_ratio * static_cast(lane) / + static_cast(batch_config.replica_group_size - 1)); + const float right_multiplier = expf( + log_ratio * static_cast(lane + 1) / + static_cast(batch_config.replica_group_size - 1)); + const float left_beta = 1.0f / + fmaxf(1.0e-6f, left.temperature * left_multiplier); + const float right_beta = 1.0f / + fmaxf(1.0e-6f, right.temperature * right_multiplier); + const float exponent = fmaxf( + -80.0f, + fminf( + 0.0f, + (left_beta - right_beta) * + (left.current_metrics.energy - right.current_metrics.energy))); + const bool accepted = random_uniform(left.rng) < expf(exponent); + if (!accepted) { + return; + } + + for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { + const float temporary = left.current[value_index]; + left.current[value_index] = right.current[value_index]; + right.current[value_index] = temporary; + } + const DeviceMetrics temporary_metrics = left.current_metrics; + left.current_metrics = right.current_metrics; + right.current_metrics = temporary_metrics; + atomicAdd(&counters->replica_exchange_accepts, 1ULL); +} + +__global__ void pbt_exploit_kernel( + DeviceChain* chains, + int chain_count, + const DeviceTopology* topology, + DeviceConfig config, + DeviceBatchRunConfig batch_config, + int pairing_phase, + DeviceStrategyCounters* counters) { + const int chain_index = blockIdx.x * blockDim.x + threadIdx.x; + if (chain_index >= chain_count || + batch_config.pbt_weight <= 0 || + chain_cohort( + static_cast(chain_index), + batch_config) != kPbtCohort) { + return; + } + + const std::uint64_t ordinal = cohort_ordinal( + static_cast(chain_index), + kPbtCohort, + batch_config); + if ((ordinal & 1ULL) != static_cast(pairing_phase & 1)) { + return; + } + const std::uint64_t partner_id = chain_from_cohort_ordinal( + ordinal + 1ULL, + kPbtCohort, + batch_config); + if (partner_id >= static_cast(chain_count)) { + return; + } + + const int partner_index = static_cast(partner_id); + const bool left_wins = metric_better( + chains[chain_index].best_metrics, + chains[partner_index].best_metrics); + const int winner_index = left_wins ? chain_index : partner_index; + const int loser_index = left_wins ? partner_index : chain_index; + DeviceChain loser = chains[loser_index]; + if (random_uniform(loser.rng) >= batch_config.pbt_exploit_chance) { + chains[loser_index].rng = loser.rng; + return; + } + + const DeviceChain& winner = chains[winner_index]; + for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { + loser.current[value_index] = winner.best[value_index]; + loser.best[value_index] = winner.best[value_index]; + } + loser.best_metrics = winner.best_metrics; + for (int plane_index = 0; plane_index < kPlaneCount; ++plane_index) { + add_to_plane( + loser.current, + plane_index, + multiply( + random_vec3(loser.rng), + batch_config.pbt_state_jitter)); + } + normalize_state(loser.current); + loser.current_metrics = evaluate_state(loser.current, topology, config); + atomicAdd(&counters->additional_evaluations, 1ULL); + if (metric_better(loser.current_metrics, loser.best_metrics)) { + for (int value_index = 0; value_index < kPlaneValueCount; ++value_index) { + loser.best[value_index] = loser.current[value_index]; + } + loser.best_metrics = loser.current_metrics; + } + loser.step = fmaxf( + config.minimum_step, + winner.step * expf((random_uniform(loser.rng) - 0.5f) * 0.4f)); + loser.temperature = fmaxf( + config.minimum_temperature, + winner.temperature * expf((random_uniform(loser.rng) - 0.5f) * 0.4f)); + loser.stagnant = 0; +#pragma unroll + for (int move_type = 0; move_type < 7; ++move_type) { + loser.move_weights[move_type] = winner.move_weights[move_type]; + } + const int mutated_move = random_index(loser.rng, 7); + loser.move_weights[mutated_move] = static_cast( + min(255, static_cast(loser.move_weights[mutated_move]) + 4)); + chains[loser_index] = loser; + atomicAdd(&counters->pbt_exploits, 1ULL); +} + DeviceTopology make_device_topology(const Topology& topology) { DeviceTopology result{}; for (int vertex = 0; vertex < kVertexCount; ++vertex) { @@ -1011,6 +1432,59 @@ bool validate_batch_run_config(const BatchRunConfig& config, std::string& error) error = "step_scale must be finite and positive."; return false; } + const std::array cohort_weights{ + config.baseline_weight, + config.replica_exchange_weight, + config.adaptive_move_weight, + config.pbt_weight, + config.injected_weight}; + std::int64_t total_weight = 0; + for (int weight : cohort_weights) { + if (weight < 0 || weight > (1 << 20)) { + error = "Strategy cohort weights must be in 0..1048576."; + return false; + } + total_weight += weight; + } + if (total_weight <= 0 || total_weight > (1 << 20)) { + error = "At least one strategy cohort must be enabled and total weight must not exceed 1048576."; + return false; + } + if (config.replica_group_size < 2 || config.replica_group_size > 64) { + error = "replica_group_size must be in 2..64."; + return false; + } + if (!std::isfinite(config.replica_temperature_ratio) || + config.replica_temperature_ratio < 1.0f || + config.replica_temperature_ratio > 1.0e4f) { + error = "replica_temperature_ratio must be finite and in 1..10000."; + return false; + } + if (!std::isfinite(config.pbt_exploit_chance) || + config.pbt_exploit_chance < 0.0f || + config.pbt_exploit_chance > 1.0f) { + error = "pbt_exploit_chance must be in [0, 1]."; + return false; + } + if (!std::isfinite(config.pbt_state_jitter) || + config.pbt_state_jitter < 0.0f || + !std::isfinite(config.injected_state_jitter) || + config.injected_state_jitter < 0.0f) { + error = "Strategy state jitter values must be finite and non-negative."; + return false; + } + if (!config.injected_states.empty() && config.injected_weight == 0) { + error = "injected_weight must be positive when injected_states are supplied."; + return false; + } + for (const PlaneState& state : config.injected_states) { + for (float value : state.values) { + if (!std::isfinite(value)) { + error = "An injected plane state contains NaN or infinity."; + return false; + } + } + } return true; } @@ -1028,6 +1502,36 @@ bool validate_initial_states( return true; } +StrategyKind host_strategy_kind( + std::uint64_t chain_id, + const BatchRunConfig& config) { + const std::uint64_t total = + static_cast(config.baseline_weight) + + static_cast(config.replica_exchange_weight) + + static_cast(config.adaptive_move_weight) + + static_cast(config.pbt_weight) + + static_cast(config.injected_weight); + const std::uint64_t residue = chain_id % total; + std::uint64_t boundary = + static_cast(config.baseline_weight); + if (residue < boundary) { + return StrategyKind::Baseline; + } + boundary += static_cast(config.replica_exchange_weight); + if (residue < boundary) { + return StrategyKind::ReplicaExchange; + } + boundary += static_cast(config.adaptive_move_weight); + if (residue < boundary) { + return StrategyKind::AdaptiveMove; + } + boundary += static_cast(config.pbt_weight); + if (residue < boundary) { + return StrategyKind::PopulationBased; + } + return StrategyKind::Injected; +} + bool host_candidate_better(const Candidate& left, const Candidate& right) { if (!std::isfinite(left.energy)) { return false; @@ -1098,12 +1602,17 @@ struct BatchSession::Impl { DeviceConfig device_config{}; DeviceTopology* device_topology = nullptr; DeviceChain* device_chains = nullptr; + DevicePlaneState* device_injected_states = nullptr; + std::size_t injected_state_capacity = 0; + DeviceStrategyCounters* device_strategy_counters = nullptr; cudaStream_t stream = nullptr; cudaEvent_t kernel_start = nullptr; cudaEvent_t kernel_stop = nullptr; int stream_priority = 0; int device_index = -1; std::string device_name; + int exchange_phase = 0; + int pbt_pairing_phase = 0; bool is_initialized = false; }; @@ -1263,6 +1772,12 @@ bool BatchSession::initialize( if (status != cudaSuccess) { return fail("cudaMalloc(chains)", status); } + status = cudaMalloc( + reinterpret_cast(&impl_->device_strategy_counters), + sizeof(DeviceStrategyCounters)); + if (status != cudaSuccess) { + return fail("cudaMalloc(strategy counters)", status); + } const DeviceTopology device_topology = make_device_topology(topology); status = cudaMemcpyAsync( @@ -1368,6 +1883,129 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { return result; } + const std::int64_t total_weight_64 = + static_cast(batch_config.baseline_weight) + + static_cast(batch_config.replica_exchange_weight) + + static_cast(batch_config.adaptive_move_weight) + + static_cast(batch_config.pbt_weight) + + static_cast(batch_config.injected_weight); + DeviceBatchRunConfig common_batch_config{}; + common_batch_config.fresh_numerator = batch_config.fresh_numerator; + common_batch_config.fresh_denominator = batch_config.fresh_denominator; + common_batch_config.step_scale = batch_config.step_scale; + common_batch_config.baseline_weight = batch_config.baseline_weight; + common_batch_config.replica_exchange_weight = + batch_config.replica_exchange_weight; + common_batch_config.adaptive_move_weight = batch_config.adaptive_move_weight; + common_batch_config.pbt_weight = batch_config.pbt_weight; + common_batch_config.injected_weight = batch_config.injected_weight; + common_batch_config.total_weight = static_cast(total_weight_64); + common_batch_config.replica_group_size = batch_config.replica_group_size; + common_batch_config.replica_temperature_ratio = + batch_config.replica_temperature_ratio; + common_batch_config.pbt_exploit_chance = batch_config.pbt_exploit_chance; + common_batch_config.pbt_state_jitter = batch_config.pbt_state_jitter; + common_batch_config.injected_state_jitter = + batch_config.injected_state_jitter; + common_batch_config.injection_active = + batch_config.injected_states.empty() ? 0 : 1; + + // Count the same disjoint fresh cohorts as the device. Using the ordinal + // inside a strategy (rather than raw chain_id) prevents the 16-way strategy + // pattern from aliasing 1/4 and 7/8 refresh fractions. + for (int chain_index = 0; chain_index < impl_->config.chain_count; ++chain_index) { + const std::uint64_t chain_id = static_cast(chain_index); + const StrategyKind strategy = host_strategy_kind(chain_id, batch_config); + const bool injected_now = common_batch_config.injection_active != 0 && + strategy == StrategyKind::Injected; + if (injected_now) { + ++result.injected_chains; + } + if (injected_now || batch_config.fresh_numerator == 0) { + continue; + } + int start = 0; + int weight = batch_config.baseline_weight; + if (strategy == StrategyKind::ReplicaExchange) { + start = batch_config.baseline_weight; + weight = batch_config.replica_exchange_weight; + } else if (strategy == StrategyKind::AdaptiveMove) { + start = batch_config.baseline_weight + + batch_config.replica_exchange_weight; + weight = batch_config.adaptive_move_weight; + } else if (strategy == StrategyKind::PopulationBased) { + start = batch_config.baseline_weight + + batch_config.replica_exchange_weight + + batch_config.adaptive_move_weight; + weight = batch_config.pbt_weight; + } else if (strategy == StrategyKind::Injected) { + start = batch_config.baseline_weight + + batch_config.replica_exchange_weight + + batch_config.adaptive_move_weight + + batch_config.pbt_weight; + weight = batch_config.injected_weight; + } + const std::uint64_t block = chain_id / + static_cast(common_batch_config.total_weight); + const std::uint64_t local = chain_id % + static_cast(common_batch_config.total_weight) - + static_cast(start); + const std::uint64_t ordinal = + block * static_cast(weight) + local; + if (ordinal % static_cast(batch_config.fresh_denominator) < + static_cast(batch_config.fresh_numerator)) { + ++result.fresh_chains; + } + } + + std::vector host_injected_states( + batch_config.injected_states.size()); + for (std::size_t index = 0; index < batch_config.injected_states.size(); ++index) { + std::memcpy( + host_injected_states[index].values, + batch_config.injected_states[index].values.data(), + sizeof(host_injected_states[index].values)); + } + if (host_injected_states.size() > impl_->injected_state_capacity) { + if (impl_->device_injected_states != nullptr) { + cudaFree(impl_->device_injected_states); + impl_->device_injected_states = nullptr; + impl_->injected_state_capacity = 0; + } + status = cudaMalloc( + reinterpret_cast(&impl_->device_injected_states), + sizeof(DevicePlaneState) * host_injected_states.size()); + if (status != cudaSuccess) { + result.error = cuda_error("cudaMalloc(injected states)", status); + finish_wall_time(); + return result; + } + impl_->injected_state_capacity = host_injected_states.size(); + } + if (!host_injected_states.empty()) { + status = cudaMemcpyAsync( + impl_->device_injected_states, + host_injected_states.data(), + sizeof(DevicePlaneState) * host_injected_states.size(), + cudaMemcpyHostToDevice, + impl_->stream); + if (status != cudaSuccess) { + result.error = cuda_error("cudaMemcpyAsync(injected states)", status); + finish_wall_time(); + return result; + } + } + status = cudaMemsetAsync( + impl_->device_strategy_counters, + 0, + sizeof(DeviceStrategyCounters), + impl_->stream); + if (status != cudaSuccess) { + result.error = cuda_error("cudaMemsetAsync(strategy counters)", status); + finish_wall_time(); + return result; + } + const int block_count = (impl_->config.chain_count + kThreadsPerBlock - 1) / kThreadsPerBlock; status = cudaEventRecord(impl_->kernel_start, impl_->stream); @@ -1376,6 +2014,27 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { finish_wall_time(); return result; } + if (!host_injected_states.empty()) { + inject_seed_states_kernel<<< + block_count, + kThreadsPerBlock, + 0, + impl_->stream>>>( + impl_->device_chains, + impl_->config.chain_count, + impl_->device_topology, + impl_->device_injected_states, + static_cast(host_injected_states.size()), + impl_->device_config, + common_batch_config, + impl_->device_strategy_counters); + status = cudaPeekAtLastError(); + if (status != cudaSuccess) { + result.error = cuda_error("inject_seed_states_kernel launch", status); + finish_wall_time(); + return result; + } + } int remaining_iterations = impl_->config.iterations_per_batch; bool first_launch = true; while (remaining_iterations > 0) { @@ -1383,11 +2042,8 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { launch_config.iterations_per_kernel = std::min( impl_->config.iterations_per_kernel, remaining_iterations); - const DeviceBatchRunConfig device_batch_config{ - batch_config.fresh_numerator, - batch_config.fresh_denominator, - batch_config.step_scale, - first_launch ? 1 : 0}; + DeviceBatchRunConfig device_batch_config = common_batch_config; + device_batch_config.refresh_fresh_cohort = first_launch ? 1 : 0; search_chains_kernel<<stream>>>( impl_->device_chains, impl_->config.chain_count, @@ -1400,9 +2056,85 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { finish_wall_time(); return result; } + if (batch_config.replica_exchange_weight > 0) { + const int phase = impl_->exchange_phase & 1; + replica_exchange_kernel<<< + block_count, + kThreadsPerBlock, + 0, + impl_->stream>>>( + impl_->device_chains, + impl_->config.chain_count, + device_batch_config, + phase, + impl_->device_strategy_counters); + status = cudaPeekAtLastError(); + if (status != cudaSuccess) { + result.error = cuda_error("replica_exchange_kernel launch", status); + finish_wall_time(); + return result; + } + + const int replica_start = batch_config.baseline_weight; + const int replica_weight = batch_config.replica_exchange_weight; + for (int chain_index = 0; + chain_index < impl_->config.chain_count; + ++chain_index) { + const int residue = + chain_index % common_batch_config.total_weight; + if (residue < replica_start || + residue >= replica_start + replica_weight) { + continue; + } + const std::uint64_t block = static_cast( + chain_index / common_batch_config.total_weight); + const std::uint64_t ordinal = + block * static_cast(replica_weight) + + static_cast(residue - replica_start); + const int lane = static_cast( + ordinal % + static_cast(batch_config.replica_group_size)); + if ((lane & 1) == phase && + lane + 1 < batch_config.replica_group_size) { + const std::uint64_t partner_ordinal = ordinal + 1ULL; + const std::uint64_t partner_id = + (partner_ordinal / + static_cast(replica_weight)) * + static_cast( + common_batch_config.total_weight) + + static_cast(replica_start) + + partner_ordinal % + static_cast(replica_weight); + if (partner_id < + static_cast( + impl_->config.chain_count)) { + ++result.replica_exchange_attempts; + } + } + } + ++impl_->exchange_phase; + } remaining_iterations -= launch_config.iterations_per_kernel; first_launch = false; } + if (batch_config.pbt_weight > 0 && + batch_config.pbt_exploit_chance > 0.0f) { + pbt_exploit_kernel<<stream>>>( + impl_->device_chains, + impl_->config.chain_count, + impl_->device_topology, + impl_->device_config, + common_batch_config, + impl_->pbt_pairing_phase & 1, + impl_->device_strategy_counters); + status = cudaPeekAtLastError(); + if (status != cudaSuccess) { + result.error = cuda_error("pbt_exploit_kernel launch", status); + finish_wall_time(); + return result; + } + ++impl_->pbt_pairing_phase; + } status = cudaEventRecord(impl_->kernel_stop, impl_->stream); if (status == cudaSuccess) { status = cudaEventSynchronize(impl_->kernel_stop); @@ -1425,6 +2157,18 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { result.kernel_milliseconds = kernel_milliseconds; const auto transfer_started = std::chrono::steady_clock::now(); + DeviceStrategyCounters host_strategy_counters{}; + status = cudaMemcpyAsync( + &host_strategy_counters, + impl_->device_strategy_counters, + sizeof(host_strategy_counters), + cudaMemcpyDeviceToHost, + impl_->stream); + if (status != cudaSuccess) { + result.error = cuda_error("cudaMemcpyAsync(strategy counters)", status); + finish_wall_time(); + return result; + } status = cudaMemcpyAsync( host_buffer.data, impl_->device_chains, @@ -1458,6 +2202,9 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { candidate.degeneracy_penalty = device_chain.best_metrics.degeneracy_penalty; candidate.energy = device_chain.best_metrics.energy; candidate.ambiguity_flags = device_chain.best_metrics.ambiguity_flags; + candidate.strategy = host_strategy_kind( + device_chain.chain_id, + batch_config); candidate.chain_id = device_chain.chain_id; candidate.iterations = device_chain.iterations; candidates.push_back(candidate); @@ -1468,9 +2215,17 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { candidates.end(), [](const Candidate& candidate) { return !std::isfinite(candidate.energy); }), candidates.end()); + result.strategy_evaluated_states = + static_cast(host_strategy_counters.additional_evaluations); + result.replica_exchange_accepts = + static_cast( + host_strategy_counters.replica_exchange_accepts); + result.pbt_exploits = + static_cast(host_strategy_counters.pbt_exploits); result.evaluated_states = static_cast(impl_->config.chain_count) * - static_cast(impl_->config.iterations_per_batch); + static_cast(impl_->config.iterations_per_batch) + + result.strategy_evaluated_states; if (candidates.empty()) { result.error = "All CUDA search chains produced invalid geometry."; finish_wall_time(); @@ -1488,7 +2243,7 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { } std::vector selected; - selected.reserve(top_count * 2); + selected.reserve(top_count * 4 + batch_config.injected_states.size()); std::unordered_set selected_chain_ids; selected_chain_ids.reserve(top_count * 2); for (std::size_t index = 0; index < top_count; ++index) { @@ -1496,6 +2251,81 @@ BatchResult BatchSession::run(const BatchRunConfig& batch_config) { selected_chain_ids.insert(candidates[index].chain_id); } + // A global top-N alone turns five strategies into one winner-takes-all + // tournament. Preserve a CPU-verification quota for every strategy so + // MAP/CEM coverage and the control cohort remain observable even when a + // strategy explores a temporarily weaker basin. + const std::size_t per_strategy_quota = std::max( + 8, + static_cast(impl_->config.shortlist_size) / 5); + for (int strategy_index = 0; strategy_index < 5; ++strategy_index) { + const StrategyKind strategy = static_cast(strategy_index); + std::vector strategy_candidates; + for (const Candidate& candidate : candidates) { + if (candidate.strategy == strategy && + selected_chain_ids.find(candidate.chain_id) == selected_chain_ids.end()) { + strategy_candidates.push_back(&candidate); + } + } + const std::size_t strategy_count = std::min( + per_strategy_quota, + strategy_candidates.size()); + if (strategy_count < strategy_candidates.size()) { + std::nth_element( + strategy_candidates.begin(), + strategy_candidates.begin() + static_cast(strategy_count), + strategy_candidates.end(), + [](const Candidate* left, const Candidate* right) { + return host_candidate_better(*left, *right); + }); + } + for (std::size_t index = 0; index < strategy_count; ++index) { + const Candidate& candidate = *strategy_candidates[index]; + if (selected_chain_ids.insert(candidate.chain_id).second) { + selected.push_back(candidate); + } + } + } + + // Each injected seed represents a MAP-Elites cell or a CEM sample. Keep + // its best descendant independently of the global energy cutoff; otherwise + // coverage-guided exploration cannot create new cells until it is already + // globally competitive. + if (!batch_config.injected_states.empty() && batch_config.injected_weight > 0) { + std::vector best_per_injected_seed( + batch_config.injected_states.size(), + nullptr); + const std::uint64_t total_weight = static_cast( + batch_config.baseline_weight + batch_config.replica_exchange_weight + + batch_config.adaptive_move_weight + batch_config.pbt_weight + + batch_config.injected_weight); + const std::uint64_t injected_start = static_cast( + batch_config.baseline_weight + batch_config.replica_exchange_weight + + batch_config.adaptive_move_weight + batch_config.pbt_weight); + const std::uint64_t injected_weight = static_cast( + batch_config.injected_weight); + for (const Candidate& candidate : candidates) { + if (candidate.strategy != StrategyKind::Injected) { + continue; + } + const std::uint64_t block = candidate.chain_id / total_weight; + const std::uint64_t local = candidate.chain_id % total_weight - injected_start; + const std::uint64_t ordinal = block * injected_weight + local; + const std::size_t seed_index = static_cast( + ordinal % static_cast(best_per_injected_seed.size())); + const Candidate*& incumbent = best_per_injected_seed[seed_index]; + if (incumbent == nullptr || host_candidate_better(candidate, *incumbent)) { + incumbent = &candidate; + } + } + for (const Candidate* candidate : best_per_injected_seed) { + if (candidate != nullptr && + selected_chain_ids.insert(candidate->chain_id).second) { + selected.push_back(*candidate); + } + } + } + // FP32 ambiguity can hide a DD-worthy state below the overall cutoff. // Preserve an equally sized best ambiguous cohort outside the top-N. std::vector ambiguous_candidates; @@ -1542,6 +2372,15 @@ void BatchSession::reset() { cudaFree(impl_->device_chains); impl_->device_chains = nullptr; } + if (impl_->device_injected_states != nullptr) { + cudaFree(impl_->device_injected_states); + impl_->device_injected_states = nullptr; + impl_->injected_state_capacity = 0; + } + if (impl_->device_strategy_counters != nullptr) { + cudaFree(impl_->device_strategy_counters); + impl_->device_strategy_counters = nullptr; + } if (impl_->device_topology != nullptr) { cudaFree(impl_->device_topology); impl_->device_topology = nullptr; diff --git a/src/CudaSearch/cuda_search.h b/src/CudaSearch/cuda_search.h index 16280ac3..5a239807 100644 --- a/src/CudaSearch/cuda_search.h +++ b/src/CudaSearch/cuda_search.h @@ -28,6 +28,14 @@ enum AmbiguityFlag : std::uint32_t { kAmbiguityInvalidState = 1u << 31, }; +enum class StrategyKind : std::uint8_t { + Baseline = 0, + ReplicaExchange = 1, + AdaptiveMove = 2, + PopulationBased = 3, + Injected = 4, +}; + // Fixed combinatorial description used by the global search. Indices are // zero-based. vertex_planes[v] contains the three planes whose intersection // produces vertex v. @@ -70,6 +78,32 @@ struct BatchRunConfig { int fresh_numerator = 0; int fresh_denominator = 1; float step_scale = 1.0f; + + // Chains are assigned deterministically to one of the following disjoint + // cohorts. The values are relative weights; a zero weight disables a + // cohort. Keeping the defaults leaves every chain in the original + // simulated-annealing baseline. + int baseline_weight = 1; + int replica_exchange_weight = 0; + int adaptive_move_weight = 0; + int pbt_weight = 0; + int injected_weight = 0; + + // Replica exchange uses a geometric temperature ladder inside each group. + int replica_group_size = 8; + float replica_temperature_ratio = 16.0f; + + // A PBT pair is considered after the ordinary short-kernel launches. A + // worse member is replaced only with this probability, which avoids rapid + // population collapse. + float pbt_exploit_chance = 0.08f; + float pbt_state_jitter = 0.01f; + + // Host-selected MAP-Elites/CEM states can be injected into the dedicated + // cohort at the start of this batch. Empty input leaves resident chains + // untouched. The states remain FP32 on the CUDA hot path. + std::vector injected_states; + float injected_state_jitter = 0.01f; }; struct Candidate { @@ -81,6 +115,7 @@ struct Candidate { float degeneracy_penalty = 0.0f; float energy = 0.0f; std::uint32_t ambiguity_flags = kAmbiguityNone; + StrategyKind strategy = StrategyKind::Baseline; std::uint64_t chain_id = 0; std::uint64_t iterations = 0; }; @@ -107,6 +142,12 @@ struct BatchResult { double transfer_milliseconds = 0.0; double wall_milliseconds = 0.0; std::uint64_t evaluated_states = 0; + std::uint64_t strategy_evaluated_states = 0; + std::uint64_t fresh_chains = 0; + std::uint64_t injected_chains = 0; + std::uint64_t replica_exchange_attempts = 0; + std::uint64_t replica_exchange_accepts = 0; + std::uint64_t pbt_exploits = 0; std::vector shortlist; }; diff --git a/src/SearchArchive/SearchArchive.cpp b/src/SearchArchive/SearchArchive.cpp new file mode 100644 index 00000000..7b668637 --- /dev/null +++ b/src/SearchArchive/SearchArchive.cpp @@ -0,0 +1,1101 @@ +#include "SearchArchive.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include +#else +#include +#include +#include +#include +#endif + +namespace szilassi::archive { +namespace { + +constexpr std::array kMagic = { + 'S', 'Z', 'A', 'R', 'V', '1', '\0', '\0'}; +constexpr std::uint32_t kHeaderSize = 32; +constexpr std::uint32_t kPayloadSchema = 1; +constexpr std::size_t kMaximumStringBytes = 4096; +constexpr std::size_t kMaximumEntryCount = 200'000; +constexpr std::uint64_t kMaximumFileBytes = 128ULL * 1024ULL * 1024ULL; + +void set_error(std::string* error, const std::string& message) { + if (error != nullptr) { + *error = message; + } +} + +class ByteWriter { +public: + void u32(std::uint32_t value) { + for (int shift = 0; shift < 32; shift += 8) { + bytes_.push_back(static_cast(value >> shift)); + } + } + + void i32(std::int32_t value) { u32(static_cast(value)); } + + void u64(std::uint64_t value) { + for (int shift = 0; shift < 64; shift += 8) { + bytes_.push_back(static_cast(value >> shift)); + } + } + + void i64(std::int64_t value) { u64(static_cast(value)); } + + void f32(float value) { + std::uint32_t bits = 0; + static_assert(sizeof(bits) == sizeof(value)); + std::memcpy(&bits, &value, sizeof(bits)); + u32(bits); + } + + void f64(double value) { + std::uint64_t bits = 0; + static_assert(sizeof(bits) == sizeof(value)); + std::memcpy(&bits, &value, sizeof(bits)); + u64(bits); + } + + void string(const std::string& value) { + u32(static_cast(value.size())); + bytes_.insert(bytes_.end(), value.begin(), value.end()); + } + + void raw(const std::uint8_t* begin, const std::uint8_t* end) { + bytes_.insert(bytes_.end(), begin, end); + } + + const std::vector& bytes() const noexcept { return bytes_; } + std::vector take() { return std::move(bytes_); } + +private: + std::vector bytes_; +}; + +class ByteReader { +public: + ByteReader(const std::uint8_t* data, std::size_t size) + : cursor_(data), end_(data + size) {} + + bool u32(std::uint32_t& value) { + if (remaining() < 4) { + return false; + } + value = 0; + for (int shift = 0; shift < 32; shift += 8) { + value |= static_cast(*cursor_++) << shift; + } + return true; + } + + bool i32(std::int32_t& value) { + std::uint32_t raw = 0; + if (!u32(raw)) { + return false; + } + value = static_cast(raw); + return true; + } + + bool u64(std::uint64_t& value) { + if (remaining() < 8) { + return false; + } + value = 0; + for (int shift = 0; shift < 64; shift += 8) { + value |= static_cast(*cursor_++) << shift; + } + return true; + } + + bool i64(std::int64_t& value) { + std::uint64_t raw = 0; + if (!u64(raw)) { + return false; + } + value = static_cast(raw); + return true; + } + + bool f32(float& value) { + std::uint32_t bits = 0; + if (!u32(bits)) { + return false; + } + std::memcpy(&value, &bits, sizeof(value)); + return true; + } + + bool f64(double& value) { + std::uint64_t bits = 0; + if (!u64(bits)) { + return false; + } + std::memcpy(&value, &bits, sizeof(value)); + return true; + } + + bool string(std::string& value) { + std::uint32_t size = 0; + if (!u32(size) || size > kMaximumStringBytes || remaining() < size) { + return false; + } + value.assign(reinterpret_cast(cursor_), size); + cursor_ += size; + return true; + } + + std::size_t remaining() const noexcept { + return static_cast(end_ - cursor_); + } + +private: + const std::uint8_t* cursor_; + const std::uint8_t* end_; +}; + +std::uint32_t crc32_ieee(const std::uint8_t* data, std::size_t size) { + std::uint32_t crc = 0xffffffffU; + for (std::size_t i = 0; i < size; ++i) { + crc ^= data[i]; + for (int bit = 0; bit < 8; ++bit) { + const std::uint32_t mask = 0U - (crc & 1U); + crc = (crc >> 1U) ^ (0xedb88320U & mask); + } + } + return ~crc; +} + +bool safe_path_component(const std::string& value) { + if (value.empty() || value.size() > 128 || value == "." || value == "..") { + return false; + } + return std::all_of(value.begin(), value.end(), [](unsigned char ch) { + return (ch >= 'a' && ch <= 'z') || + (ch >= 'A' && ch <= 'Z') || + (ch >= '0' && ch <= '9') || ch == '-' || ch == '_' || ch == '.'; + }); +} + +std::int64_t unix_time_ns_now() { + return static_cast( + std::chrono::duration_cast( + std::chrono::system_clock::now().time_since_epoch()) + .count()); +} + +std::uint64_t process_id() { +#ifdef _WIN32 + return static_cast(GetCurrentProcessId()); +#else + return static_cast(::getpid()); +#endif +} + +std::string system_error_message(const std::string& prefix) { +#ifdef _WIN32 + const DWORD code = GetLastError(); + LPSTR buffer = nullptr; + const DWORD length = FormatMessageA( + FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + nullptr, + code, + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + reinterpret_cast(&buffer), + 0, + nullptr); + std::string result = prefix + " (Windows error " + std::to_string(code) + ")"; + if (length != 0 && buffer != nullptr) { + result += ": "; + result.append(buffer, length); + while (!result.empty() && + (result.back() == '\r' || result.back() == '\n' || result.back() == ' ')) { + result.pop_back(); + } + } + if (buffer != nullptr) { + LocalFree(buffer); + } + return result; +#else + return prefix + ": " + std::strerror(errno); +#endif +} + +bool read_all_bytes( + const std::filesystem::path& path, + std::vector& bytes, + std::string& error) { + std::error_code size_error; + const std::uintmax_t file_size = std::filesystem::file_size(path, size_error); + if (size_error) { + error = "Cannot determine archive size: " + size_error.message(); + return false; + } + if (file_size > kMaximumFileBytes) { + error = "Archive is larger than the safety limit"; + return false; + } + + std::ifstream input(path, std::ios::binary); + if (!input) { + error = "Cannot open archive for reading"; + return false; + } + bytes.resize(static_cast(file_size)); + if (!bytes.empty()) { + input.read( + reinterpret_cast(bytes.data()), + static_cast(bytes.size())); + } + if (!input || input.peek() != std::ifstream::traits_type::eof()) { + error = "Archive read was incomplete"; + return false; + } + return true; +} + +bool same_file_contents( + const std::filesystem::path& path, + const std::vector& expected) { + std::vector actual; + std::string ignored; + return read_all_bytes(path, actual, ignored) && actual == expected; +} + +std::string temporary_suffix() { + static std::atomic counter{0}; + const auto ticks = static_cast( + std::chrono::high_resolution_clock::now().time_since_epoch().count()); + std::ostringstream out; + out << ".tmp." << process_id() << "." << std::hex << ticks << "." + << counter.fetch_add(1, std::memory_order_relaxed); + return out.str(); +} + +#ifdef _WIN32 +bool write_temp_file_durable( + const std::filesystem::path& path, + const std::vector& bytes, + std::string& error) { + HANDLE handle = CreateFileW( + path.c_str(), + GENERIC_WRITE, + FILE_SHARE_READ, + nullptr, + CREATE_NEW, + FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH, + nullptr); + if (handle == INVALID_HANDLE_VALUE) { + error = system_error_message("Cannot create archive temporary file"); + return false; + } + + bool ok = true; + std::size_t offset = 0; + while (offset < bytes.size()) { + const DWORD chunk = static_cast(std::min( + bytes.size() - offset, + static_cast(std::numeric_limits::max()))); + DWORD written = 0; + if (!WriteFile(handle, bytes.data() + offset, chunk, &written, nullptr) || + written != chunk) { + error = system_error_message("Cannot write archive temporary file"); + ok = false; + break; + } + offset += written; + } + if (ok && !FlushFileBuffers(handle)) { + error = system_error_message("Cannot flush archive temporary file"); + ok = false; + } + if (!CloseHandle(handle) && ok) { + error = system_error_message("Cannot close archive temporary file"); + ok = false; + } + if (!ok) { + DeleteFileW(path.c_str()); + } + return ok; +} + +void flush_directory_best_effort(const std::filesystem::path& directory) { + HANDLE handle = CreateFileW( + directory.c_str(), + GENERIC_READ, + FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, + nullptr, + OPEN_EXISTING, + FILE_FLAG_BACKUP_SEMANTICS, + nullptr); + if (handle != INVALID_HANDLE_VALUE) { + FlushFileBuffers(handle); + CloseHandle(handle); + } +} + +bool publish_temp_file( + const std::filesystem::path& temporary, + const std::filesystem::path& final_path, + const std::vector& bytes, + bool& already_existed, + std::string& error) { + if (MoveFileExW(temporary.c_str(), final_path.c_str(), MOVEFILE_WRITE_THROUGH)) { + flush_directory_best_effort(final_path.parent_path()); + return true; + } + + const DWORD code = GetLastError(); + if ((code == ERROR_ALREADY_EXISTS || code == ERROR_FILE_EXISTS) && + same_file_contents(final_path, bytes)) { + DeleteFileW(temporary.c_str()); + already_existed = true; + flush_directory_best_effort(final_path.parent_path()); + return true; + } + SetLastError(code); + error = system_error_message("Cannot atomically publish archive"); + DeleteFileW(temporary.c_str()); + return false; +} +#else +bool write_temp_file_durable( + const std::filesystem::path& path, + const std::vector& bytes, + std::string& error) { + const int descriptor = ::open( + path.c_str(), O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC, 0666); + if (descriptor < 0) { + error = system_error_message("Cannot create archive temporary file"); + return false; + } + + bool ok = true; + std::size_t offset = 0; + while (offset < bytes.size()) { + const ssize_t written = ::write( + descriptor, bytes.data() + offset, bytes.size() - offset); + if (written < 0) { + if (errno == EINTR) { + continue; + } + error = system_error_message("Cannot write archive temporary file"); + ok = false; + break; + } + if (written == 0) { + error = "Cannot write archive temporary file: zero-byte write"; + ok = false; + break; + } + offset += static_cast(written); + } + if (ok && ::fsync(descriptor) != 0) { + error = system_error_message("Cannot flush archive temporary file"); + ok = false; + } + if (::close(descriptor) != 0 && ok) { + error = system_error_message("Cannot close archive temporary file"); + ok = false; + } + if (!ok) { + ::unlink(path.c_str()); + } + return ok; +} + +bool flush_directory(const std::filesystem::path& directory, std::string& error) { + int flags = O_RDONLY | O_CLOEXEC; +#ifdef O_DIRECTORY + flags |= O_DIRECTORY; +#endif + const int descriptor = ::open(directory.c_str(), flags); + if (descriptor < 0) { + error = system_error_message("Cannot open archive directory for flush"); + return false; + } + const bool ok = ::fsync(descriptor) == 0; + if (!ok) { + error = system_error_message("Cannot flush archive directory"); + } + ::close(descriptor); + return ok; +} + +bool publish_temp_file( + const std::filesystem::path& temporary, + const std::filesystem::path& final_path, + const std::vector& bytes, + bool& already_existed, + std::string& error) { + if (::link(temporary.c_str(), final_path.c_str()) == 0) { + ::unlink(temporary.c_str()); + return flush_directory(final_path.parent_path(), error); + } + + const int link_error = errno; + if (link_error == EEXIST && same_file_contents(final_path, bytes)) { + ::unlink(temporary.c_str()); + already_existed = true; + return flush_directory(final_path.parent_path(), error); + } + if ((link_error == EPERM || link_error == EOPNOTSUPP || link_error == ENOSYS) && + !std::filesystem::exists(final_path) && + ::rename(temporary.c_str(), final_path.c_str()) == 0) { + return flush_directory(final_path.parent_path(), error); + } + + errno = link_error; + error = system_error_message("Cannot atomically publish archive"); + ::unlink(temporary.c_str()); + return false; +} +#endif + +bool durable_write_new_file( + const std::filesystem::path& final_path, + const std::vector& bytes, + bool& already_existed, + std::string& error) { + if (std::filesystem::exists(final_path)) { + if (same_file_contents(final_path, bytes)) { + already_existed = true; + return true; + } + error = "Archive path already exists with different contents"; + return false; + } + + std::filesystem::path temporary = final_path; + temporary += temporary_suffix(); + if (!write_temp_file_durable(temporary, bytes, error)) { + return false; + } + return publish_temp_file(temporary, final_path, bytes, already_existed, error); +} + +bool parse_topology_directory(const std::filesystem::path& path, std::int32_t& topology) { + const std::string name = path.filename().string(); + constexpr const char* prefix = "topology_"; + constexpr std::size_t prefix_size = 9; + if (name.size() <= prefix_size || name.compare(0, prefix_size, prefix) != 0) { + return false; + } + int value = -1; + const char* first = name.data() + prefix_size; + const char* last = name.data() + name.size(); + const auto parsed = std::from_chars(first, last, value); + if (parsed.ec != std::errc() || parsed.ptr != last || value < 0) { + return false; + } + topology = static_cast(value); + return true; +} + +std::uint32_t float_bits(float value) { + std::uint32_t bits = 0; + std::memcpy(&bits, &value, sizeof(bits)); + return bits; +} + +} // namespace + +bool ArchiveGenerationKey::operator<(const ArchiveGenerationKey& other) const noexcept { + return std::tie(run_id, topology, sequence) < + std::tie(other.run_id, other.topology, other.sequence); +} + +bool quality_is_better(const ArchiveEntry& candidate, const ArchiveEntry& incumbent) { + const auto defects = [](const ArchiveEntry& entry) { + return static_cast(entry.quality.crossings) + + static_cast(entry.quality.intersections); + }; + const auto primary = [&](const ArchiveEntry& entry) { + return std::make_tuple( + defects(entry), + std::max(entry.quality.crossings, entry.quality.intersections), + entry.quality.crossings, + entry.quality.energy, + entry.quality.degeneracy_penalty, + entry.quality.crossing_loss, + entry.quality.geometry_penalty); + }; + if (primary(candidate) != primary(incumbent)) { + return primary(candidate) < primary(incumbent); + } + if (candidate.verification != incumbent.verification) { + return static_cast(candidate.verification) > + static_cast(incumbent.verification); + } + const bool candidate_canonical = + (candidate.flags & ArchiveEntryFlagCanonical) != 0; + const bool incumbent_canonical = + (incumbent.flags & ArchiveEntryFlagCanonical) != 0; + if (candidate_canonical != incumbent_canonical) { + return candidate_canonical; + } + if (candidate.origin_run_id != incumbent.origin_run_id) { + return candidate.origin_run_id < incumbent.origin_run_id; + } + if (candidate.origin_sequence != incumbent.origin_sequence) { + return candidate.origin_sequence < incumbent.origin_sequence; + } + if (candidate.origin_seed != incumbent.origin_seed) { + return candidate.origin_seed < incumbent.origin_seed; + } + for (std::size_t i = 0; i < kPlaneCoefficientCount; ++i) { + const std::uint32_t left = float_bits(candidate.plane_coefficients[i]); + const std::uint32_t right = float_bits(incumbent.plane_coefficients[i]); + if (left != right) { + return left < right; + } + } + return false; +} + +bool validate_delta(const ArchiveDelta& delta, std::string* error) { + if (!safe_path_component(delta.run_id)) { + set_error(error, "run_id is empty or is not a safe path component"); + return false; + } + if (delta.node_id.empty() || delta.node_id.size() > kMaximumStringBytes) { + set_error(error, "node_id is empty or too long"); + return false; + } + if (delta.topology < 0) { + set_error(error, "Invalid topology"); + return false; + } + if (delta.sequence == 0) { + set_error(error, "Delta sequence must start at one"); + return false; + } + if (delta.entries.empty()) { + set_error(error, "Archive delta contains no changed cells"); + return false; + } + if (delta.entries.size() > kMaximumEntryCount) { + set_error(error, "Too many archive entries"); + return false; + } + + std::set descriptor_keys; + for (const ArchiveEntry& entry : delta.entries) { + if (!descriptor_keys.insert(entry.descriptor_key).second) { + set_error(error, "Duplicate descriptor key in delta"); + return false; + } + if (!safe_path_component(entry.origin_run_id)) { + set_error(error, "Entry origin_run_id is missing or invalid"); + return false; + } + if (entry.quality.crossings < 0 || entry.quality.intersections < 0) { + set_error(error, "Negative archive defect count"); + return false; + } + const std::array values = { + entry.quality.crossing_loss, + entry.quality.geometry_penalty, + entry.quality.degeneracy_penalty, + entry.quality.energy, + entry.quality.min_abs_determinant, + entry.quality.min_edge_ratio, + entry.quality.min_turn_sine, + entry.quality.extent, + }; + if (!std::all_of(values.begin(), values.end(), [](double value) { + return std::isfinite(value); + })) { + set_error(error, "Non-finite archive metric"); + return false; + } + if (entry.quality.min_abs_determinant < 0.0 || + entry.quality.min_edge_ratio < 0.0 || + entry.quality.min_turn_sine < 0.0 || entry.quality.extent < 0.0) { + set_error(error, "Negative continuous archive descriptor"); + return false; + } + if (static_cast(entry.verification) > + static_cast(VerificationPrecision::DoubleDouble)) { + set_error(error, "Unknown archive verification precision"); + return false; + } + constexpr std::uint32_t known_flags = + ArchiveEntryFlagCanonical | ArchiveEntryFlagDdVerified | + ArchiveEntryFlagImportedCheckpoint; + if ((entry.flags & ~known_flags) != 0) { + set_error(error, "Unknown archive entry flags"); + return false; + } + if (!std::all_of( + entry.plane_coefficients.begin(), + entry.plane_coefficients.end(), + [](float value) { return std::isfinite(value); })) { + set_error(error, "Non-finite archive plane coefficient"); + return false; + } + } + return true; +} + +std::vector serialize_delta( + const ArchiveDelta& delta, + std::uint32_t* payload_crc32, + std::string* error) { + std::string validation_error; + if (!validate_delta(delta, &validation_error)) { + set_error(error, validation_error); + return {}; + } + + ByteWriter payload; + payload.u32(kPayloadSchema); + payload.string(delta.run_id); + payload.string(delta.node_id); + payload.u64(delta.sequence); + payload.i64(delta.created_unix_ns); + payload.i32(delta.topology); + payload.u32(delta.objective_version); + payload.u64(delta.topology_fingerprint); + payload.u64(delta.base_seed); + payload.u32(static_cast(delta.entries.size())); + for (const ArchiveEntry& entry : delta.entries) { + payload.u64(entry.descriptor_key); + payload.string(entry.origin_run_id); + payload.u64(entry.origin_seed); + payload.u64(entry.origin_sequence); + payload.i64(entry.discovered_unix_ns); + payload.i32(entry.quality.crossings); + payload.i32(entry.quality.intersections); + payload.f64(entry.quality.crossing_loss); + payload.f64(entry.quality.geometry_penalty); + payload.f64(entry.quality.degeneracy_penalty); + payload.f64(entry.quality.energy); + payload.f64(entry.quality.min_abs_determinant); + payload.f64(entry.quality.min_edge_ratio); + payload.f64(entry.quality.min_turn_sine); + payload.f64(entry.quality.extent); + payload.u32(static_cast(entry.verification)); + payload.u32(entry.flags); + for (float coefficient : entry.plane_coefficients) { + payload.f32(coefficient); + } + } + + const std::uint32_t crc = crc32_ieee(payload.bytes().data(), payload.bytes().size()); + if (payload_crc32 != nullptr) { + *payload_crc32 = crc; + } + + ByteWriter file; + file.raw(kMagic.data(), kMagic.data() + kMagic.size()); + file.u32(kArchiveFormatVersion); + file.u32(kHeaderSize); + file.u64(static_cast(payload.bytes().size())); + file.u32(crc); + file.u32(0); + file.raw(payload.bytes().data(), payload.bytes().data() + payload.bytes().size()); + return file.take(); +} + +ReadResult read_delta(const std::filesystem::path& path) { + ReadResult result; + std::vector bytes; + if (!read_all_bytes(path, bytes, result.error)) { + return result; + } + if (bytes.size() < kHeaderSize || + !std::equal(kMagic.begin(), kMagic.end(), bytes.begin())) { + result.error = "Archive magic/header is missing"; + return result; + } + + ByteReader header(bytes.data() + kMagic.size(), bytes.size() - kMagic.size()); + std::uint32_t version = 0; + std::uint32_t header_size = 0; + std::uint64_t payload_size = 0; + std::uint32_t expected_crc = 0; + std::uint32_t reserved = 0; + if (!header.u32(version) || !header.u32(header_size) || + !header.u64(payload_size) || !header.u32(expected_crc) || + !header.u32(reserved)) { + result.error = "Archive header is truncated"; + return result; + } + if (version != kArchiveFormatVersion || header_size != kHeaderSize || reserved != 0) { + result.error = "Unsupported archive format/header"; + return result; + } + if (payload_size != bytes.size() - header_size) { + result.error = "Archive payload length mismatch"; + return result; + } + const std::uint8_t* payload_data = bytes.data() + header_size; + const std::uint32_t actual_crc = crc32_ieee( + payload_data, static_cast(payload_size)); + if (actual_crc != expected_crc) { + result.error = "Archive CRC mismatch"; + return result; + } + + ByteReader payload(payload_data, static_cast(payload_size)); + ArchiveDelta delta; + std::uint32_t payload_schema = 0; + std::uint32_t entry_count = 0; + if (!payload.u32(payload_schema) || payload_schema != kPayloadSchema || + !payload.string(delta.run_id) || !payload.string(delta.node_id) || + !payload.u64(delta.sequence) || !payload.i64(delta.created_unix_ns) || + !payload.i32(delta.topology) || !payload.u32(delta.objective_version) || + !payload.u64(delta.topology_fingerprint) || !payload.u64(delta.base_seed) || + !payload.u32(entry_count)) { + result.error = "Archive payload is truncated"; + return result; + } + if (entry_count > kMaximumEntryCount) { + result.error = "Archive entry count exceeds the safety limit"; + return result; + } + + delta.entries.resize(entry_count); + for (ArchiveEntry& entry : delta.entries) { + std::uint32_t verification = 0; + if (!payload.u64(entry.descriptor_key) || + !payload.string(entry.origin_run_id) || + !payload.u64(entry.origin_seed) || + !payload.u64(entry.origin_sequence) || + !payload.i64(entry.discovered_unix_ns) || + !payload.i32(entry.quality.crossings) || + !payload.i32(entry.quality.intersections) || + !payload.f64(entry.quality.crossing_loss) || + !payload.f64(entry.quality.geometry_penalty) || + !payload.f64(entry.quality.degeneracy_penalty) || + !payload.f64(entry.quality.energy) || + !payload.f64(entry.quality.min_abs_determinant) || + !payload.f64(entry.quality.min_edge_ratio) || + !payload.f64(entry.quality.min_turn_sine) || + !payload.f64(entry.quality.extent) || + !payload.u32(verification) || !payload.u32(entry.flags)) { + result.error = "Archive entry is truncated"; + return result; + } + entry.verification = static_cast(verification); + for (float& coefficient : entry.plane_coefficients) { + if (!payload.f32(coefficient)) { + result.error = "Archive plane coefficients are truncated"; + return result; + } + } + } + if (payload.remaining() != 0) { + result.error = "Archive payload has trailing bytes"; + return result; + } + + std::string validation_error; + if (!validate_delta(delta, &validation_error)) { + result.error = "Invalid archive: " + validation_error; + return result; + } + result.record = ArchiveRecord{path, std::move(delta), expected_crc}; + return result; +} + +std::filesystem::path archive_directory( + const std::filesystem::path& global_root, + const std::string& run_id, + std::int32_t topology) { + std::ostringstream topology_name; + topology_name << "topology_" << std::setfill('0') << std::setw(3) << topology; + return global_root / "runs" / run_id / topology_name.str() / "archive"; +} + +CommitResult commit_delta( + const std::filesystem::path& global_root, + ArchiveDelta delta) { + CommitResult result; + if (delta.created_unix_ns == 0) { + delta.created_unix_ns = unix_time_ns_now(); + } + + std::string serialization_error; + std::vector bytes = serialize_delta( + delta, &result.crc32, &serialization_error); + if (bytes.empty()) { + result.error = "Cannot serialize archive: " + serialization_error; + return result; + } + + const std::filesystem::path directory = archive_directory( + global_root, delta.run_id, delta.topology); + std::error_code create_error; + std::filesystem::create_directories(directory, create_error); + if (create_error) { + result.error = "Cannot create archive directory: " + create_error.message(); + return result; + } + + std::ostringstream filename; + filename << "delta_" << std::setfill('0') << std::setw(20) + << delta.sequence << "_" << std::hex << std::setw(8) + << result.crc32 << kArchiveExtension; + result.path = directory / filename.str(); + + if (!durable_write_new_file( + result.path, bytes, result.already_existed, result.error)) { + return result; + } + +#ifdef _WIN32 + std::error_code absolute_error; + std::filesystem::path current = std::filesystem::absolute( + result.path.parent_path(), absolute_error).lexically_normal(); + const std::filesystem::path stop = std::filesystem::absolute( + global_root, absolute_error).lexically_normal(); + while (!absolute_error && !current.empty()) { + flush_directory_best_effort(current); + if (current == stop) { + break; + } + const std::filesystem::path parent = current.parent_path(); + if (parent == current) { + break; + } + current = parent; + } +#else + std::error_code absolute_error; + std::filesystem::path current = std::filesystem::absolute( + result.path.parent_path(), absolute_error).lexically_normal(); + const std::filesystem::path stop = std::filesystem::absolute( + global_root, absolute_error).lexically_normal(); + while (!absolute_error && !current.empty()) { + std::string flush_error; + if (!flush_directory(current, flush_error)) { + result.error = flush_error; + return result; + } + if (current == stop) { + break; + } + const std::filesystem::path parent = current.parent_path(); + if (parent == current) { + break; + } + current = parent; + } +#endif + + result.success = true; + return result; +} + +ArchiveScan scan_archives(const std::filesystem::path& global_root) { + ArchiveScan scan; + const std::filesystem::path runs_root = global_root / "runs"; + std::error_code exists_error; + if (!std::filesystem::exists(runs_root, exists_error)) { + if (exists_error) { + scan.rejected.push_back({runs_root, exists_error.message()}); + } + return scan; + } + + std::error_code iterator_error; + std::filesystem::recursive_directory_iterator iterator( + runs_root, + std::filesystem::directory_options::skip_permission_denied, + iterator_error); + const std::filesystem::recursive_directory_iterator end; + while (iterator != end) { + if (iterator_error) { + scan.rejected.push_back({runs_root, iterator_error.message()}); + iterator.increment(iterator_error); + continue; + } + + const auto entry = *iterator; + iterator.increment(iterator_error); + std::error_code type_error; + if (!entry.is_regular_file(type_error) || type_error || + entry.path().extension() != kArchiveExtension) { + continue; + } + + const std::filesystem::path archive_dir = entry.path().parent_path(); + const std::filesystem::path topology_dir = archive_dir.parent_path(); + const std::filesystem::path run_dir = topology_dir.parent_path(); + if (archive_dir.filename() != "archive" || run_dir.parent_path() != runs_root) { + scan.rejected.push_back({entry.path(), "Unexpected archive directory layout"}); + continue; + } + + std::int32_t path_topology = -1; + if (!parse_topology_directory(topology_dir, path_topology)) { + scan.rejected.push_back({entry.path(), "Invalid topology directory name"}); + continue; + } + + ReadResult read = read_delta(entry.path()); + if (!read) { + scan.rejected.push_back({entry.path(), read.error}); + continue; + } + if (read.record->delta.run_id != run_dir.filename().string()) { + scan.rejected.push_back({entry.path(), "run_id does not match path"}); + continue; + } + if (read.record->delta.topology != path_topology) { + scan.rejected.push_back({entry.path(), "Topology does not match path"}); + continue; + } + scan.valid.push_back(std::move(*read.record)); + } + if (iterator_error) { + scan.rejected.push_back({runs_root, iterator_error.message()}); + } + + std::sort(scan.valid.begin(), scan.valid.end(), [](const auto& left, const auto& right) { + return std::make_tuple( + left.delta.run_id, + left.delta.topology, + left.delta.sequence, + left.crc32, + left.path.generic_string()) < + std::make_tuple( + right.delta.run_id, + right.delta.topology, + right.delta.sequence, + right.crc32, + right.path.generic_string()); + }); + + std::size_t begin = 0; + while (begin < scan.valid.size()) { + std::size_t finish = begin + 1; + while (finish < scan.valid.size() && + scan.valid[finish].delta.run_id == scan.valid[begin].delta.run_id && + scan.valid[finish].delta.topology == scan.valid[begin].delta.topology && + scan.valid[finish].delta.sequence == scan.valid[begin].delta.sequence) { + ++finish; + } + std::set crcs; + for (std::size_t i = begin; i < finish; ++i) { + crcs.insert(scan.valid[i].crc32); + } + if (crcs.size() > 1) { + ArchiveConflict conflict; + conflict.run_id = scan.valid[begin].delta.run_id; + conflict.topology = scan.valid[begin].delta.topology; + conflict.sequence = scan.valid[begin].delta.sequence; + for (std::size_t i = begin; i < finish; ++i) { + conflict.paths.push_back(scan.valid[i].path); + } + scan.conflicts.push_back(std::move(conflict)); + } + begin = finish; + } + return scan; +} + +ArchiveGenerationMap select_nonconflicting_deltas(const ArchiveScan& scan) { + std::map> grouped; + for (const ArchiveRecord& record : scan.valid) { + grouped[{ + record.delta.run_id, + record.delta.topology, + record.delta.sequence}] + .push_back(&record); + } + + ArchiveGenerationMap selected; + for (const auto& [key, records] : grouped) { + std::set crcs; + for (const ArchiveRecord* record : records) { + crcs.insert(record->crc32); + } + if (crcs.size() != 1) { + continue; + } + const ArchiveRecord* canonical = *std::min_element( + records.begin(), records.end(), [](const auto* left, const auto* right) { + return left->path.generic_string() < right->path.generic_string(); + }); + selected.emplace(key, *canonical); + } + return selected; +} + +MergeResult merge_deltas_for_topology( + const ArchiveScan& scan, + std::int32_t topology, + std::uint32_t objective_version, + std::uint64_t topology_fingerprint) { + MergeResult result; + result.rejected = scan.rejected; + for (const ArchiveConflict& conflict : scan.conflicts) { + if (conflict.topology != topology) { + continue; + } + for (const std::filesystem::path& path : conflict.paths) { + result.rejected.push_back({ + path, + "Conflicting archive sequence " + + std::to_string(conflict.sequence) + " for run " + + conflict.run_id + "; this delta sequence was ignored"}); + } + } + const ArchiveGenerationMap deltas = select_nonconflicting_deltas(scan); + for (const auto& [key, record] : deltas) { + if (key.topology != topology) { + continue; + } + if (record.delta.objective_version != objective_version) { + result.rejected.push_back({ + record.path, "Archive objective version does not match current search"}); + continue; + } + if (record.delta.topology_fingerprint != topology_fingerprint) { + result.rejected.push_back({ + record.path, "Archive topology fingerprint does not match current topology"}); + continue; + } + + ++result.source_deltas; + for (const ArchiveEntry& entry : record.delta.entries) { + const auto existing = result.cells.find(entry.descriptor_key); + if (existing == result.cells.end()) { + result.cells.emplace(entry.descriptor_key, entry); + } else if (quality_is_better(entry, existing->second)) { + existing->second = entry; + } + } + } + return result; +} + +} // namespace szilassi::archive diff --git a/src/SearchArchive/SearchArchive.h b/src/SearchArchive/SearchArchive.h new file mode 100644 index 00000000..40ccc06c --- /dev/null +++ b/src/SearchArchive/SearchArchive.h @@ -0,0 +1,188 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace szilassi::archive { + +constexpr std::uint32_t kArchiveFormatVersion = 1; +constexpr const char* kArchiveExtension = ".szar"; +constexpr std::size_t kPlaneCoefficientCount = 36; + +enum class VerificationPrecision : std::uint32_t { + Unverified = 0, + Fp32 = 1, + Double = 2, + DoubleDouble = 3, +}; + +enum ArchiveEntryFlags : std::uint32_t { + ArchiveEntryFlagNone = 0, + ArchiveEntryFlagCanonical = 1u << 0, + ArchiveEntryFlagDdVerified = 1u << 1, + ArchiveEntryFlagImportedCheckpoint = 1u << 2, +}; + +// The descriptor is intentionally an opaque, versioned 64-bit value. The +// objective_version recorded by the containing delta defines how its bins +// are packed, so future descriptor layouts never reinterpret an old archive. +struct ArchiveQuality { + std::int32_t crossings = 0; + std::int32_t intersections = 0; + double crossing_loss = 0.0; + double geometry_penalty = 0.0; + double degeneracy_penalty = 0.0; + double energy = 0.0; + + // Continuous descriptors are retained as diagnostics and allow a later + // objective version to re-bin imported states after re-evaluation. + double min_abs_determinant = 0.0; + double min_edge_ratio = 0.0; + double min_turn_sine = 0.0; + double extent = 0.0; +}; + +struct ArchiveEntry { + std::uint64_t descriptor_key = 0; + ArchiveQuality quality; + VerificationPrecision verification = VerificationPrecision::Unverified; + std::uint32_t flags = ArchiveEntryFlagNone; + + // Provenance belongs to the state rather than merely to the delta. It + // remains valid when a state is imported into a later run's archive. + std::string origin_run_id; + std::uint64_t origin_seed = 0; + std::uint64_t origin_sequence = 0; + std::int64_t discovered_unix_ns = 0; + + // Exact FP32 CUDA coordinates. Fixed size prevents accidentally mixing a + // state for another parameterization into this archive format. + std::array plane_coefficients{}; +}; + +struct ArchiveDelta { + // run_id is both the writer namespace and the Git merge namespace. A run + // writes immutable deltas only below its own UUID directory. + std::string run_id; + std::string node_id; + std::uint64_t sequence = 0; + std::int64_t created_unix_ns = 0; + std::int32_t topology = -1; + std::uint32_t objective_version = 0; + std::uint64_t topology_fingerprint = 0; + std::uint64_t base_seed = 0; + std::vector entries; +}; + +struct ArchiveRecord { + std::filesystem::path path; + ArchiveDelta delta; + std::uint32_t crc32 = 0; +}; + +struct ArchiveIssue { + std::filesystem::path path; + std::string message; +}; + +struct ArchiveConflict { + std::string run_id; + std::int32_t topology = -1; + std::uint64_t sequence = 0; + std::vector paths; +}; + +struct CommitResult { + bool success = false; + bool already_existed = false; + std::filesystem::path path; + std::uint32_t crc32 = 0; + std::string error; + + explicit operator bool() const noexcept { return success; } +}; + +struct ReadResult { + std::optional record; + std::string error; + + explicit operator bool() const noexcept { return record.has_value(); } +}; + +struct ArchiveScan { + std::vector valid; + std::vector rejected; + std::vector conflicts; +}; + +struct ArchiveGenerationKey { + std::string run_id; + std::int32_t topology = -1; + std::uint64_t sequence = 0; + + bool operator<(const ArchiveGenerationKey& other) const noexcept; +}; + +using ArchiveGenerationMap = std::map; + +struct MergeResult { + std::map cells; + std::vector rejected; + std::size_t source_deltas = 0; +}; + +bool quality_is_better(const ArchiveEntry& candidate, const ArchiveEntry& incumbent); +bool validate_delta(const ArchiveDelta& delta, std::string* error = nullptr); + +// Binary format (all values little-endian): a 32-byte header containing magic, +// format version, payload size and CRC-32/IEEE, followed by a self-contained +// payload. The checksum covers every entry and every FP32 coefficient bit. +std::vector serialize_delta( + const ArchiveDelta& delta, + std::uint32_t* payload_crc32 = nullptr, + std::string* error = nullptr); + +ReadResult read_delta(const std::filesystem::path& path); + +std::filesystem::path archive_directory( + const std::filesystem::path& global_root, + const std::string& run_id, + std::int32_t topology); + +// Publishes a new immutable delta under: +// /runs//topology_NNN/archive/ +// delta_<20-digit-sequence>_.szar +// File data is flushed before atomic publication. POSIX also fsyncs the +// directory; Windows uses write-through rename plus a best-effort directory +// flush because NTFS/ReFS can reject FlushFileBuffers on directory handles. +// Existing different contents are never overwritten. +CommitResult commit_delta( + const std::filesystem::path& global_root, + ArchiveDelta delta); + +// Scans only the merge namespace /runs and ignores temporary files. +ArchiveScan scan_archives(const std::filesystem::path& global_root); + +// Selects every non-conflicting delta generation. If a cloned run_id produces +// multiple CRCs for the same (run_id, topology, sequence), that sequence is +// reported by scan_archives and excluded; independent earlier/later deltas are +// still usable because deltas do not depend on preceding generations. +ArchiveGenerationMap select_nonconflicting_deltas(const ArchiveScan& scan); + +// Merges all non-conflicting deltas from independent runs. Only the requested +// topology, objective version and fingerprint participate; incompatible deltas are +// reported rather than silently mixed. The best entry for each descriptor is +// chosen deterministically, making the result independent of Git merge order. +MergeResult merge_deltas_for_topology( + const ArchiveScan& scan, + std::int32_t topology, + std::uint32_t objective_version, + std::uint64_t topology_fingerprint); + +} // namespace szilassi::archive