diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..f4c5783
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,29 @@
+---
+Language: Cpp
+BasedOnStyle: Google
+
+AccessModifierOffset: -2
+AlignAfterOpenBracket: AlwaysBreak
+AllowAllParametersOfDeclarationOnNextLine: true
+# Do NOT force it always
+AlwaysBreakAfterReturnType: None
+AlignOperands: DontAlign
+BraceWrapping:
+ AfterClass: false
+ AfterFunction: false
+ AfterNamespace: false
+ AfterStruct: false
+BreakBeforeBraces: Custom
+BreakBeforeTernaryOperators: true
+BinPackArguments: false
+BinPackParameters: false
+ColumnLimit: 100
+ConstructorInitializerIndentWidth: 0
+ContinuationIndentWidth: 2
+DerivePointerAlignment: false
+PointerAlignment: Middle
+# Make it "cheap" to put the return type on its own line when needed
+PenaltyReturnTypeOnItsOwnLine: 50 # try 10–50
+ReflowComments: false
+IncludeBlocks: Preserve
+...
diff --git a/.clang-tidy b/.clang-tidy
new file mode 100644
index 0000000..d84a1dc
--- /dev/null
+++ b/.clang-tidy
@@ -0,0 +1,41 @@
+Checks: >
+ # Disable all checks by default to explicitly enable those you want
+ -*,
+
+ # Bug Prone Checks: Focus on potential bugs and common mistakes
+ bugprone-*,
+
+ # Modernize Checks: Suggest modern C++ features and idioms
+ modernize-*,
+
+ # Performance Checks: Identify potential performance pitfalls
+ performance-*,
+
+ # Readability Checks: Improve code readability and maintainability
+ readability-*,
+
+ # Specific exceptions or stricter rules
+ -modernize-use-trailing-return-type, # Often generates noisy suggestions
+
+ # NOTE: These slow checks are disabled for pre-commit speed.
+ # Consider running them in CI:
+ # - clang-analyzer-* (deep dataflow analysis)
+ # - cppcoreguidelines-* (many checks, some overlap)
+ # - misc-*
+
+WarningsAsErrors: >
+ bugprone-*,
+
+HeaderFilterRegex: '^((?!/opt/ros|/usr/include).)*$'
+
+# AnalyzeTemporaryDtors: true
+# Disabled for speed. Enable in CI for thorough analysis.
+
+FormatStyle: file
+# Integrate with .clang-format to ensure consistent formatting options.
+
+CheckOptions:
+ # bugprone-argument-comment.StrictMode: 1
+ # readability-function-size.StatementThreshold: 800
+ # google-readability-braces-around-statements.ShortStatementLines: 1
+ # cert-str34-c.Strip: 'printf,sprintf,log'
\ No newline at end of file
diff --git a/.github/workflows/rolling_ros2_ci.yml b/.github/workflows/rolling_ros2_ci.yml
index c7bf77f..528317c 100644
--- a/.github/workflows/rolling_ros2_ci.yml
+++ b/.github/workflows/rolling_ros2_ci.yml
@@ -17,8 +17,6 @@ jobs:
CCACHE_DIR: "${{ github.workspace }}/.ccache" # directory for ccache (and how we enable ccache in industrial_ci)
steps:
- uses: actions/checkout@v4 # clone target repository
- with:
- ref: rolling
- uses: actions/cache@v4 # fetch/store the directory used by ccache before/after the ci run
with:
path: ${{ env.CCACHE_DIR }}
diff --git a/.gitignore b/.gitignore
index a37b784..bf7667b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,5 @@ src/franka_description
src/franka_ros2
src/libfranka
MUJOCO_LOG.TXT
+src/crisp_controllers.egg-info
+tmp
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..2404464
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,51 @@
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v5.0.0
+ hooks:
+ - id: check-yaml
+ - id: check-added-large-files
+ args:
+ - --maxkb=2048
+ - id: check-merge-conflict
+ - repo: https://github.com/gitleaks/gitleaks
+ rev: v8.28.0
+ hooks:
+ - id: gitleaks
+
+ # CPP hooks
+ - repo: https://github.com/pre-commit/mirrors-clang-format
+ rev: v20.1.8
+ hooks:
+ - id: clang-format
+ types_or: [c++, c, cuda]
+
+ - repo: local
+ hooks:
+ - id: clang-tidy
+ name: clang-tidy
+ description: C++ code analysis tool
+ language: system
+ types_or: [c++, c, cuda]
+ always_run: false
+ pass_filenames: true
+ entry: bash -c
+ args:
+ - |
+ # If pre-commit passed no files, do nothing (success).
+ if [ "$#" -eq 0 ]; then
+ exit 0
+ fi
+ # Find compile_commands.json by searching up from current directory
+ d="$PWD"
+ while [ "$d" != "/" ]; do
+ if [ -f "$d/build/compile_commands.json" ]; then
+ # Run clang-tidy and ignore PCH-related errors
+ clang-tidy -p "$d/build" "$@" 2>&1 | grep -v "is not a valid precompiled PCH file" | grep -v "is not a PCH file:" || true
+ exit 0
+ fi
+ d="$(dirname "$d")"
+ done
+ echo "Error: compile_commands.json not found. Build the project first." >&2
+ exit 1
+ - --
+
diff --git a/.python-version b/.python-version
deleted file mode 100644
index 2c07333..0000000
--- a/.python-version
+++ /dev/null
@@ -1 +0,0 @@
-3.11
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cf05cec..e86b801 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.5)
+cmake_minimum_required(VERSION 3.16)
project(crisp_controllers)
find_program(CCACHE_PROGRAM ccache)
@@ -63,8 +63,8 @@ find_package(realtime_tools REQUIRED)
find_package(generate_parameter_library REQUIRED)
generate_parameter_library(
- cartesian_impedance_controller_parameters
- src/cartesian_impedance_controller.yaml
+ cartesian_controller_parameters
+ src/cartesian_controller.yaml
)
generate_parameter_library(
@@ -112,7 +112,7 @@ endif()
# Link parameter libraries to the main library
target_link_libraries(${PROJECT_NAME}
PRIVATE
- cartesian_impedance_controller_parameters
+ cartesian_controller_parameters
pose_broadcaster_parameters
torque_feedback_controller_parameters
twist_broadcaster_parameters
diff --git a/Doxyfile b/Doxyfile
deleted file mode 100644
index 7c63639..0000000
--- a/Doxyfile
+++ /dev/null
@@ -1,10 +0,0 @@
-PROJECT_NAME = "CRISP Controllers"
-OUTPUT_DIRECTORY = doc
-EXTRACT_ALL = YES
-EXTRACT_PRIVATE = YES
-EXTRACT_PACKAGE = YES
-EXTRACT_STATIC = YES
-INPUT = include/crisp_controllers
-RECURSIVE = YES
-GENERATE_HTML = YES
-GENERATE_LATEX = NO
diff --git a/README.md b/README.md
index 0732961..5bb20bf 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,10 @@
CRISP is a collection of real-time, C++ controllers for compliant torque-based control for manipulators compatible with `ros2_control`, including **Cartesian Impedance Control** and **Operational Space Control**. Developed for deploying high-level learning-based policies (VLA, Diffusion, ...) and teleoperation on your manipulator. It is robot-agnostic and compatible with any manipulator offering and effort interface. Check the [project website](https://utiasdsl.github.io/crisp_controllers/) for guides, getting started, demos and more!
+
+> [!NOTE]
+> To reduce maintenance overhead, all ROS 2 distributions are supported from a single `main` branch. The code uses compile-time macros to handle version-specific differences.
+
## Features
- 🐍 **Python interface** to move your ROS2 robot around without having to think about topics, spinning, and more ROS2 concepts but without loosing the powerful ROS2 API. Check [crisp_py](https://github.com/utiasDSL/crisp_py) for more information and examples.
- 🔁 **Gymnasium environment** with utilities to deploy learning-based policies and record trajectories in LeRobotFormat. Check [crisp_gym](https://github.com/utiasDSL/crisp_gym).
@@ -24,10 +28,9 @@ ______
##### Updating the website
-We use [mkdocs](https://www.mkdocs.org/) to generate the website from markdown. You can modify it within `docs/` in particular the `index.md`.
-Then you can serve it locally or update the github pages with:
+We use [zensical](https://www.zensical.org/) to generate the website from markdown. You can modify it within `docs/` in particular the `index.md`.
+You can run the website locally with:
```bash
-uv run mkdocs serve
-uv run mkdocs gh-deploy
+pixi run zensical serve
```
-
+The website is automatically generated and deployed on GitHub pages with the CI. You can check the [project website](https://utiasdsl.github.io/crisp_controllers/) for guides, getting started, demos and more!
diff --git a/docs/getting_started_controllers.md b/docs/getting_started_controllers.md
index 627e469..c288261 100644
--- a/docs/getting_started_controllers.md
+++ b/docs/getting_started_controllers.md
@@ -22,7 +22,7 @@ Robots that we tested are:
- **FR3** (real and simulated): https://github.com/danielsanjosepro/pixi_franka_ros2
- **FER/Panda** (real): https://github.com/lvjonok/pixi_panda_ros2
-- **UR5** (real): https://github.com/danielsanjosepro/crisp_ur_demo
+- **UR** (real): https://github.com/lvjonok/pixi_ur_ros2
- **IIWA** (simulated): https://github.com/danielsanjosepro/pixi_iiwa_ros2
### Grippers
diff --git a/docs/index.md b/docs/index.md
index d5b5623..b31d232 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -123,7 +123,7 @@ Our controllers have been tested in real hardware on the following robots:
-
+
UR5
@@ -172,8 +172,8 @@ Grippers tested in real hardware:
Many thanks community contributions:
-- Lev Kozlov [@lvjonok](https://github.com/lvjonok) for testing and providing interfaces for the Panda/FER.
-- Vincenzo Orlando [@VinsOrl09](https://github.com/lvjonok) for testing and providing interfaces for the UR robots.
+- Lev Kozlov [@lvjonok](https://github.com/lvjonok) for testing and providing interfaces for the Panda/FER and UR with pixi.
+- Vincenzo Orlando [@VinsOrl09](https://github.com/lvjonok) for testing and providing interfaces for the UR robots in docker containers.
- Linus Schwarz [@Linus-Schwarz](https://github.com/Linus-Schwarz) for testing and providing interfaces for the BOTA force-torque sensors.
- Niklas Schlueter [@niklasschlueter](https://github.com/niklasschlueter) for testing and providing interfaces for the DynaArm robot.
diff --git a/include/crisp_controllers/cartesian_controller.hpp b/include/crisp_controllers/cartesian_controller.hpp
index 1e55898..c14f4a2 100644
--- a/include/crisp_controllers/cartesian_controller.hpp
+++ b/include/crisp_controllers/cartesian_controller.hpp
@@ -3,13 +3,14 @@
/**
* @file cartesian_controller.hpp
* @brief Cartesian controller implementation for robot manipulation (supports impedance and OSC)
- * @author Your Organization
*/
-#include
+#include
+#include
+#include
+
+#include // NOLINT(build/include_order)
-#include
-#include
#include
#include
#include
@@ -17,14 +18,18 @@
#include
#include
-#include "realtime_tools/realtime_buffer.hpp"
-#include
+#include
+
+#if ROS2_VERSION_ABOVE_HUMBLE
+#include
+#else
+#include
+#endif
+
#include
-#include
-#include
+#include "realtime_tools/realtime_buffer.hpp"
-using CallbackReturn =
- rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
+using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
namespace crisp_controllers {
@@ -36,8 +41,7 @@ namespace crisp_controllers {
* allowing for compliant interaction with the environment while maintaining
* desired position and orientation targets.
*/
-class CartesianController
- : public controller_interface::ControllerInterface {
+class CartesianController : public controller_interface::ControllerInterface {
public:
/**
* @brief Get the command interface configuration
@@ -60,7 +64,7 @@ class CartesianController
* @return Success/failure of update
*/
controller_interface::return_type
- update(const rclcpp::Time &time, const rclcpp::Duration &period) override;
+ update(const rclcpp::Time & time, const rclcpp::Duration & period) override;
/**
* @brief Initialize the controller
@@ -73,24 +77,21 @@ class CartesianController
* @param previous_state Previous lifecycle state
* @return Success/failure of configuration
*/
- CallbackReturn
- on_configure(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_configure(const rclcpp_lifecycle::State & previous_state) override;
/**
* @brief Activate the controller
* @param previous_state Previous lifecycle state
* @return Success/failure of activation
*/
- CallbackReturn
- on_activate(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_activate(const rclcpp_lifecycle::State & previous_state) override;
/**
* @brief Deactivate the controller
* @param previous_state Previous lifecycle state
* @return Success/failure of deactivation
*/
- CallbackReturn
- on_deactivate(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_deactivate(const rclcpp_lifecycle::State & previous_state) override;
/*CartesianImpedanceController();*/
@@ -147,14 +148,15 @@ class CartesianController
Eigen::Quaterniond target_orientation_;
/** @brief Target wrench in task space */
Eigen::VectorXd target_wrench_;
- /** @brief Combined target pose as SE3 transformation */
- pinocchio::SE3 target_pose_;
+ /** @brief Desired target position in Cartesian space after applying filtering */
+ Eigen::Vector3d desired_position_;
+ /** @brief Desired target orientation as quaternion after applying filtering */
+ Eigen::Quaterniond desired_orientation_;
/** @brief Parameter listener for dynamic parameter updates */
- std::shared_ptr
- params_listener_;
+ std::shared_ptr params_listener_;
/** @brief Current parameter values */
- cartesian_impedance_controller::Params params_;
+ cartesian_controller::Params params_;
/** @brief Frame ID of the end effector in the robot model */
int end_effector_frame_id;
@@ -187,6 +189,8 @@ class CartesianController
Eigen::VectorXd q_ref;
/** @brief Reference joint velocities */
Eigen::VectorXd dq_ref;
+ /** @brief Target joint positions for posture task */
+ Eigen::VectorXd q_target;
/** @brief Previously computed torque */
Eigen::VectorXd tau_previous;
@@ -203,7 +207,6 @@ class CartesianController
/** @brief Friction parameters 3 of size nv */
Eigen::VectorXd fp3;
-
/** @brief Allowed type of joints **/
const std::unordered_set> allowed_joint_types = {
"JointModelRX",
@@ -215,8 +218,8 @@ class CartesianController
"JointModelRUBZ",
};
/** @brief Continous joint types that should be considered separetly. **/
- const std::unordered_set> continous_joint_types =
- {"JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
+ const std::unordered_set> continous_joint_types = {
+ "JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
/** @brief Maximum allowed delta values for error clipping */
Eigen::VectorXd max_delta_ = Eigen::VectorXd::Zero(6);
@@ -246,18 +249,23 @@ class CartesianController
/** @brief Final desired torque command */
Eigen::VectorXd tau_d;
+ /** @brief Inverse of the manipulator joint mass projected in Cartesian space (6x6) */
+ Eigen::Matrix Mx_inv = Eigen::Matrix::Zero();
+ /** @brief the manipulator joint mass projected in Cartesian space (6x6) */
+ Eigen::Matrix Mx = Eigen::Matrix::Zero();
+
/**
* @brief Log debug information based on parameter settings
* @param time Current time for throttling logs
*/
- void log_debug_info(const rclcpp::Time& time);
+ void log_debug_info(const rclcpp::Time & time);
/**
* @brief Check publisher count for a specific topic
* @param topic_name Name of the topic to check
* @return true if publisher count is safe (<=1), false otherwise
*/
- bool check_topic_publisher_count(const std::string& topic_name);
+ bool check_topic_publisher_count(const std::string & topic_name);
};
-} // namespace crisp_controllers
+} // namespace crisp_controllers
diff --git a/include/crisp_controllers/pch.hpp b/include/crisp_controllers/pch.hpp
index 0304aa2..9072216 100644
--- a/include/crisp_controllers/pch.hpp
+++ b/include/crisp_controllers/pch.hpp
@@ -1,12 +1,11 @@
#pragma once
+#include
#include
#include
#include
-#include
-#include
-#include
+#include // NOLINT(build/include_order)
#include
#include
-
+#include
diff --git a/include/crisp_controllers/pose_broadcaster.hpp b/include/crisp_controllers/pose_broadcaster.hpp
index fe04c2b..46fb317 100644
--- a/include/crisp_controllers/pose_broadcaster.hpp
+++ b/include/crisp_controllers/pose_broadcaster.hpp
@@ -1,38 +1,44 @@
#pragma once
-#include
+
+#include
+#include
+#include
+
+#include // NOLINT(build/include_order)
#include
-#include
+#include
+
+#if ROS2_VERSION_ABOVE_HUMBLE
#include
-#include
+#else
+#include
+#endif
+
+#include
#include
+#include
-#include
#include
+#include
#include
-
-using CallbackReturn =
- rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
+using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
namespace crisp_controllers {
-class PoseBroadcaster
- : public controller_interface::ControllerInterface {
+class PoseBroadcaster : public controller_interface::ControllerInterface {
public:
[[nodiscard]] controller_interface::InterfaceConfiguration
command_interface_configuration() const override;
[[nodiscard]] controller_interface::InterfaceConfiguration
state_interface_configuration() const override;
controller_interface::return_type
- update(const rclcpp::Time &time, const rclcpp::Duration &period) override;
+ update(const rclcpp::Time & time, const rclcpp::Duration & period) override;
CallbackReturn on_init() override;
- CallbackReturn
- on_configure(const rclcpp_lifecycle::State &previous_state) override;
- CallbackReturn
- on_activate(const rclcpp_lifecycle::State &previous_state) override;
- CallbackReturn
- on_deactivate(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_configure(const rclcpp_lifecycle::State & previous_state) override;
+ CallbackReturn on_activate(const rclcpp_lifecycle::State & previous_state) override;
+ CallbackReturn on_deactivate(const rclcpp_lifecycle::State & previous_state) override;
private:
std::shared_ptr params_listener_;
@@ -42,7 +48,6 @@ class PoseBroadcaster
std::shared_ptr>
realtime_pose_publisher_;
-
std::string end_effector_frame_;
int end_effector_frame_id;
@@ -60,13 +65,13 @@ class PoseBroadcaster
"JointModelRUBZ",
};
/** @brief Continous joint types that should be considered separetly. **/
- const std::unordered_set> continous_joint_types =
- {"JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
+ const std::unordered_set> continous_joint_types = {
+ "JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
Eigen::VectorXd q;
-
- rclcpp::Duration publish_elapsed_{0,0};
- rclcpp::Duration publish_interval_{0,0};
+
+ rclcpp::Duration publish_elapsed_{0, 0};
+ rclcpp::Duration publish_interval_{0, 0};
};
-} // namespace crisp_controllers
+} // namespace crisp_controllers
diff --git a/include/crisp_controllers/torque_feedback_controller.hpp b/include/crisp_controllers/torque_feedback_controller.hpp
index b6a19bd..0bc9475 100644
--- a/include/crisp_controllers/torque_feedback_controller.hpp
+++ b/include/crisp_controllers/torque_feedback_controller.hpp
@@ -1,15 +1,25 @@
#pragma once
-#include
+
+#include
+#include
+#include
+
+#include // NOLINT(build/include_order)
#include
+#include
+
+#if ROS2_VERSION_ABOVE_HUMBLE
#include
-#include
+#else
+#include
+#endif
#include
-#include
#include
+#include
+#include
-using CallbackReturn =
- rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
+using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
namespace crisp_controllers {
@@ -34,8 +44,7 @@ namespace crisp_controllers {
* - tau_friction: Friction compensation torques
* - tau_nullspace: Nullspace control torques to maintain initial joint positions
*/
-class TorqueFeedbackController
- : public controller_interface::ControllerInterface {
+class TorqueFeedbackController : public controller_interface::ControllerInterface {
public:
/**
* @brief Configure command interfaces for the controller
@@ -43,14 +52,14 @@ class TorqueFeedbackController
*/
[[nodiscard]] controller_interface::InterfaceConfiguration
command_interface_configuration() const override;
-
+
/**
* @brief Configure state interfaces for the controller
* @return Configuration specifying joint position, velocity, and effort interfaces
*/
[[nodiscard]] controller_interface::InterfaceConfiguration
state_interface_configuration() const override;
-
+
/**
* @brief Main control update loop
*
@@ -63,37 +72,34 @@ class TorqueFeedbackController
* @return Control execution status
*/
controller_interface::return_type
- update(const rclcpp::Time &time, const rclcpp::Duration &period) override;
-
+ update(const rclcpp::Time & time, const rclcpp::Duration & period) override;
+
/**
* @brief Initialize controller parameters and subscribers
* @return Initialization status
*/
CallbackReturn on_init() override;
-
+
/**
* @brief Configure controller (set collision behavior if using real hardware)
* @param previous_state Previous lifecycle state
* @return Configuration status
*/
- CallbackReturn
- on_configure(const rclcpp_lifecycle::State &previous_state) override;
-
+ CallbackReturn on_configure(const rclcpp_lifecycle::State & previous_state) override;
+
/**
* @brief Activate controller and initialize joint states
* @param previous_state Previous lifecycle state
* @return Activation status
*/
- CallbackReturn
- on_activate(const rclcpp_lifecycle::State &previous_state) override;
-
+ CallbackReturn on_activate(const rclcpp_lifecycle::State & previous_state) override;
+
/**
* @brief Deactivate controller
* @param previous_state Previous lifecycle state
* @return Deactivation status
*/
- CallbackReturn
- on_deactivate(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_deactivate(const rclcpp_lifecycle::State & previous_state) override;
private:
/// Parameter listener for dynamic parameter updates
@@ -103,10 +109,10 @@ class TorqueFeedbackController
/// Subscriber for external torque commands
rclcpp::Subscription::SharedPtr joint_sub_;
-
+
/// Publisher for commanded wrench
rclcpp::Publisher::SharedPtr wrench_pub_;
-
+
/// Timer for 200Hz wrench publishing
rclcpp::TimerBase::SharedPtr wrench_timer_;
@@ -117,9 +123,8 @@ class TorqueFeedbackController
* Only effort values are used from the incoming message.
* @param msg Joint state message containing external torques in effort field
*/
- void
- target_joint_callback_(const sensor_msgs::msg::JointState::SharedPtr msg);
-
+ void target_joint_callback_(const sensor_msgs::msg::JointState::SharedPtr msg);
+
/**
* @brief Callback for wrench publishing timer
*
@@ -142,30 +147,30 @@ class TorqueFeedbackController
/// External torques received from subscriber
Eigen::VectorXd tau_ext_;
-
+
/// Initial joint positions recorded on activation (nullspace target)
Eigen::VectorXd q_init_;
-
+
/// Nullspace weights (computed from parameters)
Eigen::VectorXd nullspace_weights_;
-
+
/// Friction parameters as Eigen vectors
Eigen::VectorXd friction_fp1_;
Eigen::VectorXd friction_fp2_;
Eigen::VectorXd friction_fp3_;
-
+
/// Nullspace projection matrix
Eigen::MatrixXd nullspace_projection_;
-
+
/// Pinocchio model and data for dynamics computations
pinocchio::Model model_;
pinocchio::Data data_;
-
+
/// End-effector frame ID for jacobian computation
pinocchio::FrameIndex end_effector_frame_id_;
-
+
/// Jacobian matrix for nullspace projection
Eigen::MatrixXd J_;
};
-} // namespace crisp_controllers
+} // namespace crisp_controllers
diff --git a/include/crisp_controllers/twist_broadcaster.hpp b/include/crisp_controllers/twist_broadcaster.hpp
index c6f9c89..f4e7694 100644
--- a/include/crisp_controllers/twist_broadcaster.hpp
+++ b/include/crisp_controllers/twist_broadcaster.hpp
@@ -1,38 +1,44 @@
#pragma once
-#include
+
+#include
+#include
+#include
+
+#include // NOLINT(build/include_order)
#include
-#include
+#include
+
+#if ROS2_VERSION_ABOVE_HUMBLE
#include
-#include
+#else
+#include
+#endif
+
+#include
#include
+#include
-#include
#include
+#include
#include
-
-using CallbackReturn =
- rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
+using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
namespace crisp_controllers {
-class TwistBroadcaster
- : public controller_interface::ControllerInterface {
+class TwistBroadcaster : public controller_interface::ControllerInterface {
public:
[[nodiscard]] controller_interface::InterfaceConfiguration
command_interface_configuration() const override;
[[nodiscard]] controller_interface::InterfaceConfiguration
state_interface_configuration() const override;
controller_interface::return_type
- update(const rclcpp::Time &time, const rclcpp::Duration &period) override;
+ update(const rclcpp::Time & time, const rclcpp::Duration & period) override;
CallbackReturn on_init() override;
- CallbackReturn
- on_configure(const rclcpp_lifecycle::State &previous_state) override;
- CallbackReturn
- on_activate(const rclcpp_lifecycle::State &previous_state) override;
- CallbackReturn
- on_deactivate(const rclcpp_lifecycle::State &previous_state) override;
+ CallbackReturn on_configure(const rclcpp_lifecycle::State & previous_state) override;
+ CallbackReturn on_activate(const rclcpp_lifecycle::State & previous_state) override;
+ CallbackReturn on_deactivate(const rclcpp_lifecycle::State & previous_state) override;
private:
std::shared_ptr params_listener_;
@@ -42,7 +48,6 @@ class TwistBroadcaster
std::shared_ptr>
realtime_twist_publisher_;
-
std::string end_effector_frame_;
int end_effector_frame_id;
@@ -60,14 +65,14 @@ class TwistBroadcaster
"JointModelRUBZ",
};
/** @brief Continous joint types that should be considered separetly. **/
- const std::unordered_set> continous_joint_types =
- {"JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
+ const std::unordered_set> continous_joint_types = {
+ "JointModelRUBX", "JointModelRUBY", "JointModelRUBZ"};
Eigen::VectorXd q;
Eigen::VectorXd q_dot;
-
- rclcpp::Duration publish_elapsed_{0,0};
- rclcpp::Duration publish_interval_{0,0};
+
+ rclcpp::Duration publish_elapsed_{0, 0};
+ rclcpp::Duration publish_interval_{0, 0};
};
-} // namespace crisp_controllers
+} // namespace crisp_controllers
diff --git a/include/crisp_controllers/utils/fiters.hpp b/include/crisp_controllers/utils/fiters.hpp
index 2b6fbe6..1a59200 100644
--- a/include/crisp_controllers/utils/fiters.hpp
+++ b/include/crisp_controllers/utils/fiters.hpp
@@ -1,6 +1,10 @@
#pragma once
-#include
+#include
+#include
+#include
+
+#include // NOLINT(build/include_order)
/**
* @brief Compute the exponential moving average of a value
@@ -11,11 +15,9 @@
* @return returns the filtered value
*/
template
- inline T exponential_moving_average(const T output, const T current, const double alpha)
- {
- return (1.0 - alpha) * current + alpha * output;
- }
-
+inline T exponential_moving_average(const T output, const T current, const double alpha) {
+ return (1.0 - alpha) * current + alpha * output;
+}
/**
* @brief Filter the joint values from a message used by the controller
@@ -26,23 +28,22 @@ template
*/
template
void filterJointValues(
- const std::vector& msg_names,
- const FieldType& msg_values,
- const std::vector& desired_joint_names,
- Eigen::VectorXd& output)
-{
- std::unordered_map name_to_index;
- for (size_t i = 0; i < desired_joint_names.size(); ++i) {
- name_to_index[desired_joint_names[i]] = i;
- }
+ const std::vector & msg_names,
+ const FieldType & msg_values,
+ const std::vector & desired_joint_names,
+ Eigen::VectorXd & output) {
+ std::unordered_map name_to_index;
+ for (size_t i = 0; i < desired_joint_names.size(); ++i) {
+ name_to_index[desired_joint_names[i]] = i;
+ }
- for (size_t i = 0; i < msg_names.size(); ++i) {
- if (msg_names[i].empty() || msg_names[i].size() > 1000) {
- continue;
- }
- auto it = name_to_index.find(msg_names[i]);
- if (it != name_to_index.end() && i < msg_values.size()) {
- output(it->second) = msg_values[i];
- }
+ for (size_t i = 0; i < msg_names.size(); ++i) {
+ if (msg_names[i].empty() || msg_names[i].size() > 1000) {
+ continue;
}
+ auto it = name_to_index.find(msg_names[i]);
+ if (it != name_to_index.end() && i < msg_values.size()) {
+ output(it->second) = msg_values[i];
+ }
+ }
}
diff --git a/include/crisp_controllers/utils/friction_model.hpp b/include/crisp_controllers/utils/friction_model.hpp
index 88742bc..20635a8 100644
--- a/include/crisp_controllers/utils/friction_model.hpp
+++ b/include/crisp_controllers/utils/friction_model.hpp
@@ -2,17 +2,16 @@
// Based in
// https://github.com/marcocognetti/FrankaEmikaPandaDynModel/tree/master
-#include
#include
#include
+#include
-
-inline Eigen::VectorXd get_friction(const Eigen::VectorXd &dq,
- Eigen::VectorXd fp1,
- Eigen::VectorXd fp2,
- Eigen::VectorXd fp3) {
- return (
- fp1.array() / (Eigen::VectorXd::Ones(dq.size()).array() + (-fp2.array() * (dq.array() + fp3.array())).exp())
- - fp1.array() / (Eigen::VectorXd::Ones(dq.size()).array() + (-fp2.array() * fp3.array()).exp())
- ).matrix();
+inline Eigen::VectorXd get_friction(
+ const Eigen::VectorXd & dq, Eigen::VectorXd fp1, Eigen::VectorXd fp2, Eigen::VectorXd fp3) {
+ return (fp1.array() /
+ (Eigen::VectorXd::Ones(dq.size()).array() +
+ (-fp2.array() * (dq.array() + fp3.array())).exp()) -
+ fp1.array() /
+ (Eigen::VectorXd::Ones(dq.size()).array() + (-fp2.array() * fp3.array()).exp()))
+ .matrix();
}
diff --git a/include/crisp_controllers/utils/joint_limits.hpp b/include/crisp_controllers/utils/joint_limits.hpp
index 8298292..5e8b743 100644
--- a/include/crisp_controllers/utils/joint_limits.hpp
+++ b/include/crisp_controllers/utils/joint_limits.hpp
@@ -1,14 +1,19 @@
-#include
+#pragma once
-using namespace Eigen;
+#include // NOLINT(build/include_order)
-inline Eigen::VectorXd get_joint_limit_torque(const VectorXd &joint_positions,
- const VectorXd &lower_limits,
- const VectorXd &upper_limits,
- double safe_range = 0.3, // [rad]
- double max_torque = 5.0 // [Nm]
-) {
+using Eigen::Array;
+using Eigen::ArrayXd;
+using Eigen::Dynamic;
+using Eigen::VectorXd;
+inline Eigen::VectorXd get_joint_limit_torque(
+ const VectorXd & joint_positions,
+ const VectorXd & lower_limits,
+ const VectorXd & upper_limits,
+ double safe_range = 0.3, // [rad]
+ double max_torque = 5.0 // [Nm]
+) {
VectorXd torques = VectorXd::Zero(joint_positions.size());
VectorXd dist_to_lower = joint_positions - lower_limits;
@@ -17,15 +22,13 @@ inline Eigen::VectorXd get_joint_limit_torque(const VectorXd &joint_positions,
Array near_lower = (dist_to_lower.array() < safe_range);
Array near_upper = (dist_to_upper.array() < safe_range);
- ArrayXd lower_ratios = ((safe_range - dist_to_lower.array()) / safe_range)
- .cwiseMax(0.0)
- .cwiseMin(1.0);
- ArrayXd upper_ratios = ((safe_range - dist_to_upper.array()) / safe_range)
- .cwiseMax(0.0)
- .cwiseMin(1.0);
+ ArrayXd lower_ratios =
+ ((safe_range - dist_to_lower.array()) / safe_range).cwiseMax(0.0).cwiseMin(1.0);
+ ArrayXd upper_ratios =
+ ((safe_range - dist_to_upper.array()) / safe_range).cwiseMax(0.0).cwiseMin(1.0);
torques = (near_lower.select(max_torque * lower_ratios, 0.0) -
near_upper.select(max_torque * upper_ratios, 0.0))
- .matrix();
+ .matrix();
return torques;
}
diff --git a/include/crisp_controllers/utils/pseudo_inverse.hpp b/include/crisp_controllers/utils/pseudo_inverse.hpp
index c1836e4..80a0b55 100644
--- a/include/crisp_controllers/utils/pseudo_inverse.hpp
+++ b/include/crisp_controllers/utils/pseudo_inverse.hpp
@@ -1,43 +1,38 @@
+#pragma once
+
#include
#include
#include
namespace crisp_controllers {
-inline Eigen::MatrixXd pseudo_inverse(const Eigen::MatrixXd &matrix,
- double epsilon = 1e-4) {
- Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU |
- Eigen::ComputeFullV);
+inline Eigen::MatrixXd pseudo_inverse(const Eigen::MatrixXd & matrix, double epsilon = 1e-4) {
+ Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU | Eigen::ComputeFullV);
Eigen::VectorXd singularValues = svd.singularValues();
Eigen::MatrixXd S = Eigen::MatrixXd::Zero(svd.matrixV().cols(), svd.matrixU().rows());
for (int i = 0; i < singularValues.size(); ++i) {
- S(i, i) =
- singularValues[i] /
- (singularValues[i] * singularValues[i] + epsilon * epsilon);
+ S(i, i) = singularValues[i] / (singularValues[i] * singularValues[i] + epsilon * epsilon);
}
return svd.matrixV() * S * svd.matrixU().transpose();
}
-inline Eigen::MatrixXd pseudo_inverse_moore_penrose(const Eigen::MatrixXd &matrix,
- double epsilon = 1e-6) {
- Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU |
- Eigen::ComputeFullV);
+inline Eigen::MatrixXd
+pseudo_inverse_moore_penrose(const Eigen::MatrixXd & matrix, double epsilon = 1e-6) {
+ Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU | Eigen::ComputeFullV);
Eigen::VectorXd singularValues = svd.singularValues();
Eigen::MatrixXd S = Eigen::MatrixXd::Zero(svd.matrixV().cols(), svd.matrixU().rows());
for (int i = 0; i < singularValues.size(); ++i) {
- S(i,i) = singularValues[i] > epsilon ? 1.0 / singularValues[i] : 0.0;
+ S(i, i) = singularValues[i] > epsilon ? 1.0 / singularValues[i] : 0.0;
}
return svd.matrixV() * S * svd.matrixU().transpose();
}
-inline bool is_near_singular(const Eigen::MatrixXd &matrix, double epsilon = 1e-6) {
- Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU |
- Eigen::ComputeFullV);
+inline bool is_near_singular(const Eigen::MatrixXd & matrix, double epsilon = 1e-6) {
+ Eigen::JacobiSVD svd(matrix, Eigen::ComputeFullU | Eigen::ComputeFullV);
Eigen::VectorXd singularValues = svd.singularValues();
return (singularValues.array() < epsilon).any();
}
-
-} // namespace crisp_controllers
+} // namespace crisp_controllers
diff --git a/include/crisp_controllers/utils/ros2_version.hpp b/include/crisp_controllers/utils/ros2_version.hpp
new file mode 100644
index 0000000..1b10393
--- /dev/null
+++ b/include/crisp_controllers/utils/ros2_version.hpp
@@ -0,0 +1,42 @@
+#pragma once
+
+// ROS2 version checking utilities for conditional compilation
+// Used to handle API differences between ROS2 distributions
+
+#include
+
+// ============================================================================
+// ROS2 Distro version mapping (RCLCPP_VERSION_MAJOR)
+// Humble = 16
+// Iron = 21
+// Jazzy = 28
+// Kilted = 29+
+// ============================================================================
+
+#define ROS2_DISTRO_HUMBLE 16
+#define ROS2_DISTRO_IRON 21
+#define ROS2_DISTRO_JAZZY 28
+
+// Convenience macros for version checking (strictly greater than)
+#define ROS2_VERSION_ABOVE_HUMBLE (RCLCPP_VERSION_MAJOR > ROS2_DISTRO_HUMBLE)
+#define ROS2_VERSION_ABOVE_IRON (RCLCPP_VERSION_MAJOR > ROS2_DISTRO_IRON)
+#define ROS2_VERSION_ABOVE_JAZZY (RCLCPP_VERSION_MAJOR > ROS2_DISTRO_JAZZY)
+
+// ============================================================================
+// Feature-specific macros
+// ============================================================================
+
+// REGISTER_ROS2_CONTROL_INTROSPECTION was added in ros2_control 4.27.0
+// Available in Jazzy (backported) and Kilted/Rolling
+#if __has_include()
+#include
+#if HARDWARE_INTERFACE_VERSION_GTE(4, 27, 0)
+#define HAS_ROS2_CONTROL_INTROSPECTION 1
+#else
+#define HAS_ROS2_CONTROL_INTROSPECTION 0
+#endif
+#else
+#define HAS_ROS2_CONTROL_INTROSPECTION 0
+#endif
+
+#define REALTIME_TOOLS_NEW_API ROS2_VERSION_ABOVE_JAZZY
diff --git a/include/crisp_controllers/utils/torque_rate_saturation.hpp b/include/crisp_controllers/utils/torque_rate_saturation.hpp
index dc1c7e3..5211ef2 100644
--- a/include/crisp_controllers/utils/torque_rate_saturation.hpp
+++ b/include/crisp_controllers/utils/torque_rate_saturation.hpp
@@ -3,11 +3,11 @@
#include
template
-inline Eigen::VectorXd saturateTorqueRate(const Eigen::VectorXd &tau_d_calculated,
- const Eigen::VectorXd &tau_J_d,
- const T &delta_tau_max) {
+inline Eigen::VectorXd saturateTorqueRate(
+ const Eigen::VectorXd & tau_d_calculated,
+ const Eigen::VectorXd & tau_J_d,
+ const T & delta_tau_max) {
Eigen::VectorXd difference = tau_d_calculated - tau_J_d;
Eigen::VectorXd clamped_diff = difference.cwiseMin(delta_tau_max).cwiseMax(-delta_tau_max);
return tau_J_d + clamped_diff;
}
-
diff --git a/pixi.lock b/pixi.lock
new file mode 100644
index 0000000..e1c85b9
--- /dev/null
+++ b/pixi.lock
@@ -0,0 +1,42135 @@
+version: 6
+environments:
+ default:
+ channels:
+ - url: https://fast.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/_x86_64-microarch-level-1-2_x86_64.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py313h93f14d1_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.5.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.0.3-h74e3db0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h78bf25f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py313habe685e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np2py313h5f1bead_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/elfutils-0.192-h7f4e02f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-h6f18a23_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-h1917dac_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.8.9-h86084c0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-hb14504d_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.17-h7fd866c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-h75ea233_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.24.1-h8e693c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py313hf0ab243_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py313h59e1532_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-cmake3-3.5.3-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-math7-7.5.1-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-tools2-2.0.1-h17585e0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-utils2-2.2.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.8-ha4ef2c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmicrohttpd-1.0.1-hbc5bc17_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libosqp-1.0.0-np122py310h438337b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libqdldl-0.1.8-h3f2d84a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsdformat14-14.5.0-hea37092_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libspral-2025.03.06-h39c1cf3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.20.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-hff21bea_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.0-py313h17eae1a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py313h73d2dff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.5-hf636f53_101_cp313.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruby-3.4.4-he7af4c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py313h86fcf2b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.1-hae71d53_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - pypi: https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/c5/71/c754b1737ad99102e03fa3235acb6cb6d3ac9d6f596cbc3e5f236705abd8/backrefs-6.2-py313-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2d/82/e5d2c1c67d19841e9edc74954c827444ae826978499bde3dfc1d007c8c11/deepmerge-2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e7/04/a94ebfb4eaaa08db56725a40de2887e95de4e8641b9e902c311bfa00aa39/filelock-3.24.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/3e/32/ed071cb721aca8c227718cffcf7bd539620e9799bbf2619e90c757bfd030/mkdocs_material-9.7.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/43/82/dd8e3798b2bb75fd10a8f524b2bf8765d2cd396f21912333abffdd1e6666/mkdoxy-1.2.8-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6f/2c/5b079febdc65e1c3fb2729bf958d18b45be7113828528e8a0b5850dd819a/pymdown_extensions-10.21-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/42/4b/6cf85b485be7ec29db837ec2a1d8cd68bc1147b1abf23d8636c5bd65b3cc/virtualenv-20.37.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/c1/9f/ce1c5af9afd11fe3521a90441aba48c484f98730c6d833d69ee4387ae2e9/zensical-0.0.23-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ - pypi: ./
+ humble:
+ channels:
+ - url: https://prefix.dev/robostack-humble/
+ - url: https://fast.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/_x86_64-microarch-level-1-2_x86_64.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.12.12-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-3.25-hbd00459_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-h7db5c69_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py311hc506289_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.5.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.0.3-h74e3db0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h38be061_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py311h48d4333_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-argcomplete-0.3.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-bash-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cd-0.1.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cmake-0.2.28-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/colcon-common-extensions-0.3.0-py311h38be061_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-core-0.19.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-defaults-0.2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-devtools-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-library-path-0.2.1-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-metadata-0.2.5-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-output-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-information-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-selection-0.2.10-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-parallel-executor-0.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-pkg-config-0.1.0-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-powershell-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-python-setup-py-0.2.9-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-recursive-crawl-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-ros-0.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-test-result-0.3.8-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-zsh-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/coloredlogs-15.0.1-pyhd8ed1ab_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.17.1-py311hca438b8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-45.0.4-py311hafd3f86_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np20py311h2672b3f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/elfutils-0.192-h7f4e02f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.7.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.1.0-gpl_h4c12d27_707.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-7.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h783367e_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.0.2-h07f6e7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.6.0-py311h62d540b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-h6f18a23_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-h1917dac_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-2.84.1-h07242d1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.84.1-h4833e2c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmock-1.15.2-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.8.9-h86084c0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.0.0-hba01fac_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gtest-1.15.2-h434a139_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h6470451_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-hb14504d_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hda332d3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyh707e725_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.17-h7fd866c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-h75ea233_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.24.1-h8e693c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.24.1-h8e693c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h1dc1e6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py311h5b7b71f_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py311hbd00459_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-20.1.7-default_he06ed0a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.84.1-h2ff4ddf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-cmake3-3.5.3-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-math7-7.5.1-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-tools2-2.0.1-h17585e0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-utils2-2.2.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.8-ha4ef2c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libignition-cmake2-2.17.2-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libignition-math6-6.15.1-py311he92c4ec_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm20-20.1.7-he9d0ab4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmicrohttpd-1.0.1-hbc5bc17_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h00e09a9_116.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.10.0-qt6_py311h8702e32_613.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.5.0-hac27bb2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.5.0-h4d9b6c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.5.0-h4d9b6c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.5.0-h3f63f65_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.5.0-hac27bb2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.5.0-hac27bb2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.5.0-hac27bb2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.5.0-h3f63f65_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.5.0-h5c8f2c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.5.0-h5c8f2c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.5.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.5.0-h6481b9d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.5.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libosqp-0.6.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-17.5-h27ae623_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libqdldl-0.1.7-hcb278e6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-hc0ffecb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsdformat14-14.5.0-hb243517_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libspral-2025.03.06-h39c1cf3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.4-h3dc2cb9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.20.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.10.0-h65c71a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.4.0-py311hbd2c71b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.3-py311h2b939e6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.4.4-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-9.0.1-h266115a_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/netifaces-0.11.0-py311h9ecbd09_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-hff21bea_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.36-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.112-h159eef7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.3.4-h2cd1444_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orocos-kdl-1.5.1-h5888daf_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.54.0-h3a902e7_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.14.1-h679aaff_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hc749103_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.2.1-py311h1322bbf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py311hd79ae85_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.2-h29eaf8c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.3.1-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hac146a9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.10.0-qt6_py311h9d93fc6_613.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyhc790b64_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh217bc35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pybullet-3.25-py311h2ed89a0_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.28.0-py311hd785cd9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.13.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydot-4.0.0-py311h38be061_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pygraphviz-1.14-py311hf885082_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.11-py311he22028a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.17.0-py311hfdbb021_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-rerunfailures-15.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.11-7_cp311.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.15-h796de64_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.8.1-h9d28a51_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ackermann-msgs-2.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ackermann-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-msgs-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-py-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-actionlib-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-admittance-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-auto-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-copyright-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-core-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-cppcheck-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-cpplint-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-definitions-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-dependencies-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-include-directories-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-interfaces-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-libraries-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-link-flags-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-targets-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-flake8-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gen-version-h-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gmock-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gtest-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-include-directories-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-libraries-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-lint-cmake-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-pep257-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-pytest-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-python-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-ros-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-target-dependencies-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-test-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-uncrustify-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-version-1.3.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-xmllint-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-copyright-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cppcheck-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cpplint-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-flake8-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-index-cpp-1.4.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-index-python-1.4.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-auto-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-cmake-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-common-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-package-0.14.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-pep257-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-uncrustify-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-xmllint-0.12.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-angles-1.15.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-backward-ros-1.0.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-bicycle-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-builtin-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-class-loader-2.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-common-interfaces-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-composition-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-composition-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-console-bridge-vendor-1.4.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-control-msgs-4.7.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-control-toolbox-3.4.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-interface-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-manager-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-manager-msgs-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-cv-bridge-3.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-cyclonedds-0.10.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-py-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-desktop-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-diagnostic-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-diff-drive-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-domain-coordinator-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-map-server-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-sensors-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-effort-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-example-interfaces-0.9.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastcdr-1.0.24-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastrtps-2.6.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-filters-2.1.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-force-torque-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-forward-command-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-generate-parameter-library-0.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-generate-parameter-library-py-0.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-geometry-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-geometry2-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gmock-vendor-1.10.9006-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gpio-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gripper-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gtest-vendor-1.10.9006-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-hardware-interface-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-posh-2.0.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-geometry-3.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-tools-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-transport-3.1.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-imu-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-interactive-markers-2.3.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-intra-process-demo-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-limits-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-state-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-trajectory-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joy-3.3.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-kdl-parser-2.6.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-keyboard-handler-0.0.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-kinematics-interface-0.3.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-laser-geometry-2.4.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-1.0.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-ros-0.19.8-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-1.0.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-ament-cmake-1.0.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-ros-0.19.8-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-xml-1.0.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-yaml-1.0.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libcurl-vendor-3.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libstatistics-collector-1.3.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libyaml-vendor-1.2.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-lifecycle-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-lifecycle-msgs-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-logging-demo-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-map-msgs-2.1.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-message-filters-4.3.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-nav-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-osrf-pycommon-2.1.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-parameter-traits-0.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pcl-conversions-2.4.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pcl-msgs-1.0.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pendulum-control-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pendulum-msgs-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pid-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pluginlib-5.1.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pose-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-position-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pybind11-vendor-2.4.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-python-cmake-module-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-python-qt-binding-1.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-dotgraph-2.2.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-2.2.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-cpp-2.2.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-py-common-2.2.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-range-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-5.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-action-5.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-lifecycle-5.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-logging-interface-2.3.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h6a008e1_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-16.0.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-action-16.0.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-components-16.0.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-lifecycle-16.0.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclpy-3.3.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcpputils-2.4.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcutils-5.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-realtime-tools-2.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-resource-retriever-3.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-6.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-connextdds-0.11.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-dds-common-1.6.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-implementation-2.8.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-robot-state-publisher-3.0.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-base-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-core-0.10.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-environment-3.2.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-workspace-1.0.2-np126py311h2c3b307_9.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-control-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-control-test-assets-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2action-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2bag-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2cli-0.18.11-np126py311hdfa6bdf_9.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2component-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2controlcli-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2doctor-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2interface-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2launch-0.19.8-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2lifecycle-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2multicast-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2node-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2param-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2pkg-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2run-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2service-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2topic-0.18.11-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-compression-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-compression-zstd-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-cpp-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-interfaces-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-py-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-storage-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-storage-default-plugins-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-transport-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosgraph-msgs-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-adapter-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-cli-3.1.6-np126py311hdfa6bdf_9.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-cmake-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-default-generators-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-c-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-py-0.14.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-parser-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rpyutils-0.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-action-2.0.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-bag-1.1.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-common-plugins-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-console-2.0.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-graph-1.3.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-1.1.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-py-1.1.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-image-view-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-msg-1.2.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-plot-1.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-publisher-1.5.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-py-common-1.1.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-py-console-1.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-reconfigure-1.1.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-service-caller-1.0.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-shell-1.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-srv-1.0.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-topic-1.5.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rsl-1.1.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rttest-0.13.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-assimp-vendor-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-common-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-default-plugins-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-ogre-vendor-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-rendering-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz2-11.2.15-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sdl2-vendor-3.3.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sensor-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sensor-msgs-py-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-shape-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-shared-queues-vendor-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-spdlog-vendor-1.3.1-np126py311h6a008e1_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sqlite3-vendor-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sros2-0.10.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sros2-cmake-0.10.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-statistics-msgs-1.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-std-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-std-srvs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-steering-controllers-library-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-stereo-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tango-icons-vendor-0.1.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tcb-span-1.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-teleop-twist-joy-2.4.7-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-bullet-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-eigen-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-eigen-kdl-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-geometry-msgs-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-kdl-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-msgs-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-py-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-ros-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-ros-py-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-sensor-msgs-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-tools-0.25.10-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tinyxml-vendor-0.8.3-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tl-expected-1.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tlsf-0.7.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tlsf-cpp-0.13.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-topic-monitor-0.20.5-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tracetools-4.1.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-trajectory-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-transmission-interface-2.47.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tricycle-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tricycle-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-turtlesim-1.4.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-uncrustify-vendor-2.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdf-2.6.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdfdom-3.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdfdom-headers-1.0.6-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-velocity-controllers-2.40.0-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-visualization-msgs-4.2.4-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-zstd-vendor-0.15.13-np126py311h2c3b307_7.conda
+ - conda: https://prefix.dev/robostack-humble/linux-64/ros2-distro-mutex-0.6.0-humble_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruby-3.4.4-he7af4c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py311h8f841c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl3-3.2.14-he3e324a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sip-6.10.0-py311hfdbb021_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.14.1-hed91bc2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.50.1-h9eae976_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.1.0-h4ce085d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-10.0.0-h3f2d84a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.4.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/uncrustify-0.74.0-h27087fc_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.1-h2e5d1f2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.3.1-qt_py311h71fb23e_214.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.3.1-qt_py311h75c0fa1_214.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h71fb23e_214.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxpm-3.5.17-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-hb9d3cd8_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.20.1-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda
+ - pypi: https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/0f/f0/35240571e1b67ffb19dafb29ab34150b6f59f93f717b041082cdb1bfceb1/backrefs-6.2-py311-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2d/82/e5d2c1c67d19841e9edc74954c827444ae826978499bde3dfc1d007c8c11/deepmerge-2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e7/04/a94ebfb4eaaa08db56725a40de2887e95de4e8641b9e902c311bfa00aa39/filelock-3.24.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/3e/32/ed071cb721aca8c227718cffcf7bd539620e9799bbf2619e90c757bfd030/mkdocs_material-9.7.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/43/82/dd8e3798b2bb75fd10a8f524b2bf8765d2cd396f21912333abffdd1e6666/mkdoxy-1.2.8-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6f/2c/5b079febdc65e1c3fb2729bf958d18b45be7113828528e8a0b5850dd819a/pymdown_extensions-10.21-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/42/4b/6cf85b485be7ec29db837ec2a1d8cd68bc1147b1abf23d8636c5bd65b3cc/virtualenv-20.37.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/c1/9f/ce1c5af9afd11fe3521a90441aba48c484f98730c6d833d69ee4387ae2e9/zensical-0.0.23-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ - pypi: ./
+ jazzy:
+ channels:
+ - url: https://prefix.dev/robostack-jazzy/
+ - url: https://fast.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/_x86_64-microarch-level-1-2_x86_64.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.12.12-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-3.25-h9cebb41_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-hf9745cd_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py312h46c3195_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.5.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.0.3-h74e3db0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h7900ff3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py312he880d2f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-argcomplete-0.3.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-bash-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cd-0.1.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cmake-0.2.28-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/colcon-common-extensions-0.3.0-py312h7900ff3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-core-0.19.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-defaults-0.2.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-devtools-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-library-path-0.2.1-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-metadata-0.2.5-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-output-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-information-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-selection-0.2.10-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-parallel-executor-0.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-pkg-config-0.1.0-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-powershell-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-python-setup-py-0.2.9-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-recursive-crawl-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-ros-0.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-test-result-0.3.8-py_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colcon-zsh-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/coloredlogs-15.0.1-pyhd8ed1ab_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.17.1-py312h3bf8db1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-45.0.4-py312hda17c39_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np20py312hf621b31_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/elfutils-0.192-h7f4e02f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.7.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-7.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-builtins-2.5.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-comprehensions-3.16.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-docstrings-1.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-import-order-0.19.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flake8-quotes-3.4.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.6.0-py312hb9e946c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-h6f18a23_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-h1917dac_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-2.84.2-h6287aef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.84.2-h4833e2c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.8.9-h86084c0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gtk3-3.24.43-h0c6a113_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-hb14504d_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gz-cmake3-3.5.3-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gz-math7-7.5.1-h38be061_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gz-math7-python-7.5.1-py312h76e88e7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gz-tools2-2.0.1-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gz-utils2-2.2.0-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-11.2.1-h3beb420_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyh707e725_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.17-h7fd866c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/level-zero-1.22.4-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-h75ea233_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.24.1-h8e693c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.24.1-h8e693c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h52826cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py312hc39e661_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py312h9cebb41_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp20.1-20.1.7-default_h1df26ce_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-20.1.7-default_he06ed0a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.24.1-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.1.0-h69a702a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.84.2-h3618099_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-cmake3-3.5.3-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-math7-7.5.1-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-tools2-2.0.1-h4149140_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-utils2-2.2.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.8-ha4ef2c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm20-20.1.7-he9d0ab4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmicrohttpd-1.0.1-hbc5bc17_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h0134ee8_117.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.11.0-headless_py312h8b90b6c_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libosqp-1.0.0-np122py310h438337b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-17.5-h27ae623_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.29.3-h501fc15_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libqdldl-0.1.8-h3f2d84a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsdformat14-14.5.0-hea37092_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libspral-2025.03.06-h39c1cf3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.4-h3dc2cb9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.20.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liburcu-0.14.0-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.10.0-h65c71a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lttng-ust-2.13.9-hf5eda4c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.4.0-py312h68d7fa5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-4.4.4-py312hf0f0c11_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.3-py312hd3ec401_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py312h68727a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.4.4-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-hff21bea_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.36-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.112-h159eef7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.3.4-h2cd1444_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orocos-kdl-1.5.1-h5888daf_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.3-h9ac818e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.45-hc749103_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.2.1-py312h80c1187_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py312h91a64d0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.2-h29eaf8c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.6.2-h0054346_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hac146a9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.11.0-headless_py312hd03a6f7_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyhc790b64_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh217bc35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pybullet-3.25-py312h71c6f2c_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.28.0-py312hac037c1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.13.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydot-4.0.0-py312h7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pygraphviz-1.14-py312h011e53f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.11-py312hcec5e1c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.17.0-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-rerunfailures-15.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-orocos-kdl-1.5.1-py312h2ec8cdc_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-7_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.15-hea1682b_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.9.1-h0384650_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ackermann-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ackermann-steering-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-cpp-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-interfaces-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-py-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-actionlib-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-admittance-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-auto-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-copyright-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-core-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-cppcheck-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-cpplint-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-definitions-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-dependencies-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-include-directories-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-interfaces-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-libraries-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-link-flags-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-targets-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-flake8-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gen-version-h-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gmock-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gtest-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-include-directories-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-libraries-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-lint-cmake-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-pep257-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-pytest-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-python-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-ros-0.12.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-target-dependencies-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-test-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-uncrustify-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-version-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-xmllint-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-copyright-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cppcheck-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cpplint-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-flake8-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-index-cpp-1.8.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-index-python-1.8.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-auto-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-cmake-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-common-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-package-0.16.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-pep257-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-uncrustify-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-xmllint-0.17.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-angles-1.16.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-backward-ros-1.0.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-bicycle-steering-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-builtin-interfaces-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-class-loader-2.7.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-common-interfaces-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-composition-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-composition-interfaces-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-console-bridge-vendor-1.7.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-control-msgs-5.4.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-control-toolbox-4.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-interface-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-manager-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-manager-msgs-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-cv-bridge-4.1.0-np126py312h1758b5b_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-cyclonedds-0.10.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-cpp-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-cpp-native-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-py-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-depthimage-to-laserscan-2.5.1-np126py312h1758b5b_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-desktop-0.11.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diagnostic-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diagnostic-updater-4.2.6-np126py312he556185_8.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diff-drive-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-domain-coordinator-0.12.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-map-server-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-robot-bringup-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-sensors-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-effort-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-eigen3-cmake-module-0.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-example-interfaces-0.12.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-action-client-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-action-server-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-client-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-composition-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-publisher-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-service-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-subscriber-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-timer-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-multithreaded-executor-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-executors-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-action-client-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-action-server-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-client-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-publisher-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-service-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-subscriber-0.19.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastcdr-2.2.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastrtps-2.14.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastrtps-cmake-module-3.6.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-filters-2.2.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-foonathan-memory-vendor-1.3.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-force-torque-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-forward-command-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-generate-parameter-library-0.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-generate-parameter-library-py-0.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-geometry-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-geometry2-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gmock-vendor-1.14.9000-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gpio-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gps-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gripper-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gtest-vendor-1.14.9000-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-cmake-vendor-0.0.10-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-math-vendor-0.0.8-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-tools-vendor-0.0.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-utils-vendor-0.0.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-hardware-interface-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-binding-c-2.0.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-hoofs-2.0.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-posh-2.0.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-geometry-4.1.0-np126py312h1758b5b_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-tools-0.33.5-np126py312h1758b5b_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-transport-5.1.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-imu-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-interactive-markers-2.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-intra-process-demo-0.33.5-np126py312h1758b5b_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-limits-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-state-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-trajectory-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joy-3.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-kdl-parser-2.11.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-keyboard-handler-0.3.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-kinematics-interface-1.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-laser-geometry-2.7.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-ros-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-ament-cmake-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-ros-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-xml-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-yaml-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libcurl-vendor-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-liblz4-vendor-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libstatistics-collector-1.7.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libyaml-vendor-1.6.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-lifecycle-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-lifecycle-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-logging-demo-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-map-msgs-2.4.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-mcap-vendor-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-mecanum-drive-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-message-filters-4.11.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-nav-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-orocos-kdl-vendor-0.5.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-osrf-pycommon-2.1.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pal-statistics-2.6.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pal-statistics-msgs-2.6.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-parallel-gripper-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-parameter-traits-0.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pcl-conversions-2.6.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pcl-msgs-1.0.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pendulum-control-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pendulum-msgs-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pid-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pluginlib-5.4.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-point-cloud-transport-4.0.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pose-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-position-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pybind11-vendor-3.1.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-cmake-module-0.11.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-orocos-kdl-vendor-0.5.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-qt-binding-2.2.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-dotgraph-2.7.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-2.7.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-cpp-2.7.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-py-common-2.7.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-quality-of-service-demo-cpp-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-quality-of-service-demo-py-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-range-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-9.2.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-action-9.2.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-interfaces-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-lifecycle-9.2.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-logging-interface-3.1.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-logging-spdlog-3.1.1-np126py312hb9c0a37_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-yaml-param-parser-9.2.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-28.1.9-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-action-28.1.9-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-components-28.1.9-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-lifecycle-28.1.9-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclpy-7.1.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcpputils-2.11.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcutils-6.7.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-realtime-tools-3.6.0-np126py312h01d8f83_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-resource-retriever-3.4.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-7.3.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-connextdds-0.22.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-connextdds-common-0.22.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-cyclonedds-cpp-2.2.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-dds-common-3.1.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-cpp-8.4.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-dynamic-cpp-8.4.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-shared-cpp-8.4.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-implementation-2.15.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-implementation-cmake-7.3.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-robot-state-publisher-3.3.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-base-0.11.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-core-0.11.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-environment-4.2.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-workspace-1.0.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-control-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-control-test-assets-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2action-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2bag-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2cli-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2cli-common-extensions-0.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2component-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2controlcli-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2doctor-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2interface-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2launch-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2lifecycle-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2multicast-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2node-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2param-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2pkg-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2run-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2service-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2topic-0.32.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-compression-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-compression-zstd-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-cpp-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-interfaces-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-py-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-default-plugins-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-mcap-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-sqlite3-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-transport-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosgraph-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-adapter-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-cli-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-cmake-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-core-generators-0.2.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-core-runtime-0.2.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-default-generators-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-default-runtime-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-dynamic-typesupport-0.1.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-dynamic-typesupport-fastrtps-0.1.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-c-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-cpp-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-py-0.22.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-type-description-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-parser-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-pycommon-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-c-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-cpp-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-py-0.13.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-c-3.2.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-cpp-3.2.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-fastrtps-c-3.6.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-fastrtps-cpp-3.6.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-interface-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-introspection-c-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-introspection-cpp-4.6.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rpyutils-0.4.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-action-2.2.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-bag-1.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-bag-plugins-1.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-common-plugins-1.2.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-console-2.2.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-graph-1.5.4-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-cpp-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-py-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-image-view-1.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-msg-1.5.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-plot-1.4.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-publisher-1.7.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-py-common-1.6.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-py-console-1.2.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-reconfigure-1.6.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-service-caller-1.2.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-shell-1.2.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-srv-1.2.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-topic-1.7.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rsl-1.1.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rti-connext-dds-cmake-module-0.22.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rttest-0.17.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-assimp-vendor-14.1.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-common-14.1.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-default-plugins-14.1.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-ogre-vendor-14.1.11-np126py312h187c934_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-rendering-14.1.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz2-14.1.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdformat-urdf-1.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdformat-vendor-0.0.9-np126py312hbd98dbb_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdl2-vendor-3.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sensor-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sensor-msgs-py-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-service-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-shape-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-spdlog-vendor-1.6.1-np126py312hb9c0a37_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sqlite3-vendor-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sros2-0.13.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sros2-cmake-0.13.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-statistics-msgs-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-std-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-std-srvs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-steering-controllers-library-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-stereo-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tango-icons-vendor-0.3.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tcb-span-1.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-teleop-twist-joy-2.6.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-teleop-twist-keyboard-2.4.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-bullet-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-eigen-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-eigen-kdl-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-geometry-msgs-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-kdl-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-msgs-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-py-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-ros-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-ros-py-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-sensor-msgs-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-tools-0.36.11-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tinyxml2-vendor-0.9.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tl-expected-1.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tlsf-0.9.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tlsf-cpp-0.17.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-topic-monitor-0.33.5-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tracetools-8.2.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-trajectory-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-transmission-interface-4.32.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tricycle-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tricycle-steering-controller-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-turtlesim-1.8.3-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-type-description-interfaces-2.0.2-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-uncrustify-vendor-3.0.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-unique-identifier-msgs-2.5.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdf-2.10.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdf-parser-plugin-2.10.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdfdom-4.0.1-hb0f4dca_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdfdom-headers-1.1.2-hb0f4dca_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-velocity-controllers-4.26.0-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-visualization-msgs-5.3.6-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-yaml-cpp-vendor-9.0.1-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-zstd-vendor-0.26.7-np126py312he556185_7.conda
+ - conda: https://prefix.dev/robostack-jazzy/linux-64/ros2-distro-mutex-0.9.0-jazzy_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruby-3.4.4-he7af4c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdformat14-14.5.0-hf3d152e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdformat14-python-14.5.0-py312h76e88e7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl3-3.2.14-he3e324a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sip-6.10.0-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.15.3-h10b92b3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.50.1-h9eae976_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.1.0-h4ce085d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2022.1.0-h1f99690_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.4.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.1-hae71d53_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.4.2-hc41f6cb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.4.2-py312h28cca35_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-he57672f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxpm-3.5.17-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.20.1-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda
+ - pypi: https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e3/63/77e8c9745b4d227cce9f5e0a6f68041278c5f9b18588b35905f5f19c1beb/backrefs-6.2-py312-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2d/82/e5d2c1c67d19841e9edc74954c827444ae826978499bde3dfc1d007c8c11/deepmerge-2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e7/04/a94ebfb4eaaa08db56725a40de2887e95de4e8641b9e902c311bfa00aa39/filelock-3.24.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/3e/32/ed071cb721aca8c227718cffcf7bd539620e9799bbf2619e90c757bfd030/mkdocs_material-9.7.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/43/82/dd8e3798b2bb75fd10a8f524b2bf8765d2cd396f21912333abffdd1e6666/mkdoxy-1.2.8-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6f/2c/5b079febdc65e1c3fb2729bf958d18b45be7113828528e8a0b5850dd819a/pymdown_extensions-10.21-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/42/4b/6cf85b485be7ec29db837ec2a1d8cd68bc1147b1abf23d8636c5bd65b3cc/virtualenv-20.37.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/c1/9f/ce1c5af9afd11fe3521a90441aba48c484f98730c6d833d69ee4387ae2e9/zensical-0.0.23-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ - pypi: ./
+ kilted:
+ channels:
+ - url: https://prefix.dev/robostack-kilted/
+ - url: https://prefix.dev/conda-forge/
+ - url: https://fast.prefix.dev/conda-forge/
+ indexes:
+ - https://pypi.org/simple
+ packages:
+ linux-64:
+ - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
+ - conda: https://prefix.dev/conda-forge/noarch/_x86_64-microarch-level-1-3_x86_64.conda
+ - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-49.0-unix_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.13.3-py312h5d8c7f2_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.15.3-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.3-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/attrs-25.4.0-pyhcf101f3_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.45.1-default_h4852527_101.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/binutils_linux-64-2.45.1-default_h4852527_101.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/bullet-3.25-h26dfbe5_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/bullet-cpp-3.25-hcbe3ca9_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/c-compiler-1.11.0-h4d9bdce_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/casadi-3.7.0-py312h0b2cbc4_5.conda
+ - conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.1.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cffi-2.0.0-py312h460c074_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cli11-2.6.0-h54a6638_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cmake-4.2.3-hc85cc9f_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/coal-3.0.1-h7900ff3_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/coal-python-3.0.1-py312he880d2f_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-argcomplete-0.3.3-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-bash-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-cd-0.1.1-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-cmake-0.2.29-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/colcon-common-extensions-0.3.0-py312h7900ff3_4.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-core-0.20.1-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-defaults-0.2.9-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-devtools-0.3.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-library-path-0.2.1-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-metadata-0.2.5-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-output-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-package-information-0.4.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-package-selection-0.2.10-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-parallel-executor-0.4.0-pyhe01879c_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-pkg-config-0.1.0-py_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-powershell-0.5.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-python-setup-py-0.2.9-pyhff2d567_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-recursive-crawl-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-ros-0.5.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-test-result-0.3.8-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colcon-zsh-0.5.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/coloredlogs-15.0.1-pyhd8ed1ab_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/compilers-1.11.0-ha770c72_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-14.3.0-he8ccf15_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/coverage-7.13.4-py312h8a5da7c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cppcheck-2.18.3-py312h014360a_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cryptography-46.0.5-py312ha4b625e_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cxx-compiler-1.11.0-hfcd1e18_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/dbus-1.16.2-h24cb091_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/eigen-3.4.0-h171cf75_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/eigenpy-3.10.3-np20py312hf621b31_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/elfutils-0.193-h849f50c_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-hb03c661_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.4-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_ha0aeed6_910.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-builtins-3.1.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-comprehensions-3.17.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-docstrings-1.7.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-import-order-0.19.2-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/flake8-quotes-3.4.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.17.1-h27c8c51_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py312h8a5da7c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/fortran-compiler-1.11.0-h9bea470_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h165c975_23.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.7.0-py312h447239a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gcc-14.3.0-h0dff253_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-14.3.0-hbdf3cc3_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gcc_linux-64-14.3.0-h298d278_21.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.44.4-h2b0a6b4_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gettext-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gfortran-14.3.0-h76987e4_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gfortran_impl_linux-64-14.3.0-h1a219da_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gfortran_linux-64-14.3.0-hfa02b96_21.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/glib-2.86.2-hbcf1ec1_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.86.2-hf516916_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gnutls-3.8.11-h18acefa_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/graphviz-13.1.2-h87b6fe6_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h021d004_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gxx-14.3.0-h76987e4_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gxx_impl_linux-64-14.3.0-h2185e75_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gxx_linux-64-14.3.0-he467f4b_21.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-cmake4-4.2.0-h83e9d05_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-math8-8.2.0-h91c16d2_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-math8-python-8.2.0-py312hc0cb2ee_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-tools-2.0.3-h3f54f1a_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-tools2-2.0.3-h89235b8_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/gz-utils3-3.1.1-h22fa418_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-12.2.0-h15599e2_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/humanfriendly-10.0-pyh707e725_8.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/imath-3.2.1-hde8ca8f_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/intel-gmmlib-22.9.0-hb700be7_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/intel-media-driver-25.3.4-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ipopt-3.14.19-h0804adb_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.8-he3c4edf_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ - conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.28.0-hb700be7_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250512.1-cxx17_hba17884_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libarchive-3.8.1-gpl_h98cc613_100.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.4-h96ad9f0_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-hed09d94_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libboost-devel-1.86.0-hfcd1e18_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py312hf890105_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libboost-python-devel-1.86.0-py312h26dfbe5_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.75-h39aace5_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_h0358290_openblas.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_h99862b1_8.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp21.1-21.1.0-default_h99862b1_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libclang13-21.1.0-default_h746c552_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.18.0-h4e3cde8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.125-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libegl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libflac-1.5.0-he200343_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
+ - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-14.3.0-hf649bbc_118.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.25.1-h3f43e3d_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libglib-2.86.2-h32235b2_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.58-h54a6638_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-cmake3-3.5.5-h54a6638_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-cmake4-4.2.0-h54a6638_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-math7-7.5.2-h54a6638_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-math8-8.2.0-h54a6638_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-tools-2.0.3-h54a6638_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-utils2-2.2.1-h54a6638_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libgz-utils3-3.1.1-h38f3fdc_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.12.1-default_h3d81e11_1000.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libidn2-2.3.8-hfac485b_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libjxl-0.11.2-ha09017c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h47877c9_openblas.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.11.0-5_h6ae95b6_openblas.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.8-hecd9e04_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libllvm21-21.1.0-hecd9e04_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.2-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libmicrohttpd-1.0.2-hc2fc477_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h21f7587_118.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.12.0-qt6_py312hbf51571_603.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.2.0-hb617929_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.2.0-hed573e4_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.2.0-hed573e4_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.2.0-hd41364c_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.2.0-hb617929_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.2.0-hb617929_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.2.0-hb617929_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.2.0-hd41364c_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.2.0-h1862bb8_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.2.0-h1862bb8_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.2.0-hecca717_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.2.0-h0767aad_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.2.0-hecca717_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.6.1-h280c20c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libosqp-1.0.0-np2py312h1a77e3e_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libpq-17.7-h5c52fec_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-6.31.1-h49aed37_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libqdldl-0.1.8-h3f2d84a_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.5-h074291d_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-14.3.0-h8f1669f_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsdformat14-14.8.0-py313h39c33bd_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsdformat15-15.3.0-py312h1f51ce1_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc7d488a_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libspral-2025.05.20-hfabd9d1_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-h0c1763c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
+ - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-14.3.0-h9f08a49_118.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.7-h4e0b6ca_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libtasn1-4.21.0-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h8261f1e_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.7-hbe16f8c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.8.3-h65a8314_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liburcu-0.14.0-hac33072_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/liburing-2.12-hb700be7_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libva-2.23.0-he1eb515_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libvpl-2.15.0-h54a6638_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.11.0-he8b52b9_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.9-h04c0eec_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.43-h7a3aeb2_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libzenohc-1.5.1-hfad6b34_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lttng-ust-2.13.9-hf5eda4c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lxml-6.0.2-py312h70dad80_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lz4-4.4.5-py312h3d67a73_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/lzo-2.10-h280c20c_1002.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py312h8a5da7c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.8-py312he3d6523_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.2-py312hd9148b4_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/multidict-6.7.0-py312h8a5da7c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ninja-1.13.2-h171cf75_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/nspr-4.38-h29cc59b_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/nss-3.118-h445c969_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/numpy-2.4.2-py312h33ff503_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h608838b_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/orocos-kdl-1.5.3-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/p11-kit-0.26.2-h3435931_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.4-hadf4263_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.46-h1321c63_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/pillow-12.1.1-py312h50c33e8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pinocchio-3.7.0-py312h91a64d0_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/proj-9.6.2-h18fbb6c_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/psutil-7.2.2-py312h5253ce2_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-h9a8bead_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.12.0-qt6_py312h598be00_603.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.2-pyh7a1b43c_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.2-pyhc7ab6ef_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pybullet-3.25-py312hf49885f_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pycairo-1.29.0-py312h2596900_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pydot-4.0.1-pyhcf101f3_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pygraphviz-1.14-py312hdfa1987_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pyqt-5.15.11-py312h82c0db2_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.18.2-pyhd8ed1ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pyqt5-sip-12.17.0-py312h1289d80_2.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pytest-repeat-0.9.4-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/pytest-rerunfailures-16.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/python-3.12.12-hd63d673_2_cpython.conda
+ - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/python-orocos-kdl-1.5.3-py312h1289d80_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/qt-main-5.15.15-h3a7ef08_5.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.9.2-h5bd77bc_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ackermann-msgs-2.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ackermann-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-msgs-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-tutorials-cpp-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-tutorials-py-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-actionlib-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-admittance-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-auto-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-copyright-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-core-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-cppcheck-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-cpplint-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-definitions-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-dependencies-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-include-directories-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-interfaces-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-libraries-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-link-flags-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-targets-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-flake8-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gen-version-h-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gmock-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gtest-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-include-directories-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-libraries-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-lint-cmake-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-pep257-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-pytest-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-python-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-ros-0.14.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-ros-core-0.14.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-target-dependencies-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-test-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-uncrustify-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-version-2.7.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-xmllint-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-copyright-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cppcheck-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cpplint-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-flake8-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-index-cpp-1.11.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-index-python-1.11.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-auto-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-cmake-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-common-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-package-0.17.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-pep257-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-uncrustify-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-xmllint-0.19.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-angles-1.16.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-backward-ros-1.0.8-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-bicycle-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-builtin-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-chained-filter-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-class-loader-2.8.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-common-interfaces-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-composition-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-composition-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-console-bridge-vendor-1.8.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-control-msgs-6.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-control-toolbox-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-interface-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-manager-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-manager-msgs-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-cv-bridge-4.1.0-np2py312h887a3b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-cyclonedds-0.10.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-cpp-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-cpp-native-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-py-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-depthimage-to-laserscan-2.5.1-np2py312h887a3b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-desktop-0.12.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diagnostic-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diagnostic-updater-4.3.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diff-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-map-server-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-robot-bringup-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-sensors-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-effort-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-eigen3-cmake-module-0.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-example-interfaces-0.13.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-action-client-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-action-server-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-client-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-composition-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-publisher-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-service-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-subscriber-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-timer-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-multithreaded-executor-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-executors-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-action-client-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-action-server-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-client-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-publisher-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-service-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-subscriber-0.20.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-fastcdr-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-fastdds-3.2.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-filters-2.2.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-foonathan-memory-vendor-1.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-force-torque-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-forward-command-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-generate-parameter-library-0.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-generate-parameter-library-py-0.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-geometry-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-geometry2-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gmock-vendor-1.15.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gpio-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gps-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gtest-vendor-1.15.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-cmake-vendor-0.2.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-math-vendor-0.2.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-tools-vendor-0.1.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-utils-vendor-0.2.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-hardware-interface-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-binding-c-2.0.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-hoofs-2.0.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-posh-2.0.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-geometry-4.1.0-np2py312h887a3b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-tools-0.36.2-np2py312h887a3b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-transport-6.1.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-imu-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-interactive-markers-2.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-intra-process-demo-0.36.2-np2py312h887a3b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-limits-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-state-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-trajectory-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joy-3.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-kdl-parser-2.12.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-keyboard-handler-0.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-kinematics-interface-2.2.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-laser-geometry-2.10.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-3.8.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-ros-0.28.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-3.8.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-ament-cmake-3.8.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-ros-0.28.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-xml-3.8.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-yaml-3.8.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libcurl-vendor-3.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-liblz4-vendor-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libstatistics-collector-2.0.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libyaml-vendor-1.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-lifecycle-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-lifecycle-msgs-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-logging-demo-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-map-msgs-2.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-mcap-vendor-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-mecanum-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-message-filters-7.1.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-motion-primitives-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-nav-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-omni-wheel-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-orocos-kdl-vendor-0.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-osrf-pycommon-2.1.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pal-statistics-2.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pal-statistics-msgs-2.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-parallel-gripper-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-parameter-traits-0.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pcl-conversions-2.7.3-np2py312h43d1557_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pcl-msgs-1.0.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pendulum-control-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pendulum-msgs-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pid-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pluginlib-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-point-cloud-transport-5.1.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pose-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-position-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pybind11-vendor-3.2.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-python-orocos-kdl-vendor-0.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-python-qt-binding-2.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-dotgraph-2.9.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-2.9.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-cpp-2.9.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-py-common-2.9.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-quality-of-service-demo-cpp-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-quality-of-service-demo-py-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-range-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-10.1.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-action-10.1.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-lifecycle-10.1.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-logging-interface-3.2.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-logging-spdlog-3.2.2-np2py312hb464df2_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-yaml-param-parser-10.1.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-29.5.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-action-29.5.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-components-29.5.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-lifecycle-29.5.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclpy-9.1.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcpputils-2.13.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcutils-6.9.8-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-realtime-tools-4.6.0-np2py312hdba20d8_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-resource-retriever-3.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-7.8.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-connextdds-1.1.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-connextdds-common-1.1.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-cyclonedds-cpp-4.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-dds-common-4.0.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-cpp-9.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-dynamic-cpp-9.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-shared-cpp-9.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-implementation-3.0.4-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-implementation-cmake-7.8.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-security-common-7.8.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-test-fixture-0.14.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-test-fixture-implementation-0.14.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-zenoh-cpp-0.6.4-np2py312hf7ffe29_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-robot-state-publisher-3.4.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-base-0.12.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-core-0.12.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-environment-4.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-workspace-1.0.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-control-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-control-test-assets-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2action-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2bag-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2cli-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2cli-common-extensions-0.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2component-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2controlcli-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2doctor-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2interface-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2launch-0.28.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2lifecycle-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2multicast-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2node-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2param-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2pkg-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2run-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2service-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2topic-0.38.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-compression-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-compression-zstd-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-cpp-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-interfaces-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-py-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-default-plugins-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-mcap-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-sqlite3-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-transport-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosgraph-msgs-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-adapter-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-cli-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-cmake-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-core-generators-0.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-core-runtime-0.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-default-generators-1.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-default-runtime-1.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-dynamic-typesupport-0.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-dynamic-typesupport-fastrtps-0.4.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-c-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-cpp-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-py-0.24.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-type-description-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-parser-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-pycommon-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-c-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-cpp-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-py-0.14.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-c-3.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-cpp-3.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-fastrtps-c-3.8.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-fastrtps-cpp-3.8.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-interface-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-introspection-c-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-introspection-cpp-4.9.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rpyutils-0.6.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-action-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-bag-2.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-bag-plugins-2.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-common-plugins-1.2.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-console-2.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-graph-1.7.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-1.9.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-cpp-1.9.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-py-1.9.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-image-view-1.3.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-msg-1.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-plot-1.6.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-publisher-1.9.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-py-common-1.9.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-py-console-1.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-reconfigure-1.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-service-caller-1.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-shell-1.3.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-srv-1.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-topic-1.8.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rsl-1.2.0-np2py312h2cad078_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rti-connext-dds-cmake-module-1.1.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rttest-0.18.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-assimp-vendor-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-common-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-default-plugins-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-ogre-vendor-15.0.6-np2py312hb5dd976_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-rendering-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-resource-interfaces-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz2-15.0.6-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdformat-urdf-2.0.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdformat-vendor-0.2.6-np2py312ha3ea0c0_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdl2-vendor-3.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sensor-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sensor-msgs-py-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-service-msgs-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-shape-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-spdlog-vendor-1.7.0-np2py312hb464df2_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sqlite3-vendor-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sros2-0.15.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sros2-cmake-0.15.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-statistics-msgs-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-std-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-std-srvs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-steering-controllers-library-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-stereo-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tango-icons-vendor-0.4.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tcb-span-1.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-teleop-twist-joy-2.6.5-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-teleop-twist-keyboard-2.4.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-bullet-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-eigen-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-eigen-kdl-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-geometry-msgs-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-kdl-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-msgs-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-py-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-ros-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-ros-py-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-sensor-msgs-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-tools-0.41.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tinyxml2-vendor-0.10.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tl-expected-1.0.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tlsf-0.10.1-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tlsf-cpp-0.18.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-topic-monitor-0.36.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tracetools-8.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-trajectory-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-transmission-interface-5.6.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tricycle-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tricycle-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-turtlesim-1.9.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-turtlesim-msgs-1.9.3-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-type-description-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-uncrustify-vendor-3.1.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-unique-identifier-msgs-2.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdf-2.12.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdf-parser-plugin-2.12.2-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdfdom-4.0.1-py312h24bf083_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdfdom-headers-1.1.2-py312h24bf083_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-velocity-controllers-5.7.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-visualization-msgs-5.5.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-yaml-cpp-vendor-9.1.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-zenoh-cpp-vendor-0.6.4-np2py312hf7ffe29_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-zstd-vendor-0.32.0-np2py312h31f38b3_14.conda
+ - conda: https://prefix.dev/robostack-kilted/linux-64/ros2-distro-mutex-0.12.0-kilted_14.conda
+ - conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/ruby-3.4.8-h498564d_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/scipy-1.17.0-py312h54fa4ab_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sdformat15-15.3.0-hfd474e3_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sdformat15-python-15.3.0-py312he766b8f_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.56-h54a6638_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.22-h68140b3_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sip-6.10.0-py312h1289d80_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/spdlog-1.15.3-h6dc744f_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.51.2-hbc0de68_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.3.0-h8d10470_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/tbb-devel-2022.3.0-h74b38a2_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
+ - conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhcf101f3_3.conda
+ - conda: https://prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/typeguard-4.5.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-17.0.1-py312h4c3975b_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/urdfdom-4.0.1-h8631160_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.09-ha770c72_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.4.2-hf9009d3_4.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.4.2-py312h28cca35_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-he57672f_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-hd6090a7_1.conda
+ - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.47-hd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/wrapt-2.1.1-py312h4c3975b_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.6-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.13-he1eb515_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.7-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.7-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.6-hecca717_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.3.1-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxpm-3.5.18-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.5-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.7-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xorg-xorgproto-2025.1-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.2-ha02ee65_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.2-ha02ee65_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.2-hb03c661_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/yarl-1.22.0-py312h8a5da7c_0.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/zenoh-rust-abi-1.5.1.1.85.0-h8619998_0.conda
+ - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
+ - conda: https://prefix.dev/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda
+ - pypi: https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e3/63/77e8c9745b4d227cce9f5e0a6f68041278c5f9b18588b35905f5f19c1beb/backrefs-6.2-py312-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2d/82/e5d2c1c67d19841e9edc74954c827444ae826978499bde3dfc1d007c8c11/deepmerge-2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/e7/04/a94ebfb4eaaa08db56725a40de2887e95de4e8641b9e902c311bfa00aa39/filelock-3.24.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/3e/32/ed071cb721aca8c227718cffcf7bd539620e9799bbf2619e90c757bfd030/mkdocs_material-9.7.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/43/82/dd8e3798b2bb75fd10a8f524b2bf8765d2cd396f21912333abffdd1e6666/mkdoxy-1.2.8-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6f/2c/5b079febdc65e1c3fb2729bf958d18b45be7113828528e8a0b5850dd819a/pymdown_extensions-10.21-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/42/4b/6cf85b485be7ec29db837ec2a1d8cd68bc1147b1abf23d8636c5bd65b3cc/virtualenv-20.37.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/c1/9f/ce1c5af9afd11fe3521a90441aba48c484f98730c6d833d69ee4387ae2e9/zensical-0.0.23-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ - pypi: ./
+packages:
+- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
+ md5: d7c89558ba9fa0495403155b64376d81
+ channel: https://fast.prefix.dev/conda-forge
+ license: None
+ purls: []
+ size: 2562
+ timestamp: 1578324546067
+- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ build_number: 16
+ sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
+ md5: 73aaf86a425cc6e73fcf236a5a46396d
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ - libgomp >=7.5.0
+ constrains:
+ - openmp_impl 9999
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 23621
+ timestamp: 1650670423406
+- conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
+ build_number: 20
+ sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
+ md5: a9f577daf3de00bca7c3c76c0ecbd1de
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgomp >=7.5.0
+ constrains:
+ - openmp_impl <0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 28948
+ timestamp: 1770939786096
+- conda: https://conda.anaconda.org/conda-forge/noarch/_x86_64-microarch-level-1-2_x86_64.conda
+ build_number: 2
+ sha256: 7623b2b804165b458f520371c40f5a607847336a882a55d3cfbdfb6407082794
+ md5: 989cfef32fc3e5fb397e87479bec3809
+ depends:
+ - __archspec 1 x86_64
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7773
+ timestamp: 1717599240447
+- conda: https://prefix.dev/conda-forge/noarch/_x86_64-microarch-level-1-3_x86_64.conda
+ build_number: 3
+ sha256: 5f9029eaa78eb13a5499b7a2b012a47a18136b2d41bad99bb7b1796d1fc2b179
+ md5: 225cb2e9b9512730a92f83696b8fbab8
+ depends:
+ - __archspec 1.* x86_64
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 9818
+ timestamp: 1764034326319
+- conda: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda
+ sha256: 63e532087119112c81d81c067e00d1fd49ff1b842ffea4469b78b505be63c042
+ md5: 11539f9e49efaa281da735ded100b152
+ depends:
+ - __unix
+ - hicolor-icon-theme
+ - librsvg
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-or-later OR CC-BY-SA-3.0
+ license_family: LGPL
+ purls: []
+ size: 610380
+ timestamp: 1741999835753
+- conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-49.0-unix_0.conda
+ sha256: a362b4f5c96a0bf4def96be1a77317e2730af38915eb9bec85e2a92836501ed7
+ md5: b3f0179590f3c0637b7eb5309898f79e
+ depends:
+ - __unix
+ - hicolor-icon-theme
+ - librsvg
+ license: LGPL-3.0-or-later OR CC-BY-SA-3.0
+ license_family: LGPL
+ purls: []
+ size: 631452
+ timestamp: 1758743294412
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27
+ md5: 18fd895e0e775622906cdabfc3cf0fb4
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/aiohappyeyeballs?source=hash-mapping
+ size: 19750
+ timestamp: 1741775303303
+- conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
+ sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27
+ md5: 18fd895e0e775622906cdabfc3cf0fb4
+ depends:
+ - python >=3.9
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/aiohappyeyeballs?source=hash-mapping
+ size: 19750
+ timestamp: 1741775303303
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.12.12-py311h2dc5d0c_0.conda
+ sha256: 6648f124a90f6a668411f9a74d613892ac7392e44ceee9742411fb6e974cecc6
+ md5: 0f41db54546a986ff8ee792e02325754
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aiohappyeyeballs >=2.5.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - libgcc >=13
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - yarl >=1.17.0,<2.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/aiohttp?source=hash-mapping
+ size: 1006940
+ timestamp: 1749715945303
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.12.12-py312h178313f_0.conda
+ sha256: d113227d550ead758610c3c23dea68b07f7492e1bcccdb27b576fa241674f7df
+ md5: db7f3bd6ae00b2a00732b1c6228d34fd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aiohappyeyeballs >=2.5.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - libgcc >=13
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/aiohttp?source=hash-mapping
+ size: 1003765
+ timestamp: 1749715063811
+- conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.13.3-py312h5d8c7f2_0.conda
+ sha256: ee6a1ac887fac367899278baab066c08b48a98ecdc3138bc497064c7d6ec5a17
+ md5: 7ee12bbdb2e989618c080c7c611048db
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aiohappyeyeballs >=2.5.0
+ - aiosignal >=1.4.0
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - libgcc >=14
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/aiohttp?source=hash-mapping
+ size: 1022914
+ timestamp: 1767525761337
+- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
+ sha256: 7de8ced1918bbdadecf8e1c1c68237fe5709c097bd9e0d254f4cad118f4345d0
+ md5: 1a3981115a398535dbe3f6d5faae3d36
+ depends:
+ - frozenlist >=1.1.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/aiosignal?source=hash-mapping
+ size: 13229
+ timestamp: 1734342253061
+- conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
+ sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2
+ md5: 421a865222cd0c9d83ff08bc78bf3a61
+ depends:
+ - frozenlist >=1.1.0
+ - python >=3.9
+ - typing_extensions >=4.2
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/aiosignal?source=hash-mapping
+ size: 13688
+ timestamp: 1751626573984
+- conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda
+ sha256: b9214bc17e89bf2b691fad50d952b7f029f6148f4ac4fe7c60c08f093efdf745
+ md5: 76df83c2a9035c54df5d04ff81bcc02d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ purls: []
+ size: 566531
+ timestamp: 1744668655747
+- conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.15.3-hb03c661_0.conda
+ sha256: d88aa7ae766cf584e180996e92fef2aa7d8e0a0a5ab1d4d49c32390c1b5fff31
+ md5: dcdc58c15961dbf17a0621312b01f5cb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ purls: []
+ size: 584660
+ timestamp: 1768327524772
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ sha256: c5c1057778bec78e07a4a8f122c3659767817fc0a9fa034724ff931ad90af57b
+ md5: ef757816a8f0fee2650b6c7e19980b6b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - ampl-mp >=4.0.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause AND SMLNJ
+ purls: []
+ size: 516511
+ timestamp: 1732439392742
+- conda: https://prefix.dev/conda-forge/linux-64/ampl-asl-1.0.0-h5888daf_2.conda
+ sha256: c5c1057778bec78e07a4a8f122c3659767817fc0a9fa034724ff931ad90af57b
+ md5: ef757816a8f0fee2650b6c7e19980b6b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - ampl-mp >=4.0.0
+ license: BSD-3-Clause AND SMLNJ
+ purls: []
+ size: 516511
+ timestamp: 1732439392742
+- conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855
+ md5: 346722a0be40f6edc53f12640d301338
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 2706396
+ timestamp: 1718551242397
+- conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855
+ md5: 346722a0be40f6edc53f12640d301338
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 2706396
+ timestamp: 1718551242397
+- conda: https://conda.anaconda.org/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda
+ sha256: 66ffcf30550e0788d16090e4b4e8835290b15439bb454b0e217176a09dc1d500
+ md5: eb9d4263271ca287d2e0cf5a86da2d3a
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/argcomplete?source=hash-mapping
+ size: 42164
+ timestamp: 1743726091226
+- conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.3-pyhd8ed1ab_0.conda
+ sha256: a2a1879c53b7a8438c898d20fa5f6274e4b1c30161f93b7818236e9df6adffde
+ md5: 8f37c8fb7116a18da04e52fa9e2c8df9
+ depends:
+ - python >=3.10
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/argcomplete?source=hash-mapping
+ size: 42386
+ timestamp: 1760975036972
+- conda: https://conda.anaconda.org/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ sha256: c9022ee34f756847f48907472514da3395a8c0549679cfd2a1b4f6833dd6298c
+ md5: 5546062a59566def2fa6482acf531841
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - zlib
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3535704
+ timestamp: 1725086969417
+- conda: https://prefix.dev/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda
+ sha256: c9022ee34f756847f48907472514da3395a8c0549679cfd2a1b4f6833dd6298c
+ md5: 5546062a59566def2fa6482acf531841
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - zlib
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3535704
+ timestamp: 1725086969417
+- conda: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2
+ sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c
+ md5: 6b889f174df1e0f816276ae69281af4d
+ depends:
+ - at-spi2-core >=2.40.0,<2.41.0a0
+ - atk-1.0 >=2.36.0
+ - dbus >=1.13.6,<2.0a0
+ - libgcc-ng >=9.3.0
+ - libglib >=2.68.1,<3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 339899
+ timestamp: 1619122953439
+- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2
+ sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c
+ md5: 6b889f174df1e0f816276ae69281af4d
+ depends:
+ - at-spi2-core >=2.40.0,<2.41.0a0
+ - atk-1.0 >=2.36.0
+ - dbus >=1.13.6,<2.0a0
+ - libgcc-ng >=9.3.0
+ - libglib >=2.68.1,<3.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 339899
+ timestamp: 1619122953439
+- conda: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2
+ sha256: c4f9b66bd94c40d8f1ce1fad2d8b46534bdefda0c86e3337b28f6c25779f258d
+ md5: 8cb2fc4cd6cc63f1369cfa318f581cc3
+ depends:
+ - dbus >=1.13.6,<2.0a0
+ - libgcc-ng >=9.3.0
+ - libglib >=2.68.3,<3.0a0
+ - xorg-libx11
+ - xorg-libxi
+ - xorg-libxtst
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 658390
+ timestamp: 1625848454791
+- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2
+ sha256: c4f9b66bd94c40d8f1ce1fad2d8b46534bdefda0c86e3337b28f6c25779f258d
+ md5: 8cb2fc4cd6cc63f1369cfa318f581cc3
+ depends:
+ - dbus >=1.13.6,<2.0a0
+ - libgcc-ng >=9.3.0
+ - libglib >=2.68.3,<3.0a0
+ - xorg-libx11
+ - xorg-libxi
+ - xorg-libxtst
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 658390
+ timestamp: 1625848454791
+- conda: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e
+ md5: f730d54ba9cd543666d7220c9f7ed563
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.0,<3.0a0
+ - libstdcxx-ng >=12
+ constrains:
+ - atk-1.0 2.38.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 355900
+ timestamp: 1713896169874
+- conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e
+ md5: f730d54ba9cd543666d7220c9f7ed563
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.0,<3.0a0
+ - libstdcxx-ng >=12
+ constrains:
+ - atk-1.0 2.38.0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 355900
+ timestamp: 1713896169874
+- conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
+ sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324
+ md5: d9c69a24ad678ffce24c6543a0176b00
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 71042
+ timestamp: 1660065501192
+- conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda
+ sha256: a9c114cbfeda42a226e2db1809a538929d2f118ef855372293bd188f71711c48
+ md5: 791365c5f65975051e4e017b5da3abf5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 68072
+ timestamp: 1756738968573
+- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda
+ sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019
+ md5: a10d11958cadc13fdb43df75f8b1903f
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/attrs?source=hash-mapping
+ size: 57181
+ timestamp: 1741918625732
+- conda: https://prefix.dev/conda-forge/noarch/attrs-25.4.0-pyhcf101f3_1.conda
+ sha256: c13d5e42d187b1d0255f591b7ce91201d4ed8a5370f0d986707a802c20c9d32f
+ md5: 537296d57ea995666c68c821b00e360b
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/attrs?source=compressed-mapping
+ size: 64759
+ timestamp: 1764875182184
+- pypi: https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl
+ name: babel
+ version: 2.18.0
+ sha256: e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35
+ requires_dist:
+ - pytz>=2015.7 ; python_full_version < '3.9'
+ - tzdata ; sys_platform == 'win32' and extra == 'dev'
+ - backports-zoneinfo ; python_full_version < '3.9' and extra == 'dev'
+ - freezegun~=1.0 ; extra == 'dev'
+ - jinja2>=3.0 ; extra == 'dev'
+ - pytest-cov ; extra == 'dev'
+ - pytest>=6.0 ; extra == 'dev'
+ - pytz ; extra == 'dev'
+ - setuptools ; extra == 'dev'
+ requires_python: '>=3.8'
+- pypi: https://files.pythonhosted.org/packages/0f/f0/35240571e1b67ffb19dafb29ab34150b6f59f93f717b041082cdb1bfceb1/backrefs-6.2-py311-none-any.whl
+ name: backrefs
+ version: '6.2'
+ sha256: 08aa7fae530c6b2361d7bdcbda1a7c454e330cc9dbcd03f5c23205e430e5c3be
+ requires_dist:
+ - regex ; extra == 'extras'
+ requires_python: '>=3.9'
+- pypi: https://files.pythonhosted.org/packages/c5/71/c754b1737ad99102e03fa3235acb6cb6d3ac9d6f596cbc3e5f236705abd8/backrefs-6.2-py313-none-any.whl
+ name: backrefs
+ version: '6.2'
+ sha256: 12df81596ab511f783b7d87c043ce26bc5b0288cf3bb03610fe76b8189282b2b
+ requires_dist:
+ - regex ; extra == 'extras'
+ requires_python: '>=3.9'
+- pypi: https://files.pythonhosted.org/packages/e3/63/77e8c9745b4d227cce9f5e0a6f68041278c5f9b18588b35905f5f19c1beb/backrefs-6.2-py312-none-any.whl
+ name: backrefs
+ version: '6.2'
+ sha256: c3f4b9cb2af8cda0d87ab4f57800b57b95428488477be164dd2b47be54db0c90
+ requires_dist:
+ - regex ; extra == 'extras'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_5.conda
+ sha256: 2f2a9b6d1cb24eb1df0bd820f35e089fbecab15d8952075b53dc931d89bf98cb
+ md5: 4846404183ea94fd6652e9fb6ac5e16f
+ depends:
+ - binutils_impl_linux-64 >=2.43,<2.44.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ purls: []
+ size: 35281
+ timestamp: 1749852911395
+- conda: https://prefix.dev/conda-forge/linux-64/binutils-2.45.1-default_h4852527_101.conda
+ sha256: 2851d34944b056d028543f0440fb631aeeff204151ea09589d8d9c13882395de
+ md5: 9902aeb08445c03fb31e01beeb173988
+ depends:
+ - binutils_impl_linux-64 >=2.45.1,<2.45.2.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 35128
+ timestamp: 1770267175160
+- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_5.conda
+ sha256: 27ae158d415ff2942214b32ac7952e642f0f4c2a45ab683691e2a9a9159f868c
+ md5: 18852d82df8e5737e320a8731ace51b9
+ depends:
+ - ld_impl_linux-64 2.43 h712a8e2_5
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ purls: []
+ size: 6376971
+ timestamp: 1749852878015
+- conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
+ sha256: 74341b26a2b9475dc14ba3cf12432fcd10a23af285101883e720216d81d44676
+ md5: 83aa53cb3f5fc849851a84d777a60551
+ depends:
+ - ld_impl_linux-64 2.45.1 default_hbd61a6d_101
+ - sysroot_linux-64
+ - zstd >=1.5.7,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 3744895
+ timestamp: 1770267152681
+- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_5.conda
+ sha256: fccbb1974d5557cd5bd4dfccc13c0d15ca198c6a45c2124341dea8c952538512
+ md5: 327ef163ac88b57833c1c1a20a9e7e0d
+ depends:
+ - binutils_impl_linux-64 2.43 h4bf12b8_5
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ purls: []
+ size: 36038
+ timestamp: 1749852914153
+- conda: https://prefix.dev/conda-forge/linux-64/binutils_linux-64-2.45.1-default_h4852527_101.conda
+ sha256: 4826f97d33cbe54459970a1e84500dbe0cccf8326aaf370e707372ae20ec5a47
+ md5: dec96579f9a7035a59492bf6ee613b53
+ depends:
+ - binutils_impl_linux-64 2.45.1 default_hfdba357_101
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 36060
+ timestamp: 1770267177798
+- conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d
+ md5: 2c2fae981fd2afd00812c92ac47d023d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 48427
+ timestamp: 1733513201413
+- conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
+ sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d
+ md5: 2c2fae981fd2afd00812c92ac47d023d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 48427
+ timestamp: 1733513201413
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda
+ sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec
+ md5: 5d08a0ac29e6a5a984817584775d4131
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli-bin 1.1.0 hb9d3cd8_3
+ - libbrotlidec 1.1.0 hb9d3cd8_3
+ - libbrotlienc 1.1.0 hb9d3cd8_3
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19810
+ timestamp: 1749230148642
+- conda: https://prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda
+ sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6
+ md5: 8ccf913aaba749a5496c17629d859ed1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli-bin 1.2.0 hb03c661_1
+ - libbrotlidec 1.2.0 hb03c661_1
+ - libbrotlienc 1.2.0 hb03c661_1
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20103
+ timestamp: 1764017231353
+- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda
+ sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7
+ md5: 58178ef8ba927229fba6d84abf62c108
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlidec 1.1.0 hb9d3cd8_3
+ - libbrotlienc 1.1.0 hb9d3cd8_3
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19390
+ timestamp: 1749230137037
+- conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda
+ sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94
+ md5: af39b9a8711d4a8d437b52c1d78eb6a1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlidec 1.2.0 hb03c661_1
+ - libbrotlienc 1.2.0 hb03c661_1
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 21021
+ timestamp: 1764017221344
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-3.25-h9cebb41_4.conda
+ sha256: 874c71a101d68d299baeac36a7b7bd147a25476aca5fa9342a19d67650ed3032
+ md5: 64e2296e1981883e7c64e7db4af6044b
+ depends:
+ - bullet-cpp 3.25 hf9745cd_4
+ - numpy
+ - pybullet 3.25 py312h71c6f2c_4
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 11738
+ timestamp: 1747516449618
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-3.25-hbd00459_4.conda
+ sha256: 969d9fea8da3b3c3ace1d1cb270c8938886ca7feb61d4b3f394abfbfbe82ea29
+ md5: 14f04d8353df4f2134b218d87435f33a
+ depends:
+ - bullet-cpp 3.25 h7db5c69_4
+ - numpy
+ - pybullet 3.25 py311h2ed89a0_4
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 11721
+ timestamp: 1747516565520
+- conda: https://prefix.dev/conda-forge/linux-64/bullet-3.25-h26dfbe5_5.conda
+ sha256: 1ba37b4b500aa486012a19c3071477e2bac202822625980e99da77e2d18ea408
+ md5: 980176113a639a707f5b158031cbac21
+ depends:
+ - bullet-cpp 3.25 hcbe3ca9_5
+ - numpy
+ - pybullet 3.25 py312hf49885f_5
+ - python
+ license: Zlib
+ purls: []
+ size: 11631
+ timestamp: 1761041385662
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-h7db5c69_4.conda
+ sha256: de47887981cec9385ea780a02d539e6446f9393af91a1eeb27cf884b290b9877
+ md5: 3c1389f538dd361396dc8566ef89d982
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python_abi 3.11.* *_cp311
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 43026158
+ timestamp: 1747516092494
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bullet-cpp-3.25-hf9745cd_4.conda
+ sha256: 0b3a0f05dbbe937142b73485e9ef13065fd5f3b4e8922c4ade79d233b7cc3493
+ md5: ddfdef1d16d0c1ed4985c36ca06031b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 43021553
+ timestamp: 1747515976805
+- conda: https://prefix.dev/conda-forge/linux-64/bullet-cpp-3.25-hcbe3ca9_5.conda
+ sha256: 5b1d2b088f15796123a81d2213cf7998e7d36cb19293bc55d0d6c1d3254af7e5
+ md5: 17f8b21e05588ceea91fbb1162133dbb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: Zlib
+ purls: []
+ size: 42581149
+ timestamp: 1761041037901
+- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
+ md5: 62ee74e96c5ebb0af99386de58cf9553
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: bzip2-1.0.6
+ license_family: BSD
+ purls: []
+ size: 252783
+ timestamp: 1720974456583
+- conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
+ sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
+ md5: d2ffd7602c02f2b316fd921d39876885
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: bzip2-1.0.6
+ license_family: BSD
+ purls: []
+ size: 260182
+ timestamp: 1771350215188
+- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
+ sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb
+ md5: f7f0d6cc2dc986d42ac2689ec88192be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 206884
+ timestamp: 1744127994291
+- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
+ sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
+ md5: 920bb03579f15389b9e512095ad995b7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 207882
+ timestamp: 1765214722852
+- conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
+ sha256: 1e4b86b0f3d4ce9f3787b8f62e9f2c5683287f19593131640eed01cbdad38168
+ md5: 3cb814f83f1f71ac1985013697f80cc1
+ depends:
+ - binutils
+ - gcc
+ - gcc_linux-64 13.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6196
+ timestamp: 1736437002021
+- conda: https://prefix.dev/conda-forge/linux-64/c-compiler-1.11.0-h4d9bdce_0.conda
+ sha256: 8e7a40f16400d7839c82581410aa05c1f8324a693c9d50079f8c50dc9fb241f0
+ md5: abd85120de1187b0d1ec305c2173c71b
+ depends:
+ - binutils
+ - gcc
+ - gcc_linux-64 14.*
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6693
+ timestamp: 1753098721814
+- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
+ sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac
+ md5: 95db94f75ba080a22eb623590993167b
+ depends:
+ - __unix
+ channel: https://fast.prefix.dev/conda-forge
+ license: ISC
+ purls: []
+ size: 152283
+ timestamp: 1745653616541
+- conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
+ sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
+ md5: bddacf101bb4dd0e51811cb69c7790e2
+ depends:
+ - __unix
+ license: ISC
+ purls: []
+ size: 146519
+ timestamp: 1767500828366
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7
+ md5: 09262e66b19567aff4f592fb53b28760
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.5,<2.0a0
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only or MPL-1.1
+ purls: []
+ size: 978114
+ timestamp: 1741554591855
+- conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda
+ sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7
+ md5: 09262e66b19567aff4f592fb53b28760
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.44.2,<1.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.5,<2.0a0
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ license: LGPL-2.1-only or MPL-1.1
+ purls: []
+ size: 978114
+ timestamp: 1741554591855
+- conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py311hc506289_0.conda
+ sha256: 8eeb3604734d34c8f6ebe3157d5d5dc59614e03b38ca706d90eb6c43d300327e
+ md5: 2eed07f16c953eefed35c267cabc1b21
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ipopt >=3.14.17,<3.14.18.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libblasfeo >=0.1.4.2,<0.1.5.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libfatrop >=0.0.4,<0.0.5.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libosqp >=0.6.3,<0.6.4.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - tinyxml2 >=10.0.0,<10.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/casadi?source=hash-mapping
+ size: 6204278
+ timestamp: 1743452987943
+- conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py312h46c3195_3.conda
+ sha256: 4262f67096e52f06200767dfaba336df9a150e39fd80db4a52bf1f9f501c7181
+ md5: 7c697d81f4e855f0410294c29d28a1dc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ipopt >=3.14.17,<3.14.18.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libblasfeo >=0.1.4.2,<0.1.5.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libfatrop >=0.0.4,<0.0.5.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libosqp >=1.0.0,<1.0.1.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/casadi?source=hash-mapping
+ size: 6390492
+ timestamp: 1748897007316
+- conda: https://conda.anaconda.org/conda-forge/linux-64/casadi-3.7.0-py313h93f14d1_3.conda
+ sha256: ff5996fc69a7d15e32a7d99af8d5952fa969168ef4a8ca99180247930ef01f9d
+ md5: 695bf6b2bd063e224825519819edbea8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ipopt >=3.14.17,<3.14.18.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libblasfeo >=0.1.4.2,<0.1.5.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libfatrop >=0.0.4,<0.0.5.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libosqp >=1.0.0,<1.0.1.0a0
+ - libstdcxx >=13
+ - numpy >=1.21,<3
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/casadi?source=hash-mapping
+ size: 6349943
+ timestamp: 1748896974908
+- conda: https://prefix.dev/conda-forge/linux-64/casadi-3.7.0-py312h0b2cbc4_5.conda
+ sha256: c3688c19c130d7ab9a83b69ec11cbeeccdf1d6b4c2628da53e30387c6a369038
+ md5: c3bad559671e5c75631270590eede469
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ipopt >=3.14.19,<3.14.20.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libblasfeo >=0.1.4.2,<0.1.5.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libfatrop >=0.0.4,<0.0.5.0a0
+ - libgcc >=14
+ - liblapack >=3.9.0,<4.0a0
+ - libosqp >=1.0.0,<1.0.1.0a0
+ - libstdcxx >=14
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls:
+ - pkg:pypi/casadi?source=hash-mapping
+ size: 6577661
+ timestamp: 1756987139139
+- conda: https://conda.anaconda.org/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda
+ sha256: f210ad987595a6ea0bf37ff600a820627e9f7a5eba2e6b2db02f714e925e8624
+ md5: 016600de0d8b1a8c5ccc99845f51f9da
+ depends:
+ - docutils
+ - pyparsing >=1.5.7
+ - python >=3.9
+ - python-dateutil
+ - setuptools
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/catkin-pkg?source=hash-mapping
+ size: 53393
+ timestamp: 1734127327150
+- conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.1.0-pyhd8ed1ab_0.conda
+ sha256: fe602164dc1920551e1452543e22338d55d8a879959f12598c9674cf295c6341
+ md5: 3e500faf80e42f26d422d849877d48c4
+ depends:
+ - docutils
+ - packaging
+ - pyparsing >=1.5.7
+ - python >=3.10
+ - python-dateutil
+ - setuptools
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/catkin-pkg?source=hash-mapping
+ size: 54106
+ timestamp: 1757558592553
+- pypi: https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl
+ name: certifi
+ version: 2026.1.4
+ sha256: 9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c
+ requires_python: '>=3.7'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda
+ sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35
+ md5: 55553ecd5328336368db611f350b7039
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - pycparser
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 302115
+ timestamp: 1725560701719
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
+ sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457
+ md5: a861504bbea4161a9170b85d4d2be840
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 294403
+ timestamp: 1725560714366
+- conda: https://prefix.dev/conda-forge/linux-64/cffi-2.0.0-py312h460c074_1.conda
+ sha256: 7dafe8173d5f94e46cf9cd597cc8ff476a8357fbbd4433a8b5697b2864845d9c
+ md5: 648ee28dcd4e07a1940a17da62eccd40
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 295716
+ timestamp: 1761202958833
+- pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
+ name: cfgv
+ version: 3.5.0
+ sha256: a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0
+ requires_python: '>=3.10'
+- pypi: https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ name: charset-normalizer
+ version: 3.4.4
+ sha256: 840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381
+ requires_python: '>=3.7'
+- pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ name: charset-normalizer
+ version: 3.4.4
+ sha256: 11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86
+ requires_python: '>=3.7'
+- pypi: https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ name: charset-normalizer
+ version: 3.4.4
+ sha256: a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894
+ requires_python: '>=3.7'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.5.0-h3f2d84a_0.conda
+ sha256: e99c0a69acb485a42e757f0cf5106f17e6c6dc73e3c695b490859e35a561a51e
+ md5: 4a7c3dc241bb268078116434b4d2ad12
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 94060
+ timestamp: 1745305912626
+- conda: https://prefix.dev/conda-forge/linux-64/cli11-2.6.0-h54a6638_0.conda
+ sha256: 324097cd9dde3a4623b0275655ea34641481daa5c1274f9ab994e8a2e6aa26e6
+ md5: ddf9fed4661bace13f33f08fe38a5f45
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 98102
+ timestamp: 1760975548381
+- pypi: https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl
+ name: click
+ version: 8.3.1
+ sha256: 981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6
+ requires_dist:
+ - colorama ; sys_platform == 'win32'
+ requires_python: '>=3.10'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.0.3-h74e3db0_0.conda
+ sha256: becb0030ae243c003367d11bdf2f66a1b5adc1693f11ecfddb90f5ee2521de5f
+ md5: 8e307cb10b262859a00667ce6a0fcf1f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=13
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 20410493
+ timestamp: 1749760929591
+- conda: https://prefix.dev/conda-forge/linux-64/cmake-4.2.3-hc85cc9f_1.conda
+ sha256: 5ece78754577b8d9030ec1f09ce1cd481125f27d8d6fcdcfe2c1017661830c61
+ md5: 51d37989c1758b5edfe98518088bf700
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.18.0,<9.0a0
+ - libexpat >=2.7.4,<3.0a0
+ - libgcc >=14
+ - liblzma >=5.8.2,<6.0a0
+ - libstdcxx >=14
+ - libuv >=1.51.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - rhash >=1.4.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 22330508
+ timestamp: 1771383666798
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h38be061_1.conda
+ sha256: 2f3c899a39fd3c835dde7b7b0b1b0fd41c36d8f8f240fa944ce5944ded27b4e6
+ md5: be2c588c61e2f14b6597427e2f1c5959
+ depends:
+ - coal-python 3.0.1 py311h48d4333_1
+ - libcoal 3.0.1 ha55d5d9_1
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8130
+ timestamp: 1739461961126
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h78bf25f_1.conda
+ sha256: f2115304273f27845447332a3f047fef5fd7dd7fd2abf797e107cc252642c224
+ md5: b0e4c7f2583554462210276ea4146532
+ depends:
+ - coal-python 3.0.1 py313habe685e_1
+ - libcoal 3.0.1 ha55d5d9_1
+ - python_abi 3.13.* *_cp313
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8118
+ timestamp: 1739461962583
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-3.0.1-h7900ff3_1.conda
+ sha256: 4175c01a080d707f950e6b352816eeca7b4f7734b817fa8b986ea914de5332d8
+ md5: 4f7d562f2f1a0261c9f18127e19cb506
+ depends:
+ - coal-python 3.0.1 py312he880d2f_1
+ - libcoal 3.0.1 ha55d5d9_1
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8086
+ timestamp: 1739461917642
+- conda: https://prefix.dev/conda-forge/linux-64/coal-3.0.1-h7900ff3_1.conda
+ sha256: 4175c01a080d707f950e6b352816eeca7b4f7734b817fa8b986ea914de5332d8
+ md5: 4f7d562f2f1a0261c9f18127e19cb506
+ depends:
+ - coal-python 3.0.1 py312he880d2f_1
+ - libcoal 3.0.1 ha55d5d9_1
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8086
+ timestamp: 1739461917642
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py311h48d4333_1.conda
+ sha256: e5e31a51031a3e7f1b2d63257a955a0c5ada4b3c0398c71d7c625795f896a939
+ md5: 609427c3290805c2f0e3e98ac7e4eaf1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libcoal 3.0.1 ha55d5d9_1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - octomap >=1.10.0,<1.11.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - qhull >=2020.2,<2020.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1391098
+ timestamp: 1739461935035
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py312he880d2f_1.conda
+ sha256: 5285231741c5b869b87a792e67335d25f0199ceb84c79854174aff6148ee17e4
+ md5: ed038a5feb86f1887750c091f3301024
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libcoal 3.0.1 ha55d5d9_1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - octomap >=1.10.0,<1.11.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1379916
+ timestamp: 1739461892457
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coal-python-3.0.1-py313habe685e_1.conda
+ sha256: bf8a7122084e758a6b1efdbb6637e76cc1bb887869994ccc5f3ed870ab5e7c3d
+ md5: 935b0e912a98b7912b0b9aa28a19724d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libcoal 3.0.1 ha55d5d9_1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.21,<3
+ - octomap >=1.10.0,<1.11.0a0
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ - qhull >=2020.2,<2020.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1375955
+ timestamp: 1739461933768
+- conda: https://prefix.dev/conda-forge/linux-64/coal-python-3.0.1-py312he880d2f_1.conda
+ sha256: 5285231741c5b869b87a792e67335d25f0199ceb84c79854174aff6148ee17e4
+ md5: ed038a5feb86f1887750c091f3301024
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libcoal 3.0.1 ha55d5d9_1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - octomap >=1.10.0,<1.11.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1379916
+ timestamp: 1739461892457
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-argcomplete-0.3.3-pyhd8ed1ab_1.conda
+ sha256: 05ccb85cad9ca58be9dcb74225f6180a68907a6ab0c990e3940f4decc5bb2280
+ md5: bde6042a1b40a2d4021e1becbe8dd84f
+ depends:
+ - argcomplete
+ - colcon-core
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-argcomplete?source=hash-mapping
+ size: 18692
+ timestamp: 1735452378252
+- conda: https://prefix.dev/conda-forge/noarch/colcon-argcomplete-0.3.3-pyhd8ed1ab_1.conda
+ sha256: 05ccb85cad9ca58be9dcb74225f6180a68907a6ab0c990e3940f4decc5bb2280
+ md5: bde6042a1b40a2d4021e1becbe8dd84f
+ depends:
+ - argcomplete
+ - colcon-core
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-argcomplete?source=hash-mapping
+ size: 18692
+ timestamp: 1735452378252
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-bash-0.5.0-pyhd8ed1ab_1.conda
+ sha256: 4a1258c9743f4e29d666993c3aa29aaf5a310a77f5334f98b81f1c80c2a46fa7
+ md5: abcd9e9bc122d03f86d364ccb15957c7
+ depends:
+ - colcon-core >=0.4.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-bash?source=hash-mapping
+ size: 19001
+ timestamp: 1735646679519
+- conda: https://prefix.dev/conda-forge/noarch/colcon-bash-0.5.0-pyhd8ed1ab_1.conda
+ sha256: 4a1258c9743f4e29d666993c3aa29aaf5a310a77f5334f98b81f1c80c2a46fa7
+ md5: abcd9e9bc122d03f86d364ccb15957c7
+ depends:
+ - colcon-core >=0.4.0
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-bash?source=hash-mapping
+ size: 19001
+ timestamp: 1735646679519
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cd-0.1.1-pyhd8ed1ab_1.conda
+ sha256: 4cbac86d8c2c62293586664b3ccb3371bb51b671a8ee607adaadf78a9a745f92
+ md5: 872e61a33caebff21a695ea1f886f3bf
+ depends:
+ - colcon-core >=0.4.1
+ - colcon-package-information
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-cd?source=hash-mapping
+ size: 16858
+ timestamp: 1735513271475
+- conda: https://prefix.dev/conda-forge/noarch/colcon-cd-0.1.1-pyhd8ed1ab_1.conda
+ sha256: 4cbac86d8c2c62293586664b3ccb3371bb51b671a8ee607adaadf78a9a745f92
+ md5: 872e61a33caebff21a695ea1f886f3bf
+ depends:
+ - colcon-core >=0.4.1
+ - colcon-package-information
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-cd?source=hash-mapping
+ size: 16858
+ timestamp: 1735513271475
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-cmake-0.2.28-pyhd8ed1ab_0.conda
+ sha256: 7687dfa89ba61bbc4cdf7dab40fbf9b8ff2cf0d58ec1b57a8a54c91b2858b47e
+ md5: 9de79776547780dd4a4e095d3bc3044c
+ depends:
+ - colcon-core
+ - colcon-library-path
+ - colcon-test-result >=0.3.3
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-cmake?source=hash-mapping
+ size: 25388
+ timestamp: 1696469433425
+- conda: https://prefix.dev/conda-forge/noarch/colcon-cmake-0.2.29-pyhd8ed1ab_1.conda
+ sha256: edc01069635b0bb7d9a58c1f36371d1c841ecf90b8e74397df418436209ce01c
+ md5: b5b23d06f0def5724475bd12365f1aa5
+ depends:
+ - colcon-core
+ - colcon-library-path
+ - colcon-test-result >=0.3.3
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-cmake?source=hash-mapping
+ size: 26257
+ timestamp: 1757616401522
+- conda: https://conda.anaconda.org/conda-forge/linux-64/colcon-common-extensions-0.3.0-py311h38be061_2.conda
+ sha256: 7b8b856aab89a5c532aad7c9a47c785346f43aa2bf2f4bd0e6a7b55521f6a428
+ md5: 05e394f53319e5d665842ac3eb951675
+ depends:
+ - colcon-argcomplete
+ - colcon-bash
+ - colcon-cd
+ - colcon-cmake
+ - colcon-core
+ - colcon-defaults
+ - colcon-devtools
+ - colcon-library-path
+ - colcon-metadata
+ - colcon-output
+ - colcon-package-information
+ - colcon-package-selection
+ - colcon-parallel-executor
+ - colcon-powershell
+ - colcon-python-setup-py
+ - colcon-recursive-crawl
+ - colcon-ros
+ - colcon-test-result
+ - colcon-zsh
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-common-extensions?source=hash-mapping
+ size: 12467
+ timestamp: 1726305108334
+- conda: https://conda.anaconda.org/conda-forge/linux-64/colcon-common-extensions-0.3.0-py312h7900ff3_2.conda
+ sha256: d8cb240de30438dd5c714ec760e092879caba078ad43c6ddd5edee88907f320b
+ md5: 544bf54476bac1a6e848d2fdc80fda89
+ depends:
+ - colcon-argcomplete
+ - colcon-bash
+ - colcon-cd
+ - colcon-cmake
+ - colcon-core
+ - colcon-defaults
+ - colcon-devtools
+ - colcon-library-path
+ - colcon-metadata
+ - colcon-output
+ - colcon-package-information
+ - colcon-package-selection
+ - colcon-parallel-executor
+ - colcon-powershell
+ - colcon-python-setup-py
+ - colcon-recursive-crawl
+ - colcon-ros
+ - colcon-test-result
+ - colcon-zsh
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-common-extensions?source=hash-mapping
+ size: 12481
+ timestamp: 1726305136800
+- conda: https://prefix.dev/conda-forge/linux-64/colcon-common-extensions-0.3.0-py312h7900ff3_4.conda
+ sha256: 27f2433f8e452f31d6b9a5d1e59cb034466f06850c4f1eabf079452583bce57c
+ md5: 75c354bb1fbd29aeebeb140b05233b66
+ depends:
+ - colcon-argcomplete
+ - colcon-bash
+ - colcon-cd
+ - colcon-cmake
+ - colcon-core
+ - colcon-defaults
+ - colcon-devtools
+ - colcon-library-path
+ - colcon-metadata
+ - colcon-output
+ - colcon-package-information
+ - colcon-package-selection
+ - colcon-parallel-executor
+ - colcon-powershell
+ - colcon-python-setup-py
+ - colcon-recursive-crawl
+ - colcon-ros
+ - colcon-test-result
+ - colcon-zsh
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-common-extensions?source=hash-mapping
+ size: 13032
+ timestamp: 1759757821346
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-core-0.19.0-pyhd8ed1ab_1.conda
+ sha256: 565322c13eb28db869d8de16f5ae14caebb2b58f76c11ab8eaddeb5eaa2e50e9
+ md5: d7c6db7125d9f78ec34451f4b4d471cb
+ depends:
+ - coloredlogs
+ - distlib
+ - empy
+ - pytest
+ - pytest-cov
+ - pytest-repeat
+ - pytest-rerunfailures
+ - python >=3.9
+ - setuptools >=30.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-core?source=hash-mapping
+ - pkg:pypi/colcon-distutils-commands?source=hash-mapping
+ size: 88696
+ timestamp: 1742163247059
+- conda: https://prefix.dev/conda-forge/noarch/colcon-core-0.20.1-pyhcf101f3_0.conda
+ sha256: 488babf2d1649d60ca2505de6f2bb8f2d66c41805e9ffeba0446a0fd2eeaafc0
+ md5: 243a645c3e76d48a1a62209cd1477d0c
+ depends:
+ - python >=3.10
+ - coloredlogs
+ - distlib
+ - empy
+ - pytest
+ - pytest-cov
+ - pytest-repeat
+ - pytest-rerunfailures
+ - setuptools >=30.3.0,<80
+ - tomli >=1.0.0
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-core?source=hash-mapping
+ - pkg:pypi/colcon-distutils-commands?source=hash-mapping
+ size: 95568
+ timestamp: 1759822473386
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-defaults-0.2.8-pyhd8ed1ab_0.conda
+ sha256: 1ed9478917110335a37c6f37fc0542cdf623a99c93032c938fb395f607a433e3
+ md5: 9280937fc017d85b61b797f14370766f
+ depends:
+ - colcon-core >=0.2.0
+ - python >=3.5
+ - pyyaml
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-defaults?source=hash-mapping
+ size: 14626
+ timestamp: 1675322151128
+- conda: https://prefix.dev/conda-forge/noarch/colcon-defaults-0.2.9-pyhd8ed1ab_1.conda
+ sha256: dd89f3e92a80532b9c6427ec9dd12742be9e27c3d6639555a4f786787fb5f33d
+ md5: 1bc984ddc9434fd2fdabde2e0e44dd14
+ depends:
+ - colcon-core >=0.2.0
+ - python >=3.10
+ - pyyaml
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-defaults?source=hash-mapping
+ size: 15580
+ timestamp: 1757616344706
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-devtools-0.3.0-pyhd8ed1ab_0.conda
+ sha256: a1e3266159b26e0de623e7158b6554aa5a5e2a976060a59a8dc007dcc4a4c0a3
+ md5: 6179c56610341089e237027b316b520c
+ depends:
+ - colcon-core
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-devtools?source=hash-mapping
+ size: 14347
+ timestamp: 1710399090247
+- conda: https://prefix.dev/conda-forge/noarch/colcon-devtools-0.3.0-pyhd8ed1ab_1.conda
+ sha256: 76fcd1500b6f70f61be4c1fa1defb9d56d69389d22261a6e0c0f966ed8ea515d
+ md5: d4c1201d9d20e0c05836ca81884c7cdb
+ depends:
+ - colcon-core
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-devtools?source=hash-mapping
+ size: 14943
+ timestamp: 1757616967604
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-library-path-0.2.1-py_0.tar.bz2
+ sha256: d70d1be5690c2680d1efce0862ef3fdd9332676d98fcc7a86caf1daab2336ba2
+ md5: 321895b5868349cc477f47c91ac870e9
+ depends:
+ - colcon-core
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-library-path?source=hash-mapping
+ size: 10753
+ timestamp: 1570998873901
+- conda: https://prefix.dev/conda-forge/noarch/colcon-library-path-0.2.1-pyhd8ed1ab_1.conda
+ sha256: b3a01541cbe8e4c7ca789c71b5d0155ca14cc9c6ebaa6036d1becd72cb0c3227
+ md5: 37c84be9d74c37fde10d1155d77e805e
+ depends:
+ - colcon-core
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-library-path?source=hash-mapping
+ size: 13505
+ timestamp: 1757615646068
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-metadata-0.2.5-py_0.tar.bz2
+ sha256: b5132ecbd56edae56c328a4306e368dca1f92def2184c82e5133636d7c009237
+ md5: 60466c2c5d2a6bc78c3badaaf304bcb7
+ depends:
+ - colcon-core
+ - python >=3.5
+ - pyyaml
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-metadata?source=hash-mapping
+ size: 17805
+ timestamp: 1597041738215
+- conda: https://prefix.dev/conda-forge/noarch/colcon-metadata-0.2.5-pyhd8ed1ab_1.conda
+ sha256: f337471a44b2d29111ee562872da6ab2abcd55e139c8a5e74c76f3f7fb3042b7
+ md5: df798f897da0ae212d14faa79a4565f5
+ depends:
+ - colcon-core
+ - python >=3.10
+ - pyyaml
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-metadata?source=hash-mapping
+ size: 20031
+ timestamp: 1757624342935
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-output-0.2.13-pyhd8ed1ab_0.conda
+ sha256: ce2802f9c76f4502d17ff47f76f634449a1ae10fded0bed6a65c05d35ccafb33
+ md5: d0294b947e6256444f31979612468bba
+ depends:
+ - colcon-core >=0.3.8
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-output?source=hash-mapping
+ size: 16174
+ timestamp: 1676526311561
+- conda: https://prefix.dev/conda-forge/noarch/colcon-output-0.2.13-pyhd8ed1ab_0.conda
+ sha256: ce2802f9c76f4502d17ff47f76f634449a1ae10fded0bed6a65c05d35ccafb33
+ md5: d0294b947e6256444f31979612468bba
+ depends:
+ - colcon-core >=0.3.8
+ - python >=3.5
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-output?source=hash-mapping
+ size: 16174
+ timestamp: 1676526311561
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-information-0.4.0-pyhd8ed1ab_0.conda
+ sha256: fcea11b23e09e885f7989dfb1468c34985060bf9c5f1ec6d8e59af3f8256ce92
+ md5: ed85497b62f88dd3c018272edc81d8b5
+ depends:
+ - colcon-core
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-package-information?source=hash-mapping
+ size: 18063
+ timestamp: 1710399124724
+- conda: https://prefix.dev/conda-forge/noarch/colcon-package-information-0.4.0-pyhd8ed1ab_1.conda
+ sha256: 6654254ab628a9ca1648a18b7a1c078ae11bf9eca898a4ee20f601b622acd783
+ md5: 6f4c11d25a53f2a7daac0232c3306556
+ depends:
+ - colcon-core
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-package-information?source=hash-mapping
+ size: 18705
+ timestamp: 1764592318817
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-package-selection-0.2.10-py_0.tar.bz2
+ sha256: 75aa0932d21829bb74c8ec8877b4dc82d5cbcfac79ae3ca8f2ef0128d2962e99
+ md5: 096e1c0408ce1cf62fcb2c204048c4ba
+ depends:
+ - colcon-core >=0.3.19
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-package-selection?source=hash-mapping
+ size: 16036
+ timestamp: 1602007048566
+- conda: https://prefix.dev/conda-forge/noarch/colcon-package-selection-0.2.10-pyhd8ed1ab_1.conda
+ sha256: 1cc39947aace656988696bc63c520e031c27a974e18b3fce0db58e18bb6228a5
+ md5: 1ef460db4fbafbb3279e950378d317b5
+ depends:
+ - colcon-core >=0.3.19
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-package-selection?source=hash-mapping
+ size: 18069
+ timestamp: 1757614388574
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-parallel-executor-0.3.0-pyhd8ed1ab_1.conda
+ sha256: 71c8c02c5151d04a275e9c39eaf77350ec67a33763992262e3da8c9cf6076236
+ md5: 1b7700d01109498cbd5c3507f8bf8750
+ depends:
+ - colcon-core >=0.3.15
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-parallel-executor?source=hash-mapping
+ size: 14980
+ timestamp: 1736253057571
+- conda: https://prefix.dev/conda-forge/noarch/colcon-parallel-executor-0.4.0-pyhe01879c_0.conda
+ sha256: 45285d47851b2d38c3ae7665af68f49f7a670737e6320d2715cf5870747007d2
+ md5: 1bad6182810fe70aa0baaf2ec0c2747d
+ depends:
+ - python >=3.9
+ - colcon-core >=0.3.15
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-parallel-executor?source=hash-mapping
+ size: 20688
+ timestamp: 1755156877864
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-pkg-config-0.1.0-py_0.tar.bz2
+ sha256: c8c6baf7ba174c908d501c6df577c140de73f46aadea09a6b3aaf405406e3b5a
+ md5: 434ecb5d163df485879081aedebd59bf
+ depends:
+ - colcon-core
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-pkg-config?source=hash-mapping
+ size: 10397
+ timestamp: 1571038968482
+- conda: https://prefix.dev/conda-forge/noarch/colcon-pkg-config-0.1.0-py_0.tar.bz2
+ sha256: c8c6baf7ba174c908d501c6df577c140de73f46aadea09a6b3aaf405406e3b5a
+ md5: 434ecb5d163df485879081aedebd59bf
+ depends:
+ - colcon-core
+ - python >=3.5
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-pkg-config?source=hash-mapping
+ size: 10397
+ timestamp: 1571038968482
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-powershell-0.4.0-pyhd8ed1ab_0.conda
+ sha256: b54f4da2b2826a9b40bf879c88f00f716ed15f05c072b04de666a4b2181f4bcf
+ md5: 80c4494a26b9e887c03a46491c98e217
+ depends:
+ - colcon-core >=0.3.18
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-powershell?source=hash-mapping
+ size: 16734
+ timestamp: 1696619534089
+- conda: https://prefix.dev/conda-forge/noarch/colcon-powershell-0.5.0-pyhd8ed1ab_0.conda
+ sha256: 9afc4546ba72326e6a7e0e9874879709e3c14260e49ae11663164bd0f3911106
+ md5: 3f5f803ff3703d28c8ec4cc9b3564257
+ depends:
+ - colcon-core >=0.3.18
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-powershell?source=hash-mapping
+ size: 17608
+ timestamp: 1770791211378
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-python-setup-py-0.2.9-pyhff2d567_0.conda
+ sha256: 75d6347be8aed680b876b060b61161bd0d165c5f89968a659d74343d4685d19b
+ md5: 89efe9bf1e956c011984b7729b566026
+ depends:
+ - colcon-core >=0.6.1
+ - python >=3.6
+ - setuptools
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-python-setup-py?source=hash-mapping
+ size: 15884
+ timestamp: 1728887930380
+- conda: https://prefix.dev/conda-forge/noarch/colcon-python-setup-py-0.2.9-pyhff2d567_1.conda
+ sha256: c3f6cb06b4e1f0fc0efc50ee7ca78fb8d1bcdfff92afcd0e9235c53eb521e61a
+ md5: f9e99cee078c732ab49d547fa1a7a752
+ depends:
+ - colcon-core >=0.6.1
+ - python >=3.9
+ - setuptools
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-python-setup-py?source=hash-mapping
+ size: 16561
+ timestamp: 1753971248803
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-recursive-crawl-0.2.3-pyhd8ed1ab_0.conda
+ sha256: 8aede8793a64695cf65f37633ede04c125db71d13abc2c8fb70b44fbc48d3794
+ md5: 0e15eecc695ef5a4508ffe3e438f1466
+ depends:
+ - colcon-core >=0.2.0
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-recursive-crawl?source=hash-mapping
+ size: 13254
+ timestamp: 1696534627965
+- conda: https://prefix.dev/conda-forge/noarch/colcon-recursive-crawl-0.2.3-pyhd8ed1ab_0.conda
+ sha256: 8aede8793a64695cf65f37633ede04c125db71d13abc2c8fb70b44fbc48d3794
+ md5: 0e15eecc695ef5a4508ffe3e438f1466
+ depends:
+ - colcon-core >=0.2.0
+ - python >=3.5
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-recursive-crawl?source=hash-mapping
+ size: 13254
+ timestamp: 1696534627965
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-ros-0.5.0-pyhd8ed1ab_0.conda
+ sha256: 7c018dd7074de3b3bac375718cd43ff4677ef18f8ab81c3a75bed4eb646e280e
+ md5: 7ba348bf6258968e8f514cd25c207933
+ depends:
+ - catkin_pkg >=0.4.14
+ - colcon-cmake >=0.2.6
+ - colcon-core >=0.7.0
+ - colcon-pkg-config
+ - colcon-python-setup-py >=0.2.4
+ - colcon-recursive-crawl
+ - python >=3.6
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-ros?source=hash-mapping
+ size: 23852
+ timestamp: 1719301582281
+- conda: https://prefix.dev/conda-forge/noarch/colcon-ros-0.5.0-pyhd8ed1ab_0.conda
+ sha256: 7c018dd7074de3b3bac375718cd43ff4677ef18f8ab81c3a75bed4eb646e280e
+ md5: 7ba348bf6258968e8f514cd25c207933
+ depends:
+ - catkin_pkg >=0.4.14
+ - colcon-cmake >=0.2.6
+ - colcon-core >=0.7.0
+ - colcon-pkg-config
+ - colcon-python-setup-py >=0.2.4
+ - colcon-recursive-crawl
+ - python >=3.6
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-ros?source=hash-mapping
+ size: 23852
+ timestamp: 1719301582281
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-test-result-0.3.8-py_0.tar.bz2
+ sha256: 78cb733da257344b80ab814f879de3612b67178a45352722c87a82f6f2fe1d81
+ md5: 801f8de0cc53c86cd54f9f81392fa7b8
+ depends:
+ - colcon-core
+ - python >=3.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-test-result?source=hash-mapping
+ size: 14697
+ timestamp: 1571039078605
+- conda: https://prefix.dev/conda-forge/noarch/colcon-test-result-0.3.8-pyhd8ed1ab_1.conda
+ sha256: a9657a89b55efc8abd46d3b32bd4cb9ed06ecc84b76ddf5e6d336945633a9269
+ md5: 1f45017750d20d6538970315e10a2f01
+ depends:
+ - colcon-core
+ - python >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-test-result?source=hash-mapping
+ size: 17214
+ timestamp: 1757615650730
+- conda: https://conda.anaconda.org/conda-forge/noarch/colcon-zsh-0.5.0-pyhd8ed1ab_1.conda
+ sha256: 0f089c2ee902d7d43b75f22af74af2dd914546d81e7380c097e31a206c42984e
+ md5: a274fdd9d63e809b4fdcaee36a8bc42c
+ depends:
+ - colcon-core >=0.4.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-zsh?source=hash-mapping
+ size: 18905
+ timestamp: 1735357634338
+- conda: https://prefix.dev/conda-forge/noarch/colcon-zsh-0.5.0-pyhd8ed1ab_1.conda
+ sha256: 0f089c2ee902d7d43b75f22af74af2dd914546d81e7380c097e31a206c42984e
+ md5: a274fdd9d63e809b4fdcaee36a8bc42c
+ depends:
+ - colcon-core >=0.4.0
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/colcon-zsh?source=hash-mapping
+ size: 18905
+ timestamp: 1735357634338
+- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
+ name: colorama
+ version: 0.4.6
+ sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
+ requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
+- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
+ md5: 962b9857ee8e7018c22f2776ffa0b2d7
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/colorama?source=hash-mapping
+ size: 27011
+ timestamp: 1733218222191
+- conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
+ sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
+ md5: 962b9857ee8e7018c22f2776ffa0b2d7
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/colorama?source=hash-mapping
+ size: 27011
+ timestamp: 1733218222191
+- conda: https://conda.anaconda.org/conda-forge/noarch/coloredlogs-15.0.1-pyhd8ed1ab_4.conda
+ sha256: 8021c76eeadbdd5784b881b165242db9449783e12ce26d6234060026fd6a8680
+ md5: b866ff7007b934d564961066c8195983
+ depends:
+ - humanfriendly >=9.1
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/coloredlogs?source=hash-mapping
+ size: 43758
+ timestamp: 1733928076798
+- conda: https://prefix.dev/conda-forge/noarch/coloredlogs-15.0.1-pyhd8ed1ab_4.conda
+ sha256: 8021c76eeadbdd5784b881b165242db9449783e12ce26d6234060026fd6a8680
+ md5: b866ff7007b934d564961066c8195983
+ depends:
+ - humanfriendly >=9.1
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/coloredlogs?source=hash-mapping
+ size: 43758
+ timestamp: 1733928076798
+- conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.9.0-ha770c72_0.conda
+ sha256: 97d90aeba05089bbf3124030ebd96890754b8c8dc2c880490d38a3075941de28
+ md5: 5859096e397aba423340d0bbbb11ec64
+ depends:
+ - c-compiler 1.9.0 h2b85faf_0
+ - cxx-compiler 1.9.0 h1a2810e_0
+ - fortran-compiler 1.9.0 h36df796_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7014
+ timestamp: 1736437002774
+- conda: https://prefix.dev/conda-forge/linux-64/compilers-1.11.0-ha770c72_0.conda
+ sha256: 5709f2cbfeb8690317ba702611bdf711a502b417fecda6ad3313e501f6f8bd61
+ md5: fdcf2e31dd960ef7c5daa9f2c95eff0e
+ depends:
+ - c-compiler 1.11.0 h4d9bdce_0
+ - cxx-compiler 1.11.0 hfcd1e18_0
+ - fortran-compiler 1.11.0 h9bea470_0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7482
+ timestamp: 1753098722454
+- conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-14.3.0-he8ccf15_18.conda
+ sha256: b90ec0e6a9eb22f7240b3584fe785457cff961fec68d40e6aece5d596f9bbd9a
+ md5: 0e3e144115c43c9150d18fa20db5f31c
+ depends:
+ - gcc_impl_linux-64 >=14.3.0,<14.3.1.0a0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 31705
+ timestamp: 1771378159534
+- conda: https://conda.anaconda.org/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7
+ md5: e891b2b856a57d2b2ddb9ed366e3f2ce
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18460
+ timestamp: 1648912649612
+- conda: https://prefix.dev/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2
+ sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7
+ md5: e891b2b856a57d2b2ddb9ed366e3f2ce
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18460
+ timestamp: 1648912649612
+- conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py311hd18a35c_0.conda
+ sha256: 92ec3244ee0b424612025742a73d4728ded5bf6a358301bd005f67e74fec0b21
+ md5: f8e440efa026c394461a45a46cea49fc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.23
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/contourpy?source=hash-mapping
+ size: 278355
+ timestamp: 1744743253299
+- conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.2-py312h68727a3_0.conda
+ sha256: 4c8f2aa34aa031229e6f8aa18f146bce7987e26eae9c6503053722a8695ebf0c
+ md5: e688276449452cdfe9f8f5d3e74c23f6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/contourpy?source=hash-mapping
+ size: 276533
+ timestamp: 1744743235779
+- conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda
+ sha256: 62447faf7e8eb691e407688c0b4b7c230de40d5ecf95bf301111b4d05c5be473
+ md5: 43c2bc96af3ae5ed9e8a10ded942aa50
+ depends:
+ - numpy >=1.25
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/contourpy?source=compressed-mapping
+ size: 320386
+ timestamp: 1769155979897
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py311h2dc5d0c_0.conda
+ sha256: 09245391f91135f4eea87d64107e82d4fb4b7d4fbd6596ea6cc126645191220c
+ md5: f524bd18889f169f2fa8dc70df1c53c3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - tomli
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 383591
+ timestamp: 1749833491301
+- conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.9.1-py312h178313f_0.conda
+ sha256: bef32c5830b7701705660ef18d5d6ad7c597ebab196954c012e8a1cb4af0d3bc
+ md5: 4c18b79fa2a3371557ed3663876e5dcc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tomli
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 371371
+ timestamp: 1749833562595
+- conda: https://prefix.dev/conda-forge/linux-64/coverage-7.13.4-py312h8a5da7c_0.conda
+ sha256: 2c785feaf79c31981ef4a87e41ea1161e1ce6b740ce3f1fb9cf44245cae5cf29
+ md5: a8df7f0812ac4fa6bbc7135556d3e2c4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tomli
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 388190
+ timestamp: 1770720373428
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.17.1-py311hca438b8_0.conda
+ sha256: 857055e9b708cdfdb99e1e2fe073af942146e8436dc49edbdec1756df0a3b44c
+ md5: 5a1c1a7721bf15d65cc35e4e0310a030
+ depends:
+ - pygments
+ - python
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - tinyxml2 >=10.0.0,<10.1.0a0
+ - pcre >=8.45,<9.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls:
+ - pkg:pypi/cppcheck-htmlreport?source=hash-mapping
+ size: 2892866
+ timestamp: 1744009731097
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cppcheck-2.17.1-py312h3bf8db1_1.conda
+ sha256: 9a951968c39749f9ae1bba7c3570e31d9f8cc741a02f98ecf6c6c46b9c48c7ec
+ md5: 517882b5cc64a4e8a0fe5516b2c34c9c
+ depends:
+ - pygments
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - pcre >=8.45,<9.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls:
+ - pkg:pypi/cppcheck-htmlreport?source=hash-mapping
+ size: 2886675
+ timestamp: 1744040683266
+- conda: https://prefix.dev/conda-forge/linux-64/cppcheck-2.18.3-py312h014360a_1.conda
+ sha256: f4321bdeddc9178f006a8cc3dedeaf32ab7e4c3be843845fbf594bc07999d2d6
+ md5: ab786ccd5cc6a08c0ebd5f6154c9dfcd
+ depends:
+ - pygments
+ - python
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - pcre >=8.45,<9.0a0
+ - python_abi 3.12.* *_cp312
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls:
+ - pkg:pypi/cppcheck-htmlreport?source=hash-mapping
+ size: 3065679
+ timestamp: 1757440259649
+- pypi: ./
+ name: crisp-controllers
+ version: 0.1.0
+ sha256: 3cb343918f98a0e134513997fa5a3d7475877eca369bdbafc0a366f19f92b83c
+ requires_dist:
+ - mkdocs>=1.6.1
+ - mkdocs-material>=9.6.15
+ - mkdoxy>=1.2.7
+ - python-dateutil>=2.9.0.post0
+ - zensical>=0.0.15
+ requires_python: '>=3.11'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-45.0.4-py311hafd3f86_0.conda
+ sha256: 0832d1aff2f6606824a89aed2427da26bda9914b6d2ff34ec643f560f4560547
+ md5: 0cfa6cebbf4b3c8f16be9fba587d990a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi >=1.12
+ - libgcc >=13
+ - openssl >=3.5.0,<4.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT
+ license_family: BSD
+ purls:
+ - pkg:pypi/cryptography?source=hash-mapping
+ size: 1662736
+ timestamp: 1749538948414
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cryptography-45.0.4-py312hda17c39_0.conda
+ sha256: 5d36a2f20b54f05341845ba19b909ed40ada50f1fd4f7b606282a4563e1a6a2c
+ md5: f56a043ace4885f37c8856a24447cd19
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi >=1.12
+ - libgcc >=13
+ - openssl >=3.5.0,<4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT
+ license_family: BSD
+ purls:
+ - pkg:pypi/cryptography?source=hash-mapping
+ size: 1658881
+ timestamp: 1749539059944
+- conda: https://prefix.dev/conda-forge/linux-64/cryptography-46.0.5-py312ha4b625e_0.conda
+ sha256: 3a20020b7c9efbabfbfdd726ff303df81159e0c3a41a40ef8b37c3ce161a7849
+ md5: 4c69182866fcdd2fc335885b8f0ac192
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi >=1.14
+ - libgcc >=14
+ - openssl >=3.5.5,<4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - __glibc >=2.17
+ license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT
+ license_family: BSD
+ purls:
+ - pkg:pypi/cryptography?source=compressed-mapping
+ size: 1712251
+ timestamp: 1770772759286
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.9.0-h1a2810e_0.conda
+ sha256: 5efc51b8e7d87fc5380f00ace9f9c758142eade520a63d3631d2616d1c1b25f9
+ md5: 1ce8b218d359d9ed0ab481f2a3f3c512
+ depends:
+ - c-compiler 1.9.0 h2b85faf_0
+ - gxx
+ - gxx_linux-64 13.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6168
+ timestamp: 1736437002465
+- conda: https://prefix.dev/conda-forge/linux-64/cxx-compiler-1.11.0-hfcd1e18_0.conda
+ sha256: 3fcc97ae3e89c150401a50a4de58794ffc67b1ed0e1851468fcc376980201e25
+ md5: 5da8c935dca9186673987f79cef0b2a5
+ depends:
+ - c-compiler 1.11.0 h4d9bdce_0
+ - gxx
+ - gxx_linux-64 14.*
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6635
+ timestamp: 1753098722177
+- conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
+ sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c
+ md5: 44600c4667a319d67dbe0681fc0bc833
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/cycler?source=hash-mapping
+ size: 13399
+ timestamp: 1733332563512
+- conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
+ sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
+ md5: 4c2a8fef270f6c69591889b93f9f55c1
+ depends:
+ - python >=3.10
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/cycler?source=hash-mapping
+ size: 14778
+ timestamp: 1764466758386
+- conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda
+ sha256: d2ea5e52da745c4249e1a818095a28f9c57bd4df22cbfc645352defa468e86c2
+ md5: dce22f70b4e5a407ce88f2be046f4ceb
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libgcc-ng >=12
+ - libntlm
+ - libstdcxx-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ purls: []
+ size: 219527
+ timestamp: 1690061203707
+- conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda
+ sha256: ee09ad7610c12c7008262d713416d0b58bf365bc38584dce48950025850bdf3f
+ md5: cae723309a49399d2949362f4ab5c9e4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libntlm >=1.8,<2.0a0
+ - libstdcxx >=13
+ - libxcrypt >=4.4.36
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ purls: []
+ size: 209774
+ timestamp: 1750239039316
+- conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
+ md5: 418c6ca5929a611cbd69204907a83995
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 760229
+ timestamp: 1685695754230
+- conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
+ md5: 418c6ca5929a611cbd69204907a83995
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 760229
+ timestamp: 1685695754230
+- conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
+ sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5
+ md5: ecfff944ba3960ecb334b9a2663d708d
+ depends:
+ - expat >=2.4.2,<3.0a0
+ - libgcc-ng >=9.4.0
+ - libglib >=2.70.2,<3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 618596
+ timestamp: 1640112124844
+- conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda
+ sha256: 3b988146a50e165f0fa4e839545c679af88e4782ec284cc7b6d07dd226d6a068
+ md5: 679616eb5ad4e521c83da4650860aba7
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libexpat >=2.7.0,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - libglib >=2.84.2,<3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 437860
+ timestamp: 1747855126005
+- conda: https://prefix.dev/conda-forge/linux-64/dbus-1.16.2-h24cb091_1.conda
+ sha256: 8bb557af1b2b7983cf56292336a1a1853f26555d9c6cecf1e5b2b96838c9da87
+ md5: ce96f2f470d39bd96ce03945af92e280
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - libglib >=2.86.2,<3.0a0
+ - libexpat >=2.7.3,<3.0a0
+ license: AFL-2.1 OR GPL-2.0-or-later
+ purls: []
+ size: 447649
+ timestamp: 1764536047944
+- pypi: https://files.pythonhosted.org/packages/2d/82/e5d2c1c67d19841e9edc74954c827444ae826978499bde3dfc1d007c8c11/deepmerge-2.0-py3-none-any.whl
+ name: deepmerge
+ version: '2.0'
+ sha256: 6de9ce507115cff0bed95ff0ce9ecc31088ef50cbdf09bc90a09349a318b3d00
+ requires_dist:
+ - typing-extensions ; python_full_version < '3.10'
+ - validate-pyproject[all] ; extra == 'dev'
+ - pyupgrade ; extra == 'dev'
+ - black ; extra == 'dev'
+ - mypy ; extra == 'dev'
+ - pytest ; extra == 'dev'
+ - build ; extra == 'dev'
+ - twine ; extra == 'dev'
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.18-pyhd8ed1ab_0.conda
+ sha256: d614bcff10696f1efc714df07651b50bf3808401fcc03814309ecec242cc8870
+ md5: 0cef44b1754ae4d6924ac0eef6b9fdbe
+ depends:
+ - python >=3.9
+ - wrapt <2,>=1.10
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/deprecated?source=hash-mapping
+ size: 14382
+ timestamp: 1737987072859
+- conda: https://prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda
+ sha256: 7d57a7b8266043ffb99d092ebc25e89a0a2490bed4146b9432c83c2c476fa94d
+ md5: 5498feb783ab29db6ca8845f68fa0f03
+ depends:
+ - python >=3.10
+ - wrapt <3,>=1.10
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/deprecated?source=compressed-mapping
+ size: 15896
+ timestamp: 1768934186726
+- pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
+ name: distlib
+ version: 0.4.0
+ sha256: 9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16
+- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_1.conda
+ sha256: 0e160c21776bd881b79ce70053e59736f51036784fa43a50da10a04f0c1b9c45
+ md5: 8d88f4a2242e6b96f9ecff9a6a05b2f1
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/distlib?source=hash-mapping
+ size: 274151
+ timestamp: 1733238487461
+- conda: https://prefix.dev/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda
+ sha256: 6d977f0b2fc24fee21a9554389ab83070db341af6d6f09285360b2e09ef8b26e
+ md5: 003b8ba0a94e2f1e117d0bd46aebc901
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/distlib?source=hash-mapping
+ size: 275642
+ timestamp: 1752823081585
+- conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda
+ sha256: 5603c7d0321963bb9b4030eadabc3fd7ca6103a38475b4e0ed13ed6d97c86f4e
+ md5: 0a2014fd9860f8b1eaa0b1f3d3771a08
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/distro?source=hash-mapping
+ size: 41773
+ timestamp: 1734729953882
+- conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda
+ sha256: 5603c7d0321963bb9b4030eadabc3fd7ca6103a38475b4e0ed13ed6d97c86f4e
+ md5: 0a2014fd9860f8b1eaa0b1f3d3771a08
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/distro?source=hash-mapping
+ size: 41773
+ timestamp: 1734729953882
+- conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
+ sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
+ md5: 24c1ca34138ee57de72a943237cde4cc
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1
+ purls:
+ - pkg:pypi/docutils?source=hash-mapping
+ size: 402700
+ timestamp: 1733217860944
+- conda: https://prefix.dev/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda
+ sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e
+ md5: d6bd3cd217e62bbd7efe67ff224cd667
+ depends:
+ - python >=3.10
+ license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1
+ purls:
+ - pkg:pypi/docutils?source=hash-mapping
+ size: 438002
+ timestamp: 1766092633160
+- conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ sha256: 1bcc132fbcc13f9ad69da7aa87f60ea41de7ed4d09f3a00ff6e0e70e1c690bc2
+ md5: bfd56492d8346d669010eccafe0ba058
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 69544
+ timestamp: 1739569648873
+- conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda
+ sha256: 1bcc132fbcc13f9ad69da7aa87f60ea41de7ed4d09f3a00ff6e0e70e1c690bc2
+ md5: bfd56492d8346d669010eccafe0ba058
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 69544
+ timestamp: 1739569648873
+- conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34
+ md5: b1b879d6d093f55dd40d58b5eb2f0699
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 1088433
+ timestamp: 1690272126173
+- conda: https://prefix.dev/conda-forge/linux-64/eigen-3.4.0-h171cf75_1.conda
+ sha256: fee3738c2431c13f4930778e9d7daca9328e7e2f2a38928cf6ca5a0daa86474a
+ md5: ea2db216eae84bc83b0b2961f38f5c0d
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 1169164
+ timestamp: 1759819831835
+- conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np20py311h2672b3f_0.conda
+ sha256: de1dd19f29d5093ed6a3e29e61b9e8b960b2df8fc6e4ea634d1d72c52c0ce378
+ md5: 2a18613d5daf3261b0e5547f823823d0
+ depends:
+ - eigen
+ - libboost-python-devel
+ - python
+ - scipy
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libboost-python >=1.86.0,<1.87.0a0
+ - numpy >=1.19,<3
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 3336306
+ timestamp: 1739356434768
+- conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np20py312hf621b31_0.conda
+ sha256: 99568c41e72cc3344c57d36c6559f97d71926058ea0dc7d5c20846348cc64c10
+ md5: 0730cc329d8cd964528b0a5915f3d2c9
+ depends:
+ - eigen
+ - libboost-python-devel
+ - python
+ - scipy
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.19,<3
+ - libboost-python >=1.86.0,<1.87.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 3324387
+ timestamp: 1739356422954
+- conda: https://conda.anaconda.org/conda-forge/linux-64/eigenpy-3.10.3-np2py313h5f1bead_0.conda
+ sha256: c1d6a8810ea85dacbe9856e15556a52b17604a0d8099a08291f2f188ab8752d0
+ md5: b7b38a17b37cb4534ba55c1d955c2b33
+ depends:
+ - eigen
+ - libboost-python-devel
+ - python
+ - scipy
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.21,<3
+ - libboost-python >=1.86.0,<1.87.0a0
+ - python_abi 3.13.* *_cp313
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 3324464
+ timestamp: 1739356422269
+- conda: https://prefix.dev/conda-forge/linux-64/eigenpy-3.10.3-np20py312hf621b31_0.conda
+ sha256: 99568c41e72cc3344c57d36c6559f97d71926058ea0dc7d5c20846348cc64c10
+ md5: 0730cc329d8cd964528b0a5915f3d2c9
+ depends:
+ - eigen
+ - libboost-python-devel
+ - python
+ - scipy
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.19,<3
+ - libboost-python >=1.86.0,<1.87.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 3324387
+ timestamp: 1739356422954
+- conda: https://conda.anaconda.org/conda-forge/linux-64/elfutils-0.192-h7f4e02f_1.conda
+ sha256: 16097884784f9eb81625e0e2a566d1a6ec677fe39916b41926629fa723874f45
+ md5: 369ce48a589a2aac91906c9ed89dd6e8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libarchive >=3.7.7,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - liblzma >=5.6.3,<6.0a0
+ - libmicrohttpd >=1.0.1,<1.1.0a0
+ - libsqlite >=3.47.2,<4.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 1121608
+ timestamp: 1733937284793
+- conda: https://prefix.dev/conda-forge/linux-64/elfutils-0.193-h849f50c_0.conda
+ sha256: 21726a2d66cd76cac382311f63c26a56d3dad044be735666440f348a136f4588
+ md5: c4548d6b94dde4ab418b1bb4cb583ecf
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libsqlite >=3.50.3,<4.0a0
+ - libmicrohttpd >=1.0.2,<1.1.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libarchive >=3.8.1,<3.9.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 1276206
+ timestamp: 1752827825990
+- conda: https://conda.anaconda.org/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2
+ sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3
+ md5: e4be10fd1a907b223da5be93f06709d2
+ depends:
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1
+ license_family: GPL
+ purls:
+ - pkg:pypi/empy?source=hash-mapping
+ size: 40210
+ timestamp: 1586444722817
+- conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2
+ sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3
+ md5: e4be10fd1a907b223da5be93f06709d2
+ depends:
+ - python
+ license: LGPL-2.1
+ license_family: GPL
+ purls:
+ - pkg:pypi/empy?source=hash-mapping
+ size: 40210
+ timestamp: 1586444722817
+- conda: https://conda.anaconda.org/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2
+ sha256: 1e58ee2ed0f4699be202f23d49b9644b499836230da7dd5b2f63e6766acff89e
+ md5: a089d06164afd2d511347d3f87214e0b
+ depends:
+ - libgcc-ng >=10.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1440699
+ timestamp: 1648505042260
+- conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-hb03c661_2.conda
+ sha256: a5b51e491fec22bcc1765f5b2c8fff8a97428e9a5a7ee6730095fb9d091b0747
+ md5: 057083b06ccf1c2778344b6dabace38b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libegl-devel
+ - libgcc >=14
+ - libgl >=1.7.0,<2.0a0
+ - libgl-devel
+ - libglx >=1.7.0,<2.0a0
+ - libglx-devel
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 411735
+ timestamp: 1758743520805
+- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
+ sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
+ md5: 72e42d28960d875c7654614f8b50939a
+ depends:
+ - python >=3.9
+ - typing_extensions >=4.6.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT and PSF-2.0
+ purls:
+ - pkg:pypi/exceptiongroup?source=hash-mapping
+ size: 21284
+ timestamp: 1746947398083
+- conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
+ sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
+ md5: 8e662bd460bda79b1ea39194e3c4c9ab
+ depends:
+ - python >=3.10
+ - typing_extensions >=4.6.0
+ license: MIT and PSF-2.0
+ purls:
+ - pkg:pypi/exceptiongroup?source=compressed-mapping
+ size: 21333
+ timestamp: 1763918099466
+- conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.7.0-h5888daf_0.conda
+ sha256: dd5530ddddca93b17318838b97a2c9d7694fa4d57fc676cf0d06da649085e57a
+ md5: d6845ae4dea52a2f90178bf1829a21f8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat 2.7.0 h5888daf_0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 140050
+ timestamp: 1743431809745
+- conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.4-hecca717_0.conda
+ sha256: 0cc345e4dead417996ce9a1f088b28d858f03d113d43c1963d29194366dcce27
+ md5: a0535741a4934b3e386051065c58761a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat 2.7.4 hecca717_0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 145274
+ timestamp: 1771259434699
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.1.0-gpl_h4c12d27_707.conda
+ sha256: a7bf8a71910bb54ef972a4e4dbc34be88336412c606bec6852e24a0e6a164bf2
+ md5: aee131a2c291ca7d0d703900515aa772
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - liblzma >=5.6.3,<6.0a0
+ - libopenvino >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-auto-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-hetero-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-cpu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-gpu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-npu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-ir-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-onnx-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-paddle-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-pytorch-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopus >=1.3.1,<2.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libstdcxx >=13
+ - libva >=2.22.0,<3.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.5.0,<2.5.1.0a0
+ - openssl >=3.4.0,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ constrains:
+ - __cuda >=12.4
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 10341312
+ timestamp: 1734145930411
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda
+ sha256: e8e93a1afd93bed11ccf2a2224d2b92b2af8758c89576ed87ff4df7f3269604f
+ md5: 28cffcba871461840275632bc4653ce3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=11.0.1
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libopenvino >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopus >=1.5.2,<2.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libstdcxx >=13
+ - libva >=2.22.0,<3.0a0
+ - libvorbis >=1.3.7,<1.4.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.6.0,<2.6.1.0a0
+ - openssl >=3.5.0,<4.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - sdl2 >=2.32.54,<3.0a0
+ - svt-av1 >=3.0.2,<3.0.3.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ constrains:
+ - __cuda >=12.8
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 10377191
+ timestamp: 1748704974937
+- conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_ha0aeed6_910.conda
+ sha256: cb2453b75759813beb3ca1af8cc134b7b5ae3580a43745964f61d921ad3f591a
+ md5: 983afde30790eeb90054f0838fabaff2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=11.4.5
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.4,<0.17.5.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libopenvino >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-auto-batch-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-auto-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-hetero-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-cpu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-gpu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-npu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-ir-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-onnx-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-paddle-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-pytorch-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-tensorflow-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopus >=1.5.2,<2.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libstdcxx >=14
+ - libva >=2.22.0,<3.0a0
+ - libvorbis >=1.3.7,<1.4.0a0
+ - libvpl >=2.15.0,<2.16.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.6.0,<2.6.1.0a0
+ - openssl >=3.5.2,<4.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - sdl2 >=2.32.54,<3.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ constrains:
+ - __cuda >=12.8
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 10543003
+ timestamp: 1757215060681
+- pypi: https://files.pythonhosted.org/packages/e7/04/a94ebfb4eaaa08db56725a40de2887e95de4e8641b9e902c311bfa00aa39/filelock-3.24.2-py3-none-any.whl
+ name: filelock
+ version: 3.24.2
+ sha256: 667d7dc0b7d1e1064dd5f8f8e80bdac157a6482e8d2e02cd16fd3b6b33bd6556
+ requires_python: '>=3.10'
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-7.2.0-pyhd8ed1ab_0.conda
+ sha256: 89fbf8b423cc64b3382a95c593370037ac335c2e1a11b8ce5424043cda270a9e
+ md5: a5097429ce9d1e049efc336a5db0955e
+ depends:
+ - mccabe >=0.7.0,<0.8.0
+ - pycodestyle >=2.13.0,<2.14.0
+ - pyflakes >=3.3.0,<3.4.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8?source=hash-mapping
+ size: 111615
+ timestamp: 1743452288119
+- conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda
+ sha256: a32e511ea71a9667666935fd9f497f00bcc6ed0099ef04b9416ac24606854d58
+ md5: 04a55140685296b25b79ad942264c0ef
+ depends:
+ - mccabe >=0.7.0,<0.8.0
+ - pycodestyle >=2.14.0,<2.15.0
+ - pyflakes >=3.4.0,<3.5.0
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8?source=hash-mapping
+ size: 111916
+ timestamp: 1750968083921
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-builtins-2.5.0-pyhd8ed1ab_1.conda
+ sha256: dcece2c87be0d984068a368905699cf7fbee8bc29c75beb0b5703b8915d6bba7
+ md5: 3109ffb968000c2827d640fe82876f77
+ depends:
+ - flake8
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only
+ license_family: GPL2
+ purls:
+ - pkg:pypi/flake8-builtins?source=hash-mapping
+ size: 17585
+ timestamp: 1736204666554
+- conda: https://prefix.dev/conda-forge/noarch/flake8-builtins-3.1.0-pyhd8ed1ab_0.conda
+ sha256: d022684576c0c6f474bddbc263c82a3ba303c3bd09185d15af4eb7b60e896d7f
+ md5: 5cbaa86cc684a52a057831cbcb3bd5b9
+ depends:
+ - flake8
+ - python >=3.10
+ license: GPL-2.0-only
+ license_family: GPL2
+ purls:
+ - pkg:pypi/flake8-builtins?source=hash-mapping
+ size: 19501
+ timestamp: 1761594405382
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-comprehensions-3.16.0-pyhd8ed1ab_1.conda
+ sha256: 42c26f2274144419f8b3e100ae7f585103f2203a4046f50e8f47f086b474bb9f
+ md5: 80708377342b25a23173f1c21e29b53f
+ depends:
+ - flake8 >=3.0,!=3.2.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-comprehensions?source=hash-mapping
+ size: 13527
+ timestamp: 1735581039626
+- conda: https://prefix.dev/conda-forge/noarch/flake8-comprehensions-3.17.0-pyhd8ed1ab_0.conda
+ sha256: a0427b75e67d6f2f41f7645b850ac028876bee3a11d8fbaa18d88fd61b467a94
+ md5: 9f5bd5fb0aa24273e9cce97830629e20
+ depends:
+ - flake8 >=3.0,!=3.2.0
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-comprehensions?source=hash-mapping
+ size: 14049
+ timestamp: 1757526877129
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-docstrings-1.7.0-pyhd8ed1ab_0.conda
+ sha256: e0757805056f7ad3c7172ca4eaf79c9db4a7d23b858aa8fdcdfbd25f8ad7254d
+ md5: d66b253112adf72dc5edeabe41b88dce
+ depends:
+ - flake8 >=3
+ - pydocstyle >=2.1
+ - python >=3.7
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-docstrings?source=hash-mapping
+ size: 10395
+ timestamp: 1675285794906
+- conda: https://prefix.dev/conda-forge/noarch/flake8-docstrings-1.7.0-pyhd8ed1ab_0.conda
+ sha256: e0757805056f7ad3c7172ca4eaf79c9db4a7d23b858aa8fdcdfbd25f8ad7254d
+ md5: d66b253112adf72dc5edeabe41b88dce
+ depends:
+ - flake8 >=3
+ - pydocstyle >=2.1
+ - python >=3.7
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-docstrings?source=hash-mapping
+ size: 10395
+ timestamp: 1675285794906
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-import-order-0.19.0-pyhd8ed1ab_0.conda
+ sha256: c07417b41e6d45f8736fafaad7f639320a52762f1480583c8663004fc65abd32
+ md5: 761801b93e467572cfc6604a6f515554
+ depends:
+ - flake8
+ - pycodestyle
+ - python >=3.9
+ - setuptools
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls:
+ - pkg:pypi/flake8-import-order?source=hash-mapping
+ size: 21005
+ timestamp: 1749833040064
+- conda: https://prefix.dev/conda-forge/noarch/flake8-import-order-0.19.2-pyhd8ed1ab_0.conda
+ sha256: 046902c4b7b07877e68c5dd638f92ece9416fe1b10153dd7d617b91c4f18946c
+ md5: f4b095568df0c12ab60f8519cb203317
+ depends:
+ - flake8
+ - pycodestyle
+ - python >=3.9
+ - setuptools
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls:
+ - pkg:pypi/flake8-import-order?source=hash-mapping
+ size: 21041
+ timestamp: 1750969641622
+- conda: https://conda.anaconda.org/conda-forge/noarch/flake8-quotes-3.4.0-pyhd8ed1ab_1.conda
+ sha256: 72129d47a933843df04e98f9afb27b3c2345d89f6c4b6637ea9cd1846960ad67
+ md5: adde488e6dff56bffd2e5f428ae8cded
+ depends:
+ - flake8
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-quotes?source=hash-mapping
+ size: 14776
+ timestamp: 1735335323771
+- conda: https://prefix.dev/conda-forge/noarch/flake8-quotes-3.4.0-pyhd8ed1ab_1.conda
+ sha256: 72129d47a933843df04e98f9afb27b3c2345d89f6c4b6637ea9cd1846960ad67
+ md5: adde488e6dff56bffd2e5f428ae8cded
+ depends:
+ - flake8
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/flake8-quotes?source=hash-mapping
+ size: 14776
+ timestamp: 1735335323771
+- conda: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h783367e_4.conda
+ sha256: 7e6b9d30281562496c53067e01e6e84dcbb16f43273510454463351155a7c80e
+ md5: 6998a241450abd1cb9305f4608001870
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - hdf5 >=1.14.3,<1.14.4.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - lz4-c >=1.10.0,<1.11.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1564105
+ timestamp: 1733524739597
+- conda: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda
+ sha256: e988c8abade5ff1fb072010fc5db59e2607ad8c823248a8acad6fc4ded544a86
+ md5: ea6779ccd6859d8ab651c2078b07bcaf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - lz4-c >=1.10.0,<1.11.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1569631
+ timestamp: 1747942598014
+- conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda
+ sha256: e988c8abade5ff1fb072010fc5db59e2607ad8c823248a8acad6fc4ded544a86
+ md5: ea6779ccd6859d8ab651c2078b07bcaf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - lz4-c >=1.10.0,<1.11.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1569631
+ timestamp: 1747942598014
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.0.2-h07f6e7f_1.conda
+ sha256: f9eeb49752b250e035ed0ee957fd813f7d2212eccb814006bbf92b89711605b1
+ md5: fbbfeaa24a99c3da00c35334935b0d24
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 197559
+ timestamp: 1743030768885
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_1.conda
+ sha256: 2db2a6a1629bc2ac649b31fd990712446394ce35930025e960e1765a9249af5d
+ md5: 288a90e722fd7377448b00b2cddcb90d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 191161
+ timestamp: 1742833273257
+- conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda
+ sha256: e0f53b7801d0bcb5d61a1ddcb873479bfe8365e56fd3722a232fbcc372a9ac52
+ md5: 0c2f855a88fab6afa92a7aa41217dc8e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 192721
+ timestamp: 1751277120358
+- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
+ md5: 0c96522c6bdaed4b1566d11387caaf45
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 397370
+ timestamp: 1566932522327
+- conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
+ md5: 0c96522c6bdaed4b1566d11387caaf45
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 397370
+ timestamp: 1566932522327
+- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
+ md5: 34893075a5c9e55cdafac56607368fc6
+ channel: https://fast.prefix.dev/conda-forge
+ license: OFL-1.1
+ license_family: Other
+ purls: []
+ size: 96530
+ timestamp: 1620479909603
+- conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
+ md5: 34893075a5c9e55cdafac56607368fc6
+ license: OFL-1.1
+ license_family: Other
+ purls: []
+ size: 96530
+ timestamp: 1620479909603
+- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
+ md5: 4d59c254e01d9cde7957100457e2d5fb
+ channel: https://fast.prefix.dev/conda-forge
+ license: OFL-1.1
+ license_family: Other
+ purls: []
+ size: 700814
+ timestamp: 1620479612257
+- conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
+ md5: 4d59c254e01d9cde7957100457e2d5fb
+ license: OFL-1.1
+ license_family: Other
+ purls: []
+ size: 700814
+ timestamp: 1620479612257
+- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
+ md5: 49023d73832ef61042f6a237cb2687e7
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
+ license_family: Other
+ purls: []
+ size: 1620504
+ timestamp: 1727511233259
+- conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
+ md5: 49023d73832ef61042f6a237cb2687e7
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
+ license_family: Other
+ purls: []
+ size: 1620504
+ timestamp: 1727511233259
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113
+ md5: 8f5b0b297b59e1ac160ad4beec99dbee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 265599
+ timestamp: 1730283881107
+- conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.17.1-h27c8c51_0.conda
+ sha256: aa4a44dba97151221100a637c7f4bde619567afade9c0265f8e1c8eed8d7bd8c
+ md5: 867127763fbe935bab59815b6e0b7b5c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat >=2.7.4,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libuuid >=2.41.3,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ purls: []
+ size: 270705
+ timestamp: 1771382710863
+- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
+ md5: fee5683a3f04bd15cbd8318b096a27ab
+ depends:
+ - fonts-conda-forge
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3667
+ timestamp: 1566974674465
+- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
+ md5: fee5683a3f04bd15cbd8318b096a27ab
+ depends:
+ - fonts-conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3667
+ timestamp: 1566974674465
+- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
+ md5: f766549260d6815b0c52253f1fb1bb29
+ depends:
+ - font-ttf-dejavu-sans-mono
+ - font-ttf-inconsolata
+ - font-ttf-source-code-pro
+ - font-ttf-ubuntu
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 4102
+ timestamp: 1566932280397
+- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda
+ sha256: 54eea8469786bc2291cc40bca5f46438d3e062a399e8f53f013b6a9f50e98333
+ md5: a7970cd949a077b7cb9696379d338681
+ depends:
+ - font-ttf-ubuntu
+ - font-ttf-inconsolata
+ - font-ttf-dejavu-sans-mono
+ - font-ttf-source-code-pro
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 4059
+ timestamp: 1762351264405
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py311h2dc5d0c_0.conda
+ sha256: f57df9d0573fa04b53afdaa5253bc4f1902357cca9265951f9d6ebe46567a40e
+ md5: dd3ef31d2bf022668f30859d5e11c83e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli
+ - libgcc >=13
+ - munkres
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - unicodedata2 >=15.1.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/fonttools?source=hash-mapping
+ size: 2919952
+ timestamp: 1749848724761
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.58.4-py312h178313f_0.conda
+ sha256: aa29952ac29ab4c4dad091794513241c1f732c55c58ba109f02550bc83081dc9
+ md5: 223a4616e3db7336569eafefac04ebbf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli
+ - libgcc >=13
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/fonttools?source=hash-mapping
+ size: 2864513
+ timestamp: 1749848613494
+- conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py312h8a5da7c_0.conda
+ sha256: c73cd238e0f6b2183c5168b64aa35a7eb66bb145192a9b26bb9041a4152844a3
+ md5: 3bf8fb959dc598c67dac0430b4aff57a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli
+ - libgcc >=14
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/fonttools?source=hash-mapping
+ size: 2932702
+ timestamp: 1765632761555
+- conda: https://conda.anaconda.org/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda
+ sha256: 28d9fce64ee8b5e94350feb0829e054811678f9638039f78ddff8a8615c1b693
+ md5: 2a3316f47d7827afde5381ecd43b5e85
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 227132
+ timestamp: 1746246721660
+- conda: https://prefix.dev/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda
+ sha256: 28d9fce64ee8b5e94350feb0829e054811678f9638039f78ddff8a8615c1b693
+ md5: 2a3316f47d7827afde5381ecd43b5e85
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Zlib
+ purls: []
+ size: 227132
+ timestamp: 1746246721660
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.9.0-h36df796_0.conda
+ sha256: ca857e7b91eee0d33aa3f6cdebac36a8699ab3f37efbb717df409ae9b8decb34
+ md5: cc0cf942201f9d3b0e9654ea02e12486
+ depends:
+ - binutils
+ - c-compiler 1.9.0 h2b85faf_0
+ - gfortran
+ - gfortran_linux-64 13.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6184
+ timestamp: 1736437002625
+- conda: https://prefix.dev/conda-forge/linux-64/fortran-compiler-1.11.0-h9bea470_0.conda
+ sha256: 53e5562ede83b478ebe9f4fc3d3b4eff5b627883f48aa0bf412e8fd90b5d6113
+ md5: d5596f445a1273ddc5ea68864c01b69f
+ depends:
+ - binutils
+ - c-compiler 1.11.0 h4d9bdce_0
+ - gfortran
+ - gfortran_linux-64 14.*
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6656
+ timestamp: 1753098722318
+- conda: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
+ sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56
+ md5: 84ec3f5b46f3076be49f2cf3f1cfbf02
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxfixes
+ - xorg-libxi
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 144010
+ timestamp: 1719014356708
+- conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
+ sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56
+ md5: 84ec3f5b46f3076be49f2cf3f1cfbf02
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxfixes
+ - xorg-libxi
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 144010
+ timestamp: 1719014356708
+- conda: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda
+ sha256: 03ccff5d255eab7a1736de9eeb539fbb1333036fa5e37ea7c8ec428270067c99
+ md5: bbdf3d43d752b793ac81f27b28c49e2d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ purls: []
+ size: 467860
+ timestamp: 1729024045245
+- conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h165c975_23.conda
+ sha256: 66441643fb22912b304944945180429bb734f569a3b6228fe5b9a70bebf88a92
+ md5: 7335e72da49f11061b550bec41d6e6bf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - imath >=3.2.1,<3.2.2.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libgcc >=14
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libraw >=0.21.4,<0.22.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.5,<3.4.0a0
+ - openjpeg >=2.5.3,<3.0a0
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ purls: []
+ size: 470221
+ timestamp: 1757407791120
+- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda
+ sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f
+ md5: 9ccd736d31e0c6e41f54e704e5312811
+ depends:
+ - libfreetype 2.13.3 ha770c72_1
+ - libfreetype6 2.13.3 h48d6fc4_1
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 172450
+ timestamp: 1745369996765
+- conda: https://prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
+ sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
+ md5: 4afc585cd97ba8a23809406cd8a9eda8
+ depends:
+ - libfreetype 2.14.1 ha770c72_0
+ - libfreetype6 2.14.1 h73754d4_0
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 173114
+ timestamp: 1757945422243
+- conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
+ sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627
+ md5: ac7bc6a654f8f41b352b38f4051135f8
+ depends:
+ - libgcc-ng >=7.5.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1
+ purls: []
+ size: 114383
+ timestamp: 1604416621168
+- conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda
+ sha256: 858283ff33d4c033f4971bf440cebff217d5552a5222ba994c49be990dacd40d
+ md5: f9f81ea472684d75b9dd8d0b328cf655
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 61244
+ timestamp: 1757438574066
+- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.6.0-py311h62d540b_0.conda
+ sha256: fe83cad8aa17a6dd9c3e5625f2ed44343d057945a6b0fb6aabcb507ca1cf0d5d
+ md5: ad01dcb674e8792b626276999ab1825e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/frozenlist?source=hash-mapping
+ size: 113590
+ timestamp: 1746635675256
+- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.6.0-py312hb9e946c_0.conda
+ sha256: 685ef959d9f3ceeb2bd0dbda36b4bdcfb6e3ae7d1a7cc2c364de543cc28c597f
+ md5: 13290e5d9cb327b1b61c1bd8089ac920
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/frozenlist?source=hash-mapping
+ size: 113391
+ timestamp: 1746635510382
+- conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.7.0-py312h447239a_0.conda
+ sha256: f4e0e6cd241bc24afb2d6d08e5d2ba170fad2475e522bdf297b7271bba268be6
+ md5: 63e20cf7b7460019b423fc06abb96c60
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/frozenlist?source=hash-mapping
+ size: 55037
+ timestamp: 1752167383781
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_2.conda
+ sha256: 300f077029e7626d69cc250a69acd6018c1fced3f5bf76adf37854f3370d2c45
+ md5: d92e51bf4b6bdbfe45e5884fb0755afe
+ depends:
+ - gcc_impl_linux-64 13.3.0.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 55246
+ timestamp: 1740240578937
+- conda: https://prefix.dev/conda-forge/linux-64/gcc-14.3.0-h0dff253_18.conda
+ sha256: 9b34b57b06b485e33a40d430f71ac88c8f381673592507cf7161c50ff0832772
+ md5: 52d6457abc42e320787ada5f9033fa99
+ depends:
+ - conda-gcc-specs
+ - gcc_impl_linux-64 14.3.0 hbdf3cc3_18
+ license: BSD-3-Clause
+ purls: []
+ size: 29506
+ timestamp: 1771378321585
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-h1e990d8_2.conda
+ sha256: c3e9f243ea8292eecad78bb200d8f5b590e0f82bf7e7452a3a7c8df4eea6f774
+ md5: f46cf0acdcb6019397d37df1e407ab91
+ depends:
+ - binutils_impl_linux-64 >=2.40
+ - libgcc >=13.3.0
+ - libgcc-devel_linux-64 13.3.0 hc03c837_102
+ - libgomp >=13.3.0
+ - libsanitizer 13.3.0 he8ea267_2
+ - libstdcxx >=13.3.0
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 66770653
+ timestamp: 1740240400031
+- conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-14.3.0-hbdf3cc3_18.conda
+ sha256: 3b31a273b806c6851e16e9cf63ef87cae28d19be0df148433f3948e7da795592
+ md5: 30bb690150536f622873758b0e8d6712
+ depends:
+ - binutils_impl_linux-64 >=2.45
+ - libgcc >=14.3.0
+ - libgcc-devel_linux-64 14.3.0 hf649bbc_118
+ - libgomp >=14.3.0
+ - libsanitizer 14.3.0 h8f1669f_18
+ - libstdcxx >=14.3.0
+ - libstdcxx-devel_linux-64 14.3.0 h9f08a49_118
+ - sysroot_linux-64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 76302378
+ timestamp: 1771378056505
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-h6f18a23_11.conda
+ sha256: b2533388ec510ef0fc95774f15fdfb89582623049494506ea27622333f90bc09
+ md5: 639ef869618e311eee4888fcb40747e2
+ depends:
+ - binutils_linux-64
+ - gcc_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 32538
+ timestamp: 1748905867619
+- conda: https://prefix.dev/conda-forge/linux-64/gcc_linux-64-14.3.0-h298d278_21.conda
+ sha256: 27ad0cd10dccffca74e20fb38c9f8643ff8fce56eee260bf89fa257d5ab0c90a
+ md5: 1403ed5fe091bd7442e4e8a229d14030
+ depends:
+ - gcc_impl_linux-64 14.3.0.*
+ - binutils_linux-64
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 28946
+ timestamp: 1770908213807
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ sha256: 8b9606dc896bd9262d09ab2ef1cb55c4ee43f352473209b58b37a9289dd7b00c
+ md5: b77bc399b07a19c00fe12fdc95ee0297
+ depends:
+ - libgcc-ng >=7.5.0
+ - readline >=8.0,<9.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0
+ license_family: GPL
+ purls: []
+ size: 194790
+ timestamp: 1597622040785
+- conda: https://prefix.dev/conda-forge/linux-64/gdbm-1.18-h0a1914f_2.tar.bz2
+ sha256: 8b9606dc896bd9262d09ab2ef1cb55c4ee43f352473209b58b37a9289dd7b00c
+ md5: b77bc399b07a19c00fe12fdc95ee0297
+ depends:
+ - libgcc-ng >=7.5.0
+ - readline >=8.0,<9.0a0
+ license: GPL-3.0
+ license_family: GPL
+ purls: []
+ size: 194790
+ timestamp: 1597622040785
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda
+ sha256: d5283b95a8d49dcd88d29b360d8b38694aaa905d968d156d72ab71d32b38facb
+ md5: 201db6c2d9a3c5e46573ac4cb2e92f4f
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 528149
+ timestamp: 1715782983957
+- conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.44.4-h2b0a6b4_0.conda
+ sha256: f47222f58839bcc77c15f11a8814c1d8cb8080c5ca6ba83398a12b640fd3c85c
+ md5: c379d67c686fb83475c1a6ed41cc41ff
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 572093
+ timestamp: 1761082340749
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.24.1-h5888daf_0.conda
+ sha256: 88db27c666e1f8515174bf622a3e2ad983c94d69e3a23925089e476b9b06ad00
+ md5: c63e7590d4d6f4c85721040ed8b12888
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gettext-tools 0.24.1 h5888daf_0
+ - libasprintf 0.24.1 h8e693c7_0
+ - libasprintf-devel 0.24.1 h8e693c7_0
+ - libgcc >=13
+ - libgettextpo 0.24.1 h5888daf_0
+ - libgettextpo-devel 0.24.1 h5888daf_0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later AND GPL-3.0-or-later
+ purls: []
+ size: 511988
+ timestamp: 1746228987123
+- conda: https://prefix.dev/conda-forge/linux-64/gettext-0.25.1-h3f43e3d_1.conda
+ sha256: cbfa8c80771d1842c2687f6016c5e200b52d4ca8f2cc119f6377f64f899ba4ff
+ md5: c42356557d7f2e37676e121515417e3b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gettext-tools 0.25.1 h3f43e3d_1
+ - libasprintf 0.25.1 h3f43e3d_1
+ - libasprintf-devel 0.25.1 h3f43e3d_1
+ - libgcc >=14
+ - libgettextpo 0.25.1 h3f43e3d_1
+ - libgettextpo-devel 0.25.1 h3f43e3d_1
+ - libiconv >=1.18,<2.0a0
+ - libstdcxx >=14
+ license: LGPL-2.1-or-later AND GPL-3.0-or-later
+ purls: []
+ size: 541357
+ timestamp: 1753343006214
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.24.1-h5888daf_0.conda
+ sha256: 3ba33868630b903e3cda7a9176363cdf02710fb8f961efed5f8200c4d53fb4e3
+ md5: d54305672f0361c2f3886750e7165b5f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 3129801
+ timestamp: 1746228937647
+- conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.25.1-h3f43e3d_1.conda
+ sha256: c792729288bdd94f21f25f80802d4c66957b4e00a57f7cb20513f07aadfaff06
+ md5: a59c05d22bdcbb4e984bf0c021a2a02f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 3644103
+ timestamp: 1753342966311
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_2.conda
+ sha256: 9425741d57bbcf918fe98cb375508f31de0daa655f3cebe100a43cf7cb46ec39
+ md5: 19e6d3c9cde10a0a9a170a684082588e
+ depends:
+ - gcc 13.3.0.*
+ - gcc_impl_linux-64 13.3.0.*
+ - gfortran_impl_linux-64 13.3.0.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 54740
+ timestamp: 1740240701423
+- conda: https://prefix.dev/conda-forge/linux-64/gfortran-14.3.0-h76987e4_18.conda
+ sha256: c216b97f00973fc6c37af16d1d974635e81cfc93462123b1d0ffc93fe509ea01
+ md5: 958a6ecb4188cce9edbd9bbd2831a61d
+ depends:
+ - gcc 14.3.0 h0dff253_18
+ - gcc_impl_linux-64 14.3.0 hbdf3cc3_18
+ - gfortran_impl_linux-64 14.3.0 h1a219da_18
+ license: BSD-3-Clause
+ purls: []
+ size: 28880
+ timestamp: 1771378338951
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h84c1745_2.conda
+ sha256: 03a45f58b41909d4189fb81ec7f971b60aaccf95a3953049d93ae7d06eb19000
+ md5: 4e21ed177b76537067736f20f54fee0a
+ depends:
+ - gcc_impl_linux-64 >=13.3.0
+ - libgcc >=13.3.0
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13.3.0
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 15923784
+ timestamp: 1740240635243
+- conda: https://prefix.dev/conda-forge/linux-64/gfortran_impl_linux-64-14.3.0-h1a219da_18.conda
+ sha256: d8c8ba10471d4ec6e9d28b5a61982b0f49cb6ad55a6c84cb85b71f026329bd09
+ md5: 91531d5176126c652e8b8dfcfa263dcd
+ depends:
+ - gcc_impl_linux-64 >=14.3.0
+ - libgcc >=14.3.0
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14.3.0
+ - sysroot_linux-64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 18544424
+ timestamp: 1771378230570
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-h1917dac_11.conda
+ sha256: e51bcd274ca1ff67b4f32cd772317f43a7f43dad1f8c07d400b4918a9f88b006
+ md5: 85b2fa3c287710011199f5da1bac5b43
+ depends:
+ - binutils_linux-64
+ - gcc_linux-64 13.3.0 h6f18a23_11
+ - gfortran_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 30896
+ timestamp: 1748905884078
+- conda: https://prefix.dev/conda-forge/linux-64/gfortran_linux-64-14.3.0-hfa02b96_21.conda
+ sha256: 406e1b10478b29795377cc2ad561618363aaf37b208e5cb3de7858256f73276a
+ md5: 234863e90d09d229043af1075fcf8204
+ depends:
+ - gfortran_impl_linux-64 14.3.0.*
+ - gcc_linux-64 ==14.3.0 h298d278_21
+ - binutils_linux-64
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 27130
+ timestamp: 1770908213808
+- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
+ name: ghp-import
+ version: 2.1.0
+ sha256: 8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619
+ requires_dist:
+ - python-dateutil>=2.8.1
+ - twine ; extra == 'dev'
+ - markdown ; extra == 'dev'
+ - flake8 ; extra == 'dev'
+ - wheel ; extra == 'dev'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6
+ md5: 00e642ec191a19bf806a3915800e9524
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 74102
+ timestamp: 1718542981099
+- conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6
+ md5: 00e642ec191a19bf806a3915800e9524
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 74102
+ timestamp: 1718542981099
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae
+ md5: fb05eb5c47590b247658243d27fc32f1
+ depends:
+ - libgcc-ng >=9.3.0
+ - libglu
+ - libstdcxx-ng >=9.3.0
+ - xorg-libx11
+ - xorg-libxext
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 662569
+ timestamp: 1607113198887
+- conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae
+ md5: fb05eb5c47590b247658243d27fc32f1
+ depends:
+ - libgcc-ng >=9.3.0
+ - libglu
+ - libstdcxx-ng >=9.3.0
+ - xorg-libx11
+ - xorg-libxext
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 662569
+ timestamp: 1607113198887
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glib-2.84.1-h07242d1_0.conda
+ sha256: 9e670208f4ec71fd11f44a8fcfc73676aeebcc55bef3020815c4c749bbff7c83
+ md5: 2c2357f18073331d4aefe7252b9fad17
+ depends:
+ - glib-tools 2.84.1 h4833e2c_0
+ - libffi >=3.4.6,<3.5.0a0
+ - libglib 2.84.1 h2ff4ddf_0
+ - packaging
+ - python *
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 606778
+ timestamp: 1743773851741
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glib-2.84.2-h6287aef_0.conda
+ sha256: 4a9a9d2ce450737dadc1343b27ad123e01758ea70bb2bd087952d2807d768752
+ md5: 704648df3a01d4d24bc2c0466b718d63
+ depends:
+ - glib-tools 2.84.2 h4833e2c_0
+ - libffi >=3.4.6,<3.5.0a0
+ - libglib 2.84.2 h3618099_0
+ - packaging
+ - python *
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 609516
+ timestamp: 1747836756960
+- conda: https://prefix.dev/conda-forge/linux-64/glib-2.86.2-hbcf1ec1_0.conda
+ sha256: cbf7d14a84eacdfc1ac250a351d6f4ae77b8e75af5f92beef247918b26e9d47a
+ md5: bece9d9271a32ac5b6db28f96ff1dbcc
+ depends:
+ - glib-tools 2.86.2 hf516916_0
+ - libffi >=3.5.2,<3.6.0a0
+ - libglib 2.86.2 h32235b2_0
+ - packaging
+ - python *
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 612485
+ timestamp: 1763672446934
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.84.1-h4833e2c_0.conda
+ sha256: 0358e0471a7c41875490abb87faa44c38298899b625744c6618b32cfb6595b4c
+ md5: ddc06964296eee2b4070e65415b332fd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libglib 2.84.1 h2ff4ddf_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 116281
+ timestamp: 1743773813311
+- conda: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.84.2-h4833e2c_0.conda
+ sha256: eee7655422577df78386513322ea2aa691e7638947584faa715a20488ef6cc4e
+ md5: f2ec1facec64147850b7674633978050
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libglib 2.84.2 h3618099_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 116819
+ timestamp: 1747836718327
+- conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.86.2-hf516916_0.conda
+ sha256: 5517dae367d069de42c16d48f4b7e269acdedc11d43a5d4ec8d077d43ae00f45
+ md5: 14ad79cb7501b6a408485b04834a734c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libglib 2.86.2 h32235b2_0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 116278
+ timestamp: 1763672395899
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gmock-1.15.2-ha770c72_0.conda
+ sha256: cddaae3c433647872ddb8c93d195ffad927154c82f6abc17013c7764c02e5eb0
+ md5: 28f0e4e7ea2aa02d685b2cf71f1c7164
+ depends:
+ - gtest 1.15.2 h434a139_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6935
+ timestamp: 1722457788931
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda
+ sha256: 80ca13dc518962fcd86856586cb5fb612fe69914234eab322f9dee25f628090f
+ md5: 33e7a8280999b958df24a95f0cb86b1a
+ depends:
+ - gtest 1.17.0 h84d6215_1
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7578
+ timestamp: 1748320126956
+- conda: https://prefix.dev/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda
+ sha256: 80ca13dc518962fcd86856586cb5fb612fe69914234eab322f9dee25f628090f
+ md5: 33e7a8280999b958df24a95f0cb86b1a
+ depends:
+ - gtest 1.17.0 h84d6215_1
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 7578
+ timestamp: 1748320126956
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
+ md5: c94a5994ef49749880a8139cf9afcbe1
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ purls: []
+ size: 460055
+ timestamp: 1718980856608
+- conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
+ md5: c94a5994ef49749880a8139cf9afcbe1
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ purls: []
+ size: 460055
+ timestamp: 1718980856608
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.8.9-h86084c0_1.conda
+ sha256: 47c9b18d08d3c58032ebacde96fad1eeeb2af9fe1f0a78b730a51ce29a601418
+ md5: f71a6a96b0e7537b536fc144472d7ba6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libidn2 >=2,<3.0a0
+ - libstdcxx >=13
+ - libtasn1 >=4.20.0,<5.0a0
+ - nettle >=3.10.1,<3.11.0a0
+ - p11-kit >=0.24.1,<0.25.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 2048065
+ timestamp: 1748036227947
+- conda: https://prefix.dev/conda-forge/linux-64/gnutls-3.8.11-h18acefa_1.conda
+ sha256: c1e0ec25221c132fcee81098a23f956f3c26302739086d99e9119ab5546b05fe
+ md5: 334367662a82dfe67945438e373a1d3b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gmp >=6.3.0,<7.0a0
+ - libgcc >=14
+ - libidn2 >=2,<3.0a0
+ - libstdcxx >=14
+ - libtasn1 >=4.21.0,<5.0a0
+ - nettle >=3.10.1,<3.11.0a0
+ - p11-kit >=0.26.0,<0.27.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 2030992
+ timestamp: 1768686277371
+- conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add
+ md5: f87c7b7c2cb45f323ffbce941c78ab7c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 96855
+ timestamp: 1711634169756
+- conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda
+ sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c
+ md5: 2cd94587f3a401ae05e03a6caf09539d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 99596
+ timestamp: 1755102025473
+- conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.0.0-hba01fac_0.conda
+ sha256: 2eb794ae1de42b688f89811113ae3dcb63698272ee8f87029abce5f77c742c2a
+ md5: 953e31ea00d46beb7e64a79fc291ec44
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk2
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - librsvg >=2.58.2,<3.0a0
+ - libstdcxx-ng >=12
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: EPL-1.0
+ license_family: Other
+ purls: []
+ size: 2303111
+ timestamp: 1722673717117
+- conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda
+ sha256: e6866409ba03df392ac5ec6f0d6ff9751a685ed917bfbcd8a73f550c5fe83c2b
+ md5: df7835d2c73cd1889d377cfd6694ada4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - adwaita-icon-theme
+ - cairo >=1.18.2,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk3 >=3.24.43,<4.0a0
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.82.2,<3.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libstdcxx >=13
+ - libwebp-base >=1.5.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.56.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: EPL-1.0
+ license_family: Other
+ purls: []
+ size: 2413095
+ timestamp: 1738602910851
+- conda: https://prefix.dev/conda-forge/linux-64/graphviz-13.1.2-h87b6fe6_0.conda
+ sha256: efbd7d483f3d79b7882515ccf229eceb7f4ff636ea2019044e98243722f428be
+ md5: 0adddc9b820f596638d8b0ff9e3b4823
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - adwaita-icon-theme
+ - cairo >=1.18.4,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk3 >=3.24.43,<4.0a0
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libgcc >=14
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.84.3,<3.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libstdcxx >=14
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.56.4,<2.0a0
+ license: EPL-1.0
+ license_family: Other
+ purls: []
+ size: 2427887
+ timestamp: 1754732581595
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda
+ sha256: a497d2ba34fdfa4bead423cba5261b7e619df3ac491fb0b6231d91da45bd05fc
+ md5: d8d8894f8ced2c9be76dc9ad1ae531ce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - gstreamer 1.24.11 hc37bda9_0
+ - libdrm >=2.4.124,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.1,<3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libopus >=1.5.2,<2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libvorbis >=1.3.7,<1.4.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxau >=1.0.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ - xorg-libxshmfence >=1.3.3,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 2859572
+ timestamp: 1745093626455
+- conda: https://prefix.dev/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda
+ sha256: a497d2ba34fdfa4bead423cba5261b7e619df3ac491fb0b6231d91da45bd05fc
+ md5: d8d8894f8ced2c9be76dc9ad1ae531ce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - gstreamer 1.24.11 hc37bda9_0
+ - libdrm >=2.4.124,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.1,<3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libopus >=1.5.2,<2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - libvorbis >=1.3.7,<1.4.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxau >=1.0.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ - xorg-libxshmfence >=1.3.3,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 2859572
+ timestamp: 1745093626455
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda
+ sha256: 6e93b99d77ac7f7b3eb29c1911a0a463072a40748b96dbe37c18b2c0a90b34de
+ md5: 056d86cacf2b48c79c6a562a2486eb8c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - glib >=2.84.1,<3.0a0
+ - libgcc >=13
+ - libglib >=2.84.1,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 2021832
+ timestamp: 1745093493354
+- conda: https://prefix.dev/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda
+ sha256: 6e93b99d77ac7f7b3eb29c1911a0a463072a40748b96dbe37c18b2c0a90b34de
+ md5: 056d86cacf2b48c79c6a562a2486eb8c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - glib >=2.84.1,<3.0a0
+ - libgcc >=13
+ - libglib >=2.84.1,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 2021832
+ timestamp: 1745093493354
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gtest-1.15.2-h434a139_0.conda
+ sha256: cf2ccc3bbaca3dba1c12087aeaf5cc8f7c665d8678d9a9815d87b360867fc952
+ md5: 0874e26e61c13ae001dc647a650a97ca
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ constrains:
+ - gmock 1.15.2
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 408202
+ timestamp: 1722457782806
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda
+ sha256: 1f738280f245863c5ac78bcc04bb57266357acda45661c4aa25823030c6fb5db
+ md5: 55e29b72a71339bc651f9975492db71f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - gmock 1.17.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 416610
+ timestamp: 1748320117187
+- conda: https://prefix.dev/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda
+ sha256: 1f738280f245863c5ac78bcc04bb57266357acda45661c4aa25823030c6fb5db
+ md5: 55e29b72a71339bc651f9975492db71f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - gmock 1.17.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 416610
+ timestamp: 1748320117187
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h6470451_5.conda
+ sha256: 16644d036321b32635369c183502974c8b989fa516c313bd379f9aa4adcdf642
+ md5: 1483ba046164be27df7f6eddbcec3a12
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 6501561
+ timestamp: 1721285940408
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gtk3-3.24.43-h0c6a113_5.conda
+ sha256: d36263cbcbce34ec463ce92bd72efa198b55d987959eab6210cc256a0e79573b
+ md5: 67d00e9cfe751cfe581726c5eff7c184
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - at-spi2-atk >=2.38.0,<3.0a0
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.4,<2.0a0
+ - epoxy >=1.5.10,<1.6.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - fribidi >=1.0.10,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - glib-tools
+ - harfbuzz >=11.0.0,<12.0a0
+ - hicolor-icon-theme
+ - libcups >=2.3.3,<2.4.0a0
+ - libcups >=2.3.3,<3.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.84.0,<3.0a0
+ - liblzma >=5.6.4,<6.0a0
+ - libxkbcommon >=1.8.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.56.3,<2.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxi >=1.8.2,<2.0a0
+ - xorg-libxinerama >=1.1.5,<1.2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 5585389
+ timestamp: 1743405684985
+- conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h021d004_4.conda
+ sha256: fc8abccb4b0d454891847bdd8163332ff8607aa33ea9cf1e43b3828fc88c42ce
+ md5: a891e341072432fafb853b3762957cbf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - at-spi2-atk >=2.38.0,<3.0a0
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.4,<2.0a0
+ - epoxy >=1.5.10,<1.6.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - fribidi >=1.0.10,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - glib-tools
+ - harfbuzz >=10.4.0
+ - hicolor-icon-theme
+ - libcups >=2.3.3,<2.4.0a0
+ - libcups >=2.3.3,<3.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - liblzma >=5.6.4,<6.0a0
+ - libxkbcommon >=1.8.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.56.1,<2.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxi >=1.8.2,<2.0a0
+ - xorg-libxinerama >=1.1.5,<1.2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 5563940
+ timestamp: 1741694746664
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b
+ md5: 4d8df0b0db060d33c9a702ada998a8fe
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.76.3,<3.0a0
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 318312
+ timestamp: 1686545244763
+- conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b
+ md5: 4d8df0b0db060d33c9a702ada998a8fe
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.76.3,<3.0a0
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 318312
+ timestamp: 1686545244763
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_2.conda
+ sha256: fa9d0171c17e4c4203a4199fcc35571a25c1f16c0ad992080d4f0ced53bf5aa5
+ md5: 07e8df00b7cd3084ad3ef598ce32a71c
+ depends:
+ - gcc 13.3.0.*
+ - gxx_impl_linux-64 13.3.0.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 54718
+ timestamp: 1740240712365
+- conda: https://prefix.dev/conda-forge/linux-64/gxx-14.3.0-h76987e4_18.conda
+ sha256: 1b490c9be9669f9c559db7b2a1f7d8b973c58ca0c6f21a5d2ba3f0ab2da63362
+ md5: 19189121d644d4ef75fed05383bc75f5
+ depends:
+ - gcc 14.3.0 h0dff253_18
+ - gxx_impl_linux-64 14.3.0 h2185e75_18
+ license: BSD-3-Clause
+ purls: []
+ size: 28883
+ timestamp: 1771378355605
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hae580e1_2.conda
+ sha256: 7cb36526a5c3e75ae07452aee5c9b6219f62fad9f85cc6d1dab5b21d1c4cc996
+ md5: b55f02540605c322a47719029f8404cc
+ depends:
+ - gcc_impl_linux-64 13.3.0 h1e990d8_2
+ - libstdcxx-devel_linux-64 13.3.0 hc03c837_102
+ - sysroot_linux-64
+ - tzdata
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 13362974
+ timestamp: 1740240672045
+- conda: https://prefix.dev/conda-forge/linux-64/gxx_impl_linux-64-14.3.0-h2185e75_18.conda
+ sha256: 38ffca57cc9c264d461ac2ce9464a9d605e0f606d92d831de9075cb0d95fc68a
+ md5: 6514b3a10e84b6a849e1b15d3753eb22
+ depends:
+ - gcc_impl_linux-64 14.3.0 hbdf3cc3_18
+ - libstdcxx-devel_linux-64 14.3.0 h9f08a49_118
+ - sysroot_linux-64
+ - tzdata
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 14566100
+ timestamp: 1771378271421
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-hb14504d_11.conda
+ sha256: dda6a2765249c40168defea26aa67ff37d4d9fd214fb6e8d4fe0f434033bef87
+ md5: 2ca7575e4f2da39c5ee260e022ab1a6f
+ depends:
+ - binutils_linux-64
+ - gcc_linux-64 13.3.0 h6f18a23_11
+ - gxx_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 30844
+ timestamp: 1748905886442
+- conda: https://prefix.dev/conda-forge/linux-64/gxx_linux-64-14.3.0-he467f4b_21.conda
+ sha256: 1e07c197e0779fa9105e59cd55a835ded96bfde59eb169439736a89b27b48e5d
+ md5: 7b51f4ff82eeb1f386bfee20a7bed3ed
+ depends:
+ - gxx_impl_linux-64 14.3.0.*
+ - gcc_linux-64 ==14.3.0 h298d278_21
+ - binutils_linux-64
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 27503
+ timestamp: 1770908213813
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gz-cmake3-3.5.3-ha770c72_0.conda
+ sha256: 30a9453cde7827dbda2d45cfff9c3af38a2b8b333169e9326964d0e602dd62ae
+ md5: 04881e929686bb94c25cd7b2fd79062a
+ depends:
+ - libgz-cmake3 3.5.3 hac33072_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 9757
+ timestamp: 1715098727738
+- conda: https://prefix.dev/conda-forge/linux-64/gz-cmake4-4.2.0-h83e9d05_1.conda
+ sha256: 05d289bdcbe5ea05964b34e8e19ac1b7ad950fa66bb4add04d4015e257c74088
+ md5: 591dd28313202ca8a42a36a953c0752b
+ depends:
+ - libgz-cmake4 ==4.2.0 h54a6638_1
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 7428
+ timestamp: 1759138566319
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gz-math7-7.5.1-h38be061_2.conda
+ sha256: 058fcccbc16fadd047678c2d72061cbfdadef2da3b9b7e73a2f74b6362c9180e
+ md5: 51c56767c324f83f4399f5378b5083b9
+ depends:
+ - gz-math7-python >=7.5.1,<7.5.2.0a0
+ - libgz-math7 7.5.1 h5888daf_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 10901
+ timestamp: 1730306355382
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gz-math7-python-7.5.1-py312h76e88e7_2.conda
+ sha256: fb90bf1988f8f791dfa18ac6f97af103f549489ecff9307bfd71840d9e89c857
+ md5: 3dbf711cc45bf54b727fbdf9c1ee19aa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgz-math7 7.5.1 h5888daf_2
+ - libstdcxx >=13
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 886834
+ timestamp: 1730306319601
+- conda: https://prefix.dev/conda-forge/linux-64/gz-math8-8.2.0-h91c16d2_2.conda
+ sha256: f7b8b7992433e8841f871e0877497d01cde635818f993a70aa9ae6eaefb255c4
+ md5: 2d150314957d6006b81c7e3b8683eb2e
+ depends:
+ - libgz-math8 ==8.2.0 h54a6638_2
+ - gz-math8-python >=8.2.0,<8.2.1.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 8198
+ timestamp: 1759147796036
+- conda: https://prefix.dev/conda-forge/linux-64/gz-math8-python-8.2.0-py312hc0cb2ee_2.conda
+ sha256: caa552f19bfea9400322276375a8570b26dedbd61360a4ecf898212194cded7b
+ md5: 75c9b44db1148bf7d96b79ba89e94915
+ depends:
+ - libgz-math8 ==8.2.0 h54a6638_2
+ - python
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.12.* *_cp312
+ - pybind11-abi ==11
+ - libgz-math8 >=8.2.0,<9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1046498
+ timestamp: 1759147796036
+- conda: https://prefix.dev/conda-forge/linux-64/gz-tools-2.0.3-h3f54f1a_1.conda
+ sha256: 392eee31355835b7659dbc44813c79ab8e42bb4b1b7500a423d155a04e034bee
+ md5: 8c366a7251e68161425d4602e5e928e4
+ depends:
+ - libgz-tools ==2.0.3 h54a6638_1
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 7803
+ timestamp: 1759148392717
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gz-tools2-2.0.1-ha770c72_0.conda
+ sha256: 49255ed68283ccdc265b932f6ab997bf39331c4b592a116a4b68d97ffe8e2b3e
+ md5: fdf48ea9b98a8f5957ea57ebabe3c4ac
+ depends:
+ - libgz-tools2 2.0.1 h4149140_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 9813
+ timestamp: 1724587186586
+- conda: https://prefix.dev/conda-forge/linux-64/gz-tools2-2.0.3-h89235b8_1.conda
+ sha256: 1d578b70672a212ee4aeae44f2377070bb1aacfcf81862e7d306e6c9e2a02345
+ md5: 397d00a36abb84cca1f532fdec91c905
+ depends:
+ - gz-tools ==2.0.3 h3f54f1a_1
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 7839
+ timestamp: 1759148392717
+- conda: https://conda.anaconda.org/conda-forge/linux-64/gz-utils2-2.2.0-ha770c72_1.conda
+ sha256: bec24e4d42cf330b818100bc83489ed43490cf1eb8bc293ff4c853516bed8a5c
+ md5: 68f41df3202710fe18c3fc41c4b764bd
+ depends:
+ - libgz-utils2 2.2.0 h5888daf_1
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 11546
+ timestamp: 1735637876258
+- conda: https://prefix.dev/conda-forge/linux-64/gz-utils3-3.1.1-h22fa418_2.conda
+ sha256: 33089a4281393c6ab1199bac919a2ae9abd4ad7184ad07eca92d8a6109d0a430
+ md5: 0efde9d42e9ae05ee1f5430d4a8eb359
+ depends:
+ - libgz-utils3 ==3.1.1 h38f3fdc_2
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 8167
+ timestamp: 1759142868065
+- conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-11.2.1-h3beb420_0.conda
+ sha256: 5bd0f3674808862838d6e2efc0b3075e561c34309c5c2f4c976f7f1f57c91112
+ md5: 0e6e192d4b3d95708ad192d957cf3163
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - freetype
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libglib >=2.84.1,<3.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1730226
+ timestamp: 1747091044218
+- conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hda332d3_1.conda
+ sha256: 973afa37840b4e55e2540018902255cfb0d953aaed6353bb83a4d120f5256767
+ md5: 76b32dcf243444aea9c6b804bcfa40b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1603653
+ timestamp: 1721186240105
+- conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-12.2.0-h15599e2_0.conda
+ sha256: 6bd8b22beb7d40562b2889dc68232c589ff0d11a5ad3addd41a8570d11f039d9
+ md5: b8690f53007e9b5ee2c2178dd4ac778c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - graphite2 >=1.3.14,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libglib >=2.86.1,<3.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 2411408
+ timestamp: 1762372726141
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684
+ md5: bd77f8da987968ec3927990495dc22e4
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 756742
+ timestamp: 1695661547874
+- conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684
+ md5: bd77f8da987968ec3927990495dc22e4
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 756742
+ timestamp: 1695661547874
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda
+ sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753
+ md5: e7a7a6e6f70553a31e6e79c65768d089
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.11.1,<9.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3930078
+ timestamp: 1737516601132
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.6-nompi_h2d575fe_101.conda
+ sha256: b685b9d68e927f446bead1458c0fbf5ac02e6a471ed7606de427605ac647e8d3
+ md5: d1f61f912e1968a8ac9834b62fde008d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.13.0,<9.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3691447
+ timestamp: 1745298400011
+- conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
+ sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621
+ md5: c223ee1429ba538f3e48cfb4a0b97357
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.5,<2.0a0
+ - libcurl >=8.18.0,<9.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.5,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3708864
+ timestamp: 1770390337946
+- conda: https://conda.anaconda.org/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2
+ sha256: 336f29ceea9594f15cc8ec4c45fdc29e10796573c697ee0d57ebb7edd7e92043
+ md5: bbf6f174dcd3254e19a2f5d2295ce808
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 13841
+ timestamp: 1605162808667
+- conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2
+ sha256: 336f29ceea9594f15cc8ec4c45fdc29e10796573c697ee0d57ebb7edd7e92043
+ md5: bbf6f174dcd3254e19a2f5d2295ce808
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 13841
+ timestamp: 1605162808667
+- conda: https://conda.anaconda.org/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ sha256: 324e973d25c998962ad658143e6c44e6e13e3dd20ab7b1d745c2145498dbff4a
+ md5: f486a5d1042a80587295c72e73f77515
+ depends:
+ - __unix
+ - coal 3.0.1.*
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 19452
+ timestamp: 1741685225748
+- conda: https://prefix.dev/conda-forge/noarch/hpp-fcl-3.0.1-pyhd3e5650_1.conda
+ sha256: 324e973d25c998962ad658143e6c44e6e13e3dd20ab7b1d745c2145498dbff4a
+ md5: f486a5d1042a80587295c72e73f77515
+ depends:
+ - __unix
+ - coal 3.0.1.*
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 19452
+ timestamp: 1741685225748
+- conda: https://conda.anaconda.org/conda-forge/noarch/humanfriendly-10.0-pyh707e725_8.conda
+ sha256: fa2071da7fab758c669e78227e6094f6b3608228740808a6de5d6bce83d9e52d
+ md5: 7fe569c10905402ed47024fc481bb371
+ depends:
+ - __unix
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/humanfriendly?source=hash-mapping
+ size: 73563
+ timestamp: 1733928021866
+- conda: https://prefix.dev/conda-forge/noarch/humanfriendly-10.0-pyh707e725_8.conda
+ sha256: fa2071da7fab758c669e78227e6094f6b3608228740808a6de5d6bce83d9e52d
+ md5: 7fe569c10905402ed47024fc481bb371
+ depends:
+ - __unix
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/humanfriendly?source=hash-mapping
+ size: 73563
+ timestamp: 1733928021866
+- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
+ md5: 8b189310083baabfb622af68fd9d3ae3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 12129203
+ timestamp: 1720853576813
+- conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
+ md5: 8b189310083baabfb622af68fd9d3ae3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 12129203
+ timestamp: 1720853576813
+- pypi: https://files.pythonhosted.org/packages/b8/58/40fbbcefeda82364720eba5cf2270f98496bdfa19ea75b4cccae79c698e6/identify-2.6.16-py2.py3-none-any.whl
+ name: identify
+ version: 2.6.16
+ sha256: 391ee4d77741d994189522896270b787aed8670389bfd60f326d677d64a6dfb0
+ requires_dist:
+ - ukkonen ; extra == 'license'
+ requires_python: '>=3.10'
+- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
+ name: idna
+ version: '3.11'
+ sha256: 771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea
+ requires_dist:
+ - ruff>=0.6.2 ; extra == 'all'
+ - mypy>=1.11.2 ; extra == 'all'
+ - pytest>=8.3.2 ; extra == 'all'
+ - flake8>=7.1.1 ; extra == 'all'
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
+ sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87
+ md5: 39a4f67be3286c86d696df570b1201b7
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/idna?source=hash-mapping
+ size: 49765
+ timestamp: 1733211921194
+- conda: https://prefix.dev/conda-forge/noarch/idna-3.11-pyhd8ed1ab_0.conda
+ sha256: ae89d0299ada2a3162c2614a9d26557a92aa6a77120ce142f8e0109bbf0342b0
+ md5: 53abe63df7e10a6ba605dc5f9f961d36
+ depends:
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/idna?source=hash-mapping
+ size: 50721
+ timestamp: 1760286526795
+- conda: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda
+ sha256: 4d8d07a4d5079d198168b44556fb86d094e6a716e8979b25a9f6c9c610e9fe56
+ md5: 37f5e1ab0db3691929f37dee78335d1b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 159630
+ timestamp: 1725971591485
+- conda: https://prefix.dev/conda-forge/linux-64/imath-3.2.1-hde8ca8f_0.conda
+ sha256: f4b11c1ba8abb6bc98f1b00fea97fadb3bb07c1c289bd4c810244dfdb019cdc4
+ md5: de2d48f334e255d98c445d7567bccde0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 161004
+ timestamp: 1755292803595
+- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
+ md5: 63ccfdc3a3ce25b027b8767eb722fca8
+ depends:
+ - python >=3.9
+ - zipp >=3.20
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/importlib-metadata?source=hash-mapping
+ size: 34641
+ timestamp: 1747934053147
+- conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
+ sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
+ md5: 63ccfdc3a3ce25b027b8767eb722fca8
+ depends:
+ - python >=3.9
+ - zipp >=3.20
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/importlib-metadata?source=hash-mapping
+ size: 34641
+ timestamp: 1747934053147
+- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80
+ md5: c85c76dc67d75619a92f51dfbce06992
+ depends:
+ - python >=3.9
+ - zipp >=3.1.0
+ constrains:
+ - importlib-resources >=6.5.2,<6.5.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/importlib-resources?source=hash-mapping
+ size: 33781
+ timestamp: 1736252433366
+- conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80
+ md5: c85c76dc67d75619a92f51dfbce06992
+ depends:
+ - python >=3.9
+ - zipp >=3.1.0
+ constrains:
+ - importlib-resources >=6.5.2,<6.5.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/importlib-resources?source=hash-mapping
+ size: 33781
+ timestamp: 1736252433366
+- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
+ sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca
+ md5: 6837f3eff7dcea42ecd714ce1ac2b108
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/iniconfig?source=hash-mapping
+ size: 11474
+ timestamp: 1733223232820
+- conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
+ sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
+ md5: 9614359868482abba1bd15ce465e3c42
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/iniconfig?source=compressed-mapping
+ size: 13387
+ timestamp: 1760831448842
+- conda: https://prefix.dev/conda-forge/linux-64/intel-gmmlib-22.9.0-hb700be7_0.conda
+ sha256: edad668db79c6c4899d46e1cd4a331f5d008f9ed8f7d2e39e1dfe1a2d81acec0
+ md5: 26311c5112b5c713f472bdfbb5ec5aa3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1009795
+ timestamp: 1765886047465
+- conda: https://prefix.dev/conda-forge/linux-64/intel-media-driver-25.3.4-hecca717_0.conda
+ sha256: 286679d4c175e8db2d047be766d1629f1ea5828bff9fe7e6aac2e6f0fad2b427
+ md5: 7ae2034a0e2e24eb07468f1a50cdf0bb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - intel-gmmlib >=22.8.1,<23.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libva >=2.22.0,<3.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 8424610
+ timestamp: 1757591682198
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ipopt-3.14.17-h7fd866c_2.conda
+ sha256: d124757f419e90f6f4fe29a0ee669e0a7f54904c780561e56ddf5d0ecde57076
+ md5: f24915488231e60a1312915ae846f5fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ampl-asl >=1.0.0,<1.0.1.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libspral >=2025.3.6,<2025.3.7.0a0
+ - libstdcxx >=13
+ - mumps-seq >=5.7.3,<5.7.4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: EPL-1.0
+ purls: []
+ size: 1007553
+ timestamp: 1745419704203
+- conda: https://prefix.dev/conda-forge/linux-64/ipopt-3.14.19-h0804adb_0.conda
+ sha256: f561b9982bcf4c6fceaf467a8f2f5b9e02c7d34f2d6f544958f4f14e1caeb0fc
+ md5: 0a2ef4d1be0625a06d74b08829d4ef1f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ampl-asl >=1.0.0,<1.0.1.0a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - liblapack >=3.9.0,<4.0a0
+ - libspral >=2025.5.20,<2025.5.21.0a0
+ - libstdcxx >=14
+ - mumps-seq >=5.7.3,<5.7.4.0a0
+ license: EPL-1.0
+ purls: []
+ size: 1023755
+ timestamp: 1753899099198
+- conda: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda
+ sha256: 59a4de9d5daee552b901b0edef28a495016fb4a9d35d3b91d69fc9328a6159ee
+ md5: ec8824a45bd7c50a46788fa16216d6c2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freeglut >=3.2.2,<4.0a0
+ - libgcc >=13
+ - libglu >=9.0.3,<10.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: JasPer-2.0
+ purls: []
+ size: 688287
+ timestamp: 1743026000524
+- conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.8-he3c4edf_0.conda
+ sha256: 0e919ec86d980901d8cbb665e91f5e9bddb5ff662178f25aed6d63f999fd9afc
+ md5: a04073db11c2c86c555fb088acc8f8c1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freeglut >=3.2.2,<4.0a0
+ - libgcc >=14
+ - libglu >=9.0.3,<10.0a0
+ - libglu >=9.0.3,<9.1.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ license: JasPer-2.0
+ purls: []
+ size: 681643
+ timestamp: 1754514437930
+- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
+ name: jinja2
+ version: 3.1.6
+ sha256: 85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67
+ requires_dist:
+ - markupsafe>=2.0
+ - babel>=2.7 ; extra == 'i18n'
+ requires_python: '>=3.7'
+- conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
+ sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af
+ md5: 446bd6c8cb26050d528881df495ce646
+ depends:
+ - markupsafe >=2.0
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/jinja2?source=hash-mapping
+ size: 112714
+ timestamp: 1741263433881
+- conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda
+ sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b
+ md5: 04558c96691bed63104678757beb4f8d
+ depends:
+ - markupsafe >=2.0
+ - python >=3.10
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/jinja2?source=compressed-mapping
+ size: 120685
+ timestamp: 1764517220861
+- conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ sha256: ed4b1878be103deb2e4c6d0eea3c9bdddfd7fc3178383927dce7578fb1063520
+ md5: 7bdc5e2cc11cb0a0f795bdad9732b0f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-Public-Domain OR MIT
+ purls: []
+ size: 169093
+ timestamp: 1733780223643
+- conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda
+ sha256: ed4b1878be103deb2e4c6d0eea3c9bdddfd7fc3178383927dce7578fb1063520
+ md5: 7bdc5e2cc11cb0a0f795bdad9732b0f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LicenseRef-Public-Domain OR MIT
+ purls: []
+ size: 169093
+ timestamp: 1733780223643
+- conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0
+ md5: 5aeabe88534ea4169d4c49998f293d6c
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 239104
+ timestamp: 1703333860145
+- conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0
+ md5: 5aeabe88534ea4169d4c49998f293d6c
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 239104
+ timestamp: 1703333860145
+- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
+ sha256: a922841ad80bd7b222502e65c07ecb67e4176c4fa5b03678a005f39fcc98be4b
+ md5: ad8527bf134a90e1c9ed35fa0b64318c
+ constrains:
+ - sysroot_linux-64 ==2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ purls: []
+ size: 943486
+ timestamp: 1729794504440
+- conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
+ sha256: 41557eeadf641de6aeae49486cef30d02a6912d8da98585d687894afd65b356a
+ md5: 86d9cba083cd041bfbf242a01a7a1999
+ constrains:
+ - sysroot_linux-64 ==2.28
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 1278712
+ timestamp: 1765578681495
+- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
+ md5: 30186d27e2c9fa62b45fb1476b7200e3
+ depends:
+ - libgcc-ng >=10.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 117831
+ timestamp: 1646151697040
+- conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
+ sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
+ md5: b38117a3c920364aff79f870c984b4a3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 134088
+ timestamp: 1754905959823
+- conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py311hd18a35c_0.conda
+ sha256: 4af11cbc063096a284fe1689b33424e7e49732a27fd396d74c7dee03d1e788ee
+ md5: be34c90cce87090d24da64a7c239ca96
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/kiwisolver?source=hash-mapping
+ size: 72393
+ timestamp: 1725459421768
+- conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda
+ sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246
+ md5: 6713467dc95509683bfa3aca08524e8a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/kiwisolver?source=hash-mapping
+ size: 71649
+ timestamp: 1736908364705
+- conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_2.conda
+ sha256: 170d76b7ac7197012bb048e1021482a7b2455f3592a5e8d97c96f285ebad064b
+ md5: 3a3004fddd39e3bb1a631b08d7045156
+ depends:
+ - python
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/kiwisolver?source=hash-mapping
+ size: 77682
+ timestamp: 1762488738724
+- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1370023
+ timestamp: 1719463201255
+- conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1370023
+ timestamp: 1719463201255
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
+ md5: a8832b479f93521a9e7b5b743803be51
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-only
+ license_family: LGPL
+ purls: []
+ size: 508258
+ timestamp: 1664996250081
+- conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
+ md5: a8832b479f93521a9e7b5b743803be51
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.0-only
+ license_family: LGPL
+ purls: []
+ size: 508258
+ timestamp: 1664996250081
+- conda: https://conda.anaconda.org/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda
+ sha256: 7f1ad9630a87005a90099ad3ff883ac7a3fe5e85b9eb232d1f8ad0a670059cca
+ md5: 222dd97cb2d5da1638de5077da60712f
+ depends:
+ - python >=3.6
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/lark-parser?source=hash-mapping
+ size: 86134
+ timestamp: 1725742423890
+- conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda
+ sha256: 7f1ad9630a87005a90099ad3ff883ac7a3fe5e85b9eb232d1f8ad0a670059cca
+ md5: 222dd97cb2d5da1638de5077da60712f
+ depends:
+ - python >=3.6
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/lark-parser?source=hash-mapping
+ size: 86134
+ timestamp: 1725742423890
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
+ sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8
+ md5: 000e85703f0fd9594c81710dd5066471
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 248046
+ timestamp: 1739160907615
+- conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
+ sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a
+ md5: 6f2e2c8f58160147c4d1c6f4c14cbac4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 249959
+ timestamp: 1768184673131
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_5.conda
+ sha256: de097284f497b391fe9d000c75b684583c30aad172d9508ed05df23ce39d75cb
+ md5: acd9213a63cb62521290e581ef82de80
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ constrains:
+ - binutils_impl_linux-64 2.43
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ purls: []
+ size: 670525
+ timestamp: 1749852860076
+- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
+ sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
+ md5: 12bd9a3f089ee6c9266a37dab82afabd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - binutils_impl_linux-64 2.45.1
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 725507
+ timestamp: 1770267139900
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
+ md5: 9344155d33912347b37f0ae6c410a835
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 264243
+ timestamp: 1745264221534
+- conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
+ sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
+ md5: 9344155d33912347b37f0ae6c410a835
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 264243
+ timestamp: 1745264221534
+- conda: https://conda.anaconda.org/conda-forge/linux-64/level-zero-1.22.4-h84d6215_0.conda
+ sha256: acf5a5713c0a3016e1bc922eac944daf6e04f62c813d2958c92d6be8013c0419
+ md5: 830ea57dc725f885cb9163098c1a7b5a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 570334
+ timestamp: 1749074234883
+- conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.28.0-hb700be7_0.conda
+ sha256: 863e1caf9d0086f93b66c43bf646481bb820fffdf037425c511cb0a54d18d1fc
+ md5: a4724e93a90434575b889adb4dc57b49
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 672752
+ timestamp: 1770189828697
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - libabseil-static =20240722.0=cxx17*
+ - abseil-cpp =20240722.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1311599
+ timestamp: 1736008414161
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda
+ sha256: 65d5ca837c3ee67b9d769125c21dc857194d7f6181bb0e7bd98ae58597b457d0
+ md5: 00290e549c5c8a32cc271020acc9ec6b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - abseil-cpp =20250127.1
+ - libabseil-static =20250127.1=cxx17*
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1325007
+ timestamp: 1742369558286
+- conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250512.1-cxx17_hba17884_0.conda
+ sha256: dcd1429a1782864c452057a6c5bc1860f2b637dc20a2b7e6eacd57395bbceff8
+ md5: 83b160d4da3e1e847bf044997621ed63
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - libabseil-static =20250512.1=cxx17*
+ - abseil-cpp =20250512.1
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1310612
+ timestamp: 1750194198254
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda
+ sha256: 1b704cf161c6f84658a7ac534555ef365ec982f23576b1c4ae4cac4baeb61685
+ md5: ef8039969013acacf5b741092aef2ee7
+ depends:
+ - attr >=2.5.1,<2.6.0a0
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 110600
+ timestamp: 1706132570609
+- conda: https://prefix.dev/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda
+ sha256: 1b704cf161c6f84658a7ac534555ef365ec982f23576b1c4ae4cac4baeb61685
+ md5: ef8039969013acacf5b741092aef2ee7
+ depends:
+ - attr >=2.5.1,<2.6.0a0
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 110600
+ timestamp: 1706132570609
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
+ sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017
+ md5: 5e97e271911b8b2001a8b71860c32faa
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 35446
+ timestamp: 1711021212685
+- conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda
+ sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688
+ md5: 86f7414544ae606282352fa1e116b41f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 36544
+ timestamp: 1769221884824
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-h75ea233_4.conda
+ sha256: d49b2a3617b689763d1377a5d1fbfc3c914ee0afa26b3c1858e1c4329329c6df
+ md5: b80309616f188ac77c4740acba40f796
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2 >=2.13.7,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.5.0,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 866358
+ timestamp: 1745335292389
+- conda: https://prefix.dev/conda-forge/linux-64/libarchive-3.8.1-gpl_h98cc613_100.conda
+ sha256: 6f35e429909b0fa6a938f8ff79e1d7000e8f15fbb37f67be6f789348fea4c602
+ md5: 9de6247361e1ee216b09cfb8b856e2ee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.5.0,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 883383
+ timestamp: 1749385818314
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.24.1-h8e693c7_0.conda
+ sha256: e30733a729eb6efd9cb316db0202897c882d46f6c20a0e647b4de8ec921b7218
+ md5: 57566a81dd1e5aa3d98ac7582e8bfe03
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 53115
+ timestamp: 1746228856865
+- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.25.1-h3f43e3d_1.conda
+ sha256: cb728a2a95557bb6a5184be2b8be83a6f2083000d0c7eff4ad5bbe5792133541
+ md5: 3b0d184bc9404516d418d4509e418bdc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 53582
+ timestamp: 1753342901341
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.24.1-h8e693c7_0.conda
+ sha256: ccbfc465456133042eea3e8d69bae009893f57a47a786f772c0af382bda7ad99
+ md5: 8f66ed2e34507b7ae44afa31c3e4ec79
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libasprintf 0.24.1 h8e693c7_0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 34680
+ timestamp: 1746228884730
+- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.25.1-h3f43e3d_1.conda
+ sha256: 2fc95060efc3d76547b7872875af0b7212d4b1407165be11c5f830aeeb57fc3a
+ md5: fd9cf4a11d07f0ef3e44fc061611b1ed
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libasprintf 0.25.1 h3f43e3d_1
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 34734
+ timestamp: 1753342921605
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h1dc1e6a_0.conda
+ sha256: 52afd5e79681185ea33da0e7548aa3721be7e9a153a90f004c5adc33d61f7a14
+ md5: 2a66267ba586dadd110cc991063cfff7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: ISC
+ license_family: OTHER
+ purls: []
+ size: 133110
+ timestamp: 1719985879751
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h52826cd_2.conda
+ sha256: 8a94e634de73be1e7548deaf6e3b992e0d30c628a24f23333af06ebb3a3e74cb
+ md5: 01de25a48490709850221135890e09eb
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ - libiconv >=1.18,<2.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - freetype >=2.13.3,<3.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=11.0.0,<12.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: ISC
+ purls: []
+ size: 152563
+ timestamp: 1743206970222
+- conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.4-h96ad9f0_0.conda
+ sha256: 035eb8b54e03e72e42ef707420f9979c7427776ea99e0f1e3c969f92eb573f19
+ md5: d3be7b2870bf7aff45b12ea53165babd
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - fribidi >=1.0.10,<2.0a0
+ - libiconv >=1.18,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=11.0.1
+ license: ISC
+ purls: []
+ size: 152179
+ timestamp: 1749328931930
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda
+ sha256: 170b51a3751c2f842ff9e11d22423494ef7254b448ef2b24751256ef18aa1302
+ md5: f17f2d0e5c9ad6b958547fd67b155771
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - libgcc >=13
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.0.2,<3.0.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 140052
+ timestamp: 1746836263991
+- conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h6395336_2.conda
+ sha256: e3a44c0eda23aa15c9a8dfa8c82ecf5c8b073e68a16c29edd0e409e687056d30
+ md5: c09c4ac973f7992ba0c6bb1aafd77bd4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aom >=3.9.1,<3.10.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - libgcc >=14
+ - rav1e >=0.7.1,<0.8.0a0
+ - svt-av1 >=3.1.2,<3.1.3.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 139399
+ timestamp: 1756124751131
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda
+ build_number: 31
+ sha256: 9839fc4ac0cbb0aa3b9eea520adfb57311838959222654804e58f6f2d1771db5
+ md5: 728dbebd0f7a20337218beacffd37916
+ depends:
+ - libopenblas >=0.3.29,<0.3.30.0a0
+ - libopenblas >=0.3.29,<1.0a0
+ constrains:
+ - liblapacke =3.9.0=31*_openblas
+ - liblapack =3.9.0=31*_openblas
+ - blas =2.131=openblas
+ - mkl <2025
+ - libcblas =3.9.0=31*_openblas
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 16859
+ timestamp: 1740087969120
+- conda: https://prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda
+ build_number: 5
+ sha256: 18c72545080b86739352482ba14ba2c4815e19e26a7417ca21a95b76ec8da24c
+ md5: c160954f7418d7b6e87eaf05a8913fa9
+ depends:
+ - libopenblas >=0.3.30,<0.3.31.0a0
+ - libopenblas >=0.3.30,<1.0a0
+ constrains:
+ - mkl <2026
+ - liblapack 3.11.0 5*_openblas
+ - libcblas 3.11.0 5*_openblas
+ - blas 2.305 openblas
+ - liblapacke 3.11.0 5*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18213
+ timestamp: 1765818813880
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ sha256: 4f64c244b1bda8f23deddf3c11f2b3402755a0433da716244a845a31403f329b
+ md5: 4a1612c7202bf04f5ea7a18110739a14
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _x86_64-microarch-level >=1
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 917774
+ timestamp: 1740067825220
+- conda: https://prefix.dev/conda-forge/linux-64/libblasfeo-0.1.4.2-h544d10a_100.conda
+ sha256: 4f64c244b1bda8f23deddf3c11f2b3402755a0433da716244a845a31403f329b
+ md5: 4a1612c7202bf04f5ea7a18110739a14
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _x86_64-microarch-level >=1
+ - libgcc >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 917774
+ timestamp: 1740067825220
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda
+ sha256: bad622863b3e4c8f0d107d8efd5b808e52d79cb502a20d700d05357b59a51e8f
+ md5: eead4e74198698d1c74f06572af753bc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - liblzma >=5.6.3,<6.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 2946990
+ timestamp: 1733501899743
+- conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-hed09d94_4.conda
+ sha256: 2e9778d8c3bbc6e7698fd87a1499a68ca1f02be37f6aaefa7541eb2728ffbff3
+ md5: b708abf3b6a0f3cf2f833d2edf18aff0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=14
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ purls: []
+ size: 2959099
+ timestamp: 1756549412040
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda
+ sha256: 1bbc13f4bed720af80e67e5df1e609f4efd801ae27d85107c36416de20ebb84c
+ md5: ffe09ce10ce1e03e1e762ab5bc006a35
+ depends:
+ - libboost 1.86.0 h6c02f8c_3
+ - libboost-headers 1.86.0 ha770c72_3
+ constrains:
+ - boost-cpp <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 37554
+ timestamp: 1733502001252
+- conda: https://prefix.dev/conda-forge/linux-64/libboost-devel-1.86.0-hfcd1e18_4.conda
+ sha256: 2301427eb210dd3b09ae335856385b040db82ea4ef6afbc92a1aa0d4947bfa9f
+ md5: 89014e9211890d097ea823f9a22451b3
+ depends:
+ - libboost 1.86.0 hed09d94_4
+ - libboost-headers 1.86.0 ha770c72_4
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ purls: []
+ size: 38690
+ timestamp: 1756549508060
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda
+ sha256: 322be3cc409ee8b7f46a6e237c91cdcf810bc528af5865f6b7c46cc56ad5f070
+ md5: be60ca34cfa7a867c2911506cad8f7c3
+ constrains:
+ - boost-cpp <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 13991670
+ timestamp: 1733501914699
+- conda: https://prefix.dev/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_4.conda
+ sha256: e9e3178ae39650b6f3b1c79d5380e205668628c30ac42c930b186bcd61c59aaf
+ md5: 1cc7035631f5e331e09e1c56b816f242
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ purls: []
+ size: 14055378
+ timestamp: 1756549426826
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py311h5b7b71f_3.conda
+ sha256: 1ae2533b2b3b38fac2e06f742c0cd2dbadcd899c0b21d49fa6ca4f2f1c5d6d92
+ md5: 1f2e5e17b5d0c42dba4c8740b64f5ac3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 121008
+ timestamp: 1733502281031
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py312hc39e661_3.conda
+ sha256: 55e95db9dff3de283f135003954767b651e747377cd159752171e589bd4c697b
+ md5: 99acbdbbd31f223f9ce0ef4fca944d1c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 123391
+ timestamp: 1733502113645
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-1.86.0-py313hf0ab243_3.conda
+ sha256: c7caeb0a6d6ed661581a9be63fe1d079b9d58463a8964a7219d09f28d49a4433
+ md5: 931ba237f929ca9b370c7b80ced82491
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.21,<3
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 122629
+ timestamp: 1733502169126
+- conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py312hf890105_4.conda
+ sha256: 4d579d579ea0644612e55fbbabc0bc5f61e38d3f435251e63064140964c2da15
+ md5: ad2ca5f64b13b92c0dc928767a6b8288
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - py-boost <0.0a0
+ - boost <0.0a0
+ license: BSL-1.0
+ purls: []
+ size: 124701
+ timestamp: 1756549734965
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py311hbd00459_3.conda
+ sha256: 509654d990eb3088cf8db5b1454cfdaaad0d3677d938056ff741acea814b172a
+ md5: 1e129554c9b2ea37d26d9d3be7b5f399
+ depends:
+ - libboost-devel 1.86.0 h1a2810e_3
+ - libboost-python 1.86.0 py311h5b7b71f_3
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 17437
+ timestamp: 1733502339095
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py312h9cebb41_3.conda
+ sha256: 60586f82de28c6cd6311103b3214dde28e99843281a01a45ab2cfd24df9813cc
+ md5: 9bd2d6b3cf04b42bb54e0c00fc2eb732
+ depends:
+ - libboost-devel 1.86.0 h1a2810e_3
+ - libboost-python 1.86.0 py312hc39e661_3
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 17423
+ timestamp: 1733502303843
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-python-devel-1.86.0-py313h59e1532_3.conda
+ sha256: b851ddbdca334d245e866ced5bc8d04469f808eafc2e5a2586a5c3fc500efa69
+ md5: 0a48c86c4ff0f5b64ac76676b3806479
+ depends:
+ - libboost-devel 1.86.0 h1a2810e_3
+ - libboost-python 1.86.0 py313hf0ab243_3
+ - numpy >=1.21,<3
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ constrains:
+ - boost <0.0a0
+ - py-boost <0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 17462
+ timestamp: 1733502316567
+- conda: https://prefix.dev/conda-forge/linux-64/libboost-python-devel-1.86.0-py312h26dfbe5_4.conda
+ sha256: 77b5e1f0a12194d00b53e18cf65cb968cf802b6320270cbfcba4244f84883728
+ md5: 9fec27d6d17440a0e48f93ab84c9c137
+ depends:
+ - libboost-devel 1.86.0 hfcd1e18_4
+ - libboost-python 1.86.0 py312hf890105_4
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - py-boost <0.0a0
+ - boost <0.0a0
+ license: BSL-1.0
+ purls: []
+ size: 18217
+ timestamp: 1756549919306
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda
+ sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf
+ md5: cb98af5db26e3f482bebb80ce9d947d3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 69233
+ timestamp: 1749230099545
+- conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
+ sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e
+ md5: 72c8fd1af66bd67bf580645b426513ed
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 79965
+ timestamp: 1764017188531
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda
+ sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83
+ md5: 1c6eecffad553bde44c5238770cfb7da
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_3
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 33148
+ timestamp: 1749230111397
+- conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda
+ sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b
+ md5: 366b40a69f0ad6072561c1d09301c886
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.2.0 hb03c661_1
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 34632
+ timestamp: 1764017199083
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda
+ sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7
+ md5: 3facafe58f3858eb95527c7d3a3fc578
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_3
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 282657
+ timestamp: 1749230124839
+- conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda
+ sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d
+ md5: 4ffbb341c8b616aa2494b6afb26a0c5f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.2.0 hb03c661_1
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 298378
+ timestamp: 1764017210931
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda
+ sha256: 2bbefac94f4ab8ff7c64dc843238b6c8edcc9ff1f2b5a0a48407a904dc7ccfb2
+ md5: dd19e4e3043f6948bd7454b946ee0983
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - attr >=2.5.1,<2.6.0a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 102268
+ timestamp: 1729940917945
+- conda: https://prefix.dev/conda-forge/linux-64/libcap-2.75-h39aace5_0.conda
+ sha256: 9c84448305e7c9cc44ccec7757cf5afcb5a021f4579aa750a1fa6ea398783950
+ md5: c44c16d6976d2aebbd65894d7741e67e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - attr >=2.5.1,<2.6.0a0
+ - libgcc >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 120375
+ timestamp: 1741176638215
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda
+ build_number: 31
+ sha256: ede8545011f5b208b151fe3e883eb4e31d495ab925ab7b9ce394edca846e0c0d
+ md5: abb32c727da370c481a1c206f5159ce9
+ depends:
+ - libblas 3.9.0 31_h59b9bed_openblas
+ constrains:
+ - liblapacke =3.9.0=31*_openblas
+ - liblapack =3.9.0=31*_openblas
+ - blas =2.131=openblas
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 16796
+ timestamp: 1740087984429
+- conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_h0358290_openblas.conda
+ build_number: 5
+ sha256: 0cbdcc67901e02dc17f1d19e1f9170610bd828100dc207de4d5b6b8ad1ae7ad8
+ md5: 6636a2b6f1a87572df2970d3ebc87cc0
+ depends:
+ - libblas 3.11.0 5_h4a7cf45_openblas
+ constrains:
+ - liblapacke 3.11.0 5*_openblas
+ - blas 2.305 openblas
+ - liblapack 3.11.0 5*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18194
+ timestamp: 1765818837135
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_3.conda
+ sha256: 50a9d8d1b8470fd56fd67c0c6d8eddb9ce831be3504cd0cb825ab92a8072f6b5
+ md5: 31fd8a0902f7baa8e28dab6218fdf317
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libllvm19 >=19.1.7,<19.2.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 20529698
+ timestamp: 1747714964424
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp20.1-20.1.7-default_h1df26ce_0.conda
+ sha256: 4194c75a91a9c790cbe96c3c33fc2f388274d1be85ec884ce7c88d7e8f9d96f2
+ md5: f9ef7bce54a7673cdbc2fadd8bca1956
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libllvm20 >=20.1.7,<20.2.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 20925717
+ timestamp: 1749876303353
+- conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_h99862b1_8.conda
+ sha256: e4dfc9b820a5f7bcc5862f0d275a2c85e838a2de9c6d1d10b048ab7570f8a968
+ md5: 0071e5b9af13b5bcf39e371f3100ce3f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libllvm20 >=20.1.8,<20.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 21291311
+ timestamp: 1768845917554
+- conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp21.1-21.1.0-default_h99862b1_1.conda
+ sha256: efe9f1363a49668d10aacdb8be650433fab659f05ed6cc2b9da00e3eb7eaf602
+ md5: d599b346638b9216c1e8f9146713df05
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libllvm21 >=21.1.0,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 21131028
+ timestamp: 1757383135034
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-20.1.7-default_he06ed0a_0.conda
+ sha256: 6541d19a1659062dbf8823d6a1206e28f788369bcf7af9171d7c9069c1d35932
+ md5: 846875a174de6b6ff19e205a7d90eb74
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libllvm20 >=20.1.7,<20.2.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 12116245
+ timestamp: 1749876520951
+- conda: https://prefix.dev/conda-forge/linux-64/libclang13-21.1.0-default_h746c552_1.conda
+ sha256: e6c0123b888d6abf03c66c52ed89f9de1798dde930c5fd558774f26e994afbc6
+ md5: 327c78a8ce710782425a89df851392f7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libllvm21 >=21.1.0,<21.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 12358102
+ timestamp: 1757383373129
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ sha256: 64b97b9bf28ac5c33d1ce8e842e85de0ca2d74ec1b505fe7a31690b45bc77ca8
+ md5: 69969d007c58287f6de16c8e8dca42d3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libgcc >=13
+ - libstdcxx >=13
+ - octomap >=1.10.0,<1.11.0a0
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1460301
+ timestamp: 1739461489164
+- conda: https://prefix.dev/conda-forge/linux-64/libcoal-3.0.1-ha55d5d9_1.conda
+ sha256: 64b97b9bf28ac5c33d1ce8e842e85de0ca2d74ec1b505fe7a31690b45bc77ca8
+ md5: 69969d007c58287f6de16c8e8dca42d3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libgcc >=13
+ - libstdcxx >=13
+ - octomap >=1.10.0,<1.11.0a0
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1460301
+ timestamp: 1739461489164
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ sha256: cb83980c57e311783ee831832eb2c20ecb41e7dee6e86e8b70b8cef0e43eab55
+ md5: d4a250da4737ee127fb1fa6452a9002e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 4523621
+ timestamp: 1749905341688
+- conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda
+ sha256: cb83980c57e311783ee831832eb2c20ecb41e7dee6e86e8b70b8cef0e43eab55
+ md5: d4a250da4737ee127fb1fa6452a9002e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 4523621
+ timestamp: 1749905341688
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
+ sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b
+ md5: 45f6713cb00f124af300342512219182
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libnghttp2 >=1.64.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: curl
+ license_family: MIT
+ purls: []
+ size: 449910
+ timestamp: 1749033146806
+- conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.18.0-h4e3cde8_0.conda
+ sha256: 5454709d9fb6e9c3dd6423bc284fa7835a7823bfa8323f6e8786cdd555101fab
+ md5: 0a5563efed19ca4461cf927419b6eb73
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - libnghttp2 >=1.67.0,<2.0a0
+ - libssh2 >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.4,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: curl
+ license_family: MIT
+ purls: []
+ size: 462942
+ timestamp: 1767821743793
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf
+ md5: 64f0c503da58ec25ebd359e4d990afa8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 72573
+ timestamp: 1747040452262
+- conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
+ sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf
+ md5: 64f0c503da58ec25ebd359e4d990afa8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 72573
+ timestamp: 1747040452262
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.125-hb9d3cd8_0.conda
+ sha256: f53458db897b93b4a81a6dbfd7915ed8fa4a54951f97c698dde6faa028aadfd2
+ md5: 4c0ab57463117fbb8df85268415082f5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libpciaccess >=0.18,<0.19.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 246161
+ timestamp: 1749904704373
+- conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.125-hb03c661_1.conda
+ sha256: c076a213bd3676cc1ef22eeff91588826273513ccc6040d9bea68bccdc849501
+ md5: 9314bc5a1fe7d1044dc9dfd3ef400535
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpciaccess >=0.18,<0.19.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 310785
+ timestamp: 1757212153962
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
+ md5: c277e0a4d549b03ac1e9d6cbbe3d017b
+ depends:
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 134676
+ timestamp: 1738479519902
+- conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
+ sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
+ md5: c277e0a4d549b03ac1e9d6cbbe3d017b
+ depends:
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 134676
+ timestamp: 1738479519902
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723
+ md5: c151d5eb730e9b7480e6d48c0fc44048
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 44840
+ timestamp: 1731330973553
+- conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723
+ md5: c151d5eb730e9b7480e6d48c0fc44048
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 44840
+ timestamp: 1731330973553
+- conda: https://prefix.dev/conda-forge/linux-64/libegl-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: f6e7095260305dc05238062142fb8db4b940346329b5b54894a90610afa6749f
+ md5: b513eb83b3137eca1192c34bf4f013a7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libegl 1.7.0 ha4b6fd6_2
+ - libgl-devel 1.7.0 ha4b6fd6_2
+ - xorg-libx11
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 30380
+ timestamp: 1731331017249
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
+ md5: 172bf1cd1ff8629f2b1179945ed45055
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 112766
+ timestamp: 1702146165126
+- conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
+ md5: 172bf1cd1ff8629f2b1179945ed45055
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 112766
+ timestamp: 1702146165126
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
+ sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131
+ md5: a1cfcc585f0c42bf8d5546bb1dfb668d
+ depends:
+ - libgcc-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 427426
+ timestamp: 1685725977222
+- conda: https://prefix.dev/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
+ sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131
+ md5: a1cfcc585f0c42bf8d5546bb1dfb668d
+ depends:
+ - libgcc-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 427426
+ timestamp: 1685725977222
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
+ sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505
+ md5: db0bfbe7dd197b68ad5f30333bae6ce0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - expat 2.7.0.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 74427
+ timestamp: 1743431794976
+- conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.4-hecca717_0.conda
+ sha256: d78f1d3bea8c031d2f032b760f36676d87929b18146351c4464c66b0869df3f5
+ md5: e7f7ce06ec24cfcfb9e36d28cf82ba57
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - expat 2.7.4.*
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 76798
+ timestamp: 1771259418166
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ sha256: adfd4320349cf78c44957c77f2359ff4b2cfd3d1b6c40fd3fc009c91567facc8
+ md5: 49137803a38a0ae22ad0289728a15a2c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblasfeo >=0.1.4.1,<0.1.5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 241251
+ timestamp: 1736273085602
+- conda: https://prefix.dev/conda-forge/linux-64/libfatrop-0.0.4-h5888daf_1.conda
+ sha256: adfd4320349cf78c44957c77f2359ff4b2cfd3d1b6c40fd3fc009c91567facc8
+ md5: 49137803a38a0ae22ad0289728a15a2c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblasfeo >=0.1.4.1,<0.1.5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 241251
+ timestamp: 1736273085602
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
+ sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab
+ md5: ede4673863426c0883c0063d853bbd85
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 57433
+ timestamp: 1743434498161
+- conda: https://prefix.dev/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
+ sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
+ md5: a360c33a5abe61c07959e449fa1453eb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 58592
+ timestamp: 1769456073053
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
+ sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d
+ md5: ee48bf17cc83a00f59ca1494d5646869
+ depends:
+ - gettext >=0.21.1,<1.0a0
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.4,<1.4.0a0
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 394383
+ timestamp: 1687765514062
+- conda: https://prefix.dev/conda-forge/linux-64/libflac-1.5.0-he200343_1.conda
+ sha256: e755e234236bdda3d265ae82e5b0581d259a9279e3e5b31d745dc43251ad64fb
+ md5: 47595b9d53054907a00d95e4d47af1d6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libstdcxx >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 424563
+ timestamp: 1764526740626
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda
+ sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115
+ md5: 51f5be229d83ecd401fb369ab96ae669
+ depends:
+ - libfreetype6 >=2.13.3
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 7693
+ timestamp: 1745369988361
+- conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda
+ sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec
+ md5: f4084e4e6577797150f9b04a4560ceb0
+ depends:
+ - libfreetype6 >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 7664
+ timestamp: 1757945417134
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda
+ sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81
+ md5: 3c255be50a506c50765a93a6644f32fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libpng >=1.6.47,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.13.3
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 380134
+ timestamp: 1745369987697
+- conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda
+ sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652
+ md5: 8e7251989bca326a28f4a5ffbd74557a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - freetype >=2.14.1
+ license: GPL-2.0-only OR FTL
+ purls: []
+ size: 386739
+ timestamp: 1757945416744
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
+ sha256: 0024f9ab34c09629621aefd8603ef77bf9d708129b0dd79029e502c39ffc2195
+ md5: ea8ac52380885ed41c1baa8f1d6d2b93
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgcc-ng ==15.1.0=*_2
+ - libgomp 15.1.0 h767d61c_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 829108
+ timestamp: 1746642191935
+- conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
+ sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
+ md5: 0aa00f03f9e39fb9876085dee11a85d4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgcc-ng ==15.2.0=*_18
+ - libgomp 15.2.0 he0feb66_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 1041788
+ timestamp: 1771378212382
+- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-hc03c837_102.conda
+ sha256: 538544a2e0651bfeb0348ca6469b6b608606f6080a0b5a531af3a3852fec0215
+ md5: 4c1d6961a6a54f602ae510d9bf31fa60
+ depends:
+ - __unix
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 2597400
+ timestamp: 1740240211859
+- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-14.3.0-hf649bbc_118.conda
+ sha256: 1abc6a81ee66e8ac9ac09a26e2d6ad7bba23f0a0cc3a6118654f036f9c0e1854
+ md5: 06901733131833f5edd68cf3d9679798
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 3084533
+ timestamp: 1771377786730
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
+ sha256: 0ab5421a89f090f3aa33841036bb3af4ed85e1f91315b528a9d75fab9aad51ae
+ md5: ddca86c7040dd0e73b2b69bd7833d225
+ depends:
+ - libgcc 15.1.0 h767d61c_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 34586
+ timestamp: 1746642200749
+- conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
+ sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
+ md5: d5e96b1ed75ca01906b3d2469b4ce493
+ depends:
+ - libgcc 15.2.0 he0feb66_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 27526
+ timestamp: 1771378224552
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
+ sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109
+ md5: 8504a291085c9fb809b66cabd5834307
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgpg-error >=1.55,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 590353
+ timestamp: 1747060639058
+- conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda
+ sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109
+ md5: 8504a291085c9fb809b66cabd5834307
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgpg-error >=1.55,<2.0a0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 590353
+ timestamp: 1747060639058
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda
+ sha256: 19e5be91445db119152217e8e8eec4fd0499d854acc7d8062044fb55a70971cd
+ md5: 68fc66282364981589ef36868b1a7c78
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.45,<1.7.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GD
+ license_family: BSD
+ purls: []
+ size: 177082
+ timestamp: 1737548051015
+- conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda
+ sha256: 19e5be91445db119152217e8e8eec4fd0499d854acc7d8062044fb55a70971cd
+ md5: 68fc66282364981589ef36868b1a7c78
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.45,<1.7.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GD
+ license_family: BSD
+ purls: []
+ size: 177082
+ timestamp: 1737548051015
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.24.1-h5888daf_0.conda
+ sha256: 104f2341546e295d1136ab3010e81391bd3fd5be0f095db59266e8eba2082d37
+ md5: 2ee6d71b72f75d50581f2f68e965efdb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 171165
+ timestamp: 1746228870846
+- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.25.1-h3f43e3d_1.conda
+ sha256: 50a9e9815cf3f5bce1b8c5161c0899cc5b6c6052d6d73a4c27f749119e607100
+ md5: 2f4de899028319b27eb7a4023be5dfd2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 188293
+ timestamp: 1753342911214
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.24.1-h5888daf_0.conda
+ sha256: a9a0cba030778eb2944a1f235dba51e503b66f8be0ce6f55f745173a515c3644
+ md5: 8f04c7aae6a46503bc36d1ed5abc8c7c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgettextpo 0.24.1 h5888daf_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 37234
+ timestamp: 1746228897993
+- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.25.1-h3f43e3d_1.conda
+ sha256: c7ea10326fd450a2a21955987db09dde78c99956a91f6f05386756a7bfe7cc04
+ md5: 3f7a43b3160ec0345c9535a9f0d7908e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgettextpo 0.25.1 h3f43e3d_1
+ - libiconv >=1.18,<2.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 37407
+ timestamp: 1753342931100
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_2.conda
+ sha256: 914daa4f632b786827ea71b5e07cd00d25fc6e67789db2f830dc481eec660342
+ md5: f92e6e0a3c0c0c85561ef61aa59d555d
+ depends:
+ - libgfortran5 15.1.0 hcea5267_2
+ constrains:
+ - libgfortran-ng ==15.1.0=*_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 34541
+ timestamp: 1746642233221
+- conda: https://prefix.dev/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_18.conda
+ sha256: d2c9fad338fd85e4487424865da8e74006ab2e2475bd788f624d7a39b2a72aee
+ md5: 9063115da5bc35fdc3e1002e69b9ef6e
+ depends:
+ - libgfortran5 15.2.0 h68bc16d_18
+ constrains:
+ - libgfortran-ng ==15.2.0=*_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 27523
+ timestamp: 1771378269450
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.1.0-h69a702a_2.conda
+ sha256: 0665170a98c8ec586352929d45a9c833c0dcdbead38b0b8f3af7a0deee2af755
+ md5: a483a87b71e974bb75d1b9413d4436dd
+ depends:
+ - libgfortran 15.1.0 h69a702a_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 34616
+ timestamp: 1746642441079
+- conda: https://prefix.dev/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_18.conda
+ sha256: cdc147bb0966be39b697b28d40b1ab5a2cd57fb29aff0fb0406598d419bddd70
+ md5: 26d7b228de99d6fb032ba4d5c1679040
+ depends:
+ - libgfortran 15.2.0 h69a702a_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 27532
+ timestamp: 1771378479717
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_2.conda
+ sha256: be23750f3ca1a5cb3ada858c4f633effe777487d1ea35fddca04c0965c073350
+ md5: 01de444988ed960031dbe84cf4f9b1fc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=15.1.0
+ constrains:
+ - libgfortran 15.1.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 1569986
+ timestamp: 1746642212331
+- conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_18.conda
+ sha256: 539b57cf50ec85509a94ba9949b7e30717839e4d694bc94f30d41c9d34de2d12
+ md5: 646855f357199a12f02a87382d429b75
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=15.2.0
+ constrains:
+ - libgfortran 15.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 2482475
+ timestamp: 1771378241063
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d
+ md5: 928b8be80851f5d8ffb016f9c81dae7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - libglx 1.7.0 ha4b6fd6_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 134712
+ timestamp: 1731330998354
+- conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d
+ md5: 928b8be80851f5d8ffb016f9c81dae7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - libglx 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 134712
+ timestamp: 1731330998354
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: e281356c0975751f478c53e14f3efea6cd1e23c3069406d10708d6c409525260
+ md5: 53e7cbb2beb03d69a478631e23e340e9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgl 1.7.0 ha4b6fd6_2
+ - libglx-devel 1.7.0 ha4b6fd6_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 113911
+ timestamp: 1731331012126
+- conda: https://prefix.dev/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: e281356c0975751f478c53e14f3efea6cd1e23c3069406d10708d6c409525260
+ md5: 53e7cbb2beb03d69a478631e23e340e9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgl 1.7.0 ha4b6fd6_2
+ - libglx-devel 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 113911
+ timestamp: 1731331012126
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.84.1-h2ff4ddf_0.conda
+ sha256: 18e354d30a60441b0bf5fcbb125b6b22fd0df179620ae834e2533d44d1598211
+ md5: 0305434da649d4fb48a425e588b79ea6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - libiconv >=1.18,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ constrains:
+ - glib 2.84.1 *_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 3947789
+ timestamp: 1743773764878
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.84.2-h3618099_0.conda
+ sha256: a6b5cf4d443044bc9a0293dd12ca2015f0ebe5edfdc9c4abdde0b9947f9eb7bd
+ md5: 072ab14a02164b7c0c089055368ff776
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - libiconv >=1.18,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.45,<10.46.0a0
+ constrains:
+ - glib 2.84.2 *_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 3955066
+ timestamp: 1747836671118
+- conda: https://prefix.dev/conda-forge/linux-64/libglib-2.86.2-h32235b2_0.conda
+ sha256: 918306d6ed211ab483e4e19368e5748b265d24e75c88a1c66a61f72b9fa30b29
+ md5: 0cb0612bc9cb30c62baf41f9d600611b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ constrains:
+ - glib 2.86.2 *_0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 3974801
+ timestamp: 1763672326986
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ sha256: a0105eb88f76073bbb30169312e797ed5449ebb4e964a756104d6e54633d17ef
+ md5: 8422fcc9e5e172c91e99aef703b3ce65
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: SGI-B-2.0
+ purls: []
+ size: 325262
+ timestamp: 1748692137626
+- conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda
+ sha256: a0105eb88f76073bbb30169312e797ed5449ebb4e964a756104d6e54633d17ef
+ md5: 8422fcc9e5e172c91e99aef703b3ce65
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ license: SGI-B-2.0
+ purls: []
+ size: 325262
+ timestamp: 1748692137626
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850
+ md5: 434ca7e50e40f4918ab701e3facd59a0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 132463
+ timestamp: 1731330968309
+- conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850
+ md5: 434ca7e50e40f4918ab701e3facd59a0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 132463
+ timestamp: 1731330968309
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7
+ md5: c8013e438185f33b13814c5c488acd5c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 75504
+ timestamp: 1731330988898
+- conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7
+ md5: c8013e438185f33b13814c5c488acd5c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 75504
+ timestamp: 1731330988898
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: 0a930e0148ab6e61089bbcdba25a2e17ee383e7de82e7af10cc5c12c82c580f3
+ md5: 27ac5ae872a21375d980bd4a6f99edf3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglx 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-xorgproto
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 26388
+ timestamp: 1731331003255
+- conda: https://prefix.dev/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: 0a930e0148ab6e61089bbcdba25a2e17ee383e7de82e7af10cc5c12c82c580f3
+ md5: 27ac5ae872a21375d980bd4a6f99edf3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglx 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-xorgproto
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 26388
+ timestamp: 1731331003255
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
+ sha256: 05fff3dc7e80579bc28de13b511baec281c4343d703c406aefd54389959154fb
+ md5: fbe7d535ff9d3a168c148e07358cd5b1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 452635
+ timestamp: 1746642113092
+- conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
+ sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110
+ md5: 239c5e9546c38a1e884d69effcf4c882
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 603262
+ timestamp: 1771378117851
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda
+ sha256: 697334de4786a1067ea86853e520c64dd72b11a05137f5b318d8a444007b5e60
+ md5: 2bd47db5807daade8500ed7ca4c512a4
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ purls: []
+ size: 312184
+ timestamp: 1745575272035
+- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.58-h54a6638_0.conda
+ sha256: 8c0786ab58d25fb0c947b29cbd7b155d5a79b46cc2d059f94d887fa61400b363
+ md5: 791699a08705ad827006957002cd92aa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ license: LGPL-2.1-only
+ purls: []
+ size: 318912
+ timestamp: 1765704474676
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-cmake3-3.5.3-hac33072_0.conda
+ sha256: 5f9988f5dba7c289bccde0766fc4147f09fc260b7b641b5842a57cf1aa4ba01c
+ md5: e9cbdb4fe25b4bfde5036b7708a9d018
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 203881
+ timestamp: 1715098722683
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-cmake3-3.5.5-h54a6638_0.conda
+ sha256: 6092ccfec5a52200a2dd5cfa33f67e7c75d473dbb1673baf145a56456589196f
+ md5: 046a934130154ef383da67712d179235
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 217564
+ timestamp: 1759138411890
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-cmake4-4.2.0-h54a6638_1.conda
+ sha256: f306eba52c454fab2d6435959fda20a9d9062c86e918a79edd2afd2a82885f9c
+ md5: c6600ee72e2cadd45348bc7b99e8f736
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 217934
+ timestamp: 1759138566319
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-math7-7.5.1-h5888daf_2.conda
+ sha256: 40a013f40aa5f8c60b19068c1187ac0c2aad0ac3d219e0ce88de7f8518af2760
+ md5: 2f4fda7179aa9d92cb32bbf84880721f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=13
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libgz-utils2 >=2.2.0,<3.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 272182
+ timestamp: 1730305982786
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-math7-7.5.2-h54a6638_2.conda
+ sha256: fce7eb4797a025c4c61f9502372801bba87ffddc39c68dfbd09f25f30e282c45
+ md5: 27dd93bf04ea4699afedf5ec38758c55
+ depends:
+ - eigen
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libgz-cmake4 >=4.2.0,<5.0a0
+ - libgz-utils2 >=2.2.1,<3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 295819
+ timestamp: 1759147748392
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-math8-8.2.0-h54a6638_2.conda
+ sha256: 604ee7ebac74a45c95ca38152b98984a6ea195ce88e47332bdf397f1ecf3b4b2
+ md5: 57644d9cd6fe5cda498611d058ce9197
+ depends:
+ - eigen
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libgz-utils3 >=3.1.1,<4.0a0
+ - libgz-cmake4 >=4.2.0,<5.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 298011
+ timestamp: 1759147796036
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-tools-2.0.3-h54a6638_1.conda
+ sha256: 11b948f8379ddf26e045ddbcca6f884a537ec2afc13986e9cbd19518855b2c6d
+ md5: 94785d73f138a7e56359e0535179953a
+ depends:
+ - ruby
+ - elfutils
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 49853
+ timestamp: 1759148392717
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-tools2-2.0.1-h17585e0_0.conda
+ sha256: 5acb80f086503978e410ec6f2722e2408de9689cc8576f835e62c7bdc43c6e58
+ md5: 395c1139239414c65e46e994ead5e997
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - elfutils
+ - libgcc-ng >=13
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libstdcxx-ng >=13
+ - ruby
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 44869
+ timestamp: 1724587221526
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-tools2-2.0.1-h4149140_0.conda
+ sha256: 6bf8c9a0a6b940b1563fb3af742bb79f59e33b084754ebd0a5c090091ec6bf98
+ md5: dd8a44cd2d68aba219156635748350c1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - elfutils
+ - libgcc-ng >=13
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libstdcxx-ng >=13
+ - ruby
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 44893
+ timestamp: 1724587184338
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libgz-utils2-2.2.0-h5888daf_1.conda
+ sha256: 2c0a504271025efaf30c090d510f33a6a133f406a00b5c3ddbab60f1132fefce
+ md5: 17fc2ed903a613f4565c83b301ad0cbd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cli11
+ - libgcc >=13
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 59501
+ timestamp: 1735637875789
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-utils2-2.2.1-h54a6638_2.conda
+ sha256: 65ae6597a3f6dc7417ee0d3b57545981e52fe9ae0ff2b90d39c00b5ecabd9267
+ md5: c1a605a5e876df49423df3699633dcfb
+ depends:
+ - cli11
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgz-cmake3 >=3.5.5,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 63479
+ timestamp: 1767701472558
+- conda: https://prefix.dev/conda-forge/linux-64/libgz-utils3-3.1.1-h38f3fdc_2.conda
+ sha256: 89905428e197c5796e12fb6324843e4da616d17dfe161695ba4e440c16a0e231
+ md5: b1f372fd32c93c1c169c69b2d3ec2ebb
+ depends:
+ - cli11
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgz-cmake4 >=4.2.0,<5.0a0
+ - spdlog >=1.15.3,<1.16.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 78059
+ timestamp: 1759142868065
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69
+ md5: 804ca9e91bcaea0824a341d55b1684f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.4,<2.14.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2423200
+ timestamp: 1731374922090
+- conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.12.1-default_h3d81e11_1000.conda
+ sha256: eecaf76fdfc085d8fed4583b533c10cb7f4a6304be56031c43a107e01a56b7e2
+ md5: d821210ab60be56dd27b5525ed18366d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2 >=2.13.8,<2.14.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2450422
+ timestamp: 1752761850672
+- conda: https://prefix.dev/conda-forge/linux-64/libhwy-1.3.0-h4c17acf_1.conda
+ sha256: 2bdd1cdd677b119abc5e83069bec2e28fe6bfb21ebaea3cd07acee67f38ea274
+ md5: c2a0c1d0120520e979685034e0b79859
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Apache-2.0 OR BSD-3-Clause
+ purls: []
+ size: 1448617
+ timestamp: 1758894401402
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda
+ sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4
+ md5: e796ff8ddc598affdf7c173d6145f087
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ purls: []
+ size: 713084
+ timestamp: 1740128065462
+- conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
+ sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
+ md5: 915f5995e94f60e9a4826e0b0920ee88
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: LGPL-2.1-only
+ purls: []
+ size: 790176
+ timestamp: 1754908768807
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.8-ha4ef2c3_0.conda
+ sha256: b009d936a67b0cc595cc7b11cde103069a9f334bf39553989705aeaedf2ac6f3
+ md5: e155d7130e134619e41dc21276ed6ab5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libasprintf >=0.23.1,<1.0a0
+ - libgcc >=13
+ - libgettextpo >=0.23.1,<1.0a0
+ - libunistring >=0,<1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-only
+ license_family: LGPL
+ purls: []
+ size: 137731
+ timestamp: 1741525622652
+- conda: https://prefix.dev/conda-forge/linux-64/libidn2-2.3.8-hfac485b_1.conda
+ sha256: cc38c900b9a20fe75e61cbb594e749c57a06d96510722f5ddfa309682062b065
+ md5: 842a81de672ddcf476337c8bde3cad33
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libunistring >=0,<1.0a0
+ license: LGPL-2.0-only
+ license_family: LGPL
+ purls: []
+ size: 139036
+ timestamp: 1760385590993
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libignition-cmake2-2.17.2-hac33072_0.conda
+ sha256: 4bace3310a094d54dbccd211c0c6b28152d4f8fe9d70c7eae33279eb1584242d
+ md5: ca93261530c18fcd1dc8ce9eb202f7e8
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 266880
+ timestamp: 1715202041745
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libignition-math6-6.15.1-py311he92c4ec_2.conda
+ sha256: 42a3d7a8e78c0acc2a7e4296809a9fd2172f9e1e0d3224416a37eb462543dbbb
+ md5: 45cf88b8d51bc7f312f0d89a1f3f3832
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=13
+ - libignition-cmake2 >=2.17.2,<3.0a0
+ - libstdcxx >=13
+ - pybind11-abi 4
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1162236
+ timestamp: 1725376325337
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda
+ sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4
+ md5: 9fa334557db9f63da6c9285fd2a48638
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - jpeg <0.0.0a
+ channel: https://fast.prefix.dev/conda-forge
+ license: IJG AND BSD-3-Clause AND Zlib
+ purls: []
+ size: 628947
+ timestamp: 1745268527144
+- conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.2-hb03c661_0.conda
+ sha256: cc9aba923eea0af8e30e0f94f2ad7156e2984d80d1e8e7fe6be5a1f257f0eb32
+ md5: 8397539e3a0bbd1695584fb4f927485a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ purls: []
+ size: 633710
+ timestamp: 1762094827865
+- conda: https://prefix.dev/conda-forge/linux-64/libjxl-0.11.2-ha09017c_0.conda
+ sha256: 0c2399cef02953b719afe6591223fb11d287d5a108ef8bb9a02dd509a0f738d7
+ md5: 1df8c1b1d6665642107883685db6cf37
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libhwy >=1.3.0,<1.4.0a0
+ - libbrotlienc >=1.2.0,<1.3.0a0
+ - libbrotlidec >=1.2.0,<1.3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1883476
+ timestamp: 1770801977654
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda
+ build_number: 31
+ sha256: f583661921456e798aba10972a8abbd9d33571c655c1f66eff450edc9cbefcf3
+ md5: 452b98eafe050ecff932f0ec832dd03f
+ depends:
+ - libblas 3.9.0 31_h59b9bed_openblas
+ constrains:
+ - libcblas =3.9.0=31*_openblas
+ - liblapacke =3.9.0=31*_openblas
+ - blas =2.131=openblas
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 16790
+ timestamp: 1740087997375
+- conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.11.0-5_h47877c9_openblas.conda
+ build_number: 5
+ sha256: c723b6599fcd4c6c75dee728359ef418307280fa3e2ee376e14e85e5bbdda053
+ md5: b38076eb5c8e40d0106beda6f95d7609
+ depends:
+ - libblas 3.11.0 5_h4a7cf45_openblas
+ constrains:
+ - blas 2.305 openblas
+ - liblapacke 3.11.0 5*_openblas
+ - libcblas 3.11.0 5*_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18200
+ timestamp: 1765818857876
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda
+ build_number: 31
+ sha256: 510bfe8717ab6e7a19e2b0985c27629ddf89270dbd38def8c821f7f683a369a3
+ md5: 7e5fff7d0db69be3a266f7e79a3bb0e2
+ depends:
+ - libblas 3.9.0 31_h59b9bed_openblas
+ - libcblas 3.9.0 31_he106b2a_openblas
+ - liblapack 3.9.0 31_h7ac8fdf_openblas
+ constrains:
+ - blas =2.131=openblas
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 16819
+ timestamp: 1740088012246
+- conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.11.0-5_h6ae95b6_openblas.conda
+ build_number: 5
+ sha256: 3ed01602bf863a44d32fef697dd79ae53436644cf8b54d67cba0957757323bfe
+ md5: e487a0e38d89da76410cb92a5db39ec5
+ depends:
+ - libblas 3.11.0 5_h4a7cf45_openblas
+ - libcblas 3.11.0 5_h0358290_openblas
+ - liblapack 3.11.0 5_h47877c9_openblas
+ constrains:
+ - blas 2.305 openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18225
+ timestamp: 1765818880545
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda
+ sha256: 22909d64038bdc87de61311c4ae615dc574a548a7340b963bb7c9eb61b191669
+ md5: 6d2362046dce932eefbdeb0540de0c38
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 40143643
+ timestamp: 1737789465087
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm20-20.1.7-he9d0ab4_0.conda
+ sha256: 5c51416c10e84ac6a73560c82e20f99788b1395ce431c450391966d07a444fa6
+ md5: 63f1accca4913e6b66a2d546c30ff4db
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 43026762
+ timestamp: 1749836200754
+- conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.8-hecd9e04_0.conda
+ sha256: a6fddc510de09075f2b77735c64c7b9334cf5a26900da351779b275d9f9e55e1
+ md5: 59a7b967b6ef5d63029b1712f8dcf661
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 43987020
+ timestamp: 1752141980723
+- conda: https://prefix.dev/conda-forge/linux-64/libllvm21-21.1.0-hecd9e04_0.conda
+ sha256: d190f1bf322149321890908a534441ca2213a9a96c59819da6cabf2c5b474115
+ md5: 9ad637a7ac380c442be142dfb0b1b955
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ purls: []
+ size: 44363060
+ timestamp: 1756291822911
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
+ sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
+ md5: 1a580f7796c7bf6393fddb8bbbde58dc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - xz 5.8.1.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: 0BSD
+ purls: []
+ size: 112894
+ timestamp: 1749230047870
+- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
+ sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
+ md5: c7c83eecbb72d88b940c249af56c8b17
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - xz 5.8.2.*
+ license: 0BSD
+ purls: []
+ size: 113207
+ timestamp: 1768752626120
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda
+ sha256: 329e66330a8f9cbb6a8d5995005478188eb4ba8a6b6391affa849744f4968492
+ md5: f61edadbb301530bd65a32646bd81552
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - liblzma 5.8.1 hb9d3cd8_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: 0BSD
+ purls: []
+ size: 439868
+ timestamp: 1749230061968
+- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.2-hb03c661_0.conda
+ sha256: dd246f80c9c1c27b87e586c33cf36db9340fb8078e9b805429063c2af54d34a4
+ md5: de60549ba9d8921dff3afa4b179e2a4b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - liblzma 5.8.2 hb03c661_0
+ license: 0BSD
+ purls: []
+ size: 465085
+ timestamp: 1768752643506
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libmicrohttpd-1.0.1-hbc5bc17_1.conda
+ sha256: 0aa6287ec8698090d09def3416c38e5975fd2b76cd24ff5dac97edcdd6e1fbd4
+ md5: c384e4dcd3c345b54bfb79d9ff712349
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gnutls >=3.8.7,<3.9.0a0
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 258095
+ timestamp: 1724050165443
+- conda: https://prefix.dev/conda-forge/linux-64/libmicrohttpd-1.0.2-hc2fc477_0.conda
+ sha256: 6b21e0f3d1577bbe10f27003212f0b8c9a881d99faa01a83476311730aed5c9d
+ md5: a02cb80c806b7b768e1d60170f63375d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - gnutls >=3.8.9,<3.9.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 286166
+ timestamp: 1752566614604
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
+ sha256: 3aa92d4074d4063f2a162cd8ecb45dccac93e543e565c01a787e16a43501f7ee
+ md5: c7e925f37e3b40d893459e625f6a53f1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 91183
+ timestamp: 1748393666725
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h00e09a9_116.conda
+ sha256: 8c389b867452b13e7a2e0cf9c8120e0124a4ac1ab419fab23a565e2659084840
+ md5: 417864857bdb6c2be2e923e89bffd2e8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.3,<1.14.4.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzip >=1.11.2,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 834890
+ timestamp: 1733232226707
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h0134ee8_117.conda
+ sha256: bed629ab93148ea485009b06e2e4aa7709a66d19755713abff4f2c7193e65374
+ md5: a979c07e8fc0e3f61c24a65d16cc6fbe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.13.0,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.7,<2.14.0a0
+ - libzip >=1.11.2,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 835103
+ timestamp: 1745509891236
+- conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h21f7587_118.conda
+ sha256: ad260036929255d8089f748db0dce193d0d588ad7f88c06027dd9d8662cc1cc6
+ md5: 5f05af73150f62adab1492ab2d18d573
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - libaec >=1.1.4,<2.0a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzip >=1.11.2,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.1,<4.0a0
+ - zlib
+ - zstd >=1.5.7,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 844115
+ timestamp: 1754055003755
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975
+ md5: 19e57602824042dfd0446292ef90488b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.32.3,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 647599
+ timestamp: 1729571887612
+- conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.67.0-had1ee68_0.conda
+ sha256: a4a7dab8db4dc81c736e9a9b42bdfd97b087816e029e221380511960ac46c690
+ md5: b499ce4b026493a13774bcf0f4c33849
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.34.5,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 666600
+ timestamp: 1756834976695
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
+ sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
+ md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ license_family: GPL
+ purls: []
+ size: 33408
+ timestamp: 1697359010159
+- conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
+ sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5
+ md5: d864d34357c3b65a4b731f78c0801dc4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-only
+ license_family: GPL
+ purls: []
+ size: 33731
+ timestamp: 1750274110928
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ sha256: 3b3f19ced060013c2dd99d9d46403be6d319d4601814c772a3472fe2955612b0
+ md5: 7c7927b404672409d9917d49bff5f2d6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 33418
+ timestamp: 1734670021371
+- conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda
+ sha256: 3b3f19ced060013c2dd99d9d46403be6d319d4601814c772a3472fe2955612b0
+ md5: 7c7927b404672409d9917d49bff5f2d6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 33418
+ timestamp: 1734670021371
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ sha256: ffb066ddf2e76953f92e06677021c73c85536098f1c21fcd15360dbc859e22e4
+ md5: 68e52064ed3897463c0e958ab5c8f91b
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 218500
+ timestamp: 1745825989535
+- conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda
+ sha256: ffb066ddf2e76953f92e06677021c73c85536098f1c21fcd15360dbc859e22e4
+ md5: 68e52064ed3897463c0e958ab5c8f91b
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 218500
+ timestamp: 1745825989535
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda
+ sha256: cc5389ea254f111ef17a53df75e8e5209ef2ea6117e3f8aced88b5a8e51f11c4
+ md5: 0a4d0252248ef9a0f88f2ba8b8a08e12
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.2.0
+ constrains:
+ - openblas >=0.3.29,<0.3.30.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 5919288
+ timestamp: 1739825731827
+- conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_4.conda
+ sha256: 199d79c237afb0d4780ccd2fbf829cea80743df60df4705202558675e07dd2c5
+ md5: be43915efc66345cccb3c310b6ed0374
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ constrains:
+ - openblas >=0.3.30,<0.3.31.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 5927939
+ timestamp: 1763114673331
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.10.0-qt6_py311h8702e32_613.conda
+ sha256: 899cf9e98eaae73e27b6a3c5f20f4252b21da5f13c31b52d677b75262a69894e
+ md5: 88d06d0ca51cf8fae58c1b56ef7839c2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - ffmpeg >=7.1.0,<8.0a0
+ - freetype >=2.12.1,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - hdf5 >=1.14.3,<1.14.4.0a0
+ - jasper >=4.2.4,<5.0a0
+ - libasprintf >=0.22.5,<1.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libgettextpo >=0.22.5,<1.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.82.2,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - liblapacke >=3.9.0,<4.0a0
+ - libopenvino >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-auto-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-hetero-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-cpu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-gpu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-intel-npu-plugin >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-ir-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-onnx-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-paddle-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-pytorch-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.5.0,<2024.5.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.5.0,<2024.5.1.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
+ - openexr >=3.3.2,<3.4.0a0
+ - qt6-main >=6.7.3,<6.9.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/opencv-python?source=hash-mapping
+ - pkg:pypi/opencv-python-headless?source=hash-mapping
+ size: 30959063
+ timestamp: 1734358941109
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.11.0-headless_py312h8b90b6c_7.conda
+ sha256: aa32e84ea61c9d6a77b79e73146f3e9eb40edaf748b4289e1295976c46b98a58
+ md5: 390a57fafdd7be59dc31ac827932233e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - ffmpeg >=7.1.1,<8.0a0
+ - harfbuzz >=11.0.1
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jasper >=4.2.5,<5.0a0
+ - libasprintf >=0.23.1,<1.0a0
+ - libavif16 >=1.2.1,<2.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libgettextpo >=0.23.1,<1.0a0
+ - libglib >=2.84.1,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - liblapacke >=3.9.0,<4.0a0
+ - libopenvino >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libprotobuf >=5.29.3,<5.29.4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
+ - openexr >=3.3.3,<3.4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/opencv-python?source=hash-mapping
+ - pkg:pypi/opencv-python-headless?source=hash-mapping
+ size: 30246844
+ timestamp: 1745420150494
+- conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.12.0-qt6_py312hbf51571_603.conda
+ sha256: 2203ce03f6e6558f639e6121a7bb6cf34af2fbc92f67d9d8a39cb915c3f06a39
+ md5: b22bbd89e936d92d55d87472556e0f03
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - ffmpeg >=7.1.1,<8.0a0
+ - harfbuzz >=11.4.3
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - imath >=3.2.1,<3.2.2.0a0
+ - jasper >=4.2.8,<5.0a0
+ - libasprintf >=0.25.1,<1.0a0
+ - libavif16 >=1.3.0,<2.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=14
+ - libgettextpo >=0.25.1,<1.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.3,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libjxl >=0.11,<0.12.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - liblapacke >=3.9.0,<4.0a0
+ - libopenvino >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-auto-batch-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-auto-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-hetero-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-cpu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-gpu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-intel-npu-plugin >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-ir-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-onnx-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-paddle-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-pytorch-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-tensorflow-frontend >=2025.2.0,<2025.2.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2025.2.0,<2025.2.1.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.23,<3
+ - openexr >=3.3.5,<3.4.0a0
+ - qt6-main >=6.9.1,<6.10.0a0
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/opencv-python?source=hash-mapping
+ - pkg:pypi/opencv-python-headless?source=hash-mapping
+ size: 32727704
+ timestamp: 1755993567498
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead
+ md5: 7df50d44d4a14d6c31a2c54f2cd92157
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 50757
+ timestamp: 1731330993524
+- conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead
+ md5: 7df50d44d4a14d6c31a2c54f2cd92157
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 50757
+ timestamp: 1731330993524
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: b347798eba61ce8d7a65372cf0cf6066c328e5717ab69ae251c6822e6f664f23
+ md5: 75b039b1e51525f4572f828be8441970
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libopengl 1.7.0 ha4b6fd6_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 15460
+ timestamp: 1731331007610
+- conda: https://prefix.dev/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda
+ sha256: b347798eba61ce8d7a65372cf0cf6066c328e5717ab69ae251c6822e6f664f23
+ md5: 75b039b1e51525f4572f828be8441970
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libopengl 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ purls: []
+ size: 15460
+ timestamp: 1731331007610
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.5.0-hac27bb2_0.conda
+ sha256: 1f71a7a52cca4ffbd205f93a900ec7ac32bf41c09c89c256ca66c547287bb263
+ md5: 9b7a4ae9edab6f9604f56b790c3e1d02
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 5514235
+ timestamp: 1732895282760
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda
+ sha256: fe0e184141a3563d4c97134a1b7a60c66302cf0e2692d15d49c41382cdf61648
+ md5: 3a88245058baa9d18ef4ea6df18ff63e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 5698665
+ timestamp: 1742046924817
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.2.0-hb617929_1.conda
+ sha256: 235e7d474c90ad9d8955401b8a91dbe373aa1dc65db3c8232a5e22e4eaf41976
+ md5: 1da20cc4ff32dc74424dec68ec087dba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ purls: []
+ size: 6244771
+ timestamp: 1753211097492
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.5.0-h4d9b6c2_0.conda
+ sha256: 0c7f3410689a73abce1219aae4eb1c680ef9b49f78ef10e44ce5d8248c4a8a25
+ md5: c787d5a3d5b0776f0336004583297536
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 110859
+ timestamp: 1732895305563
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda
+ sha256: b4c61b3e8fc4d7090a94e3fd3936faf347eea07cac993417153dd99bd293c08d
+ md5: 2e349bafc75b212879bf70ef80e0d08c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 111823
+ timestamp: 1742046947746
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.2.0-hed573e4_1.conda
+ sha256: 193f760e828b0dd5168dd1d28580d4bf429c5f14a4eee5e0c02ff4c6d4cf8093
+ md5: 94f9d17be1d658213b66b22f63cc6578
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - tbb >=2021.13.0
+ purls: []
+ size: 114760
+ timestamp: 1753211116381
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.5.0-h4d9b6c2_0.conda
+ sha256: ac4fd5ac79f7a36231556cf4ee623ac3e8735e43da1e4bc5c46bf9c469cd1074
+ md5: ad1ed56f60ec9a8e710703f38b860315
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 237878
+ timestamp: 1732895319611
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda
+ sha256: ae72903e0718897b85aae2110d9bb1bfa9490b0496522e3735b65c771e7da0ea
+ md5: 74d074a3ac7af3378e16bfa6ff9cba30
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 238973
+ timestamp: 1742046961091
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.2.0-hed573e4_1.conda
+ sha256: a6f9f996e64e6d2f295f017a833eda7018ff58b6894503272d72f0002dfd6f33
+ md5: 071b3a82342715a411f216d379ab6205
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - tbb >=2021.13.0
+ purls: []
+ size: 250500
+ timestamp: 1753211127339
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.5.0-h3f63f65_0.conda
+ sha256: 62df96bd821eb8734965d7d7dd22703cd1e13d4b635cc08cc4c87028d427b55d
+ md5: 5bcc0022e2565606e3af7395ec3e156d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 196712
+ timestamp: 1732895334039
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda
+ sha256: b2c9ef97907f9c77817290bfb898897b476cc7ccf1737f0b1254437dda3d4903
+ md5: 21f7997d68220d7356c1f80dc500bfad
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - pugixml >=1.15,<1.16.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 196083
+ timestamp: 1742046974588
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.2.0-hd41364c_1.conda
+ sha256: f43f9049338ef9735b6815bac3f483d1e3adddecbfdeb13be365bc3f601fe156
+ md5: 77c0c7028a8110076d40314dc7b1fa98
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - pugixml >=1.15,<1.16.0a0
+ purls: []
+ size: 194815
+ timestamp: 1753211138624
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.5.0-hac27bb2_0.conda
+ sha256: 44661d1ee58481a77af7bac269968dae430c2f54003613af3b76595555c112b6
+ md5: 594ab1b892569c9cd15bcae9781a42b2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 12307696
+ timestamp: 1732895348960
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda
+ sha256: 9f6613906386a0c679c9a683ca97a5a2070111d9ada4f115c1806d921313e32d
+ md5: 3385f38d15c7aebcc3b453e4d8dfb0fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 12419296
+ timestamp: 1742046988488
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.2.0-hb617929_1.conda
+ sha256: a4a1cd320fa010a45d01f438dc3431b7a60271ee19188a901f884399fe744268
+ md5: e4cc6db5bdc8b554c06bf569de57f85f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ purls: []
+ size: 12377488
+ timestamp: 1753211149903
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.5.0-hac27bb2_0.conda
+ sha256: e410af906d75a880d93fcaf56b30efd28262751b50cae7db88b076602498350a
+ md5: 485e057ea6a17096b0539ca7473e4829
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - ocl-icd >=2.3.2,<3.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 9492513
+ timestamp: 1732895398556
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda
+ sha256: 8430f87a3cc65d3ef1ec8f9bfa990f6fb635601ad34ce08d70209099ff03f39c
+ md5: f2d50e234edd843d9d695f7da34c7e96
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - ocl-icd >=2.3.2,<3.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 10119530
+ timestamp: 1742047030958
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.2.0-hb617929_1.conda
+ sha256: 03ebf700586775144ca5913f401393a386b9a1d7a7cfcba4494830063ca5eb92
+ md5: b846fe6c158ca417e246122172d68d3a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - ocl-icd >=2.3.3,<3.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ purls: []
+ size: 10815480
+ timestamp: 1753211182626
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.5.0-hac27bb2_0.conda
+ sha256: 841d84663bbc1562cdd445fa199fdd835121936a1f6abc161e6f055a819db9cd
+ md5: f0a9e23aa51b84be0a74a4518d4020ca
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 968361
+ timestamp: 1732895433119
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda
+ sha256: 37ec3e304bf14d2d7b7781c4b6a8b3a54deae90bc7275f6ae160589ef219bcef
+ md5: f632cad865436394eebd41c3afa2cda3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - level-zero >=1.21.2,<2.0a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1092544
+ timestamp: 1742047065987
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.2.0-hb617929_1.conda
+ sha256: b6dbc342293d6ce0c7b37c9f29f734b3e1856cff9405a02fb33cedd1b36528e6
+ md5: 86fd4c25f6accaf646c86adf0f1382d3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - level-zero >=1.23.1,<2.0a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - pugixml >=1.15,<1.16.0a0
+ - tbb >=2021.13.0
+ purls: []
+ size: 1261488
+ timestamp: 1753211212823
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.5.0-h3f63f65_0.conda
+ sha256: 1e708b6ae887aea1af2f13a17e005059a9b2b5b6fdacf8563b350963ac23f5d0
+ md5: ae37e91183788f64935657b255cbff21
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 207421
+ timestamp: 1732895446002
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda
+ sha256: 268716b5c1858c1fddd51d63c7fcd7f3544ef04f221371ab6a2f9c579ca001e4
+ md5: 94f25cc6fe70f507897abb8e61603023
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ - pugixml >=1.15,<1.16.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 206013
+ timestamp: 1742047080381
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.2.0-hd41364c_1.conda
+ sha256: 334733396d4c9a9b2b2d7d7d850e8ee8deca1f9becd0368d106010076ceb20ca
+ md5: 75e595d9f2019a60f6dcb500266da615
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ - pugixml >=1.15,<1.16.0a0
+ purls: []
+ size: 204890
+ timestamp: 1753211224567
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.5.0-h5c8f2c3_0.conda
+ sha256: a121addb8a11de7e8ce9dd9e066beed3331a0d495e20c3648678e6c62a8d40ab
+ md5: 23e82dd5b616fa8879620609428791c9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1621729
+ timestamp: 1732895458321
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda
+ sha256: 5ce66c01f6ea365a497f488e8eecea8930b6a016f9809db7f33b8a1ebbe5644e
+ md5: 7cd3272c3171c1d43ed1c2b3d6795269
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250127.0,<20250128.0a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libprotobuf >=5.29.3,<5.29.4.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1668681
+ timestamp: 1742047094228
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.2.0-h1862bb8_1.conda
+ sha256: 3937b028e7192ed3805581ac0ea171725843056c8544537754fad45a1791e864
+ md5: 68f5ad9d8e3979362bb9dfc9388980aa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ purls: []
+ size: 1724503
+ timestamp: 1753211235981
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.5.0-h5c8f2c3_0.conda
+ sha256: e6ee95c7d28261ec8e90076bcaf2dc521ff4d4322f662cbd3e91ada9a1f07880
+ md5: ecf440381b082f7d2b9cb66d62d76efb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 658113
+ timestamp: 1732895472761
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda
+ sha256: 826507ac4ea2d496bdbec02dd9e3c8ed2eab253daa9d7f9119a8bc05c516d026
+ md5: 5b66cbc9965b429922b8e69cd4e464d7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250127.0,<20250128.0a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libprotobuf >=5.29.3,<5.29.4.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 690226
+ timestamp: 1742047109935
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.2.0-h1862bb8_1.conda
+ sha256: c7ac3d4187323ab37ef62ec0896a41c8ca7da426c7f587494c72fe74852269e5
+ md5: a032d03468dee9fb5b8eaf635b4571c2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ purls: []
+ size: 744746
+ timestamp: 1753211248776
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.5.0-h5888daf_0.conda
+ sha256: f7e04c73d88a3c7cc6e58f34e878b7f8fa5dbd5ed198ed6c69d6901bac35b739
+ md5: a5baecc3ef0d0cca99d08cf335c06c03
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1102383
+ timestamp: 1732895486898
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda
+ sha256: fda07e70a23aac329be68ae488b790f548d687807f0e47bae7129df34f0adb5b
+ md5: a6ece96eff7f60b2559ba699156b0edf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1123885
+ timestamp: 1742047125703
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.2.0-hecca717_1.conda
+ sha256: 2d4a680a16509b8dd06ccd7a236655e46cc7c242bb5b6e88b83a834b891658db
+ md5: cd40cf2d10a3279654c9769f3bc8caf5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ purls: []
+ size: 1243134
+ timestamp: 1753211260154
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.5.0-h6481b9d_0.conda
+ sha256: 86fc768f2b6f6ac659531f1a1a111eaf16798ec4d9d1e2e16366fe38635d146f
+ md5: 698ad10adfc7aa6553392677fffe054f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - snappy >=1.2.1,<1.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1311249
+ timestamp: 1732895503314
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda
+ sha256: e02990fccd4676e362a026acff3d706b5839ebf6ae681d56a2903f62a63e03ef
+ md5: e1aeb108f4731db088782c8a20abf40a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250127.0,<20250128.0a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libprotobuf >=5.29.3,<5.29.4.0a0
+ - libstdcxx >=13
+ - snappy >=1.2.1,<1.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1313789
+ timestamp: 1742047140816
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.2.0-h0767aad_1.conda
+ sha256: 311ec1118448a28e76f0359c4393c7f7f5e64761c48ac7b169bf928a391eae77
+ md5: f71c6b4e342b560cc40687063ef62c50
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - libstdcxx >=14
+ - snappy >=1.2.2,<1.3.0a0
+ purls: []
+ size: 1325059
+ timestamp: 1753211272484
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.5.0-h5888daf_0.conda
+ sha256: 7842fedd0ca9f319b3727da4ff0f911742a9398babf852fefffd407bd73f3d20
+ md5: 1c25d4e1965049a85c83762eaecb4436
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.5.0 hac27bb2_0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 485880
+ timestamp: 1732895516864
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda
+ sha256: 236569eb4d472d75412a3384c2aad92b006afed721feec23ca08730a25932da7
+ md5: a6fe9c25b834988ac88651aff731dd31
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2025.0.0 hdc3f47d_3
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 488142
+ timestamp: 1742047155790
+- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.2.0-hecca717_1.conda
+ sha256: 581f4951e645e820c4a6ffe40fb0174b56d6e31fb1fefd2d64913fea01f8f69e
+ md5: fd9dacd7101f80ff1110ea6b76adb95d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libopenvino 2025.2.0 hb617929_1
+ - libstdcxx >=14
+ purls: []
+ size: 497047
+ timestamp: 1753211285617
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda
+ sha256: 786d43678d6d1dc5f88a6bad2d02830cfd5a0184e84a8caa45694049f0e3ea5f
+ md5: b64523fb87ac6f87f0790f324ad43046
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 312472
+ timestamp: 1744330953241
+- conda: https://prefix.dev/conda-forge/linux-64/libopus-1.6.1-h280c20c_0.conda
+ sha256: f1061a26213b9653bbb8372bfa3f291787ca091a9a3060a10df4d5297aad74fd
+ md5: 2446ac1fe030c2aa6141386c1f5a6aed
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 324993
+ timestamp: 1768497114401
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libosqp-0.6.3-h5888daf_1.conda
+ sha256: 7c083bdff58df5cc3aed647020fef2a708d2fb57c8a504866db6a1e5e2f12b94
+ md5: 2a6b1aade375d6d404a0838c95793f6a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libqdldl >=0.1.7,<0.1.8.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 432789
+ timestamp: 1729342281763
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libosqp-1.0.0-np122py310h438337b_2.conda
+ sha256: 816fa2d2cad7cf88ff272b3c4a7c590bb0a13aac58fce1c2195e7ee3ea574a00
+ md5: c832be5f5751cdd39f355ee54ea2cb0e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libqdldl >=0.1.8,<0.1.9.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 602995
+ timestamp: 1748903856121
+- conda: https://prefix.dev/conda-forge/linux-64/libosqp-1.0.0-np2py312h1a77e3e_2.conda
+ sha256: beea43c6cb34d590e936e287b5491b8948947c86261780a753d4a545f60eba72
+ md5: c4396a2e825d384f18244dd34661248f
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libqdldl >=0.1.8,<0.1.9.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 85763
+ timestamp: 1760460227302
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ sha256: 0bd91de9b447a2991e666f284ae8c722ffb1d84acb594dbd0c031bd656fa32b2
+ md5: 70e3400cbbfa03e96dcde7fc13e38c7b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 28424
+ timestamp: 1749901812541
+- conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda
+ sha256: 0bd91de9b447a2991e666f284ae8c722ffb1d84acb594dbd0c031bd656fa32b2
+ md5: 70e3400cbbfa03e96dcde7fc13e38c7b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 28424
+ timestamp: 1749901812541
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda
+ sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36
+ md5: 55199e2ae2c3651f6f9b2a447b47bdc9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: zlib-acknowledgement
+ purls: []
+ size: 288701
+ timestamp: 1739952993639
+- conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.55-h421ea60_0.conda
+ sha256: 36ade759122cdf0f16e2a2562a19746d96cf9c863ffaa812f2f5071ebbe9c03c
+ md5: 5f13ffc7d30ffec87864e678df9957b4
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ purls: []
+ size: 317669
+ timestamp: 1770691470744
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-17.5-h27ae623_0.conda
+ sha256: 2dbcef0db82e0e7b6895b6c0dadd3d36c607044c40290c7ca10656f3fca3166f
+ md5: 6458be24f09e1b034902ab44fe9de908
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - openldap >=2.6.9,<2.7.0a0
+ - openssl >=3.5.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: PostgreSQL
+ purls: []
+ size: 2680582
+ timestamp: 1746743259857
+- conda: https://prefix.dev/conda-forge/linux-64/libpq-17.7-h5c52fec_1.conda
+ sha256: 06a8ace6cc5ee47b85a5e64fad621e5912a12a0202398f54f302eb4e8b9db1fd
+ md5: a4769024afeab4b32ac8167c2f92c7ac
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=14
+ - openldap >=2.6.10,<2.7.0a0
+ - openssl >=3.5.4,<4.0a0
+ license: PostgreSQL
+ purls: []
+ size: 2649881
+ timestamp: 1763565297202
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
+ md5: ab0bff36363bec94720275a681af8b83
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2945348
+ timestamp: 1728565355702
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.29.3-h501fc15_1.conda
+ sha256: 691af28446345674c6b3fb864d0e1a1574b6cc2f788e0f036d73a6b05dcf81cf
+ md5: edb86556cf4a0c133e7932a1597ff236
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250127.1,<20250128.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 3358788
+ timestamp: 1745159546868
+- conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-6.31.1-h49aed37_4.conda
+ sha256: 0ef142ac31e6fd59b4af89ac800acb6deb3fbd9cc4ccf070c03cc2c784dc7296
+ md5: 07479fc04ba3ddd5d9f760ef1635cfa7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20250512.1,<20250513.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 4372578
+ timestamp: 1766316228461
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libqdldl-0.1.7-hcb278e6_0.conda
+ sha256: 62230c93e8f7508a97e5b3a439b2b981eda9aa192cbc08497cbcca220ebf3acc
+ md5: 9221c4cca4d44cf4103fbdd47595e3dd
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 18277
+ timestamp: 1680741612751
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libqdldl-0.1.8-h3f2d84a_1.conda
+ sha256: daed72abc320ec9b33a9c7092a160f9683d04425fa194e789829d06528c4b266
+ md5: 3459f613a2c36a161d0cee2f38bfd9d6
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 21954
+ timestamp: 1744008123582
+- conda: https://prefix.dev/conda-forge/linux-64/libqdldl-0.1.8-h3f2d84a_1.conda
+ sha256: daed72abc320ec9b33a9c7092a160f9683d04425fa194e789829d06528c4b266
+ md5: 3459f613a2c36a161d0cee2f38bfd9d6
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 21954
+ timestamp: 1744008123582
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda
+ sha256: 96bbd009b3d7f82e9af37e980af9285431ecd5c6f098a0f1afe0021d8d02b88a
+ md5: e4fdd13a67d5b30459463e925b9e7e1f
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - _openmp_mutex >=4.5
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - jasper >=4.2.5,<5.0a0
+ - lcms2 >=2.17,<3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ purls: []
+ size: 704665
+ timestamp: 1744641234631
+- conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.5-h074291d_0.conda
+ sha256: 7b11ab45e471ba77eab1a21872be3dce8cc81edc2500cd782a6ff49816bce6d4
+ md5: c307c91b10217c31fc9d8e18cd58dc64
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lcms2 >=2.18,<3.0a0
+ - jasper >=4.2.8,<5.0a0
+ license: LGPL-2.1-only
+ purls: []
+ size: 705016
+ timestamp: 1768379154800
+- conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-hc0ffecb_0.conda
+ sha256: fda3197ffb24512e719d55defa02f9f70286038e56cad8c1d580ed6460f417fa
+ md5: 83f045969988f5c7a65f3950b95a8b35
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc >=13
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libxml2 >=2.12.7,<2.14.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 6390511
+ timestamp: 1726227212382
+- conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda
+ sha256: a45ef03e6e700cc6ac6c375e27904531cf8ade27eb3857e080537ff283fb0507
+ md5: d27665b20bc4d074b86e628b3ba5ab8b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - freetype >=2.13.3,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=11.0.0,<12.0a0
+ - libgcc >=13
+ - libglib >=2.84.0,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libxml2 >=2.13.7,<2.14.0a0
+ - pango >=1.56.3,<2.0a0
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 6543651
+ timestamp: 1743368725313
+- conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda
+ sha256: 475013475a3209c24a82f9e80c545d56ccca2fa04df85952852f3d73caa38ff9
+ md5: b9846db0abffb09847e2cb0fec4b4db6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.2,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=10.1.0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libxml2 >=2.13.5,<2.14.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __glibc >=2.17
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 6342757
+ timestamp: 1734902068235
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-he8ea267_2.conda
+ sha256: 27c4c8bf8e2dd60182d47274389be7c70446df6ed5344206266321ee749158b4
+ md5: 2b6cdf7bb95d3d10ef4e38ce0bc95dba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13.3.0
+ - libstdcxx >=13.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 4155341
+ timestamp: 1740240344242
+- conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-14.3.0-h8f1669f_18.conda
+ sha256: e03ed186eefb46d7800224ad34bad1268c9d19ecb8f621380a50601c6221a4a7
+ md5: ad3a0e2dc4cce549b2860e2ef0e6d75b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14.3.0
+ - libstdcxx >=14.3.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 7949259
+ timestamp: 1771377982207
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ sha256: 218ddc7a3d5f55f78edf0b78262c0988e70ee9a630c35f45098dae37591c558b
+ md5: dd1e1c54432494476d66c679014c675c
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libzlib >=1.2.13,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zlib
+ channel: https://fast.prefix.dev/conda-forge
+ license: CECILL-C
+ purls: []
+ size: 341039
+ timestamp: 1717069891622
+- conda: https://prefix.dev/conda-forge/linux-64/libscotch-7.0.4-h2fe6a88_5.conda
+ sha256: 218ddc7a3d5f55f78edf0b78262c0988e70ee9a630c35f45098dae37591c558b
+ md5: dd1e1c54432494476d66c679014c675c
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.3.0
+ - libzlib >=1.2.13,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zlib
+ license: CECILL-C
+ purls: []
+ size: 341039
+ timestamp: 1717069891622
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsdformat14-14.5.0-hb243517_0.conda
+ sha256: 04447ae32a70306978e45b33875fd65609979ff664bb6256f97f3e01ced4fc63
+ md5: 4c2e79729975be75981b1314c8f0f111
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libgz-math7 >=7.5.0,<8.0a0
+ - libgz-tools2 >=2.0.0,<3.0a0
+ - libgz-utils2 >=2.1.0,<3.0a0
+ - libstdcxx-ng >=12
+ - tinyxml2 >=10.0.0,<10.1.0a0
+ - urdfdom >=4.0.0,<4.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1096153
+ timestamp: 1722933800260
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsdformat14-14.5.0-hea37092_2.conda
+ sha256: b2568f702c963cd6b9c93567e38881f3c22bc5778697ae56d21cb0202999b39f
+ md5: 8740ef11d696ee72cd7ae7f749adb010
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - libgz-math7 >=7.5.1,<8.0a0
+ - libgz-tools2 >=2.0.1,<3.0a0
+ - libgz-utils2 >=2.2.0,<3.0a0
+ - libstdcxx >=13
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - urdfdom >=4.0.1,<4.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1117571
+ timestamp: 1743978928063
+- conda: https://prefix.dev/conda-forge/linux-64/libsdformat14-14.8.0-py313h39c33bd_2.conda
+ sha256: e62b01452964fc3c88777088afdfb1ae2b66b00299b1da9380b1c8781de6eca5
+ md5: deb02f1dc8045de577cc3c845ea7849a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libgz-math7 >=7.5.2,<8.0a0
+ - libgz-utils2 >=2.2.1,<3.0a0
+ - urdfdom >=4.0.1,<4.1.0a0
+ - libgz-cmake3 >=3.5.5,<4.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - libgz-tools >=2.0.3,<3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1236957
+ timestamp: 1759339825313
+- conda: https://prefix.dev/conda-forge/linux-64/libsdformat15-15.3.0-py312h1f51ce1_3.conda
+ sha256: 548e4abe1589149118ac29705792f4f2ba029bcf49b1ba77c575b45df4aad714
+ md5: 86617f3d3ac5bba1914a9a403ea36890
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libgz-math8 >=8.2.0,<9.0a0
+ - urdfdom >=4.0.1,<4.1.0a0
+ - libgz-tools >=2.0.3,<3.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - libgz-cmake4 >=4.2.0,<5.0a0
+ - libgz-utils3 >=3.1.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1404495
+ timestamp: 1759340798807
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
+ sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573
+ md5: ef1910918dd895516a769ed36b5b3a4e
+ depends:
+ - lame >=3.100,<3.101.0a0
+ - libflac >=1.4.3,<1.5.0a0
+ - libgcc-ng >=12
+ - libogg >=1.3.4,<1.4.0a0
+ - libopus >=1.3.1,<2.0a0
+ - libstdcxx-ng >=12
+ - libvorbis >=1.3.7,<1.4.0a0
+ - mpg123 >=1.32.1,<1.33.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 354372
+ timestamp: 1695747735668
+- conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc7d488a_2.conda
+ sha256: 57cb5f92110324c04498b96563211a1bca6a74b2918b1e8df578bfed03cc32e4
+ md5: 067590f061c9f6ea7e61e3b2112ed6b3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lame >=3.100,<3.101.0a0
+ - libflac >=1.5.0,<1.6.0a0
+ - libgcc >=14
+ - libogg >=1.3.5,<1.4.0a0
+ - libopus >=1.5.2,<2.0a0
+ - libstdcxx >=14
+ - libvorbis >=1.3.7,<1.4.0a0
+ - mpg123 >=1.32.9,<1.33.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 355619
+ timestamp: 1765181778282
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libspral-2025.03.06-h39c1cf3_0.conda
+ sha256: a4a6b0473ce4d7f74ee4ab128fc5acb2745914981a6c61982d19aaf574d0f3d8
+ md5: 23e84e1dc106ce0e073c0404f2f42a38
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - metis >=5.1.0,<5.1.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 356755
+ timestamp: 1741341231735
+- conda: https://prefix.dev/conda-forge/linux-64/libspral-2025.05.20-hfabd9d1_1.conda
+ sha256: c9faa24e14ecdcf666b79fab8961c93562d20626c473a5df108b5c17e8873ab2
+ md5: 9f54808199531c466b437215d8dd5c29
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - metis >=5.1.0,<5.1.1.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 360447
+ timestamp: 1756123740608
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
+ sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0
+ md5: 96a7e36bff29f1d0ddf5b771e0da373a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Unlicense
+ purls: []
+ size: 919819
+ timestamp: 1749232795476
+- conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-h0c1763c_0.conda
+ sha256: c1ff4589b48d32ca0a2628970d869fa9f7b2c2d00269a3761edc7e9e4c1ab7b8
+ md5: f7d30045eccb83f2bb8053041f42db3c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: blessing
+ purls: []
+ size: 939312
+ timestamp: 1768147967568
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
+ md5: eecce068c7e4eddeb169591baac20ac4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 304790
+ timestamp: 1745608545575
+- conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
+ sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
+ md5: eecce068c7e4eddeb169591baac20ac4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 304790
+ timestamp: 1745608545575
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_2.conda
+ sha256: 6ae3d153e78f6069d503d9309f2cac6de5b93d067fc6433160a4c05226a5dad4
+ md5: 1cb1c67961f6dd257eae9e9691b341aa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc 15.1.0 h767d61c_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 3902355
+ timestamp: 1746642227493
+- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
+ sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
+ md5: 1b08cd684f34175e4514474793d44bcb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc 15.2.0 he0feb66_18
+ constrains:
+ - libstdcxx-ng ==15.2.0=*_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 5852330
+ timestamp: 1771378262446
+- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-hc03c837_102.conda
+ sha256: abc89056d4ca7debe938504b3b6d9ccc6d7a0f0b528fe3409230636a21e81002
+ md5: aa38de2738c5f4a72a880e3d31ffe8b4
+ depends:
+ - __unix
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 12873130
+ timestamp: 1740240239655
+- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-14.3.0-h9f08a49_118.conda
+ sha256: b1c3824769b92a1486bf3e2cc5f13304d83ae613ea061b7bc47bb6080d6dfdba
+ md5: 865a399bce236119301ebd1532fced8d
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 20171098
+ timestamp: 1771377827750
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_2.conda
+ sha256: 11bea86e11de7d6bce87589197a383344df3fa0a3552dab7e931785ff1159a5b
+ md5: 9d2072af184b5caa29492bf2344597bb
+ depends:
+ - libstdcxx 15.1.0 h8f9b012_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 34647
+ timestamp: 1746642266826
+- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_18.conda
+ sha256: 3c902ffd673cb3c6ddde624cdb80f870b6c835f8bf28384b0016e7d444dd0145
+ md5: 6235adb93d064ecdf3d44faee6f468de
+ depends:
+ - libstdcxx 15.2.0 h934c35e_18
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ purls: []
+ size: 27575
+ timestamp: 1771378314494
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.4-h3dc2cb9_0.conda
+ sha256: 5a073ee10beb11a8616277b37f09971d14fe6b1311c1ab69620c030537f0eefd
+ md5: cb9e2966356c3cd8b91fc3998cc4eaa0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcap >=2.71,<2.72.0a0
+ - libgcc >=13
+ - libgcrypt-lib >=1.11.0,<2.0a0
+ - liblzma >=5.6.4,<6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 488348
+ timestamp: 1741612443852
+- conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.7-h4e0b6ca_0.conda
+ sha256: e26b22c0ae40fb6ad4356104d5fa4ec33fe8dd8a10e6aef36a9ab0c6a6f47275
+ md5: 1e12c8aa74fa4c3166a9bdc135bc4abf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcap >=2.75,<2.76.0a0
+ - libgcc >=13
+ - libgcrypt-lib >=1.11.1,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - lz4-c >=1.10.0,<1.11.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 487969
+ timestamp: 1750949895969
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.20.0-hb9d3cd8_0.conda
+ sha256: 5fd3b8a4a9719e3d1c08826c3dfe42eecc816a2aaf5c3849a85f11ff3c4b1b19
+ md5: 942cd32b349ec84fb3879955fa68f994
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 117531
+ timestamp: 1738889767884
+- conda: https://prefix.dev/conda-forge/linux-64/libtasn1-4.21.0-hb03c661_0.conda
+ sha256: a3f0c33ef567eb2e3a22d7fea0717a294a5fea4964478aa06b467ce1c93bec38
+ md5: 0ffe6217a3d09398155d32a2ddb41251
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 116738
+ timestamp: 1768297813301
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067
+ md5: 553281a034e9cf8693c9df49f6c78ea1
+ depends:
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 328924
+ timestamp: 1719667859099
+- conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067
+ md5: 553281a034e9cf8693c9df49f6c78ea1
+ depends:
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 328924
+ timestamp: 1719667859099
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda
+ sha256: 7fa6ddac72e0d803bb08e55090a8f2e71769f1eb7adbd5711bdd7789561601b1
+ md5: e79a094918988bb1807462cd42c83962
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.24,<1.25.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=13
+ - libwebp-base >=1.5.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: HPND
+ purls: []
+ size: 429575
+ timestamp: 1747067001268
+- conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.1-h8261f1e_0.conda
+ sha256: ddda0d7ee67e71e904a452010c73e32da416806f5cb9145fb62c322f97e717fb
+ md5: 72b531694ebe4e8aa6f5745d1015c1b4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.24,<1.25.0a0
+ - libgcc >=14
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libstdcxx >=14
+ - libwebp-base >=1.6.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ license: HPND
+ purls: []
+ size: 437211
+ timestamp: 1758278398952
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda
+ sha256: 65ebc2185cdc008f8da92864e8063e60293c59134b11b13e4bc44fd6f6e04eec
+ md5: 8b87f46f586167c54b2d4c0fd4a72001
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcap >=2.71,<2.72.0a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 143836
+ timestamp: 1741612453664
+- conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.7-hbe16f8c_0.conda
+ sha256: 3fca2655f4cf2ce6b618a2b52e3dce92f27f429732b88080567d5bbeea404c82
+ md5: 5a23e52bd654a5297bd3e247eebab5a3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcap >=2.75,<2.76.0a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 143533
+ timestamp: 1750949902296
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d
+ md5: 7245a044b4a1980ed83196176b78b73a
+ depends:
+ - libgcc-ng >=9.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only OR LGPL-3.0-only
+ purls: []
+ size: 1433436
+ timestamp: 1626955018689
+- conda: https://prefix.dev/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
+ sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d
+ md5: 7245a044b4a1980ed83196176b78b73a
+ depends:
+ - libgcc-ng >=9.3.0
+ license: GPL-3.0-only OR LGPL-3.0-only
+ purls: []
+ size: 1433436
+ timestamp: 1626955018689
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2
+ sha256: f2ac872920833960e514ce9efd8f7c08ce66dd870738d73839d1bce1ac497de6
+ md5: a730b2badd586580c5752cc73842e068
+ depends:
+ - libgcc-ng >=9.4.0
+ - libstdcxx-ng >=9.4.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 75491
+ timestamp: 1638450786937
+- conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.8.3-h65a8314_0.conda
+ sha256: 71c8b9d5c72473752a0bb6e91b01dd209a03916cb71f36cc6a564e3a2a132d7a
+ md5: e179a69edd30d75c0144d7a380b88f28
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 75995
+ timestamp: 1757032240102
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liburcu-0.14.0-hac33072_0.conda
+ sha256: 208ead1ed147f588c722ef9dec7656f538111b15fb85c04f645758fa4fa8e3c3
+ md5: 0b2b4f99717fe8f82dc21a3b0c504923
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 176874
+ timestamp: 1718888439831
+- conda: https://prefix.dev/conda-forge/linux-64/liburcu-0.14.0-hac33072_0.conda
+ sha256: 208ead1ed147f588c722ef9dec7656f538111b15fb85c04f645758fa4fa8e3c3
+ md5: 0b2b4f99717fe8f82dc21a3b0c504923
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 176874
+ timestamp: 1718888439831
+- conda: https://conda.anaconda.org/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda
+ sha256: bfa34a5a929d792dfcfbbe2d9ee21bd870d73d646512e21c871dab0b80194468
+ md5: ecd409e7bfcf4ee73f74d7a2cc91a4c3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 121336
+ timestamp: 1738604403935
+- conda: https://prefix.dev/conda-forge/linux-64/liburing-2.12-hb700be7_0.conda
+ sha256: 880b1f76b24814c9f07b33402e82fa66d5ae14738a35a943c21c4434eef2403d
+ md5: f0531fc1ebc0902555670e9cb0127758
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 127967
+ timestamp: 1756125594973
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda
+ sha256: 89c84f5b26028a9d0f5c4014330703e7dff73ba0c98f90103e9cef6b43a5323c
+ md5: d17e3fb595a9f24fa9e149239a33475d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libudev1 >=257.4
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 89551
+ timestamp: 1748856210075
+- conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda
+ sha256: 89c84f5b26028a9d0f5c4014330703e7dff73ba0c98f90103e9cef6b43a5323c
+ md5: d17e3fb595a9f24fa9e149239a33475d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libudev1 >=257.4
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 89551
+ timestamp: 1748856210075
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
+ md5: 40b61aab5c7ba9ff276c41cfffe6b80b
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 33601
+ timestamp: 1680112270483
+- conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.41.3-h5347b49_0.conda
+ sha256: 1a7539cfa7df00714e8943e18de0b06cceef6778e420a5ee3a2a145773758aee
+ md5: db409b7c1720428638e7c0d509d3e1b5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 40311
+ timestamp: 1766271528534
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb9d3cd8_0.conda
+ sha256: 770ca175d64323976c9fe4303042126b2b01c1bd54c8c96cafeaba81bdb481b8
+ md5: 1349c022c92c5efd3fd705a79a5804d8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 890145
+ timestamp: 1748304699136
+- conda: https://prefix.dev/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda
+ sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b
+ md5: 0f03292cc56bf91a077a134ea8747118
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 895108
+ timestamp: 1753948278280
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda
+ sha256: e0df324fb02fa05a05824b8db886b06659432b5cff39495c59e14a37aa23d40f
+ md5: 2c65566e79dc11318ce689c656fb551c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libdrm >=2.4.124,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - wayland >=1.23.1,<2.0a0
+ - wayland-protocols
+ - xorg-libx11 >=1.8.11,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 217567
+ timestamp: 1740897682004
+- conda: https://prefix.dev/conda-forge/linux-64/libva-2.23.0-he1eb515_0.conda
+ sha256: 255c7d00b54e26f19fad9340db080716bced1d8539606e2b8396c57abd40007c
+ md5: 25813fe38b3e541fc40007592f12bae5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=14
+ - libgl >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - wayland >=1.24.0,<2.0a0
+ - wayland-protocols
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.2,<7.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 221308
+ timestamp: 1765652453244
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
+ sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33
+ md5: 309dec04b70a3cc0f1e84a4013683bc0
+ depends:
+ - libgcc-ng >=9.3.0
+ - libogg >=1.3.4,<1.4.0a0
+ - libstdcxx-ng >=9.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 286280
+ timestamp: 1610609811627
+- conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda
+ sha256: ca494c99c7e5ecc1b4cd2f72b5584cef3d4ce631d23511184411abcbb90a21a5
+ md5: b4ecbefe517ed0157c37f8182768271c
+ depends:
+ - libogg
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libogg >=1.3.5,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 285894
+ timestamp: 1753879378005
+- conda: https://prefix.dev/conda-forge/linux-64/libvpl-2.15.0-h54a6638_1.conda
+ sha256: bf0010d93f5b154c59bd9d3cc32168698c1d24f2904729f4693917cce5b27a9f
+ md5: a41a299c157cc6d0eff05e5fc298cc45
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - intel-media-driver >=25.3.3,<25.4.0a0
+ - libva >=2.22.0,<3.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 287944
+ timestamp: 1757278954789
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13
+ md5: cde393f461e0c169d9ffb2fc70f81c33
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1022466
+ timestamp: 1717859935011
+- conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13
+ md5: cde393f461e0c169d9ffb2fc70f81c33
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1022466
+ timestamp: 1717859935011
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - libwebp 1.5.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 429973
+ timestamp: 1734777489810
+- conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda
+ sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b
+ md5: aea31d2e5b1091feca96fcfe945c3cf9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ constrains:
+ - libwebp 1.6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 429011
+ timestamp: 1752159441324
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
+ md5: 92ed62436b625154323d40d5f2f11dd7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 395888
+ timestamp: 1727278577118
+- conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
+ md5: 92ed62436b625154323d40d5f2f11dd7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 395888
+ timestamp: 1727278577118
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 100393
+ timestamp: 1702724383534
+- conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 100393
+ timestamp: 1702724383534
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.10.0-h65c71a3_0.conda
+ sha256: a8043a46157511b3ceb6573a99952b5c0232313283f2d6a066cec7c8dcaed7d0
+ md5: fedf6bfe5d21d21d2b1785ec00a8889a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - xkeyboard-config
+ - xorg-libxau >=1.0.12,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT/X11 Derivative
+ license_family: MIT
+ purls: []
+ size: 707156
+ timestamp: 1747911059945
+- conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.11.0-he8b52b9_0.conda
+ sha256: 23f47e86cc1386e7f815fa9662ccedae151471862e971ea511c5c886aa723a54
+ md5: 74e91c36d0eef3557915c68b6c2bef96
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - xkeyboard-config
+ - xorg-libxau >=1.0.12,<2.0a0
+ license: MIT/X11 Derivative
+ license_family: MIT
+ purls: []
+ size: 791328
+ timestamp: 1754703902365
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.8-h4bc477f_0.conda
+ sha256: b0b3a96791fa8bb4ec030295e8c8bf2d3278f33c0f9ad540e73b5e538e6268e7
+ md5: 14dbe05b929e329dbaa6f2d0aa19466d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 690864
+ timestamp: 1746634244154
+- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.9-h04c0eec_0.conda
+ sha256: 5d12e993894cb8e9f209e2e6bef9c90fa2b7a339a1f2ab133014b71db81f5d88
+ md5: 35eeb0a2add53b1e50218ed230fa6a02
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=14
+ - libiconv >=1.18,<2.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 697033
+ timestamp: 1761766011241
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3
+ md5: e71f31f8cfb0a91439f2086fc8aa0461
+ depends:
+ - libgcc-ng >=12
+ - libxml2 >=2.12.1,<2.14.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 254297
+ timestamp: 1701628814990
+- conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.43-h7a3aeb2_0.conda
+ sha256: 35ddfc0335a18677dd70995fa99b8f594da3beb05c11289c87b6de5b930b47a3
+ md5: 31059dc620fa57d787e3899ed0421e6d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxml2 >=2.13.8,<2.14.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 244399
+ timestamp: 1753273455036
+- conda: https://prefix.dev/conda-forge/linux-64/libzenohc-1.5.1-hfad6b34_0.conda
+ sha256: 76b01f2e3a6d716603e5c189e770f16417cf7349272d187364c9d6936812d4d6
+ md5: 7b349cf7a3da44dabc4a6cacc957c9cb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - zenoh-rust-abi >=1.5.1.1.85.0,<1.5.1.1.85.1.0a0
+ constrains:
+ - __glibc >=2.17
+ license: Apache-2.0 OR EPL-2.0
+ purls: []
+ size: 4531745
+ timestamp: 1757054523402
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48
+ md5: a7b27c075c9b7f459f1c022090697cba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 109043
+ timestamp: 1730442108429
+- conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48
+ md5: a7b27c075c9b7f459f1c022090697cba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 109043
+ timestamp: 1730442108429
+- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 60963
+ timestamp: 1727963148474
+- conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 60963
+ timestamp: 1727963148474
+- conda: https://conda.anaconda.org/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ sha256: e4a07f357a4cf195a2345dabd98deab80f4d53574abe712a9cc7f22d3f2cc2c3
+ md5: 49647ac1de4d1e4b49124aedf3934e02
+ depends:
+ - __unix
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/loguru?source=hash-mapping
+ size: 59696
+ timestamp: 1746634858826
+- conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda
+ sha256: e4a07f357a4cf195a2345dabd98deab80f4d53574abe712a9cc7f22d3f2cc2c3
+ md5: 49647ac1de4d1e4b49124aedf3934e02
+ depends:
+ - __unix
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/loguru?source=hash-mapping
+ size: 59696
+ timestamp: 1746634858826
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lttng-ust-2.13.9-hf5eda4c_0.conda
+ sha256: 77ea6f9546bb8e4d6050b4ad8efb9bfb2177e9173a03b4d9eae6fd8ce1056431
+ md5: bf1ee9cd230a64573a8b7745c6aaa593
+ depends:
+ - liburcu
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - liburcu >=0.14.0,<0.15.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ purls: []
+ size: 375355
+ timestamp: 1745310024643
+- conda: https://prefix.dev/conda-forge/linux-64/lttng-ust-2.13.9-hf5eda4c_0.conda
+ sha256: 77ea6f9546bb8e4d6050b4ad8efb9bfb2177e9173a03b4d9eae6fd8ce1056431
+ md5: bf1ee9cd230a64573a8b7745c6aaa593
+ depends:
+ - liburcu
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - liburcu >=0.14.0,<0.15.0a0
+ license: LGPL-2.1-only
+ purls: []
+ size: 375355
+ timestamp: 1745310024643
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.4.0-py311hbd2c71b_0.conda
+ sha256: 87fb5cc03e97a21b353fea5400a9f2eeea239a68c83f1e674fcd365bbbb699b0
+ md5: 8f918de217abd92a1197cd0ef3b5ce16
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxml2 >=2.13.7,<2.14.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1390077
+ timestamp: 1745414121627
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.4.0-py312h68d7fa5_0.conda
+ sha256: ee072aef31b8ec89bed4600ceb4c73aea81c2246c3244b2872571584b5dce045
+ md5: 9143d654930fa7d0ad1e351705419cb5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxml2 >=2.13.7,<2.14.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1404621
+ timestamp: 1745414227771
+- conda: https://prefix.dev/conda-forge/linux-64/lxml-6.0.2-py312h70dad80_0.conda
+ sha256: 287f5f493fad7bbac48ac3976e21f5526488e99e19c43b87c3cfaaf89b79b42b
+ md5: d581cee70d9c039d7e31ed65b2f874c4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libxslt >=1.1.43,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1604566
+ timestamp: 1758535320510
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-4.4.4-py312hf0f0c11_0.conda
+ sha256: a04aff570a27173eea3a2b515b4794ce20e058b658f642475f72ccc1f6d88cff
+ md5: f770ae71fc1800e7a735a7b452c0ab81
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - lz4-c >=1.10.0,<1.11.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/lz4?source=hash-mapping
+ size: 40315
+ timestamp: 1746562078119
+- conda: https://prefix.dev/conda-forge/linux-64/lz4-4.4.5-py312h3d67a73_1.conda
+ sha256: e8ae9141c7afcc95555fca7ff5f91d7a84f094536715211e750569fd4bb2caa4
+ md5: a669145a2c834895bdf3fcba1f1e5b9c
+ depends:
+ - python
+ - lz4-c
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.12.* *_cp312
+ - lz4-c >=1.10.0,<1.11.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/lz4?source=hash-mapping
+ size: 44154
+ timestamp: 1765026394687
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346
+ md5: 9de5350a85c4a20c685259b889aa6393
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 167055
+ timestamp: 1733741040117
+- conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda
+ sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346
+ md5: 9de5350a85c4a20c685259b889aa6393
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 167055
+ timestamp: 1733741040117
+- conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126
+ md5: ec7398d21e2651e0dcb0044d03b9a339
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ purls: []
+ size: 171416
+ timestamp: 1713515738503
+- conda: https://prefix.dev/conda-forge/linux-64/lzo-2.10-h280c20c_1002.conda
+ sha256: 5c6bbeec116e29f08e3dad3d0524e9bc5527098e12fc432c0e5ca53ea16337d4
+ md5: 45161d96307e3a447cc3eb5896cf6f8c
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 191060
+ timestamp: 1753889274283
+- conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ sha256: d652c7bd4d3b6f82b0f6d063b0d8df6f54cc47531092d7ff008e780f3261bdda
+ md5: 33405d2a66b1411db9f7242c8b97c9e7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 513088
+ timestamp: 1727801714848
+- conda: https://prefix.dev/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda
+ sha256: d652c7bd4d3b6f82b0f6d063b0d8df6f54cc47531092d7ff008e780f3261bdda
+ md5: 33405d2a66b1411db9f7242c8b97c9e7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 513088
+ timestamp: 1727801714848
+- pypi: https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl
+ name: markdown
+ version: 3.10.2
+ sha256: e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36
+ requires_dist:
+ - coverage ; extra == 'testing'
+ - pyyaml ; extra == 'testing'
+ - mkdocs>=1.6 ; extra == 'docs'
+ - mkdocs-nature>=0.6 ; extra == 'docs'
+ - mdx-gh-links>=0.2 ; extra == 'docs'
+ - mkdocstrings[python]>=0.28.3 ; extra == 'docs'
+ - mkdocs-gen-files ; extra == 'docs'
+ - mkdocs-section-index ; extra == 'docs'
+ - mkdocs-literate-nav ; extra == 'docs'
+ requires_python: '>=3.10'
+- pypi: https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ name: markupsafe
+ version: 3.0.3
+ sha256: ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda
+ sha256: 0291d90706ac6d3eea73e66cd290ef6d805da3fad388d1d476b8536ec92ca9a8
+ md5: 6565a715337ae279e351d0abd8ffe88a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - jinja2 >=3.0.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 25354
+ timestamp: 1733219879408
+- conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda
+ sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5
+ md5: eb227c3e0bf58f5bd69c0532b157975b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 24604
+ timestamp: 1733219911494
+- conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.3-py312h8a5da7c_0.conda
+ sha256: f77f9f1a4da45cbc8792d16b41b6f169f649651a68afdc10b2da9da12b9aa42b
+ md5: f775a43412f7f3d7ed218113ad233869
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 25321
+ timestamp: 1759055268795
+- conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.3-py311h2b939e6_0.conda
+ sha256: 39e54c0b54c374c9b27e4ba5dcf78220ce346007c39be9c83441f1eb4a4e33f1
+ md5: 0d1b7dfe2bbf983cb7907f6cbd6613e6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.11,<3.12.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.11.* *_cp311
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/matplotlib?source=hash-mapping
+ size: 8302117
+ timestamp: 1746820694094
+- conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.10.3-py312hd3ec401_0.conda
+ sha256: 3b5be100ddfcd5697140dbb8d4126e3afd0147d4033defd6c6eeac78fe089bd2
+ md5: 2d69618b52d70970c81cc598e4b51118
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/matplotlib?source=hash-mapping
+ size: 8188885
+ timestamp: 1746820680864
+- conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.8-py312he3d6523_0.conda
+ sha256: 70cf0e7bfd50ef50eb712a6ca1eef0ef0d63b7884292acc81353327b434b548c
+ md5: b8dc157bbbb69c1407478feede8b7b42
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype
+ - kiwisolver >=1.3.1
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libstdcxx >=14
+ - numpy >=1.23
+ - numpy >=1.23,<3
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/matplotlib?source=hash-mapping
+ size: 8442149
+ timestamp: 1763055517581
+- conda: https://conda.anaconda.org/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
+ md5: 827064ddfe0de2917fb29f1da4f8f533
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mccabe?source=hash-mapping
+ size: 12934
+ timestamp: 1733216573915
+- conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda
+ sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1
+ md5: 827064ddfe0de2917fb29f1da4f8f533
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mccabe?source=hash-mapping
+ size: 12934
+ timestamp: 1733216573915
+- pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
+ name: mergedeep
+ version: 1.3.4
+ sha256: 70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307
+ requires_python: '>=3.6'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7
+ md5: 28eb714416de4eb83e2cbc47e99a1b45
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 3923560
+ timestamp: 1728064567817
+- conda: https://prefix.dev/conda-forge/linux-64/metis-5.1.0-hd0bcaf9_1007.conda
+ sha256: e8a00971e6d00bd49f375c5d8d005b37a9abba0b1768533aed0f90a422bf5cc7
+ md5: 28eb714416de4eb83e2cbc47e99a1b45
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 3923560
+ timestamp: 1728064567817
+- pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
+ name: mkdocs
+ version: 1.6.1
+ sha256: db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e
+ requires_dist:
+ - click>=7.0
+ - colorama>=0.4 ; sys_platform == 'win32'
+ - ghp-import>=1.0
+ - importlib-metadata>=4.4 ; python_full_version < '3.10'
+ - jinja2>=2.11.1
+ - markdown>=3.3.6
+ - markupsafe>=2.0.1
+ - mergedeep>=1.3.4
+ - mkdocs-get-deps>=0.2.0
+ - packaging>=20.5
+ - pathspec>=0.11.1
+ - pyyaml-env-tag>=0.1
+ - pyyaml>=5.1
+ - watchdog>=2.0
+ - babel>=2.9.0 ; extra == 'i18n'
+ - babel==2.9.0 ; extra == 'min-versions'
+ - click==7.0 ; extra == 'min-versions'
+ - colorama==0.4 ; sys_platform == 'win32' and extra == 'min-versions'
+ - ghp-import==1.0 ; extra == 'min-versions'
+ - importlib-metadata==4.4 ; python_full_version < '3.10' and extra == 'min-versions'
+ - jinja2==2.11.1 ; extra == 'min-versions'
+ - markdown==3.3.6 ; extra == 'min-versions'
+ - markupsafe==2.0.1 ; extra == 'min-versions'
+ - mergedeep==1.3.4 ; extra == 'min-versions'
+ - mkdocs-get-deps==0.2.0 ; extra == 'min-versions'
+ - packaging==20.5 ; extra == 'min-versions'
+ - pathspec==0.11.1 ; extra == 'min-versions'
+ - pyyaml-env-tag==0.1 ; extra == 'min-versions'
+ - pyyaml==5.1 ; extra == 'min-versions'
+ - watchdog==2.0 ; extra == 'min-versions'
+ requires_python: '>=3.8'
+- pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
+ name: mkdocs-get-deps
+ version: 0.2.0
+ sha256: 2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134
+ requires_dist:
+ - importlib-metadata>=4.3 ; python_full_version < '3.10'
+ - mergedeep>=1.3.4
+ - platformdirs>=2.2.0
+ - pyyaml>=5.1
+ requires_python: '>=3.8'
+- pypi: https://files.pythonhosted.org/packages/3e/32/ed071cb721aca8c227718cffcf7bd539620e9799bbf2619e90c757bfd030/mkdocs_material-9.7.1-py3-none-any.whl
+ name: mkdocs-material
+ version: 9.7.1
+ sha256: 3f6100937d7d731f87f1e3e3b021c97f7239666b9ba1151ab476cabb96c60d5c
+ requires_dist:
+ - babel>=2.10
+ - backrefs>=5.7.post1
+ - colorama>=0.4
+ - jinja2>=3.1
+ - markdown>=3.2
+ - mkdocs-material-extensions>=1.3
+ - mkdocs>=1.6
+ - paginate>=0.5
+ - pygments>=2.16
+ - pymdown-extensions>=10.2
+ - requests>=2.30
+ - mkdocs-git-committers-plugin-2>=1.1,<3 ; extra == 'git'
+ - mkdocs-git-revision-date-localized-plugin~=1.2,>=1.2.4 ; extra == 'git'
+ - cairosvg~=2.6 ; extra == 'imaging'
+ - pillow>=10.2,<12.0 ; extra == 'imaging'
+ - mkdocs-minify-plugin~=0.7 ; extra == 'recommended'
+ - mkdocs-redirects~=1.2 ; extra == 'recommended'
+ - mkdocs-rss-plugin~=1.6 ; extra == 'recommended'
+ requires_python: '>=3.8'
+- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
+ name: mkdocs-material-extensions
+ version: 1.3.1
+ sha256: adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31
+ requires_python: '>=3.8'
+- pypi: https://files.pythonhosted.org/packages/43/82/dd8e3798b2bb75fd10a8f524b2bf8765d2cd396f21912333abffdd1e6666/mkdoxy-1.2.8-py3-none-any.whl
+ name: mkdoxy
+ version: 1.2.8
+ sha256: 6bcc60a5409fb2b8f845d5ed69aa010f35569ea8ae2208172e1580f0d375b4a1
+ requires_dist:
+ - mkdocs
+ - mkdocs-material~=9.6.18 ; extra == 'dev'
+ - mkdocs-open-in-new-tab~=1.0.8 ; extra == 'dev'
+ - pathlib~=1.0.1 ; extra == 'dev'
+ - isort~=6.0.1 ; extra == 'dev'
+ - pytest~=8.4.1 ; extra == 'dev'
+ - pre-commit~=4.3.0 ; extra == 'dev'
+ - setuptools~=80.9.0 ; extra == 'dev'
+ - build~=1.3.0 ; extra == 'dev'
+ - twine~=6.1.0 ; extra == 'dev'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda
+ sha256: 39c4700fb3fbe403a77d8cc27352fa72ba744db487559d5d44bf8411bb4ea200
+ md5: c7f302fd11eeb0987a6a5e1f3aed6a21
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only
+ license_family: LGPL
+ purls: []
+ size: 491140
+ timestamp: 1730581373280
+- conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda
+ sha256: 39c4700fb3fbe403a77d8cc27352fa72ba744db487559d5d44bf8411bb4ea200
+ md5: c7f302fd11eeb0987a6a5e1f3aed6a21
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LGPL-2.1-only
+ license_family: LGPL
+ purls: []
+ size: 491140
+ timestamp: 1730581373280
+- conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda
+ sha256: f07aafd9e9adddf66b75630b4f68784e22ce63ae9e0887711a7386ceb2506fca
+ md5: d0898973440adc2ad25917028669126d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/msgpack?source=hash-mapping
+ size: 103109
+ timestamp: 1749813330034
+- conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.1-py312h68727a3_0.conda
+ sha256: 969b8e50922b592228390c25ac417c0761fd6f98fccad870ac5cc84f35da301a
+ md5: 6998b34027ecc577efe4e42f4b022a98
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/msgpack?source=hash-mapping
+ size: 102924
+ timestamp: 1749813333354
+- conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.2-py312hd9148b4_1.conda
+ sha256: 94068fd39d1a672f8799e3146a18ba4ef553f0fcccefddb3c07fbdabfd73667a
+ md5: 2e489969e38f0b428c39492619b5e6e5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/msgpack?source=hash-mapping
+ size: 102525
+ timestamp: 1762504116832
+- conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.4.4-py311h2dc5d0c_0.conda
+ sha256: ea7af4ad113255613cd5b058dc36dab44484240b0105751f5c7dcd3bd7fb3a08
+ md5: cf1ae2989d73b0e6d86f2ee7c08d7a9b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/multidict?source=hash-mapping
+ size: 87715
+ timestamp: 1747722625336
+- conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.4.4-py312h178313f_0.conda
+ sha256: 8c6730f3f5a42cfb79344067082a4eaca826f56ed799885ec59563d9fc6ea653
+ md5: 93bba0d9fb1c83e7642363c9f8062bd2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/multidict?source=hash-mapping
+ size: 86468
+ timestamp: 1747722693913
+- conda: https://prefix.dev/conda-forge/linux-64/multidict-6.7.0-py312h8a5da7c_0.conda
+ sha256: e56ac750fee1edb47a0390984c4725d8ce86c243f27119e30ceaac5c68e300cf
+ md5: 9fe4c848dd01cde9b8d0073744d4eef8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/multidict?source=hash-mapping
+ size: 99537
+ timestamp: 1765460650128
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a
+ md5: d6c7d8811686ed912ed4317831dd8c44
+ channel: https://fast.prefix.dev/conda-forge
+ license: CECILL-C
+ purls: []
+ size: 20755
+ timestamp: 1745406913902
+- conda: https://prefix.dev/conda-forge/linux-64/mumps-include-5.7.3-h82cca05_10.conda
+ sha256: c723d6e331444411db0a871958fc45621758595d12b4d6561fa20324535ce67a
+ md5: d6c7d8811686ed912ed4317831dd8c44
+ license: CECILL-C
+ purls: []
+ size: 20755
+ timestamp: 1745406913902
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ sha256: 32facdad34df86928ed1632264b943c87174edeb9d74ccfaaf353f8a669579c2
+ md5: d524b41c7757ea147337039fa4158fbb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.4.0
+ - liblapack >=3.9.0,<4.0a0
+ - libscotch >=7.0.4,<7.0.5.0a0
+ - metis >=5.1.0,<5.1.1.0a0
+ - mumps-include >=5.7.3,<5.7.4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: CECILL-C
+ purls: []
+ size: 2029763
+ timestamp: 1722844276781
+- conda: https://prefix.dev/conda-forge/linux-64/mumps-seq-5.7.3-h27a6a8b_0.conda
+ sha256: 32facdad34df86928ed1632264b943c87174edeb9d74ccfaaf353f8a669579c2
+ md5: d524b41c7757ea147337039fa4158fbb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libgcc-ng >=12
+ - libgfortran-ng
+ - libgfortran5 >=12.4.0
+ - liblapack >=3.9.0,<4.0a0
+ - libscotch >=7.0.4,<7.0.5.0a0
+ - metis >=5.1.0,<5.1.1.0a0
+ - mumps-include >=5.7.3,<5.7.4.0a0
+ license: CECILL-C
+ purls: []
+ size: 2029763
+ timestamp: 1722844276781
+- conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
+ md5: 37293a85a0f4f77bbd9cf7aaefc62609
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/munkres?source=hash-mapping
+ size: 15851
+ timestamp: 1749895533014
+- conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda
+ sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90
+ md5: 37293a85a0f4f77bbd9cf7aaefc62609
+ depends:
+ - python >=3.9
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/munkres?source=hash-mapping
+ size: 15851
+ timestamp: 1749895533014
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-9.0.1-h266115a_6.conda
+ sha256: 9c2e3f9e9883e4b8d7e9e6abf7b235dc00bdcd5ef66640a360464a9f5756294d
+ md5: 94116b69829e90b72d566e64421e1bff
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.4.1,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 616215
+ timestamp: 1744124836761
+- conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_6.conda
+ sha256: 274467a602944d12722f757f660ad034de6f5f5d7d2ea1b913ef6fd836c1b8ce
+ md5: 9802ae6d20982f42c0f5d69008988763
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-common 9.0.1 h266115a_6
+ - openssl >=3.4.1,<4.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 1369369
+ timestamp: 1744124916632
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
+ md5: 47e340acb35de30501a76c7c799c41d7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: X11 AND BSD-3-Clause
+ purls: []
+ size: 891641
+ timestamp: 1738195959188
+- conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
+ sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
+ md5: 47e340acb35de30501a76c7c799c41d7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: X11 AND BSD-3-Clause
+ purls: []
+ size: 891641
+ timestamp: 1738195959188
+- conda: https://conda.anaconda.org/conda-forge/linux-64/netifaces-0.11.0-py311h9ecbd09_3.conda
+ sha256: 3cac2f9846f824b5dec81898b5d295b7ab69c8d88fb00ba4967119ded05d22bf
+ md5: a838f1ff02af237e3d600fefc286558b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/netifaces?source=hash-mapping
+ size: 19638
+ timestamp: 1735935203437
+- conda: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ sha256: 00b5a5e394d58cff5b08e0082699e773dd41995130bc14747740a16d9cacdd2c
+ md5: 618bf3007df69a0ca9306ed8d6b48b48
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - gmp >=6.3.0,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ purls: []
+ size: 1047686
+ timestamp: 1748012178395
+- conda: https://prefix.dev/conda-forge/linux-64/nettle-3.10.1-h4a9d5aa_0.conda
+ sha256: 00b5a5e394d58cff5b08e0082699e773dd41995130bc14747740a16d9cacdd2c
+ md5: 618bf3007df69a0ca9306ed8d6b48b48
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - gmp >=6.3.0,<7.0a0
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ purls: []
+ size: 1047686
+ timestamp: 1748012178395
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-hff21bea_1.conda
+ sha256: 1f2f7e26084971e87bfbb733f17d824ff3323ee9618fb713ae9932386da76aed
+ md5: 2322531904f27501ee19847b87ba7c64
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 161883
+ timestamp: 1745526264371
+- conda: https://prefix.dev/conda-forge/linux-64/ninja-1.13.2-h171cf75_0.conda
+ sha256: 6f7d59dbec0a7b00bf5d103a4306e8886678b796ff2151b62452d4582b2a53fb
+ md5: b518e9e92493721281a60fa975bddc65
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 186323
+ timestamp: 1763688260928
+- conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda
+ sha256: e2fc624d6f9b2f1b695b6be6b905844613e813aa180520e73365062683fe7b49
+ md5: d76872d096d063e226482c99337209dc
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 135906
+ timestamp: 1744445169928
+- conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h54a6638_1.conda
+ sha256: fd2cbd8dfc006c72f45843672664a8e4b99b2f8137654eaae8c3d46dca776f63
+ md5: 16c2a0e9c4a166e53632cfca4f68d020
+ constrains:
+ - nlohmann_json-abi ==3.12.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 136216
+ timestamp: 1758194284857
+- pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
+ name: nodeenv
+ version: 1.10.0
+ sha256: 5bb13e3eed2923615535339b3c620e76779af4cb4c6a90deccc9e36b274d3827
+ requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.36-h5888daf_0.conda
+ sha256: a87471d9265a7c02a98c20debac8b13afd80963968ed7b1c1c2ac7b80955ce31
+ md5: de9cd5bca9e4918527b9b72b6e2e1409
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 230204
+ timestamp: 1729545773406
+- conda: https://prefix.dev/conda-forge/linux-64/nspr-4.38-h29cc59b_0.conda
+ sha256: e3664264bd936c357523b55c71ed5a30263c6ba278d726a75b1eb112e6fb0b64
+ md5: e235d5566c9cc8970eb2798dd4ecf62f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 228588
+ timestamp: 1762348634537
+- conda: https://conda.anaconda.org/conda-forge/linux-64/nss-3.112-h159eef7_0.conda
+ sha256: fba790fc41c331878480fcc818a5bd76f58fd9f3ab273569994faf100d4e6013
+ md5: 688a8bc02e57e6b741a040c84e931a7d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libsqlite >=3.49.2,<4.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - nspr >=4.36,<5.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 2005432
+ timestamp: 1748362992069
+- conda: https://prefix.dev/conda-forge/linux-64/nss-3.118-h445c969_0.conda
+ sha256: 44dd98ffeac859d84a6dcba79a2096193a42fc10b29b28a5115687a680dd6aea
+ md5: 567fbeed956c200c1db5782a424e58ee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libsqlite >=3.51.0,<4.0a0
+ - libstdcxx >=14
+ - libzlib >=1.3.1,<2.0a0
+ - nspr >=4.38,<5.0a0
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 2057773
+ timestamp: 1763485556350
+- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda
+ sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149
+ md5: a502d7aad449a1206efb366d6a12c52d
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc-ng >=12
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx-ng >=12
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ constrains:
+ - numpy-base <0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 8065890
+ timestamp: 1707225944355
+- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
+ sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8
+ md5: d8285bea2a350f63fab23bf460221f3f
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc-ng >=12
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx-ng >=12
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7484186
+ timestamp: 1707225809722
+- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.3.0-py313h17eae1a_0.conda
+ sha256: 8b88ade24df5229c5d76c5ef09568ae4630b1095982e94648fbbeb18f475aa61
+ md5: db18a34466bef0863e9301b518a75e8f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ constrains:
+ - numpy-base <0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 8545037
+ timestamp: 1749430954481
+- conda: https://prefix.dev/conda-forge/linux-64/numpy-2.4.2-py312h33ff503_1.conda
+ sha256: fec4d37e1a7c677ddc07bb968255df74902733398b77acc1d05f9dc599e879df
+ md5: 3569a8fca2dd3202e4ab08f42499f6d3
+ depends:
+ - python
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - liblapack >=3.9.0,<4.0a0
+ - python_abi 3.12.* *_cp312
+ - libcblas >=3.9.0,<4.0a0
+ - libblas >=3.9.0,<4.0a0
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 8757566
+ timestamp: 1770098484112
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
+ sha256: 2254dae821b286fb57c61895f2b40e3571a070910fdab79a948ff703e1ea807b
+ md5: 56f8947aa9d5cf37b0b3d43b83f34192
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - opencl-headers >=2024.10.24
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 106742
+ timestamp: 1743700382939
+- conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda
+ sha256: 2254dae821b286fb57c61895f2b40e3571a070910fdab79a948ff703e1ea807b
+ md5: 56f8947aa9d5cf37b0b3d43b83f34192
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - opencl-headers >=2024.10.24
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 106742
+ timestamp: 1743700382939
+- conda: https://conda.anaconda.org/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ sha256: 9b5bcc8be93c8da5be803be357d1096c190339018f688f509a0a295e04fb98be
+ md5: 0dfda663c7d58e8c35c96239ed57c16f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 234800
+ timestamp: 1728635293810
+- conda: https://prefix.dev/conda-forge/linux-64/octomap-1.10.0-h84d6215_0.conda
+ sha256: 9b5bcc8be93c8da5be803be357d1096c190339018f688f509a0a295e04fb98be
+ md5: 0dfda663c7d58e8c35c96239ed57c16f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 234800
+ timestamp: 1728635293810
+- conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
+ sha256: 2b6ce54174ec19110e1b3c37455f7cd138d0e228a75727a9bba443427da30a36
+ md5: 45c3d2c224002d6d0d7769142b29f986
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ purls: []
+ size: 55357
+ timestamp: 1749853464518
+- conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda
+ sha256: 2b6ce54174ec19110e1b3c37455f7cd138d0e228a75727a9bba443427da30a36
+ md5: 45c3d2c224002d6d0d7769142b29f986
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 55357
+ timestamp: 1749853464518
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.3.4-h2cd1444_0.conda
+ sha256: 91f2d6bee02f1ad876f2d2f7e4cd00993b77513b460b395672bde04c7ef3e7fb
+ md5: e10f915be2fee16e00d314ae406c983b
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ - libdeflate >=1.24,<1.25.0a0
+ - imath >=3.1.12,<3.1.13.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1319519
+ timestamp: 1749538914449
+- conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h608838b_1.conda
+ sha256: d07e5997570678bfd562052e23f4dae8ec2223de24ad0e0fa58bd34c89aecf46
+ md5: 0d8aa07938b8ac5b0aaec781793d39a1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - imath >=3.2.1,<3.2.2.0a0
+ - libdeflate >=1.24,<1.25.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1325690
+ timestamp: 1755533954562
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda
+ sha256: dedda20c58aec3d8f9c12e3660225608b93a257a21e0da703fdd814789291519
+ md5: d1b18a73fc3cfd0de9c7e786d2febb8f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 727504
+ timestamp: 1731068122274
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda
+ sha256: 3f231f2747a37a58471c82a9a8a80d92b7fece9f3fce10901a5ac888ce00b747
+ md5: b28cf020fd2dead0ca6d113608683842
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 731471
+ timestamp: 1739400677213
+- conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda
+ sha256: 3f231f2747a37a58471c82a9a8a80d92b7fece9f3fce10901a5ac888ce00b747
+ md5: b28cf020fd2dead0ca6d113608683842
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 731471
+ timestamp: 1739400677213
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
+ sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39
+ md5: 9e5816bc95d285c115a3ebc2f8563564
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libpng >=1.6.44,<1.7.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 342988
+ timestamp: 1733816638720
+- conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.4-h55fea9a_0.conda
+ sha256: 3900f9f2dbbf4129cf3ad6acf4e4b6f7101390b53843591c53b00f034343bc4d
+ md5: 11b3379b191f63139e29c0d19dee24cd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libpng >=1.6.50,<1.7.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.1,<4.8.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 355400
+ timestamp: 1758489294972
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ sha256: cb0b07db15e303e6f0a19646807715d28f1264c6350309a559702f4f34f37892
+ md5: 2e5bf4f1da39c0b32778561c3c4e5878
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.5.0,<4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: OLDAP-2.8
+ license_family: BSD
+ purls: []
+ size: 780253
+ timestamp: 1748010165522
+- conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda
+ sha256: cb0b07db15e303e6f0a19646807715d28f1264c6350309a559702f4f34f37892
+ md5: 2e5bf4f1da39c0b32778561c3c4e5878
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.5.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ purls: []
+ size: 780253
+ timestamp: 1748010165522
+- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda
+ sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0
+ md5: de356753cfdbffcde5bb1e86e3aa6cd0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ca-certificates
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 3117410
+ timestamp: 1746223723843
+- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
+ sha256: 44c877f8af015332a5d12f5ff0fb20ca32f896526a7d0cdb30c769df1144fb5c
+ md5: f61eb8cd60ff9057122a3d338b99c00f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ca-certificates
+ - libgcc >=14
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 3164551
+ timestamp: 1769555830639
+- conda: https://conda.anaconda.org/conda-forge/linux-64/orocos-kdl-1.5.1-h5888daf_8.conda
+ sha256: 2c32fc459cabed3b272b3d41c63a869de3bee69636dee39519005fbc3e9c7b64
+ md5: 81554d1604c59c8eabf592eacd1f561a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 388297
+ timestamp: 1729197896717
+- conda: https://prefix.dev/conda-forge/linux-64/orocos-kdl-1.5.3-hecca717_0.conda
+ sha256: f1ac73e2a809a0e838e55afd521313a441d2d159621d2295a65700c7d519ead8
+ md5: 9b780914fe0015a0d18631a4b32e5446
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=14
+ - libstdcxx >=14
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 387599
+ timestamp: 1760695564119
+- conda: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2
+ sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d
+ md5: 56ee94e34b71742bbdfa832c974e47a8
+ depends:
+ - libffi >=3.4.2,<3.5.0a0
+ - libgcc-ng >=12
+ - libtasn1 >=4.18.0,<5.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 4702497
+ timestamp: 1654868759643
+- conda: https://prefix.dev/conda-forge/linux-64/p11-kit-0.26.2-h3435931_0.conda
+ sha256: f63962d24d81d4fafa15112c03cd5db1fddadd520fdb2ad7ec71a1689e8e694f
+ md5: 312989f1b7318c3763fffdc78df8474e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libtasn1 >=4.21.0,<5.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3831848
+ timestamp: 1770417713801
+- pypi: https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl
+ name: packaging
+ version: '26.0'
+ sha256: b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda
+ sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991
+ md5: 58335b26c38bf4a20f399384c33cbcf9
+ depends:
+ - python >=3.8
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/packaging?source=hash-mapping
+ size: 62477
+ timestamp: 1745345660407
+- conda: https://prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda
+ sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58
+ md5: b76541e68fea4d511b1ac46a28dcd2c6
+ depends:
+ - python >=3.8
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/packaging?source=compressed-mapping
+ size: 72010
+ timestamp: 1769093650580
+- pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
+ name: paginate
+ version: 0.5.7
+ sha256: b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591
+ requires_dist:
+ - pytest ; extra == 'dev'
+ - tox ; extra == 'dev'
+ - black ; extra == 'lint'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.54.0-h3a902e7_3.conda
+ sha256: b04f43a7968cedb93cc0b52854f2cac21d8b8ac150b40305865d9ff3c3d4da72
+ md5: 8c12547e7b143fb70873fb732a4056b9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.2,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 447446
+ timestamp: 1733761801816
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.3-h9ac818e_1.conda
+ sha256: 9c00bbc8871b9ce00d1a1f0c1a64f76c032cf16a56a28984b9bb59e46af3932d
+ md5: 21899b96828014270bd24fd266096612
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.13.3,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=11.0.0,<12.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libglib >=2.84.0,<3.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 453100
+ timestamp: 1743352484196
+- conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.4-hadf4263_0.conda
+ sha256: 3613774ad27e48503a3a6a9d72017087ea70f1426f6e5541dbdb59a3b626eaaf
+ md5: 79f71230c069a287efe3a8614069ddf1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=11.0.1
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libglib >=2.84.2,<3.0a0
+ - libpng >=1.6.49,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 455420
+ timestamp: 1751292466873
+- pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
+ name: pathspec
+ version: 1.0.4
+ sha256: fb6ae2fd4e7c921a165808a552060e722767cfa526f99ca5156ed2ce45a5c723
+ requires_dist:
+ - hyperscan>=0.7 ; extra == 'hyperscan'
+ - typing-extensions>=4 ; extra == 'optional'
+ - google-re2>=1.1 ; extra == 're2'
+ - pytest>=9 ; extra == 'tests'
+ - typing-extensions>=4.15 ; extra == 'tests'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.14.1-h679aaff_7.conda
+ sha256: 95545e4cc2bc68b32daba2b088518122205c40d9386528e986449f88bfc63921
+ md5: 4e48d8882cd824adc56e8e29acdc2517
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libstdcxx >=13
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.8.1,<6.9.0a0
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18152103
+ timestamp: 1736289491897
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda
+ sha256: e6d5fe4a022229fe15ed7fe5226716893375deb3b3ef65e6a5caabe9fb76015b
+ md5: 2065962ae1fc02ce98a73e8ef9ba0591
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.9.0,<6.10.0a0
+ - vtk
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18080330
+ timestamp: 1748340656265
+- conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda
+ sha256: e6d5fe4a022229fe15ed7fe5226716893375deb3b3ef65e6a5caabe9fb76015b
+ md5: 2065962ae1fc02ce98a73e8ef9ba0591
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libstdcxx >=13
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.9.0,<6.10.0a0
+ - vtk
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 18080330
+ timestamp: 1748340656265
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2
+ sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138
+ md5: c05d1820a6d34ff07aaaab7a9b7eddaa
+ depends:
+ - libgcc-ng >=9.3.0
+ - libstdcxx-ng >=9.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 259377
+ timestamp: 1623788789327
+- conda: https://prefix.dev/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2
+ sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138
+ md5: c05d1820a6d34ff07aaaab7a9b7eddaa
+ depends:
+ - libgcc-ng >=9.3.0
+ - libstdcxx-ng >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 259377
+ timestamp: 1623788789327
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hc749103_2.conda
+ sha256: 09717569649d89caafbf32f6cda1e65aef86e5a86c053d30e4ce77fca8d27b68
+ md5: 31614c73d7b103ef76faa4d83d261d34
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 956207
+ timestamp: 1745931215744
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.45-hc749103_0.conda
+ sha256: 27c4014f616326240dcce17b5f3baca3953b6bc5f245ceb49c3fa1e6320571eb
+ md5: b90bece58b4c2bf25969b70f3be42d25
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1197308
+ timestamp: 1745955064657
+- conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.46-h1321c63_0.conda
+ sha256: 5c7380c8fd3ad5fc0f8039069a45586aa452cf165264bc5a437ad80397b32934
+ md5: 7fa07cb0fb1b625a089ccc01218ee5b1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 1209177
+ timestamp: 1756742976157
+- conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636
+ md5: d94aa03d99d8adc9898f783eba0d84d2
+ depends:
+ - python >=3.8
+ - tomli
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pep517?source=hash-mapping
+ size: 19044
+ timestamp: 1667916747996
+- conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636
+ md5: d94aa03d99d8adc9898f783eba0d84d2
+ depends:
+ - python >=3.8
+ - tomli
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pep517?source=hash-mapping
+ size: 19044
+ timestamp: 1667916747996
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.2.1-py311h1322bbf_0.conda
+ sha256: 35ad7e1a9fe8152d0bad51046490c3903d7c56e06a1ba2a0af5be4fd3bdc18c7
+ md5: 4c49bdabd1d4e09386dabc676fb6bd65
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lcms2 >=2.17,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.3,<3.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - tk >=8.6.13,<8.7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 43489672
+ timestamp: 1746646364323
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.2.1-py312h80c1187_0.conda
+ sha256: 15f32ec89f3a7104fcb190546a2bc0fc279372d9073e5ec08a8d61a1c79af4c0
+ md5: ca438bf57e4f2423d261987fe423a0dd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lcms2 >=2.17,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.3,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=hash-mapping
+ size: 42506161
+ timestamp: 1746646366556
+- conda: https://prefix.dev/conda-forge/linux-64/pillow-12.1.1-py312h50c33e8_0.conda
+ sha256: 782b6b578a0e61f6ef5cca5be993d902db775a2eb3d0328a3c4ff515858e7f2c
+ md5: c5eff3ada1a829f0bdb780dc4b62bbae
+ depends:
+ - python
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libjpeg-turbo >=3.1.2,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - lcms2 >=2.18,<3.0a0
+ - python_abi 3.12.* *_cp312
+ - zlib-ng >=2.3.3,<2.4.0a0
+ - libtiff >=4.7.1,<4.8.0a0
+ - openjpeg >=2.5.4,<3.0a0
+ license: HPND
+ purls:
+ - pkg:pypi/pillow?source=compressed-mapping
+ size: 1029755
+ timestamp: 1770794002406
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py311hd79ae85_0.conda
+ sha256: 7f3b0183e68c6db6a6cb0d03d41f73474521034bebd87a52b5cce48584cc3390
+ md5: a696dd449736ea221cd96bbce03e9176
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - casadi >=3.7.0,<3.8.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - hpp-fcl >=3.0.1,<3.0.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libboost-python-devel
+ - libgcc >=13
+ - libsdformat14 >=14.5.0,<15.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ - urdfdom >=4.0.1,<4.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 14101713
+ timestamp: 1747867520107
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py312h91a64d0_0.conda
+ sha256: cf26ca150a10615f5de6db54276223d28ff8f43da1a1f195bfe861980f5314fc
+ md5: 1ddcf31abfa46ebba3adbc476370002a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - casadi >=3.7.0,<3.8.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - hpp-fcl >=3.0.1,<3.0.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libboost-python-devel
+ - libgcc >=13
+ - libsdformat14 >=14.5.0,<15.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ - urdfdom >=4.0.1,<4.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 14064855
+ timestamp: 1747867333934
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pinocchio-3.7.0-py313h73d2dff_0.conda
+ sha256: 688b90597bbb39e75f96d097aa4679f784bdd18745b6bc6b7e4967e5975395a4
+ md5: 7bc5a88ab28dad644cbc0413caaa62f3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - casadi >=3.7.0,<3.8.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - hpp-fcl >=3.0.1,<3.0.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libboost-python-devel
+ - libgcc >=13
+ - libsdformat14 >=14.5.0,<15.0a0
+ - libstdcxx >=13
+ - numpy >=1.21,<3
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ - urdfdom >=4.0.1,<4.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 14008387
+ timestamp: 1747867981896
+- conda: https://prefix.dev/conda-forge/linux-64/pinocchio-3.7.0-py312h91a64d0_0.conda
+ sha256: cf26ca150a10615f5de6db54276223d28ff8f43da1a1f195bfe861980f5314fc
+ md5: 1ddcf31abfa46ebba3adbc476370002a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - casadi >=3.7.0,<3.8.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - eigenpy >=3.10.3,<3.10.4.0a0
+ - hpp-fcl >=3.0.1,<3.0.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libboost-devel
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libboost-python-devel
+ - libgcc >=13
+ - libsdformat14 >=14.5.0,<15.0a0
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - qhull-static
+ - urdfdom >=4.0.1,<4.1.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 14064855
+ timestamp: 1747867333934
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.2-h29eaf8c_0.conda
+ sha256: 6cb261595b5f0ae7306599f2bb55ef6863534b6d4d1bc0dcfdfa5825b0e4e53d
+ md5: 39b4228a867772d610c02e06f939a5b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 402222
+ timestamp: 1749552884791
+- conda: https://prefix.dev/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda
+ sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a
+ md5: c01af13bdc553d1a8fbfff6e8db075f0
+ depends:
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 450960
+ timestamp: 1754665235234
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ sha256: c9601efb1af5391317e04eca77c6fe4d716bf1ca1ad8da2a05d15cb7c28d7d4e
+ md5: 1bee70681f504ea424fb07cdb090c001
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 115175
+ timestamp: 1720805894943
+- conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
+ sha256: c9601efb1af5391317e04eca77c6fe4d716bf1ca1ad8da2a05d15cb7c28d7d4e
+ md5: 1bee70681f504ea424fb07cdb090c001
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 115175
+ timestamp: 1720805894943
+- pypi: https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl
+ name: platformdirs
+ version: 4.9.2
+ sha256: 9170634f126f8efdae22fb58ae8a0eaa86f38365bc57897a6c4f781d1f5875bd
+ requires_python: '>=3.10'
+- conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda
+ sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc
+ md5: 7da7ccd349dbf6487a7778579d2bb971
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pluggy?source=hash-mapping
+ size: 24246
+ timestamp: 1747339794916
+- conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhf9edf01_1.conda
+ sha256: e14aafa63efa0528ca99ba568eaf506eb55a0371d12e6250aaaa61718d2eb62e
+ md5: d7585b6550ad04c8c5e21097ada2888e
+ depends:
+ - python >=3.9
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pluggy?source=compressed-mapping
+ size: 25877
+ timestamp: 1764896838868
+- conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda
+ sha256: bae453e5cecf19cab23c2e8929c6e30f4866d996a8058be16c797ed4b935461f
+ md5: fd5062942bfa1b0bd5e0d2a4397b099e
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/ply?source=hash-mapping
+ size: 49052
+ timestamp: 1733239818090
+- conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda
+ sha256: bae453e5cecf19cab23c2e8929c6e30f4866d996a8058be16c797ed4b935461f
+ md5: fd5062942bfa1b0bd5e0d2a4397b099e
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/ply?source=hash-mapping
+ size: 49052
+ timestamp: 1733239818090
+- pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
+ name: pre-commit
+ version: 4.5.1
+ sha256: 3b3afd891e97337708c1674210f8eba659b52a38ea5f822ff142d10786221f77
+ requires_dist:
+ - cfgv>=2.0.0
+ - identify>=1.0.0
+ - nodeenv>=0.11.1
+ - pyyaml>=5.1
+ - virtualenv>=20.10.0
+ requires_python: '>=3.10'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda
+ sha256: 835afb9c8198895ec1ce2916320503d47bb0c25b75c228d744c44e505f1f4e3b
+ md5: 398cabfd9bd75e90d0901db95224f25f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libsqlite >=3.47.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3108751
+ timestamp: 1733138115896
+- conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.6.2-h0054346_0.conda
+ sha256: 51c9fc17d28125cfe5bcc8201e443f7784f8f402ea5ee792dced68da38c224b3
+ md5: 78880cde19cf47cbec3025fc81bfe4bc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=13
+ - libsqlite >=3.50.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3188584
+ timestamp: 1749233177457
+- conda: https://prefix.dev/conda-forge/linux-64/proj-9.6.2-h18fbb6c_2.conda
+ sha256: c1c9e38646a2d07007844625c8dea82404c8785320f8a6326b9338f8870875d0
+ md5: 1aeede769ec2fa0f474f8b73a7ac057f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.14.1,<9.0a0
+ - libgcc >=14
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3240415
+ timestamp: 1754927975218
+- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.3.1-py311h2dc5d0c_0.conda
+ sha256: 38ef315508a4c6c96985a990b172964a8ed737fe4e991d82ad9d2a77c45add1f
+ md5: c75eb8c91d69fe0385fce584f3ce193a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/propcache?source=hash-mapping
+ size: 54558
+ timestamp: 1744525097548
+- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda
+ sha256: d0ff67d89cf379a9f0367f563320621f0bc3969fe7f5c85e020f437de0927bb4
+ md5: 0cf580c1b73146bb9ff1bbdb4d4c8cf9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/propcache?source=hash-mapping
+ size: 54233
+ timestamp: 1744525107433
+- conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py312h178313f_0.conda
+ sha256: d0ff67d89cf379a9f0367f563320621f0bc3969fe7f5c85e020f437de0927bb4
+ md5: 0cf580c1b73146bb9ff1bbdb4d4c8cf9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/propcache?source=hash-mapping
+ size: 54233
+ timestamp: 1744525107433
+- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py311h9ecbd09_0.conda
+ sha256: 50d0944b59a9c6dfa6b99cc2632bf8bc9bef9c7c93710390ded6eac953f0182d
+ md5: 1a390a54b2752169f5ba4ada5a8108e4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/psutil?source=hash-mapping
+ size: 484778
+ timestamp: 1740663319335
+- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.0.0-py312h66e93f0_0.conda
+ sha256: 158047d7a80e588c846437566d0df64cec5b0284c7184ceb4f3c540271406888
+ md5: 8e30db4239508a538e4a3b3cdf5b9616
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/psutil?source=hash-mapping
+ size: 466219
+ timestamp: 1740663246825
+- conda: https://prefix.dev/conda-forge/linux-64/psutil-7.2.2-py312h5253ce2_0.conda
+ sha256: d834fd656133c9e4eaf63ffe9a117c7d0917d86d89f7d64073f4e3a0020bd8a7
+ md5: dd94c506b119130aef5a9382aed648e7
+ depends:
+ - python
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/psutil?source=compressed-mapping
+ size: 225545
+ timestamp: 1769678155334
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 8252
+ timestamp: 1726802366959
+- conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 8252
+ timestamp: 1726802366959
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda
+ sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae
+ md5: 2c97dd90633508b422c11bd3018206ab
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 114871
+ timestamp: 1696182708943
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
+ sha256: 23c98a5000356e173568dc5c5770b53393879f946f3ace716bbdefac2a8b23d2
+ md5: b11a4c6bf6f6f44e5e143f759ffa2087
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 118488
+ timestamp: 1736601364156
+- conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda
+ sha256: 23c98a5000356e173568dc5c5770b53393879f946f3ace716bbdefac2a8b23d2
+ md5: b11a4c6bf6f6f44e5e143f759ffa2087
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 118488
+ timestamp: 1736601364156
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hac146a9_1.conda
+ sha256: d2377bb571932f2373f593b7b2fc3b9728dc6ae5b993b1b65d7f2c8bb39a0b49
+ md5: 66b1fa9608d8836e25f9919159adc9c6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - dbus >=1.13.6,<2.0a0
+ - libgcc >=13
+ - libglib >=2.82.2,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libsndfile >=1.2.2,<1.3.0a0
+ - libsystemd0 >=257.4
+ - libxcb >=1.17.0,<2.0a0
+ constrains:
+ - pulseaudio 17.0 *_1
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 764231
+ timestamp: 1742507189208
+- conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-h9a8bead_2.conda
+ sha256: 8a6729861c9813a756b0438c30bd271722fb3f239ded3afc3bf1cb03327a640e
+ md5: b6f21b1c925ee2f3f7fc37798c5988db
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - dbus >=1.16.2,<2.0a0
+ - libgcc >=14
+ - libglib >=2.86.0,<3.0a0
+ - libiconv >=1.18,<2.0a0
+ - libsndfile >=1.2.2,<1.3.0a0
+ - libsystemd0 >=257.7
+ - libxcb >=1.17.0,<2.0a0
+ constrains:
+ - pulseaudio 17.0 *_2
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 761857
+ timestamp: 1757472971364
+- conda: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.10.0-qt6_py311h9d93fc6_613.conda
+ sha256: e631ad9c1742e6ea5d41aece80b87aa28567e82bafb7a82a161732af88008f78
+ md5: edcf54ea29c026f4bf1604426dcceb27
+ depends:
+ - hdf5 >=1.14.3,<1.14.4.0a0
+ - libopencv 4.10.0 qt6_py311h8702e32_613
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1152865
+ timestamp: 1734359020888
+- conda: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.11.0-headless_py312hd03a6f7_7.conda
+ sha256: fc33d0e5774dfb4feeda4210740e28e735170d8662b8645ca3da1f9ec23b8cab
+ md5: ffc8902306dc78acc6a42d9f8a10b53c
+ depends:
+ - libopencv 4.11.0 headless_py312h8b90b6c_7
+ - libprotobuf >=5.29.3,<5.29.4.0a0
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1155800
+ timestamp: 1745420229799
+- conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.12.0-qt6_py312h598be00_603.conda
+ sha256: a32137cdaa7b9ed94743f66b78ac529e0b8dc246b033c2be9a87294b1ecc8a6e
+ md5: aec3807dc48e393a5e663cf20206ef59
+ depends:
+ - libopencv 4.12.0 qt6_py312hbf51571_603
+ - libprotobuf >=6.31.1,<6.31.2.0a0
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 1153856
+ timestamp: 1755993630744
+- conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyhc790b64_3.conda
+ sha256: d429f6f255fbe49f09b9ae1377aa8cbc4d9285b8b220c17ae2ad9c4894c91317
+ md5: 1594696beebf1ecb6d29a1136f859a74
+ depends:
+ - pybind11-global 2.13.6 *_3
+ - python >=3.9
+ constrains:
+ - pybind11-abi ==4
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pybind11?source=hash-mapping
+ size: 186821
+ timestamp: 1747935138653
+- conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.2-pyh7a1b43c_0.conda
+ sha256: c2d16e61270efeea13102836e0f1d3f758fb093207fbda561290fa1951c6051f
+ md5: 44dff15b5d850481807888197b254b46
+ depends:
+ - python >=3.8
+ - pybind11-global ==3.0.2 *_0
+ - python
+ constrains:
+ - pybind11-abi ==11
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pybind11?source=compressed-mapping
+ size: 245509
+ timestamp: 1771365898778
+- conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0
+ md5: 878f923dd6acc8aeb47a75da6c4098be
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 9906
+ timestamp: 1610372835205
+- conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda
+ sha256: 9e7fe12f727acd2787fb5816b2049cef4604b7a00ad3e408c5e709c298ce8bf1
+ md5: f0599959a2447c1e544e216bddf393fa
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 14671
+ timestamp: 1752769938071
+- conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh217bc35_3.conda
+ sha256: c044cfcbe6ef0062d0960e9f9f0de5f8818cec84ed901219ff9994b9a9e57237
+ md5: 730a5284e26d6bdb73332dafb26aec82
+ depends:
+ - __unix
+ - python >=3.9
+ constrains:
+ - pybind11-abi ==4
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pybind11-global?source=hash-mapping
+ size: 180116
+ timestamp: 1747934418811
+- conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.2-pyhc7ab6ef_0.conda
+ sha256: b97f25f7856b96ae187c17801d2536ff86a968da12f579bbc318f2367e365a02
+ md5: 0c2d37c332453bd66b254bc71311fa30
+ depends:
+ - python >=3.8
+ - __unix
+ - python
+ constrains:
+ - pybind11-abi ==11
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pybind11-global?source=compressed-mapping
+ size: 241244
+ timestamp: 1771365839659
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pybullet-3.25-py311h2ed89a0_4.conda
+ sha256: 91586c22571d410403c0161b5cd5e6904a9301ac1a32346d006add5a213fb633
+ md5: e42dc8e97f016935a2f86a420a8ad568
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bullet-cpp 3.25 h7db5c69_4
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls:
+ - pkg:pypi/pybullet?source=hash-mapping
+ size: 62898751
+ timestamp: 1747516495240
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pybullet-3.25-py312h71c6f2c_4.conda
+ sha256: 78bb1ea9e2eb531fe902903690e789e65dd17a998759c25369eff0cbe13a6744
+ md5: 19ed31d31c268335aaeb5a63bdf69a88
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bullet-cpp 3.25 hf9745cd_4
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls:
+ - pkg:pypi/pybullet?source=hash-mapping
+ size: 63135922
+ timestamp: 1747516368792
+- conda: https://prefix.dev/conda-forge/linux-64/pybullet-3.25-py312hf49885f_5.conda
+ sha256: 849bbe715c3d3e3c89f19a096d0158ce712022f387829ba222c327c533b747d4
+ md5: 82f56eb2ea7b24643993dea9f715b101
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bullet-cpp 3.25 hcbe3ca9_5
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.23,<3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Zlib
+ purls:
+ - pkg:pypi/pybullet?source=hash-mapping
+ size: 62838622
+ timestamp: 1761041325516
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.28.0-py311hd785cd9_0.conda
+ sha256: 793b7c0ac01659b3c6c94e645af82dfdfdf38362541932a01ad2b89a0599505d
+ md5: 25e7689a20f93528204330c11075928b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only OR MPL-1.1
+ purls:
+ - pkg:pypi/pycairo?source=hash-mapping
+ size: 117823
+ timestamp: 1744682534075
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.28.0-py312hac037c1_0.conda
+ sha256: e950a73650c8ec995642f9bab4f928219689e648782b9c136d225e3b78888d02
+ md5: c58c0a12e22f0602a11770d9442af83d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-only OR MPL-1.1
+ purls:
+ - pkg:pypi/pycairo?source=hash-mapping
+ size: 118124
+ timestamp: 1744682530430
+- conda: https://prefix.dev/conda-forge/linux-64/pycairo-1.29.0-py312h2596900_1.conda
+ sha256: 15b5392d2755b771cb6830ae0377ed71bf2bcfd33a347dbc3195df80568ce42c
+ md5: 7766c2ad93e65415f4289de684261550
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.4,<2.0a0
+ - libexpat >=2.7.3,<3.0a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-2.1-only OR MPL-1.1
+ purls:
+ - pkg:pypi/pycairo?source=compressed-mapping
+ size: 119839
+ timestamp: 1770726341594
+- conda: https://conda.anaconda.org/conda-forge/noarch/pycodestyle-2.13.0-pyhd8ed1ab_0.conda
+ sha256: ac68912b6c367d99923e2c049da66814985abf40fcc5880657b40a4ef244cf8b
+ md5: 1337989ba999ea04f7b30232c491cbea
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pycodestyle?source=hash-mapping
+ size: 34983
+ timestamp: 1743430206011
+- conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda
+ sha256: 1950f71ff44e64163e176b1ca34812afc1a104075c3190de50597e1623eb7d53
+ md5: 85815c6a22905c080111ec8d56741454
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pycodestyle?source=hash-mapping
+ size: 35182
+ timestamp: 1750616054854
+- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
+ md5: 12c566707c80111f9799308d9e265aef
+ depends:
+ - python >=3.9
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pycparser?source=hash-mapping
+ size: 110100
+ timestamp: 1733195786147
+- conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
+ md5: 12c566707c80111f9799308d9e265aef
+ depends:
+ - python >=3.9
+ - python
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pycparser?source=hash-mapping
+ size: 110100
+ timestamp: 1733195786147
+- conda: https://conda.anaconda.org/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda
+ sha256: 83ab8434e3baf6a018914da4f1c2ae9023e23fb41e131b68b3e3f9ca41ecef61
+ md5: a36aa6e0119331d3280f4bba043314c7
+ depends:
+ - python >=3.9
+ - snowballstemmer >=2.2.0
+ - tomli >=1.2.3
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydocstyle?source=hash-mapping
+ size: 40236
+ timestamp: 1733261742916
+- conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda
+ sha256: 83ab8434e3baf6a018914da4f1c2ae9023e23fb41e131b68b3e3f9ca41ecef61
+ md5: a36aa6e0119331d3280f4bba043314c7
+ depends:
+ - python >=3.9
+ - snowballstemmer >=2.2.0
+ - tomli >=1.2.3
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydocstyle?source=hash-mapping
+ size: 40236
+ timestamp: 1733261742916
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pydot-4.0.0-py311h38be061_0.conda
+ sha256: b93d89c838c3f664267efa09b0592887be0c52eb4695520176d8361a066108ff
+ md5: 2f1a02ca1b604fe64ff92dac18d48ed3
+ depends:
+ - graphviz >=2.38.0
+ - pyparsing >=3.0.9
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydot?source=hash-mapping
+ size: 90204
+ timestamp: 1746890162887
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pydot-4.0.0-py312h7900ff3_0.conda
+ sha256: 6dbe55965773175a392c91e2db8e0a776a9e670e9d960af4d088aec24accf607
+ md5: 06a60cb25e9d2aeb43d1c5b616af8197
+ depends:
+ - graphviz >=2.38.0
+ - pyparsing >=3.0.9
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydot?source=hash-mapping
+ size: 86905
+ timestamp: 1746890141960
+- conda: https://prefix.dev/conda-forge/noarch/pydot-4.0.1-pyhcf101f3_2.conda
+ sha256: af7213a8ca077895e7e10c8f33d5de3436b8a26828422e8a113cc59c9277a3e2
+ md5: 15f6d0866b0997c5302fc230a566bc72
+ depends:
+ - graphviz >=2.38.0
+ - pyparsing >=3.1.0
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pydot?source=hash-mapping
+ size: 150656
+ timestamp: 1766345630713
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyflakes-3.3.2-pyhd8ed1ab_0.conda
+ sha256: 133008ab33e413c3b21ad3c64eeb5a99583eea60e64e295234a4ab7d739f0c6c
+ md5: 1a01eeba6fc99c83f464ae57603ae753
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyflakes?source=hash-mapping
+ size: 59364
+ timestamp: 1743501014198
+- conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda
+ sha256: 4b6fb3f7697b4e591c06149671699777c71ca215e9ec16d5bd0767425e630d65
+ md5: dba204e749e06890aeb3756ef2b1bf35
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyflakes?source=hash-mapping
+ size: 59592
+ timestamp: 1750492011671
+- pypi: https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl
+ name: pygments
+ version: 2.19.2
+ sha256: 86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b
+ requires_dist:
+ - colorama>=0.4.6 ; extra == 'windows-terminal'
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygments?source=hash-mapping
+ size: 888600
+ timestamp: 1736243563082
+- conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda
+ sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a
+ md5: 6b6ece66ebcae2d5f326c77ef2c5a066
+ depends:
+ - python >=3.9
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygments?source=hash-mapping
+ size: 889287
+ timestamp: 1750615908735
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pygraphviz-1.14-py311hf885082_0.conda
+ sha256: 0ddfbff3596d382b7498b42185d1852625cd949f77dab25f392329b2b61fdd1e
+ md5: 7ec06aad0aaf2bbb04b3e97eebb95a3e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - graphviz >=12.0.0,<13.0a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygraphviz?source=hash-mapping
+ size: 146481
+ timestamp: 1727646138200
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pygraphviz-1.14-py312h011e53f_0.conda
+ sha256: f423d359ed9e989dd48f9c4531acebb67b96a1eb7fd60257c8e08d77e741168f
+ md5: bad112802852496a8a8e41fd3ae9128d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - graphviz >=12.0.0,<13.0a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygraphviz?source=hash-mapping
+ size: 145598
+ timestamp: 1727646199446
+- conda: https://prefix.dev/conda-forge/linux-64/pygraphviz-1.14-py312hdfa1987_2.conda
+ sha256: df1a5b61ddd37ae2d3e673481e555419159684eab2271ee45f8eb2fcd1790b7d
+ md5: 87066d64e7688ca972e1279e40e0d5f4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - graphviz >=13.1.2,<14.0a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pygraphviz?source=hash-mapping
+ size: 146677
+ timestamp: 1759598305098
+- pypi: https://files.pythonhosted.org/packages/6f/2c/5b079febdc65e1c3fb2729bf958d18b45be7113828528e8a0b5850dd819a/pymdown_extensions-10.21-py3-none-any.whl
+ name: pymdown-extensions
+ version: '10.21'
+ sha256: 91b879f9f864d49794c2d9534372b10150e6141096c3908a455e45ca72ad9d3f
+ requires_dist:
+ - markdown>=3.6
+ - pyyaml
+ - pygments>=2.19.1 ; extra == 'extra'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda
+ sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6
+ md5: 513d3c262ee49b54a8fec85c5bc99764
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyparsing?source=hash-mapping
+ size: 95988
+ timestamp: 1743089832359
+- conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda
+ sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de
+ md5: 3687cc0b82a8b4c17e1f0eb7e47163d5
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyparsing?source=compressed-mapping
+ size: 110893
+ timestamp: 1769003998136
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.11-py311he22028a_1.conda
+ sha256: c2b568492db18dfaf9d920498bc338c657a2a5db65ed82287f73846ecea0fe66
+ md5: bfd19c4ed7170fe34df119f5b225a5bf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - pyqt5-sip 12.17.0 py311hfdbb021_1
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - qt-main >=5.15.15,<5.16.0a0
+ - sip >=6.10.0,<6.11.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5?source=hash-mapping
+ size: 5242946
+ timestamp: 1749226326779
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.11-py312hcec5e1c_0.conda
+ sha256: ec0eace8987e9c800065c640b27f4acfdf12e9ee5a6173fd539a8b5233eced58
+ md5: 5ea2e4f02749e69864e4f2be8ceb09d4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - pyqt5-sip 12.17.0 py312h2ec8cdc_0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt-main >=5.15.15,<5.16.0a0
+ - sip >=6.10.0,<6.11.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5?source=hash-mapping
+ size: 5246359
+ timestamp: 1746851726240
+- conda: https://prefix.dev/conda-forge/linux-64/pyqt-5.15.11-py312h82c0db2_2.conda
+ sha256: cdad112328763c7b4f23ce823dc0b5821de310f109324b9ba89bddf13af599f0
+ md5: 84d5670ea1c8e72198bce0710f015e0c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=14
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=14
+ - pyqt5-sip 12.17.0 py312h1289d80_2
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt-main >=5.15.15,<5.16.0a0
+ - sip >=6.10.0,<6.11.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5?source=hash-mapping
+ size: 5282965
+ timestamp: 1759498005783
+- conda: https://conda.anaconda.org/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda
+ sha256: 7000bf38da6e5235b4501567a947b98c16bd3a64ed24a2b3810ee7952d93becf
+ md5: e7e42825f9277818ad114fea56385dae
+ depends:
+ - packaging
+ - python >=3.9
+ - sip
+ - toml
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt-builder?source=hash-mapping
+ size: 2965472
+ timestamp: 1742182116448
+- conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.18.2-pyhd8ed1ab_1.conda
+ sha256: 8aa0bcdce10de9b36e03993172d020c81e36d9e59e6b60042f956603cf3fc62b
+ md5: 83a4542a3495b651ccc8c06c01206f16
+ depends:
+ - packaging
+ - python >=3.10
+ - sip
+ - toml
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pyqt-builder?source=hash-mapping
+ size: 2952282
+ timestamp: 1766858321453
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.17.0-py311hfdbb021_1.conda
+ sha256: f2fbe31a7bd423c2d473516de5a2f648f6cc598350d233d2459390a6da8b15bc
+ md5: e5dfc88ced7eae4918db0dd17c28633f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - packaging
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - sip
+ - toml
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5-sip?source=hash-mapping
+ size: 84215
+ timestamp: 1749224312844
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.17.0-py312h2ec8cdc_0.conda
+ sha256: ff3bdea51ee709fdd471c8fba2680779c85b5de01ec0cc47b621764995386a06
+ md5: f3c52fc8602a631848ffd394c4c5b31e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - packaging
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - sip
+ - toml
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5-sip?source=hash-mapping
+ size: 84845
+ timestamp: 1746849713950
+- conda: https://prefix.dev/conda-forge/linux-64/pyqt5-sip-12.17.0-py312h1289d80_2.conda
+ sha256: d1f8665889ace76677084d5a0399b2a488553fc5e8efafe9e97ee7e2641e2496
+ md5: 14b1c131cab3002a6d2c2db647550084
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - packaging
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - sip
+ - toml
+ license: GPL-3.0-only
+ license_family: GPL
+ purls:
+ - pkg:pypi/pyqt5-sip?source=hash-mapping
+ size: 85800
+ timestamp: 1759495565076
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.4.0-pyhd8ed1ab_0.conda
+ sha256: f8c5a65ff4216f7c0a9be1708be1ee1446ad678da5a01eeb2437551156e32a06
+ md5: 516d31f063ce7e49ced17f105b63a1f1
+ depends:
+ - colorama >=0.4
+ - exceptiongroup >=1
+ - iniconfig >=1
+ - packaging >=20
+ - pluggy >=1.5,<2
+ - pygments >=2.7.2
+ - python >=3.9
+ - tomli >=1
+ constrains:
+ - pytest-faulthandler >=2
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pytest?source=hash-mapping
+ size: 275014
+ timestamp: 1748907618871
+- conda: https://prefix.dev/conda-forge/noarch/pytest-9.0.2-pyhcf101f3_0.conda
+ sha256: 9e749fb465a8bedf0184d8b8996992a38de351f7c64e967031944978de03a520
+ md5: 2b694bad8a50dc2f712f5368de866480
+ depends:
+ - pygments >=2.7.2
+ - python >=3.10
+ - iniconfig >=1.0.1
+ - packaging >=22
+ - pluggy >=1.5,<2
+ - tomli >=1
+ - colorama >=0.4
+ - exceptiongroup >=1
+ - python
+ constrains:
+ - pytest-faulthandler >=2
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pytest?source=hash-mapping
+ size: 299581
+ timestamp: 1765062031645
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-6.2.1-pyhd8ed1ab_0.conda
+ sha256: 3a9fc07be76bc67aef355b78816b5117bfe686e7d8c6f28b45a1f89afe104761
+ md5: ce978e1b9ed8b8d49164e90a5cdc94cd
+ depends:
+ - coverage >=7.5
+ - pytest >=4.6
+ - python >=3.9
+ - toml
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pytest-cov?source=hash-mapping
+ size: 28216
+ timestamp: 1749778064293
+- conda: https://prefix.dev/conda-forge/noarch/pytest-cov-7.0.0-pyhcf101f3_1.conda
+ sha256: d0f45586aad48ef604590188c33c83d76e4fc6370ac569ba0900906b24fd6a26
+ md5: 6891acad5e136cb62a8c2ed2679d6528
+ depends:
+ - coverage >=7.10.6
+ - pluggy >=1.2
+ - pytest >=7
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pytest-cov?source=hash-mapping
+ size: 29016
+ timestamp: 1757612051022
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-repeat-0.9.4-pyhd8ed1ab_0.conda
+ sha256: cea7b0555c22a734d732f98a3b256646f3d82d926a35fa2bfd16f11395abd83b
+ md5: 9e8871313f26d8b6f0232522b3bc47a5
+ depends:
+ - pytest >=5
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls:
+ - pkg:pypi/pytest-repeat?source=hash-mapping
+ size: 10537
+ timestamp: 1744061283541
+- conda: https://prefix.dev/conda-forge/noarch/pytest-repeat-0.9.4-pyhd8ed1ab_0.conda
+ sha256: cea7b0555c22a734d732f98a3b256646f3d82d926a35fa2bfd16f11395abd83b
+ md5: 9e8871313f26d8b6f0232522b3bc47a5
+ depends:
+ - pytest >=5
+ - python >=3.9
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls:
+ - pkg:pypi/pytest-repeat?source=hash-mapping
+ size: 10537
+ timestamp: 1744061283541
+- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-rerunfailures-15.1-pyhd8ed1ab_0.conda
+ sha256: 661e2918446f291d0c28226feb4bd477753ddcf70f78f5ca15f24e5282f5344e
+ md5: 82f0d25c48b2cf1551b509d1c1c248e6
+ depends:
+ - packaging >=17.1
+ - pytest >=7.4,!=8.2.2
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MPL-2.0
+ license_family: OTHER
+ purls:
+ - pkg:pypi/pytest-rerunfailures?source=hash-mapping
+ size: 18890
+ timestamp: 1746703832352
+- conda: https://prefix.dev/conda-forge/noarch/pytest-rerunfailures-16.1-pyhd8ed1ab_0.conda
+ sha256: 437f0e7805e471dcc57afd4b122d5025fa2162e4c031dc9e8c6f2c05c4d50cc0
+ md5: b57fe0c7e03b97c3554e6cea827e2058
+ depends:
+ - packaging >=17.1
+ - pytest >=7.4,!=8.2.2
+ - python >=3.10
+ license: MPL-2.0
+ license_family: OTHER
+ purls:
+ - pkg:pypi/pytest-rerunfailures?source=hash-mapping
+ size: 19613
+ timestamp: 1760091441792
+- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda
+ sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4
+ md5: 8c399445b6dc73eab839659e6c7b5ad1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Python-2.0
+ purls: []
+ size: 30629559
+ timestamp: 1749050021812
+- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda
+ sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d
+ md5: 94206474a5608243a10c92cefbe0908f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Python-2.0
+ purls: []
+ size: 31445023
+ timestamp: 1749050216615
+- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.5-hf636f53_101_cp313.conda
+ build_number: 101
+ sha256: 4068d08958919d92d346efbb883114fc59276ac6234f12459041dcd248c14ec8
+ md5: f3fa8f5ca181e0bacf92a09114fc4f31
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - liblzma >=5.8.1,<6.0a0
+ - libmpdec >=4.0.0,<5.0a0
+ - libsqlite >=3.50.1,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - python_abi 3.13.* *_cp313
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ channel: https://fast.prefix.dev/conda-forge
+ license: Python-2.0
+ purls: []
+ size: 33259249
+ timestamp: 1749779390745
+ python_site_packages_path: lib/python3.13/site-packages
+- conda: https://prefix.dev/conda-forge/linux-64/python-3.12.12-hd63d673_2_cpython.conda
+ build_number: 2
+ sha256: 6621befd6570a216ba94bc34ec4618e4f3777de55ad0adc15fc23c28fadd4d1a
+ md5: c4540d3de3fa228d9fa95e31f8e97f89
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.7.3,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - liblzma >=5.8.2,<6.0a0
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.51.2,<4.0a0
+ - libuuid >=2.41.3,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
+ - readline >=8.3,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ purls: []
+ size: 31457785
+ timestamp: 1769472855343
+- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
+ name: python-dateutil
+ version: 2.9.0.post0
+ sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427
+ requires_dist:
+ - six>=1.5
+ requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*'
+- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda
+ sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79
+ md5: 5ba79d7c71f03c678c8ead841f347d6e
+ depends:
+ - python >=3.9
+ - six >=1.5
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/python-dateutil?source=hash-mapping
+ size: 222505
+ timestamp: 1733215763718
+- conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda
+ sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664
+ md5: 5b8d21249ff20967101ffa321cab24e8
+ depends:
+ - python >=3.9
+ - six >=1.5
+ - python
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/python-dateutil?source=hash-mapping
+ size: 233310
+ timestamp: 1751104122689
+- conda: https://conda.anaconda.org/conda-forge/linux-64/python-orocos-kdl-1.5.1-py312h2ec8cdc_8.conda
+ sha256: 9fb85bde51aff63faa659ef1d2d8e2e6d7ca69723e2f37c02646c2e3db439546
+ md5: 24b941baf89b2cae238860e839e95025
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=13
+ - libstdcxx >=13
+ - orocos-kdl
+ - pybind11
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 300851
+ timestamp: 1729198220211
+- conda: https://prefix.dev/conda-forge/linux-64/python-orocos-kdl-1.5.3-py312h1289d80_0.conda
+ sha256: 90710092b39029c891934aa03076123a191365a2821c60e3e9c8540f320f4792
+ md5: 5621a85f434696dbbf66dbb6a4d47343
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - eigen
+ - libgcc >=14
+ - libstdcxx >=14
+ - orocos-kdl
+ - pybind11
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ purls: []
+ size: 346120
+ timestamp: 1760695946175
+- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.11-7_cp311.conda
+ build_number: 7
+ sha256: 705d06b15c497b585d235e7e87f6c893ffe5fbfdb3326e376e56c842879e0a09
+ md5: 6320dac78b3b215ceac35858b2cfdb70
+ constrains:
+ - python 3.11.* *_cpython
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6996
+ timestamp: 1745258878641
+- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.12-7_cp312.conda
+ build_number: 7
+ sha256: a1bbced35e0df66cc713105344263570e835625c28d1bdee8f748f482b2d7793
+ md5: 0dfcdc155cf23812a0c9deada86fb723
+ constrains:
+ - python 3.12.* *_cpython
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6971
+ timestamp: 1745258861359
+- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
+ build_number: 7
+ sha256: 0595134584589064f56e67d3de1d8fcbb673a972946bce25fb593fb092fdcd97
+ md5: e84b44e6300f1703cb25d29120c5b1d8
+ constrains:
+ - python 3.13.* *_cp313
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6988
+ timestamp: 1745258852285
+- conda: https://prefix.dev/conda-forge/noarch/python_abi-3.12-8_cp312.conda
+ build_number: 8
+ sha256: 80677180dd3c22deb7426ca89d6203f1c7f1f256f2d5a94dc210f6e758229809
+ md5: c3efd25ac4d74b1584d2f7a57195ddf1
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 6958
+ timestamp: 1752805918820
+- pypi: https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
+ name: pyyaml
+ version: 6.0.3
+ sha256: 0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda
+ sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3
+ md5: 014417753f948da1f70d132b2de573be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml >=0.2.5,<0.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 213136
+ timestamp: 1737454846598
+- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda
+ sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b
+ md5: cf2485f39740de96e2a7f2bb18ed2fee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 206903
+ timestamp: 1737454910324
+- conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.3-py312h8a5da7c_1.conda
+ sha256: cb142bfd92f6e55749365ddc244294fa7b64db6d08c45b018ff1c658907bfcbf
+ md5: 15878599a87992e44c059731771591cb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/pyyaml?source=compressed-mapping
+ size: 198293
+ timestamp: 1770223620706
+- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
+ name: pyyaml-env-tag
+ version: '1.1'
+ sha256: 17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04
+ requires_dist:
+ - pyyaml
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc
+ md5: 353823361b1d27eb3960efb076dfcaf6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-Qhull
+ purls: []
+ size: 552937
+ timestamp: 1720813982144
+- conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc
+ md5: 353823361b1d27eb3960efb076dfcaf6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LicenseRef-Qhull
+ purls: []
+ size: 552937
+ timestamp: 1720813982144
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ sha256: b02a0e50dd4b5cb619b862c83cde685988c2a6dceb687198ae9ac3cfa8c4c926
+ md5: 0556a8e4d1b88edbf12969718634f3da
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - qhull 2020.2 h434a139_5
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-Qhull
+ purls: []
+ size: 444184
+ timestamp: 1720814041633
+- conda: https://prefix.dev/conda-forge/linux-64/qhull-static-2020.2-h434a139_5.conda
+ sha256: b02a0e50dd4b5cb619b862c83cde685988c2a6dceb687198ae9ac3cfa8c4c926
+ md5: 0556a8e4d1b88edbf12969718634f3da
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - qhull 2020.2 h434a139_5
+ license: LicenseRef-Qhull
+ purls: []
+ size: 444184
+ timestamp: 1720814041633
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.15-h796de64_1.conda
+ sha256: b3332e33b4aa77389464700bb860a521df9f81a1a9f790d5a84b181fbf056377
+ md5: b63b4dcf67c300daa7ce5918eb9c1654
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.13,<1.3.0a0
+ - dbus >=1.13.6,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gst-plugins-base >=1.24.7,<1.25.0a0
+ - gstreamer >=1.24.7,<1.25.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.4,<19.2.0a0
+ - libclang13 >=19.1.4
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.82.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.2,<18.0a0
+ - libsqlite >=3.47.0,<4.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.7.0,<2.0a0
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - nspr >=4.36,<5.0a0
+ - nss >=3.107,<4.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - xorg-xf86vidmodeproto
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 5.15.15
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 52607709
+ timestamp: 1733166871861
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.15-hea1682b_4.conda
+ sha256: 723a2afd0a1d15baf20117ba6fa5c03ecb161557c607ef542eb017ff422198f7
+ md5: c054d7f22cc719e12c72d454b2328d6c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.13.6,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - gst-plugins-base >=1.24.11,<1.25.0a0
+ - gstreamer >=1.24.11,<1.25.0a0
+ - harfbuzz >=11.0.1
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp20.1 >=20.1.4,<20.2.0a0
+ - libclang13 >=20.1.4
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.124,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.1,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm20 >=20.1.4,<20.2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libpq >=17.5,<18.0a0
+ - libsqlite >=3.49.2,<4.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.9.2,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nspr >=4.36,<5.0a0
+ - nss >=3.111,<4.0a0
+ - openssl >=3.5.0,<4.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 5.15.15
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 52525654
+ timestamp: 1747033292625
+- conda: https://prefix.dev/conda-forge/linux-64/qt-main-5.15.15-h3a7ef08_5.conda
+ sha256: f1fee8d35bfeb4806bdf2cb13dc06e91f19cb40104e628dd721989885d1747ad
+ md5: 9279a2436ad1ba296f49f0ad44826b78
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.16.2,<2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - gst-plugins-base >=1.24.11,<1.25.0a0
+ - gstreamer >=1.24.11,<1.25.0a0
+ - harfbuzz >=11.4.3
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp20.1 >=20.1.8,<20.2.0a0
+ - libclang13 >=20.1.8
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libexpat >=2.7.1,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.3,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm20 >=20.1.8,<20.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=17.6,<18.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.11.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - nspr >=4.37,<5.0a0
+ - nss >=3.115,<4.0a0
+ - openssl >=3.5.2,<4.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 5.15.15
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 52149940
+ timestamp: 1756072007197
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.8.1-h9d28a51_0.conda
+ sha256: 452f9245a1d25cca115d12c31fbd4b16d97d0b876bded5637444362d0978de1b
+ md5: 7e8e17c44e7af62c77de7a0158afc35c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.13,<1.3.0a0
+ - dbus >=1.13.6,<2.0a0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.4,<19.2.0a0
+ - libclang13 >=19.1.4
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.82.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.2,<18.0a0
+ - libsqlite >=3.47.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.7.0,<2.0a0
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.8.1
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 51147285
+ timestamp: 1733147418686
+- conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.9.1-h0384650_0.conda
+ sha256: e0b9e32fa88b23e71ba1aaae49fd8f600010a1e7d19003177a50367d801a45b0
+ md5: e1f80d7fca560024b107368dd77d96be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.16.2,<2.0a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=11.0.1
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp20.1 >=20.1.6,<20.2.0a0
+ - libclang13 >=20.1.6
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.124,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.84.2,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm20 >=20.1.6,<20.2.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libpq >=17.5,<18.0a0
+ - libsqlite >=3.50.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.5.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.10.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - pcre2 >=10.45,<10.46.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 6.9.1
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 51972981
+ timestamp: 1748902080649
+- conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.9.2-h5bd77bc_1.conda
+ sha256: ac540c33b8e908f49e4eae93032708f7f6eeb5016d28190f6ed7543532208be2
+ md5: f7bfe5b8e7641ce7d11ea10cfd9f33cc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.14,<1.3.0a0
+ - dbus >=1.16.2,<2.0a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - harfbuzz >=11.5.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp21.1 >=21.1.0,<21.2.0a0
+ - libclang13 >=21.1.0
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.125,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - libgcc >=14
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.86.0,<3.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - libllvm21 >=21.1.0,<21.2.0a0
+ - libpng >=1.6.50,<1.7.0a0
+ - libpq >=17.6,<18.0a0
+ - libsqlite >=3.50.4,<4.0a0
+ - libstdcxx >=14
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.6.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.11.0,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.5.2,<4.0a0
+ - pcre2 >=10.46,<10.47.0a0
+ - wayland >=1.24.0,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ constrains:
+ - qt 6.9.2
+ license: LGPL-3.0-only
+ license_family: LGPL
+ purls: []
+ size: 52405921
+ timestamp: 1758011263853
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4
+ md5: 2c42649888aac645608191ffdc80d13a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 5176669
+ timestamp: 1746622023242
+- conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda
+ sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4
+ md5: 2c42649888aac645608191ffdc80d13a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - __glibc >=2.17
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 5176669
+ timestamp: 1746622023242
+- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
+ sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
+ md5: 283b96675859b20a825f8fa30f311446
+ depends:
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 282480
+ timestamp: 1740379431762
+- conda: https://prefix.dev/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
+ sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002
+ md5: d7d95fc8287ea7bf33e0e7116d2b95ec
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ncurses >=6.5,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 345073
+ timestamp: 1765813471974
+- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
+ name: requests
+ version: 2.32.5
+ sha256: 2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6
+ requires_dist:
+ - charset-normalizer>=2,<4
+ - idna>=2.5,<4
+ - urllib3>=1.21.1,<3
+ - certifi>=2017.4.17
+ - pysocks>=1.5.6,!=1.5.7 ; extra == 'socks'
+ - chardet>=3.0.2,<6 ; extra == 'use-chardet-on-py3'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ sha256: d5c73079c1dd2c2a313c3bfd81c73dbd066b7eb08d213778c8bff520091ae894
+ md5: c1c9b02933fdb2cfb791d936c20e887e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 193775
+ timestamp: 1748644872902
+- conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda
+ sha256: d5c73079c1dd2c2a313c3bfd81c73dbd066b7eb08d213778c8bff520091ae894
+ md5: c1c9b02933fdb2cfb791d936c20e887e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 193775
+ timestamp: 1748644872902
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ackermann-msgs-2.0.2-np126py311h2c3b307_7.conda
+ sha256: d97c26838c3efc140b5181364414b2a6822a83afd2ca7de1367f73168df86445
+ md5: 7bd32b060ab0c62dadb33a12a6918302
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 80682
+ timestamp: 1736209349298
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ackermann-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: d2dc0ff38ca82be10db8bf7fd12cdf2fdf433cf156c894f79c03169324ee5d90
+ md5: 2a55fd4a99cbcf679aa5898a670bcf7b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros-humble-steering-controllers-library
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 84570
+ timestamp: 1736212804845
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-msgs-1.2.1-np126py311h2c3b307_7.conda
+ sha256: 15c850bd145b1c00c9824050421694b5ea1fc92a9fe38495348de0af2c385543
+ md5: 03d5d5e407d734d006eb7b19f2b4ebed
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-unique-identifier-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 113255
+ timestamp: 1736209174927
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311h2c3b307_7.conda
+ sha256: a37f3e26d883717f3a8b450602a9a094dafee84f15a8909e283df5aaf6ab7754
+ md5: 54c935e2c8492cd5c6c2110a5347cf5f
+ depends:
+ - python
+ - ros-humble-action-tutorials-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 129863
+ timestamp: 1736210613035
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 5bb70eaaf65a622d3a0d08730306ab5e2ea477314398fbd8f2f265f2f42674ac
+ md5: c0c29fb868ef7f242749080a368a1ebf
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 125800
+ timestamp: 1736209387131
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-action-tutorials-py-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 7edbb5c1ccfb7f6c020399e2ba0e43496b5ff7f9e2a83cc7d45bd46fa9bd21ee
+ md5: d6cc4f69ab414a7cc57e3f5bf4c03774
+ depends:
+ - python
+ - ros-humble-action-tutorials-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 29919
+ timestamp: 1736210410985
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-actionlib-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: ba7c4da796226718cfb9368529f590fa1b2c9d53710901a7fc748d648d599dad
+ md5: b329fa326a4faaec014668e24e7c0326
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 99149
+ timestamp: 1736209423459
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-admittance-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 6fac4a3dbffe0cc6e9b956af94f2cbc96b5c7a237a559e14c9133070f121ef7c
+ md5: ad19595f3af635aa47ce50234a5e5d7b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-control-toolbox
+ - ros-humble-controller-interface
+ - ros-humble-filters
+ - ros-humble-generate-parameter-library
+ - ros-humble-geometry-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-joint-trajectory-controller
+ - ros-humble-kinematics-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-eigen
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-tf2-kdl
+ - ros-humble-tf2-ros
+ - ros-humble-trajectory-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 369490
+ timestamp: 1736212862535
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 23e4a88ccbdc761ffbf89bd51135769c84006b1849b4e58f041ecc6878f5ae48
+ md5: ee0a75fcf398d8bc287aa01b87076538
+ depends:
+ - cmake
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-export-definitions
+ - ros-humble-ament-cmake-export-dependencies
+ - ros-humble-ament-cmake-export-include-directories
+ - ros-humble-ament-cmake-export-interfaces
+ - ros-humble-ament-cmake-export-libraries
+ - ros-humble-ament-cmake-export-link-flags
+ - ros-humble-ament-cmake-export-targets
+ - ros-humble-ament-cmake-gen-version-h
+ - ros-humble-ament-cmake-libraries
+ - ros-humble-ament-cmake-python
+ - ros-humble-ament-cmake-target-dependencies
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-cmake-version
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21698
+ timestamp: 1736207108010
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-auto-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 3cf30c5f54b43e8396dbc4fc110d7b356c2349b990e2e88090e3523960441571
+ md5: 7936416b355dffde1ee1da4e2e093ebd
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-cmake-gmock
+ - ros-humble-ament-cmake-gtest
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25389
+ timestamp: 1736207181026
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-copyright-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 773e5e132aa070efc953723dd28ebb94d3177625d494a5e1803bcea30cd7cd2d
+ md5: c9fa5f251605ed495fc3639d198b4c50
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-copyright
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21158
+ timestamp: 1736207413133
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-core-1.3.11-np126py311h2c3b307_7.conda
+ sha256: c03405e62fd6d62191b0d246dca97712a3f104bd3efaac18d92ef8cd13e02823
+ md5: b481c03fa5af51cb5982fdec4618befe
+ depends:
+ - catkin_pkg
+ - cmake
+ - python
+ - ros-humble-ament-package
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 43586
+ timestamp: 1736205314893
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-cppcheck-0.12.11-np126py311h2c3b307_7.conda
+ sha256: b5244bb6e8d33983fb968327e258ec2718c151972734768039000d8a9ecfb852
+ md5: 2edd28e20d62c13ace301f89c0abac21
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-cppcheck
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22784
+ timestamp: 1736207478968
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-cpplint-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 796bc98dc66ffac37b84da64d1943a1b50306e88e24e939947ed4c1df6d4991e
+ md5: f204d58f0c5d0447af2ace2d653c7016
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-cpplint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21649
+ timestamp: 1736207507771
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-definitions-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 3312be0a0090c5dea6a4a6539b2445b0f6af8c859b081742c27852ebb3db504c
+ md5: 1616226e84d7d96b67b562a42998ccab
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20548
+ timestamp: 1736205374472
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-dependencies-1.3.11-np126py311h2c3b307_7.conda
+ sha256: ca8e343bb56568ac6103a2343e75c88ee026730fb67d1126cf7b0ffae1518ae1
+ md5: a47fce87cc31132d8fd1c07aadd58485
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-libraries
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 21490
+ timestamp: 1736206833507
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-include-directories-1.3.11-np126py311h2c3b307_7.conda
+ sha256: fa21a9f2db81a30bdd1adc00607bf2d247a2fc4dca8e6798dd92f55bbeaa14b7
+ md5: 6b5ce82a7fe33f2e91ae4ac1a94ccb3f
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20962
+ timestamp: 1736205370838
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-interfaces-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 044d715c407b25e9b84add16fa6d4db8137c4fee7fa10b3e355dc790235c8567
+ md5: 0c628430cf7c32fcc1b4805e72735b7e
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-export-libraries
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21158
+ timestamp: 1736206863821
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-libraries-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 42ef8accfa2f2a8dff64a255d200733d32799bd2939691c7ad388c31424f004a
+ md5: d6e39dc492c7dfe395fc13f147c7aa3f
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 22481
+ timestamp: 1736205352627
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-link-flags-1.3.11-np126py311h2c3b307_7.conda
+ sha256: b847d395b22456e462fab27b140555f0582b35d7f53427d95590ad2a742163b2
+ md5: c0b178f47eb707335321239a6ab2f7c3
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20548
+ timestamp: 1736205366906
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-export-targets-1.3.11-np126py311h2c3b307_7.conda
+ sha256: d103b760ab84bc7516320ac07eae351922c8315ce87b7dc79411b2e5ecf13db0
+ md5: 0ea169ff34b677b672bfbda5626d4041
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-export-libraries
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21323
+ timestamp: 1736206859567
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-flake8-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 1d988b0373d481884d1ea419c83c96369669fe490e5bf2ca3aab3ea109c81a1d
+ md5: 73e58a5a02356d71e00bbe25c2ae8ee5
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-flake8
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21902
+ timestamp: 1736207503447
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gen-version-h-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 50649cb811b244995a57d5d938a7eeff990f220be67b5c06d31787856bac1304
+ md5: 75cedd56c7e6b0c86dbcf8a076d4504a
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23281
+ timestamp: 1736206998497
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gmock-1.3.11-np126py311h2c3b307_7.conda
+ sha256: e34e880a128d657392cb1fc4699704902745d7f22821e8a2c1249f8d730b09bf
+ md5: 363bb5cf965f797f9a1e9784e898daf1
+ depends:
+ - gmock
+ - python
+ - ros-humble-ament-cmake-gtest
+ - ros-humble-ament-cmake-test
+ - ros-humble-gmock-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22859
+ timestamp: 1736207005970
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-gtest-1.3.11-np126py311h2c3b307_7.conda
+ sha256: b11d04f83877f48fb5966b96d59a1c80ce94c3134c786621d01ffa525df7e7f8
+ md5: 8d3230320ed54ac6153902c2203436cb
+ depends:
+ - gtest
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-gtest-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - gtest >=1.15.2,<1.15.3.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23111
+ timestamp: 1736206933818
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-include-directories-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 08d4ba482a6f697ce0299fb030f9b27a7ea00d0f5326e8ecb99d6e0b8732798e
+ md5: 0e7a11d653aef8b622a648b7480196ba
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20393
+ timestamp: 1736205377055
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-libraries-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 20d33b463dcaa986f7057ede995c96b84eda6c37c83ad8aa0b6a6bec6fec4b92
+ md5: 70d50c3633cc3fba38b228779d86bef6
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20103
+ timestamp: 1736205373435
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-lint-cmake-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 90c83b3de00c6d88591a0f286df3b4ee181c7c47afe4be3bedea8f6fd9816bf5
+ md5: 34e3f94ddf7afa9463ba07955eb5c34f
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-lint-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20823
+ timestamp: 1736207167608
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-pep257-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 02c0695afd3798edd9f873246b3c3898be82085ae59ed24bfc38bfdd315f7eb2
+ md5: 71311da5e5ed80a4e15fc46285e43afc
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-pep257
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21607
+ timestamp: 1736207499388
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-pytest-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 2d7263c5e6576089a7f9ea700976956134a38b6ecc3b87bb9a2694dbdd844273
+ md5: 36b452cc0f53b2c93f86880e5bd7bcc2
+ depends:
+ - pytest
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-test
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23128
+ timestamp: 1736206948145
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-python-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 47ce511bdee4659c51169b28c3d2fd0146b3700a3f22d59841463e3a1d75cc80
+ md5: 2012aca135f7d3b82ea8453e357fac8d
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 23040
+ timestamp: 1736205363819
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-ros-0.10.0-np126py311h2c3b307_7.conda
+ sha256: 005b202f7fc9210489ebdf03a163cbad34a4c987aa68e453d220ea398af8c0ad
+ md5: 3def493e443c1e454bfb6a6c4d474c3e
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-cmake-gmock
+ - ros-humble-ament-cmake-gtest
+ - ros-humble-ament-cmake-pytest
+ - ros-humble-domain-coordinator
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 29102
+ timestamp: 1736208189632
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-target-dependencies-1.3.11-np126py311h2c3b307_7.conda
+ sha256: d62c1f14d169a8565ed9f201b9f73598041e2f8382e6e2c890eec3e866604eaf
+ md5: caa0adf1df6773fc4bc23bd23c9451f7
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-include-directories
+ - ros-humble-ament-cmake-libraries
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 22108
+ timestamp: 1736206855233
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-test-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 2f978c4098b0c4731ae61bda6b298ddebcad6ca64b19a743aec7867a2e6d9f2e
+ md5: 80a632762483d5a26fa4494f2c152d6f
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 34688
+ timestamp: 1736206848007
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-uncrustify-0.12.11-np126py311h2c3b307_7.conda
+ sha256: adfd92d2873ef269a4d426684ede008d2222969fb5da2410a9e8b4b68e671fa8
+ md5: 43b73f7f089d76b2e89d7cae274d3b43
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-uncrustify
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21934
+ timestamp: 1736207494072
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-version-1.3.11-np126py311h2c3b307_7.conda
+ sha256: 5b700c9fd1474e5a8b21f8bc807b02258ce3b750d56278be0b2e03148bd3c9a7
+ md5: fbd1026fc17d5d6cb9d1cbdf3d4794dd
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 20260
+ timestamp: 1736205363204
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cmake-xmllint-0.12.11-np126py311h2c3b307_7.conda
+ sha256: e19b2df307f9e39a2f60860522c36d0c26725515949e282e35129efe602f99d1
+ md5: 0c1a923bbaf3322ebd4fd9469d0d71f6
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-ament-xmllint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21463
+ timestamp: 1736207482611
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-copyright-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 388dd42e53c4548a1777c24ec1441d83a628f61860cfb267e85e693ecac3a63b
+ md5: c672f0ddc5c600c2dd35026fedfa5efb
+ depends:
+ - importlib-metadata
+ - python
+ - ros-humble-ament-lint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 64477
+ timestamp: 1736206986194
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cppcheck-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 9de3d5aa2a1095b1c78c3113b672a13d68143baf22f0f36b90255ff120058383
+ md5: c4140ce5debf18f8bfd39ff869511b0e
+ depends:
+ - cppcheck
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27000
+ timestamp: 1736205365978
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-cpplint-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 9e79cafd49aabad82ee69b463d30500d78e2fb1228075258a1816d79212663ce
+ md5: f902ee8a89f72f4f7954c9e24af3e2fe
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 175232
+ timestamp: 1736207120962
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-flake8-0.12.11-np126py311h2c3b307_7.conda
+ sha256: e3e7e01b652867ef71b6e4b9eb0a7377d591408826ac309d8aae248280bd7357
+ md5: 0ec5ee13cb37dc5c46a45d243c76f48b
+ depends:
+ - flake8
+ - python
+ - ros-humble-ament-lint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 28176
+ timestamp: 1736206834454
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-index-cpp-1.4.0-np126py311h2c3b307_7.conda
+ sha256: 4dd3a439868403c3ff9ebe22bf786765d802a1a9f2ace349259d11eb26187512
+ md5: 217fa69e0b2dcc2f6fbd1f91a45bc516
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 44158
+ timestamp: 1736208165886
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-index-python-1.4.0-np126py311h2c3b307_7.conda
+ sha256: ab29d83fb3bbd8207557a246e27209e27d84392c3119ed2a5ef2d9a0137bb858
+ md5: 86402019c344731609103b4808091600
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 27854
+ timestamp: 1736207126404
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 5c4d125b5d67659b44166d0bef409b0f2e1e5ef2c6e666ba06348f369e296790
+ md5: 4f2d9d6a9c610932d966f034400ba36f
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 16167
+ timestamp: 1736205352483
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-auto-0.12.11-np126py311h2c3b307_7.conda
+ sha256: ea4fc847e79f5de3beccf45f74460e2d7150c3992258886c8cdaf2859f0482aa
+ md5: fc1c5838b478028ea842b138d89ffa19
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-test
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 20486
+ timestamp: 1736206940032
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-cmake-0.12.11-np126py311h2c3b307_7.conda
+ sha256: b89fad016ba75944dbd128dbb2b244d5528eccfaba12bd7db67b531ff6876fc8
+ md5: a6ab244960992fa7c8cf91a4d7ae1237
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 39423
+ timestamp: 1736207095186
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-lint-common-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 5549272b5213df130c58b0d966afa163733ff29db343eb1924e866bb1e03d235
+ md5: 76782fb32c11de3eed6063c50e4071e1
+ depends:
+ - python
+ - ros-humble-ament-cmake-copyright
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-cmake-cppcheck
+ - ros-humble-ament-cmake-cpplint
+ - ros-humble-ament-cmake-flake8
+ - ros-humble-ament-cmake-lint-cmake
+ - ros-humble-ament-cmake-pep257
+ - ros-humble-ament-cmake-uncrustify
+ - ros-humble-ament-cmake-xmllint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20770
+ timestamp: 1736207545999
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-package-0.14.0-np126py311h2c3b307_7.conda
+ sha256: c75cc1ae8ef017f0752b65f6d5325b706e640983d9ac96fdea35bac7ca009a48
+ md5: 158a13122d7eb30aa58975d7ba565663
+ depends:
+ - importlib-metadata
+ - importlib_resources
+ - python
+ - ros2-distro-mutex 0.6.* humble_*
+ - setuptools
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 47117
+ timestamp: 1736205283929
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-pep257-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 7601c4cf2fcb3a115e2ff157ab2eac9dacd42cea40d875208ba5f8aba51baa0d
+ md5: d11ce05f0c2491e4828bc2ae043b19ac
+ depends:
+ - pydocstyle
+ - python
+ - ros-humble-ament-lint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25767
+ timestamp: 1736206920920
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-uncrustify-0.12.11-np126py311h2c3b307_7.conda
+ sha256: 9bf2656e1967057a529e5b298cf3159a025e06ba24548059943259dcc8d7b30c
+ md5: ee37deb5784e7c194c371c82e30d6fb2
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-uncrustify-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 48745
+ timestamp: 1736207425020
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ament-xmllint-0.12.11-np126py311h2c3b307_7.conda
+ sha256: f0e165150a0b35cc8a63318763d84810030885615da30ae2bb89d3bf7497c313
+ md5: 4b16b51995b0658352b14ffeb2c90add
+ depends:
+ - libxml2
+ - python
+ - ros-humble-ament-lint
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27150
+ timestamp: 1736207115722
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-angles-1.15.0-np126py311h2c3b307_7.conda
+ sha256: 54424e7f004f8e12afcda941f32f716cf0597c56bb4eb0ab197aa28c860c7ed0
+ md5: cfb2dabad689326e0fcaa28939c8224f
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 31152
+ timestamp: 1736207359497
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-backward-ros-1.0.6-np126py311h2c3b307_7.conda
+ sha256: 6ab1282e838d6c804e95ecf9df33af82d6db4d64929170dbf6a422e373d8cd3c
+ md5: 4b70167b399689ec2f916bb4f2e21890
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - elfutils >=0.192,<0.193.0a0
+ license: BSD-3-Clause
+ size: 337928
+ timestamp: 1736206893587
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-bicycle-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: c07d0ae596a020f2765248980e6cf378c0f713d8b716e60792553ca6740d157a
+ md5: 430d1d1b3ef533cfa2ddfed69f6cdbbf
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros-humble-steering-controllers-library
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 83117
+ timestamp: 1736212849524
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-builtin-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ sha256: 2d5d8bdf8c6117bb5fb58a4e6e051e4afe8b1c2245dd6eb6af94f4fce74b2a96
+ md5: 86eee592f38f478d7bccc1c44136414d
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 72866
+ timestamp: 1736209100802
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-class-loader-2.2.0-np126py311h2c3b307_7.conda
+ sha256: 42dbc7bea7e9708399d15fb78020a230895b4889f8a8d2d3c193b9a630ba18b2
+ md5: 73c40abac862f37bb7829a52c0f2f258
+ depends:
+ - console_bridge
+ - python
+ - ros-humble-console-bridge-vendor
+ - ros-humble-rcpputils
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ license: BSD-3-Clause
+ size: 69991
+ timestamp: 1736208696437
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-common-interfaces-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 9e11170511ceeb46bc80db4a9170841488540702351258b91654ef0bc205afa1
+ md5: 2cf397053f15cf3ee3b0c7f522827ec1
+ depends:
+ - python
+ - ros-humble-actionlib-msgs
+ - ros-humble-builtin-interfaces
+ - ros-humble-diagnostic-msgs
+ - ros-humble-geometry-msgs
+ - ros-humble-nav-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-shape-msgs
+ - ros-humble-std-msgs
+ - ros-humble-std-srvs
+ - ros-humble-stereo-msgs
+ - ros-humble-trajectory-msgs
+ - ros-humble-visualization-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 24430
+ timestamp: 1736210146596
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-composition-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 59e13e2247fbdcf15525408d5ce6390463507cc05157d4e7331e6abaa10a8cc8
+ md5: 92f783ef7410799034eeda2ebbf6bdce
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-launch-ros
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 329629
+ timestamp: 1736211379723
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-composition-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ sha256: d13d6f840377179db1c67748abc1f72efdd0ca56c5a06242af5f63c22502ee77
+ md5: 9424fc9b5cb27f53c394d1c7e9976a18
+ depends:
+ - python
+ - ros-humble-rcl-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 144318
+ timestamp: 1736209370926
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-console-bridge-vendor-1.4.1-np126py311h2c3b307_7.conda
+ sha256: b07b322e7989bf18e6620b1f7f7d264879b278a72f55932cdf237aa411314925
+ md5: ee1ebfe510641ab2d581b3aceb17bcd9
+ depends:
+ - console_bridge
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 24924
+ timestamp: 1736208487928
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-control-msgs-4.7.0-np126py311h2c3b307_7.conda
+ sha256: e2065714250ee20e79b153b5453409c4027a50770e16aabb377d53fb5df50d3c
+ md5: 8057b35aed0fd0d762013c4bfb04cb1c
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros-humble-trajectory-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 690171
+ timestamp: 1736209683418
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-control-toolbox-3.4.0-np126py311h2c3b307_7.conda
+ sha256: 1195fc6f1acf503d1da96835b5ff4a331f204d297c1400cf0df1943c9850cf82
+ md5: da6763fe690d135458755e1eee59cd86
+ depends:
+ - eigen
+ - python
+ - ros-humble-control-msgs
+ - ros-humble-filters
+ - ros-humble-generate-parameter-library
+ - ros-humble-geometry-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rcutils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 183458
+ timestamp: 1736211607741
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-interface-2.47.0-np126py311h2c3b307_7.conda
+ sha256: cebd0aa766f6ba60663998a28f4eeca98ae29b9aefc527d8d920e3b1184d8a0c
+ md5: 9f7ec595f020a37084b30686efcb4705
+ depends:
+ - python
+ - ros-humble-hardware-interface
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 58120
+ timestamp: 1736211160536
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-manager-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 3a2c0778e1575126fade1cc6b15403e9a13ff68c269e9ae629142acdbb5db4d7
+ md5: 07e5e173786c9101ae7e546114116b6b
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-controller-manager-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-launch
+ - ros-humble-launch-ros
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rcpputils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-ros2-control-test-assets
+ - ros-humble-ros2param
+ - ros-humble-ros2run
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 481005
+ timestamp: 1736212034198
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-controller-manager-msgs-2.47.0-np126py311h2c3b307_7.conda
+ sha256: f41a7ea2a6a2175f399005ee6759f248b484d648d305a1cbf7be9884022c78b0
+ md5: 88aa6e9ed844f179ebb1b216369f43f8
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-lifecycle-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 309390
+ timestamp: 1736209238315
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-cv-bridge-3.2.1-np126py311h2c3b307_7.conda
+ sha256: f411eec3fe15a22157982d039a1029d74f3009b96813bc4b9c5093c915b3a6d6
+ md5: 36c6dc6b5c9553de57c1625774c44452
+ depends:
+ - libboost-python
+ - libopencv
+ - numpy
+ - py-opencv
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-rcpputils
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - libopengl >=1.7.0,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - py-opencv >=4.10.0,<5.0a0
+ - libopencv >=4.10.0,<4.10.1.0a0
+ license: BSD-3-Clause
+ size: 174919
+ timestamp: 1736209729884
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-cyclonedds-0.10.5-np126py311h2c3b307_7.conda
+ sha256: dea06c33ee49a50cee3864c7c5f3b16315fd5ad1f1dfe11ed791d2860dbe7ec3
+ md5: 78e1a3671b5ae1a9c497bd2d0be9c328
+ depends:
+ - openssl
+ - python
+ - ros-humble-iceoryx-binding-c
+ - ros-humble-iceoryx-hoofs
+ - ros-humble-iceoryx-posh
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - openssl >=3.4.0,<4.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 1208705
+ timestamp: 1736207010593
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311h2c3b307_7.conda
+ sha256: a843604c8c5171714abce862d0e109999cb0584ab782586d40fa9401011a171a
+ md5: 96b544f022e8885843c03248feba820b
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-launch-ros
+ - ros-humble-launch-xml
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 848452
+ timestamp: 1736211289537
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 5ee3467f7df4484b550f19bc76f6d3b7ff04f8658f9244ed36d37ca0a9ccbf57
+ md5: f57821d0e5daf8cda9e61a971111a158
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-rmw-fastrtps-cpp
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 115257
+ timestamp: 1736211276911
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-demo-nodes-py-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 3cc0e409153a4534ea8aad3f13e1a15e04db2d81d23be97a8f7f3b2823507013
+ md5: aac788444be6b831229b91f506ccea3b
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 26610
+ timestamp: 1736210465331
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311h2c3b307_7.conda
+ sha256: 2990c0d05062efe773b5eb9ed17de1d7ed1d8b474d976a4f115bd651e96d5553
+ md5: 78b8e8e58182d35ba8e69290f5cc3d81
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-humble-image-geometry
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - libopengl >=1.7.0,<2.0a0
+ - libopencv >=4.10.0,<4.10.1.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - py-opencv >=4.10.0,<5.0a0
+ license: BSD-3-Clause
+ size: 235510
+ timestamp: 1736210578975
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-desktop-0.10.0-np126py311h2c3b307_7.conda
+ sha256: ba4480be965ac44ae8410a87550ee278c13c82b12508977b2b3fef551bd3ffe7
+ md5: 41344f25710efd15d912f4188c084d0f
+ depends:
+ - python
+ - ros-humble-action-tutorials-cpp
+ - ros-humble-action-tutorials-interfaces
+ - ros-humble-action-tutorials-py
+ - ros-humble-angles
+ - ros-humble-composition
+ - ros-humble-demo-nodes-cpp
+ - ros-humble-demo-nodes-cpp-native
+ - ros-humble-demo-nodes-py
+ - ros-humble-depthimage-to-laserscan
+ - ros-humble-dummy-map-server
+ - ros-humble-dummy-robot-bringup
+ - ros-humble-dummy-sensors
+ - ros-humble-examples-rclcpp-minimal-action-client
+ - ros-humble-examples-rclcpp-minimal-action-server
+ - ros-humble-examples-rclcpp-minimal-client
+ - ros-humble-examples-rclcpp-minimal-composition
+ - ros-humble-examples-rclcpp-minimal-publisher
+ - ros-humble-examples-rclcpp-minimal-service
+ - ros-humble-examples-rclcpp-minimal-subscriber
+ - ros-humble-examples-rclcpp-minimal-timer
+ - ros-humble-examples-rclcpp-multithreaded-executor
+ - ros-humble-examples-rclpy-executors
+ - ros-humble-examples-rclpy-minimal-action-client
+ - ros-humble-examples-rclpy-minimal-action-server
+ - ros-humble-examples-rclpy-minimal-client
+ - ros-humble-examples-rclpy-minimal-publisher
+ - ros-humble-examples-rclpy-minimal-service
+ - ros-humble-examples-rclpy-minimal-subscriber
+ - ros-humble-image-tools
+ - ros-humble-intra-process-demo
+ - ros-humble-joy
+ - ros-humble-lifecycle
+ - ros-humble-logging-demo
+ - ros-humble-pcl-conversions
+ - ros-humble-pendulum-control
+ - ros-humble-pendulum-msgs
+ - ros-humble-quality-of-service-demo-cpp
+ - ros-humble-quality-of-service-demo-py
+ - ros-humble-ros-base
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-common-plugins
+ - ros-humble-rviz-default-plugins
+ - ros-humble-rviz2
+ - ros-humble-teleop-twist-joy
+ - ros-humble-teleop-twist-keyboard
+ - ros-humble-tlsf
+ - ros-humble-tlsf-cpp
+ - ros-humble-topic-monitor
+ - ros-humble-turtlesim
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22062
+ timestamp: 1736215434120
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-diagnostic-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 5e321107092de710d4aed553f2f7a9247043398564cc85dd3f3152e4ea488f21
+ md5: b5ef8b6a73455eb1f41227f3d663275d
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 144442
+ timestamp: 1736209495666
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-diff-drive-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: ccc5f23d89af939fea433839ebf27f01232e814732e44c20488288c2fc4647c5
+ md5: a8880f78bb8a75a4039f09fba4b2cf0b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-geometry-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-nav-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rcpputils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 305691
+ timestamp: 1736212587737
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-domain-coordinator-0.10.0-np126py311h2c3b307_7.conda
+ sha256: 8b1fb60edca06f7a4d6319391df40ae6ce0fde4325337c2a8c654a1014653e1e
+ md5: e2753ddd9c03cea55d3ebffd1452d2d8
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 19808
+ timestamp: 1736207095317
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-map-server-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 9295a46f55664707220946a66993f7ad0fed5f0a7021cf8d17b3b7758c8018c8
+ md5: 9bf3debe4631ee563fce75fe5d9bea0b
+ depends:
+ - python
+ - ros-humble-nav-msgs
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 84954
+ timestamp: 1736210453656
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311h2c3b307_7.conda
+ sha256: bd055f5faa4fe6d043e5fc89b74d7bf3e6590b41b33d65450f40626b9151e163
+ md5: 9bcd2703edc87e2c2f6fff42349cb5ef
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-dummy-map-server
+ - ros-humble-dummy-sensors
+ - ros-humble-launch
+ - ros-humble-launch-ros
+ - ros-humble-robot-state-publisher
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 28615
+ timestamp: 1736212045258
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-dummy-sensors-0.20.5-np126py311h2c3b307_7.conda
+ sha256: b1bd6749ecf455eb105cd926146fc270bf874f6a5bfd9bee78676822260f2291
+ md5: 605a15b353548fd6187ef27d07738971
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 112464
+ timestamp: 1736210440401
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-effort-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: ce8c5e888a04a577f7bff261e182246d2251f83d488bc382764c822d030a8c57
+ md5: d560536ff12e8cb60515ae05ac60785b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-forward-command-controller
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 60709
+ timestamp: 1736212838771
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311h2c3b307_7.conda
+ sha256: 3c7e72f4d291050a517134afb2027fb4c33ff08eda40560bb170502e609e62dc
+ md5: 1e600abdbb322a07723876b96027575b
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21981
+ timestamp: 1736207496761
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-example-interfaces-0.9.3-np126py311h2c3b307_7.conda
+ sha256: af775ce69d2347813213bd5b509b61789a9d47704fae82717bcbb59176c53ebb
+ md5: bb028834fb2af41d6c3ed99de4cb8983
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 379993
+ timestamp: 1736209358990
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 511429e9536159ae3012a3b9ae5562d846ce0f112edbc7d729623b8d29f65039
+ md5: 5e27ee391a687d195d51c54fbe3132eb
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 147677
+ timestamp: 1736210731993
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311h2c3b307_7.conda
+ sha256: c91bd600f2f0014211393530188e3ddcea287b42c750f5b297b15625ad8885f0
+ md5: f6bda7ac02d2f1b7a5c25394bd2fc653
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 83444
+ timestamp: 1736210721023
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311h2c3b307_7.conda
+ sha256: dc4420b18bfe50b96ed454b639d6eb0b05b651947cad6cd68542120f4a1dc0a4
+ md5: b50de860380ab35fa381550008355530
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 65310
+ timestamp: 1736210473655
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311h2c3b307_7.conda
+ sha256: e78434e68121036c7ecbd74a0b9524fd25eee841d9bf6c157201a57e90ed1e2e
+ md5: 03695aeafde750faf521f190c1d68b7e
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 191442
+ timestamp: 1736210701933
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 8b52ab92c2c8b62d6dbf116441c78afa8c8a3f0c3c5a334a34bc64ae122dce87
+ md5: 16d4defc737c5fc150f2f56ee0d3bd1e
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 189718
+ timestamp: 1736210454909
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 7e5c3570d9a54dca70cd1791548233d20e21cee026a0e7e5bc154727863602e6
+ md5: 45ef91776c1e12c27595a41a5ec2c090
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 56634
+ timestamp: 1736210444970
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 5656fe41c5b4f3df8e789a584822c5b2780479a4c30b94c58240be379497ba5c
+ md5: dc7fc7f43b89d508b0efd2d25bfb4431
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 556608
+ timestamp: 1736210647945
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 505b113ff51aeb0d49c89f6a38f7addd0f9336a6e105ef9ed4f82a6b0abb8705
+ md5: 481123cda02dc6175a30c24cbf9c4ac4
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 47196
+ timestamp: 1736210436235
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311h2c3b307_7.conda
+ sha256: dffcb0080ead2c20ee1b053fdc7bf4190d36d58ad9dbb8eccaf3f5d3df721b27
+ md5: 29591886086616c3cd576b8dba60f3c0
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 164896
+ timestamp: 1736210411954
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 68d3deafda81ea53f33245a1b0b04fc58a6284dd4d6c35598dadef23acfe25f5
+ md5: 934f5d3877f4de320cff753fc64cd736
+ depends:
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27125
+ timestamp: 1736210431195
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 3fff6e5bee481e4f2627b8a0e86a03da48812b7b09c2924bf479044906300480
+ md5: 31653ee2e390cfb88af080e8ec31e432
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25377
+ timestamp: 1736210427537
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311h2c3b307_7.conda
+ sha256: dada668fed298aa921ca3898a22c980413ede3dff22b5f31052ad72344bcee42
+ md5: 922a17e6b9b606ac3a4bebc0d3429575
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 26853
+ timestamp: 1736210423886
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 3fdf617b03f54bf1668706af5405f6f1c4ae3dc3de84893aa43da329f6b6c7bd
+ md5: c0a16be7843ea956dc09c863b4947516
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22481
+ timestamp: 1736210420289
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311h2c3b307_7.conda
+ sha256: f70c7dd3dfc7955e3165b94aef360c6c7bff4b63de042b61be74e0751afa5ac2
+ md5: 34e0efa742aaa36601f886d4ac4394c4
+ depends:
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 21265
+ timestamp: 1736210410193
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311h2c3b307_7.conda
+ sha256: 7094d8e60e8fa4f248bb5d78bfbc0d5a3143e7e2c5247aa04a338192f00a80f4
+ md5: 1a0964e8d6c67962cf0b059d050716c6
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20160
+ timestamp: 1736210482973
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311h2c3b307_7.conda
+ sha256: e196f28e9089bc4461733c42ee578c1b8881cfc324b34c6e8bc7848ecfeda4cf
+ md5: 954d081074f2b3d00dd7d240f345d43e
+ depends:
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20758
+ timestamp: 1736210478066
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastcdr-1.0.24-np126py311h2c3b307_7.conda
+ sha256: 9ce292efa7fd3bcfa46588ffd97bf10eaab68868dd26343c4e8d733e542320ee
+ md5: 64e89087daf71b4ba149c9d36d2e0956
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 65965
+ timestamp: 1736205360422
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastrtps-2.6.9-np126py311h2c3b307_7.conda
+ sha256: ab27ecedbb6daa3a9279dd4a3f30c4232b1e9f6d362c000e52f71816aed7ad3d
+ md5: a84e4173c3c42bfa39e0fdfd8930db45
+ depends:
+ - openssl
+ - python
+ - ros-humble-fastcdr
+ - ros-humble-foonathan-memory-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - tinyxml2
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - openssl >=3.4.0,<4.0a0
+ - python_abi 3.11.* *_cp311
+ - tinyxml2 >=10.0.0,<11.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 3689820
+ timestamp: 1736208182246
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311h2c3b307_7.conda
+ sha256: f33b599bb53ae0213dd9d54a91cb58f0c67cea4170d9912c4260272ca8d63554
+ md5: 6ab94c87b6d06d78b76fdc99cc538379
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 25170
+ timestamp: 1736208177863
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-filters-2.1.0-np126py311h2c3b307_7.conda
+ sha256: 6b732c0f53298e9edf1479b4df7c04e8085b6794e049d37ddaef0a8c71834d98
+ md5: ddd716f2b597eed66865807ef68f0083
+ depends:
+ - libboost-devel
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 97632
+ timestamp: 1736210426525
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311h2c3b307_7.conda
+ sha256: dc0c9b825ec3ef343657c88bfcdb2113973ffac58cc3424eee2cef22b17596fb
+ md5: 009e93a727744a6c53f718fe8b318804
+ depends:
+ - cmake
+ - foonathan-memory
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - foonathan-memory >=0.7.3,<0.7.4.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 18428
+ timestamp: 1736207558068
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-force-torque-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 4a4c58e4b494f42a7d2144f3369f3ca5ed2bd846560471802a6e01f370cc5166
+ md5: d071163f375977492a8b2e46288f5d5c
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-geometry-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 138727
+ timestamp: 1736212573419
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-forward-command-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 00e6e4d7aa49d54e0d62c02626803519cb27e46f3eb2f4633ecce3827468c0de
+ md5: eaed58de183b4f7ec9639e0a494835d6
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 209474
+ timestamp: 1736212467654
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-generate-parameter-library-0.3.9-np126py311h2c3b307_7.conda
+ sha256: 5331034634fd7b609048f6b72c45554bac5c7c6f292fd0059e7855c0f0a362c7
+ md5: ac0edf5a6d6ac57256b5d17a62116e62
+ depends:
+ - fmt
+ - python
+ - ros-humble-generate-parameter-library-py
+ - ros-humble-parameter-traits
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rsl
+ - ros-humble-tcb-span
+ - ros-humble-tl-expected
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - fmt >=11.0.2,<12.0a0
+ license: BSD-3-Clause
+ size: 43149
+ timestamp: 1736211353930
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-generate-parameter-library-py-0.3.9-np126py311h2c3b307_7.conda
+ sha256: 7418591c6ecc10fc9fcd7069dfc4dc222c7b30b16a5228c23342ab7d140011c1
+ md5: 51566b31515a5dd67b84a01b777815b2
+ depends:
+ - jinja2
+ - python
+ - pyyaml
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - typeguard
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 70768
+ timestamp: 1736207106702
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-geometry-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 5c8e2795ce033322eb101ca70ba3f3f13013048e32c81eb9fc57ab19b5252be7
+ md5: 03ed2e763e19685b4579019ed8c7b918
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 298963
+ timestamp: 1736209385594
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-geometry2-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 384532b59ca4347103dd01db9391c340b0df22c2ee71987e3f71109a6f33ebe7
+ md5: 687ba2097131c3db7bf12866c6e1192f
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-bullet
+ - ros-humble-tf2-eigen
+ - ros-humble-tf2-eigen-kdl
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-tf2-kdl
+ - ros-humble-tf2-msgs
+ - ros-humble-tf2-py
+ - ros-humble-tf2-ros
+ - ros-humble-tf2-sensor-msgs
+ - ros-humble-tf2-tools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 20909
+ timestamp: 1736212117625
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gmock-vendor-1.10.9006-np126py311h2c3b307_7.conda
+ sha256: 6e745bfc64adde2254dbd03167be77b3b19e4997dbd81b817b73e16f63a5e57b
+ md5: adbb4d01192a0586c5b1c6e5cef017e0
+ depends:
+ - python
+ - ros-humble-gtest-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 112835
+ timestamp: 1736206845288
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gpio-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 13d30b22fa4667390007cccace38f0c65054a57575e23445f303dd8936fd0319
+ md5: 3235e710e2ec72a84662b4c2a7e859e3
+ depends:
+ - python
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 228763
+ timestamp: 1736212552011
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gripper-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 878e4e967582a182377b4e5e0e7a9b2c9a5a11cc5a0b8f20f792383f3def451b
+ md5: ef8e7200b66fda60ceb545dd1ac61bc4
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-control-toolbox
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 139744
+ timestamp: 1736212534655
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-gtest-vendor-1.10.9006-np126py311h2c3b307_7.conda
+ sha256: 2002ad1acf1b4aaf571f5eb356d96b40ac27ad6329f6cf8742f2561c17791428
+ md5: eb25b0ccf69f820fbcf1dd59217950ff
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 199218
+ timestamp: 1736205370054
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-hardware-interface-2.47.0-np126py311h2c3b307_7.conda
+ sha256: b5947e08cc38e1c733d56b4c4538981efaa441b1f25fda1b7056499eb977ea79
+ md5: f21d5ba9e1c4a17ff2b47163a2797ed2
+ depends:
+ - python
+ - ros-humble-control-msgs
+ - ros-humble-lifecycle-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-tinyxml2-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 303700
+ timestamp: 1736210629118
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311h2c3b307_7.conda
+ sha256: fa41746dcf44cd7be420d92f37349feee786d59ad94317ebda352c49ec1c91a0
+ md5: 3e091d9261c88114e8956f86d7a005cc
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 91935
+ timestamp: 1736206921266
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311h2c3b307_7.conda
+ sha256: fb294d9f14e1568cf929db2dafb28dca242b0dcc6ad955b12797b2d80e37f046
+ md5: 9005953fc6a519ab808c0d846ed5bd19
+ depends:
+ - libacl
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - libacl >=2.3.2,<2.4.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 265904
+ timestamp: 1736205366416
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-iceoryx-posh-2.0.5-np126py311h2c3b307_7.conda
+ sha256: 7890f0ef1007b02328fc65ff6c6b225b8692ae64bb1bd3a67c8004bce7fae862
+ md5: 098bc41d1d9526de7350d5797ad245db
+ depends:
+ - python
+ - ros-humble-iceoryx-hoofs
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 578521
+ timestamp: 1736206849204
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h2c3b307_7.conda
+ sha256: 87e4c55ebed9c2833e71f001f6418dbfb3698f99375ae355755fd7c936021ce8
+ md5: af96d5bab1c8b7a7e26b0e47231fbeab
+ depends:
+ - libignition-cmake2
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - graphviz >=12.0.0,<13.0a0
+ - libignition-cmake2 >=2.17.2,<3.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 22863
+ timestamp: 1736208126971
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311h2c3b307_7.conda
+ sha256: fb80366dbf9affa275ddd1ec5c5d83d83856746a9d28ea6d68d61343d5e6d48a
+ md5: 764b99e49096a1639081bae5b23c75a6
+ depends:
+ - libignition-math6
+ - python
+ - ros-humble-ignition-cmake2-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - libignition-math6 >=6.15.1,<7.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 22724
+ timestamp: 1736208176604
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-geometry-3.2.1-np126py311h2c3b307_7.conda
+ sha256: 93d3a7da6a6862d0424ee9d4bfcfd087e00357ff4cb18d67839bc4436bfb3faa
+ md5: 0b54b87cd22c904e7b7229c4c7342453
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - libopencv >=4.10.0,<4.10.1.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - py-opencv >=4.10.0,<5.0a0
+ license: BSD-3-Clause
+ size: 73178
+ timestamp: 1736209743381
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-tools-0.20.5-np126py311h2c3b307_7.conda
+ sha256: fba8c8c358f09d5a97d1552e538190fc31ac00af11ecbec849993a159be07877
+ md5: f969b847dbf1a2bbe164e9bcbd59b5fb
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - py-opencv >=4.10.0,<5.0a0
+ - libopencv >=4.10.0,<4.10.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 290795
+ timestamp: 1736211249005
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-image-transport-3.1.10-np126py311h2c3b307_7.conda
+ sha256: 9afd15b17faa8631c2d3250bb80d0bab9dd1bad59a926116cad44725a5118032
+ md5: f49b17afe8b8b7bc7d4082dafc2d4744
+ depends:
+ - python
+ - ros-humble-message-filters
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 558250
+ timestamp: 1736210939243
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-imu-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 2d823d9fd8bb20422cc26716bd0022f1d4fe78d31b18e45d48d0141f7c0c55dd
+ md5: 71b6da825c3ed28d43f32cc736e6ff3b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 140568
+ timestamp: 1736212442142
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-interactive-markers-2.3.2-np126py311h2c3b307_7.conda
+ sha256: f67305f3ba1dbd8bc42fa29df62f06fae7cf89d4bb7e94f26eeaae9432a8664c
+ md5: 882ff76314900b20851d22d7f9f8557d
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclpy
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-visualization-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 311725
+ timestamp: 1736212173111
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-intra-process-demo-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 46241b2e70167ad7c09fb4f1a838cb81dcfe7689a1ac103d72b0ecf3dfb90ea1
+ md5: 71e19de790d03432e47eba0af6528d81
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - py-opencv >=4.10.0,<5.0a0
+ - python_abi 3.11.* *_cp311
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libopencv >=4.10.0,<4.10.1.0a0
+ - libopengl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 518600
+ timestamp: 1736210431461
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-limits-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 1880c02c752f750d665824dace7abef36619275bffe530143d0055ac804ce119
+ md5: c1aa14704b5160a9576f52fcd1294d5b
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 38060
+ timestamp: 1736210893365
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-state-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 62c6961fdc04392e85c069e898f9a6f9e22851440179f71f8b142dadf2183ecd
+ md5: 6a7cedd60f67839d079e635f929b6db1
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-builtin-interfaces
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rcutils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 158245
+ timestamp: 1736212635290
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joint-trajectory-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: a9626f225bd4af6c29f0a071007701e6c424b7211660ba6717fa67c98f2b7f4b
+ md5: 91c5bd4447647803fc7f9a995ae9b84c
+ depends:
+ - python
+ - ros-humble-angles
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-control-toolbox
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-rsl
+ - ros-humble-tl-expected
+ - ros-humble-trajectory-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 367906
+ timestamp: 1736212525860
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-joy-3.3.0-np126py311h2c3b307_7.conda
+ sha256: 556a7c2729d8530ea389d5e165f7291cc583e4044db8d678311d20c8822e6c6f
+ md5: 5a092cc58a7ce9cd30640e87b411a456
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-sdl2-vendor
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 273882
+ timestamp: 1736210615541
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-kdl-parser-2.6.4-np126py311h2c3b307_7.conda
+ sha256: 8ff2d51c7e29f1a9678e9260aa07145a41e39935293f71c9cad3328b2f83b659
+ md5: c020caded3011ff328847f3809cca230
+ depends:
+ - python
+ - ros-humble-orocos-kdl-vendor
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-urdf
+ - ros-humble-urdfdom-headers
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 44709
+ timestamp: 1736208942905
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-keyboard-handler-0.0.5-np126py311h2c3b307_7.conda
+ sha256: ddb1d8c3c0b002e53d3b7fc90ca64241bb97ce005db5645cfeffba333fe50d4f
+ md5: a15dbe2ba162e61f6dbf79089b4fff74
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 53516
+ timestamp: 1736208187282
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-kinematics-interface-0.3.0-np126py311h2c3b307_7.conda
+ sha256: c92696f82f0fdfaf34194dc99793cdf55c94fd573bff4b5d1fd300ecfdb0d6b7
+ md5: feae75267419b47ab05f2e3cfdfbde46
+ depends:
+ - eigen
+ - python
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 40287
+ timestamp: 1736210577573
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-laser-geometry-2.4.0-np126py311h2c3b307_7.conda
+ sha256: 16570ba41be209ec1d073abb7bd1c8ac22a5092981ad5d92fa6adef44b78a2ef
+ md5: bf499b5a0f15e19e8d07a86054a62ebb
+ depends:
+ - eigen
+ - numpy
+ - python
+ - ros-humble-eigen3-cmake-module
+ - ros-humble-rclcpp
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-sensor-msgs-py
+ - ros-humble-tf2
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 56990
+ timestamp: 1736210411778
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-1.0.7-np126py311h2c3b307_7.conda
+ sha256: 46d0b6ef86bcfa5701cd15bf83ea708745db953bba0ae2c6a19cbff5e7ec080c
+ md5: 361e826595ab7a9dcb4d57971ed77aef
+ depends:
+ - importlib-metadata
+ - lark-parser
+ - python
+ - pyyaml
+ - ros-humble-ament-index-python
+ - ros-humble-osrf-pycommon
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 224312
+ timestamp: 1736207184982
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-ros-0.19.8-np126py311h2c3b307_7.conda
+ sha256: 27065230af004e4d7d14ada51dd999234b4b7e9ee87be6f70e044c9f2e4b1ec6
+ md5: 4699fb1043e7a0b5f77e80d29a9c32c0
+ depends:
+ - importlib-metadata
+ - python
+ - pyyaml
+ - ros-humble-ament-index-python
+ - ros-humble-composition-interfaces
+ - ros-humble-launch
+ - ros-humble-lifecycle-msgs
+ - ros-humble-osrf-pycommon
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 114607
+ timestamp: 1736210412266
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-1.0.7-np126py311h2c3b307_7.conda
+ sha256: ead8b0e478b6a8b4ad223de2fbf608bd5f23e7574c226d32de584677565cf59d
+ md5: d2d7d34750ba222db776c6786d91e98b
+ depends:
+ - pytest
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-launch
+ - ros-humble-launch-xml
+ - ros-humble-launch-yaml
+ - ros-humble-osrf-pycommon
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 117194
+ timestamp: 1736207491044
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-ament-cmake-1.0.7-np126py311h2c3b307_7.conda
+ sha256: 1c04e2cc953cf784d33803c94c04f9d78072b4b841e6076e9874477e5e3aa593
+ md5: bf667f8cdfc0821fa6b469414ecc9e17
+ depends:
+ - python
+ - ros-humble-ament-cmake-test
+ - ros-humble-launch-testing
+ - ros-humble-python-cmake-module
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25451
+ timestamp: 1736208465768
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-testing-ros-0.19.8-np126py311h2c3b307_7.conda
+ sha256: 43d719e0995cd2499c7ceae5bdb10032571b8bb3cac92f621bb99881ee26c6d8
+ md5: 78e8623c1f28ddc113da2d625bb5a8c1
+ depends:
+ - python
+ - ros-humble-launch-ros
+ - ros-humble-launch-testing
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 48990
+ timestamp: 1736210578048
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-xml-1.0.7-np126py311h2c3b307_7.conda
+ sha256: ad86b74d2750171a3f08d1a8a28799cc33ff68cf48096e74640d7fb519917c1b
+ md5: 700df14b6e285c51ea4a22dc464f8c65
+ depends:
+ - python
+ - ros-humble-launch
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 25028
+ timestamp: 1736207435414
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-launch-yaml-1.0.7-np126py311h2c3b307_7.conda
+ sha256: 005bc5ec38eaf5b0d5b2c23527522e9db94f8dfceeb9f031090e49c2df06b9db
+ md5: df2fca91466c34a67bcd404174edc9d7
+ depends:
+ - python
+ - ros-humble-launch
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25674
+ timestamp: 1736207429763
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libcurl-vendor-3.1.2-np126py311h2c3b307_7.conda
+ sha256: f9d73d6d18924ec1bd1e125919e7b3cc8e8c9ad24d914966bd1bc7f41dc78a88
+ md5: 41d80515765ff5a0480caa6b02ddbc81
+ depends:
+ - libcurl
+ - pkg-config
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.11.1,<9.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21749
+ timestamp: 1736207167503
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libstatistics-collector-1.3.4-np126py311h2c3b307_7.conda
+ sha256: e96c470373add551ea9673c0260446629f419429fca0ec94309a258ee07b08c6
+ md5: a217de8feb508598958c9baa1586de9e
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-rcl
+ - ros-humble-rcpputils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-statistics-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 53270
+ timestamp: 1736210212443
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-libyaml-vendor-1.2.2-np126py311h2c3b307_7.conda
+ sha256: 3846ff5714b983f17bc19db0f7dd54154a902455f6c1d3175d3933db097c4709
+ md5: 871cf3643c829980a4796b1a659b64e9
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - yaml
+ - yaml-cpp
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ size: 29150
+ timestamp: 1736208714221
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-lifecycle-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 406f89f6ca43398d965fd134d7443ef462aa96a5c1ff8906bc737f57d04811c5
+ md5: df4a462a044b7be2e2c8ff68b74f5354
+ depends:
+ - python
+ - ros-humble-lifecycle-msgs
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 253186
+ timestamp: 1736212023972
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-lifecycle-msgs-1.2.1-np126py311h2c3b307_7.conda
+ sha256: 03ca4c0d1fc6bb91e07b554d2f38770dbfcbbdf2872942f46a44a79cfee4b300
+ md5: 75e9418889db1f60ae1197e2ef48c033
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 172738
+ timestamp: 1736209124133
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-logging-demo-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 3a018ef380fce302f025c00dc7547266ed7ef4b75cece3e6188776849bc2f2c8
+ md5: 36873d499c005eb5cb407bd3628762bf
+ depends:
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 185033
+ timestamp: 1736210939010
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-map-msgs-2.1.0-np126py311h2c3b307_7.conda
+ sha256: 8b4921aa5ea18a0a52b2b900d5d5d047be56149fa1b9e6fc9d33740cbc1e69d4
+ md5: 79821836c50ed9b479434e9fae91d65a
+ depends:
+ - python
+ - ros-humble-nav-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 206565
+ timestamp: 1736209658589
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-message-filters-4.3.5-np126py311h2c3b307_7.conda
+ sha256: 3fd35f9f8c8034afd220130f2dcab1b40e51287a6c6979afdb866565ad489754
+ md5: a365a500e291eb81d1f2d601f3aca985
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclpy
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 71147
+ timestamp: 1736210587945
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-nav-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: f3e50164fcddfe4351700d0e428ddb22f2a0e36d2f3814a934ce015cc29bcd33
+ md5: d0679e17f3ac9c1f60f3cc0d6836d7c3
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 193922
+ timestamp: 1736209566597
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311h2c3b307_7.conda
+ sha256: e997964f67ff46ca7706bc1089356fa53fbd5bf16884276db9e81847d1f1ce61
+ md5: 47a09379786898355d869b4530a39e33
+ depends:
+ - eigen
+ - orocos-kdl
+ - python
+ - ros-humble-eigen3-cmake-module
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - orocos-kdl >=1.5.1,<1.6.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 25359
+ timestamp: 1736208183038
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-osrf-pycommon-2.1.4-np126py311h2c3b307_7.conda
+ sha256: 863033b9e42aa983c3cba4d9508dee8e067290a43a97dcab4dd4782e5ba2f835
+ md5: 83f4d44a2e14278611c2f27643e71529
+ depends:
+ - importlib-metadata
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 65140
+ timestamp: 1736205371785
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-parameter-traits-0.3.9-np126py311h2c3b307_7.conda
+ sha256: 6c6bbdae36805ce8c31a633e44268091a305173cb0e929488e2090c83ff444ec
+ md5: 105fc6b8ec67226d5673c6d3bb92a920
+ depends:
+ - fmt
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-rsl
+ - ros-humble-tcb-span
+ - ros-humble-tl-expected
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - fmt >=11.0.2,<12.0a0
+ license: BSD-3-Clause
+ size: 42945
+ timestamp: 1736210602175
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pcl-conversions-2.4.5-np126py311h2c3b307_7.conda
+ sha256: 2b31fd2ab19a08e72b828dae7e62d730292758a5bd330acee64afffc3abb7ad5
+ md5: bcc4bd2fb0779bfd9a2698bf0aff7462
+ depends:
+ - eigen
+ - libboost-devel
+ - pcl
+ - python
+ - ros-humble-message-filters
+ - ros-humble-pcl-msgs
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - vtk-base
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - pcl >=1.14.1,<1.14.2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 58346
+ timestamp: 1736211142855
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pcl-msgs-1.0.0-np126py311h2c3b307_7.conda
+ sha256: de1feb1dfc991fea7c9cd6ca2758a23512e78927b70bd94d3a7392112e4983dc
+ md5: df5cf945c7abe28113654929ebe97970
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 130557
+ timestamp: 1736209755349
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pendulum-control-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 35861d44803413096e935541fa75ae3f6a1f9ae668d244737bd09940d1f50ac0
+ md5: 18d1e23451b35faa4a16de140cb17de9
+ depends:
+ - python
+ - ros-humble-pendulum-msgs
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-rttest
+ - ros-humble-tlsf-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 332058
+ timestamp: 1736211991553
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pendulum-msgs-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 8acef7fab53bcfdbf2496104fbdfaaeb2c7e228514654ef727fc8a41684f1297
+ md5: 872029d9497cf15ec14ab9e3599c13b4
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 86130
+ timestamp: 1736209211251
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pid-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 1c908a3844dbae5c7220a52e24c439b5117a68050a1000a7dc2eb8fc8494bdbf
+ md5: 911a456d01c71e0689b4ed98d61b2e71
+ depends:
+ - python
+ - ros-humble-angles
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-control-toolbox
+ - ros-humble-controller-interface
+ - ros-humble-hardware-interface
+ - ros-humble-parameter-traits
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 258656
+ timestamp: 1736212609326
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pluginlib-5.1.0-np126py311h2c3b307_7.conda
+ sha256: 821465f133cb315c28a4d7a71518ad93996ec315d58879202ddeca42523d02ae
+ md5: 8a0ad18dba8f14429363c82b394ffbe7
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-class-loader
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-tinyxml2-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 39634
+ timestamp: 1736208766346
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pose-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 347104eecd89566c0f1513db4942f44126e26ee8fbf612af37a4ddd7f95b4744
+ md5: 08c51a4e8c1d7abe8b020437fd4dc2e0
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-geometry-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-tf2-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 149986
+ timestamp: 1736212593513
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-position-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: a083e72f4bb9df93a84acc7ca5a9cad3ea6dad20926bc21bb6850934db78ea9a
+ md5: aa91de494bea908ace0269d4b58d578b
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-forward-command-controller
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 60098
+ timestamp: 1736212827961
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-pybind11-vendor-2.4.2-np126py311h2c3b307_7.conda
+ sha256: d7f4c3cebea413e40f40847e9e4f0511ab3058d5137c7f950c16139fb762a60a
+ md5: 326e34fc0e60d584efd941678efbe030
+ depends:
+ - pybind11
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20913
+ timestamp: 1736207166448
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-python-cmake-module-0.10.0-np126py311h2c3b307_7.conda
+ sha256: 040ed75c114ffa7178b74812316b1dcfe81e046abbd6afcd87e395fd681f5072
+ md5: 21c05e6bb72f74510b4a74d29d220c46
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 26276
+ timestamp: 1736208166771
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-python-qt-binding-1.1.2-np126py311h2c3b307_7.conda
+ sha256: caabf4f3a0324566308a70c70e2d662f1a588a227c138bf6602ee22516c4c9ac
+ md5: adeeb09df8b1b8a83b4fd338757b7ae2
+ depends:
+ - pyqt
+ - pyqt-builder
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - pyqt >=5.15.9,<5.16.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ license: BSD-3-Clause
+ size: 57731
+ timestamp: 1736208187609
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-dotgraph-2.2.3-np126py311h2c3b307_7.conda
+ sha256: 11c2af272f64029deb8ecee8917530fde3ac89c7f733902b780294620ce82dcc
+ md5: db89103629d005daa02949fdaf2fd533
+ depends:
+ - pydot
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 57444
+ timestamp: 1736208500192
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-2.2.3-np126py311h2c3b307_7.conda
+ sha256: dfd3e789c1eb0f73b9f31fa7664645f391a1c822b05570cafca4e5481aceb6cd
+ md5: de473cc52b5323f5adaadb81b9ee4c3d
+ depends:
+ - catkin_pkg
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-ros-workspace
+ - ros-humble-tango-icons-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libopengl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - pyqt >=5.15.9,<5.16.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ license: BSD-3-Clause
+ size: 174622
+ timestamp: 1736208478323
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-cpp-2.2.3-np126py311h2c3b307_7.conda
+ sha256: c429e009e2839ed79660ede82eae929f3f5dc20832c51135078e858d638d395d
+ md5: e7892b05ebc6b918c12a45e5dd18f93b
+ depends:
+ - pep517
+ - pyqt-builder
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-qt-gui
+ - ros-humble-rcpputils
+ - ros-humble-ros-workspace
+ - ros-humble-tinyxml2-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libxext >=1.3.6,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 348113
+ timestamp: 1736208824300
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-qt-gui-py-common-2.2.3-np126py311h2c3b307_7.conda
+ sha256: 9c8465ae2eb51d3140be6c6636a34100d9cfe8e3245703cb53250bb554eced85
+ md5: 02811a202e80a26a6422a68deec2abdf
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 37542
+ timestamp: 1736208495501
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 7e79380dfe027690effa0fac75abf1b2d0e15b5454b2e8bf2cfd650f095d0286
+ md5: 1b27eb0d8b9148e757ab81d4e5fd3458
+ depends:
+ - python
+ - ros-humble-example-interfaces
+ - ros-humble-launch-ros
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 604900
+ timestamp: 1736210578135
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 8afeba4628faf9eefcf95ac794b8da2ad21fcd29849c8f2902c2ecd544e5fd52
+ md5: d955d74b2774533ba0094262c2ee227a
+ depends:
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 33670
+ timestamp: 1736210426251
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-range-sensor-broadcaster-2.40.0-np126py311h2c3b307_7.conda
+ sha256: d6b790163297a56f66ca1f819a7c410fd4b40f8e3585c55955a3e9726c57ad3b
+ md5: 8c6e3a20178b93585a08d363a2ea1a59
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-controller-interface
+ - ros-humble-generate-parameter-library
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 132108
+ timestamp: 1736212479753
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-5.3.9-np126py311h2c3b307_7.conda
+ sha256: 10ae7ba2e260747d811a79f9bac167d78b906180b4345dfe4ec34405eaa4eb6c
+ md5: a13422c002b683a1ff44d8ebd63d45b3
+ depends:
+ - python
+ - ros-humble-rcl-interfaces
+ - ros-humble-rcl-logging-interface
+ - ros-humble-rcl-logging-spdlog
+ - ros-humble-rcl-yaml-param-parser
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-implementation
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 173948
+ timestamp: 1736209862377
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-action-5.3.9-np126py311h2c3b307_7.conda
+ sha256: 1d9c675c6c935f1accde23409dd94692da59aa0c7f39c93bf55b1ec9a5f26b9a
+ md5: f735d3c83c48ffb6fbfd2a989a9d2325
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-rcl
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 75899
+ timestamp: 1736210205736
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-interfaces-1.2.1-np126py311h2c3b307_7.conda
+ sha256: f7ee5507ab4d45876a5aa65cb1dd06b704556dbcae158ec66571032488e94566
+ md5: 96f7f4a23f6f1fdfa3716244d2c6a003
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 336972
+ timestamp: 1736209247319
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-lifecycle-5.3.9-np126py311h2c3b307_7.conda
+ sha256: 0442516d972104da2fca112d46cf52d5c1c8d3c1d786a45e1b23205a796a851f
+ md5: 093a73d1b590288701b83b85acd5c6da
+ depends:
+ - python
+ - ros-humble-lifecycle-msgs
+ - ros-humble-rcl
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 54161
+ timestamp: 1736210192927
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-logging-interface-2.3.1-np126py311h2c3b307_7.conda
+ sha256: b0d434c043b68210f7c72b498a7a8ba8803b43fa007a7585803e83eeeeef14eb
+ md5: 54b78e1ff83cc6f0f6612f23ed5dcaf5
+ depends:
+ - python
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 33395
+ timestamp: 1736208685007
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h6a008e1_7.conda
+ sha256: 6933b2931b5a38f5e589352868e98f1598cffa12fb0f9442c58528b6cd24319f
+ md5: a9866d37cdb01c4abef05ab3fe905f81
+ depends:
+ - python
+ - ros-humble-rcl-logging-interface
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-spdlog-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - spdlog
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 40461
+ timestamp: 1736208760034
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311h2c3b307_7.conda
+ sha256: 6256cc8c439c4fbb71a96c954e97ab01b17dde7a9445cee784097f0d87ad49fb
+ md5: e9af8ba6637a6d1260e0c042ba3f675a
+ depends:
+ - python
+ - ros-humble-libyaml-vendor
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - yaml
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 49219
+ timestamp: 1736208753802
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-16.0.11-np126py311h2c3b307_7.conda
+ sha256: e89abf81843882a61bb12febcc2011071dd7484808939b6a906dc1172f2ac9ec
+ md5: bdafe149f67cb95d73c343c58b13420d
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-builtin-interfaces
+ - ros-humble-libstatistics-collector
+ - ros-humble-rcl
+ - ros-humble-rcl-interfaces
+ - ros-humble-rcl-yaml-param-parser
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosgraph-msgs
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-c
+ - ros-humble-rosidl-typesupport-cpp
+ - ros-humble-statistics-msgs
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 879484
+ timestamp: 1736210313183
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-action-16.0.11-np126py311h2c3b307_7.conda
+ sha256: ae76ddfe66ceed018f32162b3654b9f0744f9ab3418d73052419268590986f3a
+ md5: faf068b4ec298d2edc237eec1fb0058b
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-ament-cmake
+ - ros-humble-rcl-action
+ - ros-humble-rclcpp
+ - ros-humble-rcpputils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 112375
+ timestamp: 1736210464521
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-components-16.0.11-np126py311h2c3b307_7.conda
+ sha256: 4996d9feb2950e045e62c5682f8a7a7518a2fb6926d2dec57ccb371f0e4b8a5d
+ md5: 21a7182fdfca3243ff32649e2a5c2fd8
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-class-loader
+ - ros-humble-composition-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 133226
+ timestamp: 1736210449253
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclcpp-lifecycle-16.0.11-np126py311h2c3b307_7.conda
+ sha256: 977702f2e3c4cccd71a3dba3071f47a55a42997ca30ae5d2d3b39f32002cb4d9
+ md5: 5756a6d5aa6a219e664706a6e2be371f
+ depends:
+ - python
+ - ros-humble-lifecycle-msgs
+ - ros-humble-rcl-lifecycle
+ - ros-humble-rclcpp
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-typesupport-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 124187
+ timestamp: 1736210426425
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rclpy-3.3.15-np126py311h2c3b307_7.conda
+ sha256: e4aacf4314377feddd6716374afd67754887f6939b31a1a74e602c38a0cb6f14
+ md5: 1f1c532e2fa65c5e7600a61c1b75dee3
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-builtin-interfaces
+ - ros-humble-rcl
+ - ros-humble-rcl-action
+ - ros-humble-rcl-interfaces
+ - ros-humble-rcl-lifecycle
+ - ros-humble-rcl-logging-interface
+ - ros-humble-rcl-yaml-param-parser
+ - ros-humble-rmw
+ - ros-humble-rmw-implementation
+ - ros-humble-ros-workspace
+ - ros-humble-rosgraph-msgs
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rpyutils
+ - ros-humble-unique-identifier-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 580154
+ timestamp: 1736210240299
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcpputils-2.4.4-np126py311h2c3b307_7.conda
+ sha256: ea7cb5abd4848b5e572bbc9d2657abc6754be95851ba55a99fa5b488e1e7e689
+ md5: daf7ab15c9eea467521433f40260221b
+ depends:
+ - python
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 77633
+ timestamp: 1736208642128
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rcutils-5.1.6-np126py311h2c3b307_7.conda
+ sha256: 57d309d38369ed7e7b6d3d204da7efff54b97a326386a112b4a32a765a74efcb
+ md5: ea3588b5f23a59c1e4d30ad0cb93cb09
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 115567
+ timestamp: 1736208525657
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-realtime-tools-2.10.0-np126py311h2c3b307_7.conda
+ sha256: 5ac4895537b18d0ded6c0b2e16f8fc599d47a41f883fd54c13b5a851db97cec3
+ md5: b8ae7dc734b098738720af49bfb0bf4d
+ depends:
+ - libcap
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - libcap >=2.71,<2.72.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 61918
+ timestamp: 1736210655466
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-resource-retriever-3.1.2-np126py311h2c3b307_7.conda
+ sha256: 1c09c47ff836f88bb5b16d050987b2dfd7f0b0449d5cf6f1e4d5e1a9ccf85cb7
+ md5: 5d393b257fd1d2be98d0949d7e6d480b
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-ament-index-python
+ - ros-humble-libcurl-vendor
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 42858
+ timestamp: 1736208466401
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-6.1.2-np126py311h2c3b307_7.conda
+ sha256: b52718f33a8153f3b42703f082ddd4be86aa651fb5e451b1cdb3c0173a0194c9
+ md5: c39366fc5b2a6f2add7877255b717855
+ depends:
+ - python
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 89807
+ timestamp: 1736208702493
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-connextdds-0.11.3-np126py311h2c3b307_7.conda
+ sha256: ae04af290fef3c62a8f1b21fdaeb05e082ebb817c8d3fecca0b81c9b9aa57795
+ md5: c5a7885985da107e73ef7d888bd7f7ad
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-rmw-connextdds-common
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 28811
+ timestamp: 1736209365710
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311h2c3b307_7.conda
+ sha256: 666b87de857aed1afb0479baae9017c089b80e047fd05520bd9d8bc19d076cd1
+ md5: 5bf8c723bf885e2e2cc2968628a2a5be
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-fastcdr
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-dds-common
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros-humble-rti-connext-dds-cmake-module
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 50348
+ timestamp: 1736209225260
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311h2c3b307_7.conda
+ sha256: 612debb54800d9726f553e9cb73da10185b471cf6124482095c9126c55fa8337
+ md5: 9aa1791c2bc46e4b260d0b68a25743d0
+ depends:
+ - python
+ - ros-humble-cyclonedds
+ - ros-humble-iceoryx-binding-c
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-dds-common
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 255856
+ timestamp: 1736209230301
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-dds-common-1.6.0-np126py311h2c3b307_7.conda
+ sha256: 08d5319babf86b0108e5ed517c6fda9accd151ec1236b98b2519629e8d7188c4
+ md5: 33ec99fc1512751feb3001c085a7a170
+ depends:
+ - python
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 146726
+ timestamp: 1736209110541
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311h2c3b307_7.conda
+ sha256: bd3f3b45a201ba01a88748563554c1a89a0280847e302f4e8c0cf88eab2e9105
+ md5: 6b9d566d25ca39278dbb0915a24c871e
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-fastcdr
+ - ros-humble-fastrtps
+ - ros-humble-fastrtps-cmake-module
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-dds-common
+ - ros-humble-rmw-fastrtps-shared-cpp
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 141654
+ timestamp: 1736209532247
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311h2c3b307_7.conda
+ sha256: c51726c6a11aeca2a02cf2ce849cb9a3961dc6e3ad99c6b285097b76d6910e7a
+ md5: eaff8fb243ea337bc091e058e6be6c42
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-fastcdr
+ - ros-humble-fastrtps
+ - ros-humble-fastrtps-cmake-module
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-dds-common
+ - ros-humble-rmw-fastrtps-shared-cpp
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 183963
+ timestamp: 1736209495606
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311h2c3b307_7.conda
+ sha256: a4cf83a15a7046a4aaf8e71fa121323990e1d1fcc3d9673107a62e6afaca61e1
+ md5: 482b56dcd7e9c65df65d8e5030d8ef49
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-fastcdr
+ - ros-humble-fastrtps
+ - ros-humble-fastrtps-cmake-module
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-dds-common
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros-humble-tracetools
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 211721
+ timestamp: 1736209193472
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-implementation-2.8.4-np126py311h2c3b307_7.conda
+ sha256: 552b10a46f29b020745a6fdc90d08c4fefc8515644f921b36b9d936c3e450c55
+ md5: 90b5c1f0ad014f6bea537bd10c8d1bd3
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw-connextdds
+ - ros-humble-rmw-cyclonedds-cpp
+ - ros-humble-rmw-fastrtps-cpp
+ - ros-humble-rmw-fastrtps-dynamic-cpp
+ - ros-humble-rmw-implementation-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 50584
+ timestamp: 1736209657772
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311h2c3b307_7.conda
+ sha256: 9ece7a203f7e44255dfdf812e477a4fed3615f1dabfad00b6f80f09a9043b82b
+ md5: e28e1792d5a96e03a9aa3bf27601cb76
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27146
+ timestamp: 1736208432657
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-robot-state-publisher-3.0.3-np126py311h2c3b307_7.conda
+ sha256: a04e232d30a7fac7146a7a36776dd61fb6176c39193699f1fe4409276529e455
+ md5: 64734374ee4c9bf82d8fd78dffe7d8f2
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-kdl-parser
+ - ros-humble-orocos-kdl-vendor
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros-humble-tf2-ros
+ - ros-humble-urdf
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 254123
+ timestamp: 1736211799236
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-base-0.10.0-np126py311h2c3b307_7.conda
+ sha256: fb396d7bc78951c1828f2b68c82c600d43c116ddce42a462eb6f7af31524e16b
+ md5: 82b6cb45214797a894f0276266abb79d
+ depends:
+ - python
+ - ros-humble-geometry2
+ - ros-humble-kdl-parser
+ - ros-humble-robot-state-publisher
+ - ros-humble-ros-core
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2
+ - ros-humble-urdf
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20781
+ timestamp: 1736214867192
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-core-0.10.0-np126py311h2c3b307_7.conda
+ sha256: de6f090a8c8b48642c74530f84c5e774c9bf7b2a04a8518c878c6a90be25d37c
+ md5: d3a99c7af96484b7a63b2240f83ada73
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-cmake-auto
+ - ros-humble-ament-cmake-gmock
+ - ros-humble-ament-cmake-gtest
+ - ros-humble-ament-cmake-pytest
+ - ros-humble-ament-cmake-ros
+ - ros-humble-ament-index-cpp
+ - ros-humble-ament-index-python
+ - ros-humble-ament-lint-auto
+ - ros-humble-ament-lint-common
+ - ros-humble-class-loader
+ - ros-humble-common-interfaces
+ - ros-humble-launch
+ - ros-humble-launch-ros
+ - ros-humble-launch-testing
+ - ros-humble-launch-testing-ament-cmake
+ - ros-humble-launch-testing-ros
+ - ros-humble-launch-xml
+ - ros-humble-launch-yaml
+ - ros-humble-pluginlib
+ - ros-humble-rcl-lifecycle
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rclpy
+ - ros-humble-ros-environment
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli-common-extensions
+ - ros-humble-ros2launch
+ - ros-humble-rosidl-default-generators
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sros2
+ - ros-humble-sros2-cmake
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 21492
+ timestamp: 1736212873563
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-environment-3.2.2-np126py311h2c3b307_7.conda
+ sha256: a3ba1ae288be4d8981a33622c7ce7934f4dbdd93a9faf65dd89f3dba9f0ff735
+ md5: 2827f64436920c02631b8b3077433824
+ depends:
+ - python
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 19829
+ timestamp: 1736205330450
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros-workspace-1.0.2-np126py311h2c3b307_9.conda
+ sha256: 8bddb8cdc2def1c3ad6b1140e9c243572ea884934391f861ad53589e0aa897f5
+ md5: 7f9633981b7c3251d8ee1732a3694909
+ depends:
+ - python
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 35415
+ timestamp: 1736974255672
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-control-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 03c03b050b149e5674c7910d18ed9b709bed267957d0b4f9fd25ae8f8d7a780f
+ md5: f13a68310f24171d80e9d2a7a8040039
+ depends:
+ - python
+ - ros-humble-controller-interface
+ - ros-humble-controller-manager
+ - ros-humble-controller-manager-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-joint-limits
+ - ros-humble-ros-workspace
+ - ros-humble-ros2-control-test-assets
+ - ros-humble-ros2controlcli
+ - ros-humble-transmission-interface
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20861
+ timestamp: 1736212867387
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-control-test-assets-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 2d1f7e8222a18e7deaf37969ed9a02e1fe4568e380b29d08d4339fa995aa722f
+ md5: 510d4d93f814c83f3275afaeca26dff6
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 24897
+ timestamp: 1736207186945
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: f83c1f5b4198514af9eaab203d2ad2bed4212818b25940966cea7bc90c0f8e46
+ md5: 42bbdd4780d00c0d91125217c0ff49b6
+ depends:
+ - python
+ - ros-humble-ackermann-steering-controller
+ - ros-humble-admittance-controller
+ - ros-humble-bicycle-steering-controller
+ - ros-humble-diff-drive-controller
+ - ros-humble-effort-controllers
+ - ros-humble-force-torque-sensor-broadcaster
+ - ros-humble-forward-command-controller
+ - ros-humble-gpio-controllers
+ - ros-humble-gripper-controllers
+ - ros-humble-imu-sensor-broadcaster
+ - ros-humble-joint-state-broadcaster
+ - ros-humble-joint-trajectory-controller
+ - ros-humble-pid-controller
+ - ros-humble-pose-broadcaster
+ - ros-humble-position-controllers
+ - ros-humble-range-sensor-broadcaster
+ - ros-humble-ros-workspace
+ - ros-humble-steering-controllers-library
+ - ros-humble-tricycle-controller
+ - ros-humble-tricycle-steering-controller
+ - ros-humble-velocity-controllers
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 21313
+ timestamp: 1736213706058
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2action-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 702442284cd1655343719759a830695f1e704ba71a399ec1dbf647d9b8beabd6
+ md5: d414813c0c262a3c295ec9b5af072db6
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-ament-index-python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-rosidl-runtime-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 42554
+ timestamp: 1736211176837
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2bag-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 25a5a6c00d613418812736ef3f92c1dbb10d316b0a239bd29220a96693bb581f
+ md5: ab4c4a6e4f44a36d03707d5e835febd6
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-rosbag2-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 52778
+ timestamp: 1736214263452
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2cli-0.18.11-np126py311hdfa6bdf_9.conda
+ sha256: f227cf111d7180a8386b0f8b0f9ba336112b1a71f78a2cab64b202f675c5368c
+ md5: eb75b044553d1f95ba04c7ffaa6e5f38
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - netifaces
+ - packaging
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 74347
+ timestamp: 1744199512016
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311h2c3b307_7.conda
+ sha256: dfc33f265b04a79b019f1182b373959b407f64e407a06dfa6afe4ab9f4a971e3
+ md5: 3c0e29c762ae982c5243b74bc57ca544
+ depends:
+ - python
+ - ros-humble-launch-xml
+ - ros-humble-launch-yaml
+ - ros-humble-ros-workspace
+ - ros-humble-ros2action
+ - ros-humble-ros2cli
+ - ros-humble-ros2component
+ - ros-humble-ros2doctor
+ - ros-humble-ros2interface
+ - ros-humble-ros2launch
+ - ros-humble-ros2lifecycle
+ - ros-humble-ros2multicast
+ - ros-humble-ros2node
+ - ros-humble-ros2param
+ - ros-humble-ros2pkg
+ - ros-humble-ros2run
+ - ros-humble-ros2service
+ - ros-humble-ros2topic
+ - ros-humble-sros2
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 24508
+ timestamp: 1736212526034
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2component-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 5c9af67fa1a3ddb8d0837065cab5698addc143c33e4b66a05723e19cc3456dbd
+ md5: 75140c0d0a706c7a66609e6a0fefcdd3
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-composition-interfaces
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclcpp-components
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2node
+ - ros-humble-ros2param
+ - ros-humble-ros2pkg
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 37708
+ timestamp: 1736212002425
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2controlcli-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 730f1f500251df424b122704ce120976fecea6550fbcc122aaa6c510e8515d37
+ md5: bbd9f110243ce15276e06b8ae4965e15
+ depends:
+ - pygraphviz
+ - python
+ - ros-humble-controller-manager
+ - ros-humble-controller-manager-msgs
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2node
+ - ros-humble-ros2param
+ - ros-humble-rosidl-runtime-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 59330
+ timestamp: 1736212512313
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2doctor-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 6483f68e9ca4f7a67184857d097e1d43a6ae6fd2a88a6f37d1c2ceaf50b2c1fe
+ md5: 22e7ebd646f1b1ea4306b1a2e41c4574
+ depends:
+ - catkin_pkg
+ - importlib-metadata
+ - psutil
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-rclpy
+ - ros-humble-ros-environment
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - rosdistro
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 64878
+ timestamp: 1736211170797
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2interface-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 52a9c8c66a8f029f48c55ecd398973ff04ae24099bef99e69e9dc921662f04d7
+ md5: 4ef5044395a11983b08931440264b9e6
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-rosidl-runtime-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 43116
+ timestamp: 1736211162206
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2launch-0.19.8-np126py311h2c3b307_7.conda
+ sha256: 172c0b28223c891cc948eca3a739bbe34b952bdd27c47525681863ee69331bbc
+ md5: 956d6e255ecbb7d62c2248942ca669c9
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-launch
+ - ros-humble-launch-ros
+ - ros-humble-launch-xml
+ - ros-humble-launch-yaml
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2pkg
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 43405
+ timestamp: 1736211633778
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2lifecycle-0.18.11-np126py311h2c3b307_7.conda
+ sha256: f38e3b1dcbf679580b9fab3b0fbd71c0e9300a214750bc580488eb327eff42d6
+ md5: f6a700d141a6fcf2a28b254f3b2cad93
+ depends:
+ - python
+ - ros-humble-lifecycle-msgs
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2node
+ - ros-humble-ros2service
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 42478
+ timestamp: 1736211657900
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2multicast-0.18.11-np126py311h2c3b307_7.conda
+ sha256: cbf0c41a3d84bc28b75d6ef933ca102a2774ac5a367045ba18a72b694fcb07b6
+ md5: a920f865932d4b2012e9223a6e8323a9
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 34729
+ timestamp: 1736210885421
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2node-0.18.11-np126py311h2c3b307_7.conda
+ sha256: ebd6a58dc944763ce1a5a5dc2f13e61fc527583fe684877d2db5dd8b3939a25f
+ md5: 3c309f9388e247f1eda5fe60669e1e51
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 39755
+ timestamp: 1736211141044
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2param-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 8627e009f9489542b994b7a7b96262462772b49d2a99af694bb080b1b8a0d54c
+ md5: f10244623c6974fe9057b55b12d8eeb3
+ depends:
+ - python
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2node
+ - ros-humble-ros2service
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 51586
+ timestamp: 1736211662087
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2pkg-0.18.11-np126py311h2c3b307_7.conda
+ sha256: d43bfa5c332fa6a0e3f58565791e510c90c5dce84df3d0018b30836eef04ce2b
+ md5: ee6870f4f5d70f691435c2d43f71c889
+ depends:
+ - catkin_pkg
+ - empy
+ - importlib_resources
+ - python
+ - ros-humble-ament-copyright
+ - ros-humble-ament-index-python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 55105
+ timestamp: 1736210940379
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2run-0.18.11-np126py311h2c3b307_7.conda
+ sha256: 24b87ef1beaca243be01db42b96f8015f31055b825d356da786c439f755d6e92
+ md5: a74c92bd393eca91a6217da5443a45a5
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-ros2pkg
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 34616
+ timestamp: 1736211654884
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2service-0.18.11-np126py311h2c3b307_7.conda
+ sha256: a5273739c31cb1e5eaf01cfa2554d6120fb4a8dd4615d892d219dcc28c92a74f
+ md5: fbac42edc31e04c92ef3627433941c4c
+ depends:
+ - python
+ - pyyaml
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-rosidl-runtime-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 41414
+ timestamp: 1736211135341
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-ros2topic-0.18.11-np126py311h2c3b307_7.conda
+ sha256: a4366b135a7b816df5c9420365d306a7b6ae670d9aeef28bc29be62d69058be2
+ md5: e25c14d5c059c13795f49db31f9ba909
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-rosidl-runtime-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 71809
+ timestamp: 1736210940846
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 95be952c1860a70310af699d06e3b23b0d8f5e518de22a0c5d710da53eb6d60d
+ md5: 5c1ca0b5498829a6cc63d02fedcd3d87
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2bag
+ - ros-humble-rosbag2-compression
+ - ros-humble-rosbag2-compression-zstd
+ - ros-humble-rosbag2-cpp
+ - ros-humble-rosbag2-py
+ - ros-humble-rosbag2-storage
+ - ros-humble-rosbag2-storage-default-plugins
+ - ros-humble-rosbag2-transport
+ - ros-humble-shared-queues-vendor
+ - ros-humble-sqlite3-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 29880
+ timestamp: 1736214742366
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-compression-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 1e4c792af5fa807724096eb1ebb65050c71e82570f4ac405fece3a6a6660a35f
+ md5: 0c06ec134116c3729eae744a8ba4b268
+ depends:
+ - python
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-cpp
+ - ros-humble-rosbag2-storage
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 195376
+ timestamp: 1736212017445
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-compression-zstd-0.15.13-np126py311h2c3b307_7.conda
+ sha256: a65af90d5887271ec4f57465ad4c7ad0fbcff750ecdbf70f4e0a73a27472ade2
+ md5: f244f956d74099851038810fda900a7c
+ depends:
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-compression
+ - ros-humble-zstd-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 62046
+ timestamp: 1736212541958
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-cpp-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 171f00616db086a530a2ba21820b8a315e90071e91fcd5f079dfbfdae3883bb3
+ md5: 302ddf1519dcc0362a221b7d63437dc2
+ depends:
+ - python
+ - ros-humble-ament-index-cpp
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-rmw
+ - ros-humble-rmw-implementation
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-storage
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-cpp
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros-humble-shared-queues-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 294803
+ timestamp: 1736211621251
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-interfaces-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 11db7368859bd992f1d2848389f48977194fc6bf769074729e9bc0ad568315af
+ md5: 9a9ca9b20e969908e05470b95c634bb2
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 207965
+ timestamp: 1736209265442
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-py-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 8604a7c44f80cfceb30a3cbe120fe2c4c2fe43c8551a3660b19f87b9afb9b198
+ md5: 64f08939c2c2f6dbf53e94ee1953aa8a
+ depends:
+ - python
+ - ros-humble-pybind11-vendor
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-compression
+ - ros-humble-rosbag2-cpp
+ - ros-humble-rosbag2-storage
+ - ros-humble-rosbag2-transport
+ - ros-humble-rpyutils
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 530733
+ timestamp: 1736213719339
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-storage-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 32c8da4b9af76db6025c0c2bae3f905a674bcc15b46f50ee9506d493e54e4df0
+ md5: 5b2ff709a4b8c16f6187616972e2f2ad
+ depends:
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-yaml-cpp-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 231148
+ timestamp: 1736210591744
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-storage-default-plugins-0.15.13-np126py311h2c3b307_7.conda
+ sha256: 3f8df70a407dcb4dc40bce2f8a243f5a183794cbe909f0899cd5823772062f36
+ md5: d08821189af864f789a4e4c69777681a
+ depends:
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-storage
+ - ros-humble-sqlite3-vendor
+ - ros-humble-yaml-cpp-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 125831
+ timestamp: 1736210994133
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosbag2-transport-0.15.13-np126py311h2c3b307_7.conda
+ sha256: dba49cad737e6d721fa47a4e9fd59d77f2b7c58ee7d0060f9555c04ffbf304b7
+ md5: 67c0aad8a7c42912037119c4cf253999
+ depends:
+ - python
+ - ros-humble-keyboard-handler
+ - ros-humble-rclcpp
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-compression
+ - ros-humble-rosbag2-cpp
+ - ros-humble-rosbag2-interfaces
+ - ros-humble-rosbag2-storage
+ - ros-humble-shared-queues-vendor
+ - ros-humble-yaml-cpp-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 410470
+ timestamp: 1736213583566
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosgraph-msgs-1.2.1-np126py311h2c3b307_7.conda
+ sha256: 189117c66097f6319d3b5c4dc6b45b8e0c0275e7ef487b50b587ff4a7ff4cf13
+ md5: 756b632f703ce403a53a11b90c5225d9
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 66220
+ timestamp: 1736209230229
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-adapter-3.1.6-np126py311h2c3b307_7.conda
+ sha256: b99905f74700d086636bd3e8f84cf06b76194f7a45e34d6168d4f0285396f83a
+ md5: b6f979e1aa1f4f4a9d7ebf804df79bbb
+ depends:
+ - empy
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 62223
+ timestamp: 1736208194197
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-cli-3.1.6-np126py311hdfa6bdf_9.conda
+ sha256: 9cb4c78c0ae6f4ee6b34382a53e896c6bdfe2ba1f67b56a91d1283902fd56242
+ md5: 57e3161ca033613c0754a73818974f04
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 38582
+ timestamp: 1744199499032
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-cmake-3.1.6-np126py311h2c3b307_7.conda
+ sha256: c81c44d584ad1495676305fb795da4265e9b3601bbdfdb1ecf1551db8eb538f5
+ md5: 22d349936b0184cb8fe0897675354a10
+ depends:
+ - empy
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-adapter
+ - ros-humble-rosidl-parser
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 38633
+ timestamp: 1736208538488
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-default-generators-1.2.0-np126py311h2c3b307_7.conda
+ sha256: 757a79d84073db54804062e2ee83cb16e41e244c4281b579dcf1a2b3532bb0e7
+ md5: a310fe4b1d97dd61b2eb16b91c028bb3
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-generator-c
+ - ros-humble-rosidl-generator-cpp
+ - ros-humble-rosidl-generator-py
+ - ros-humble-rosidl-typesupport-c
+ - ros-humble-rosidl-typesupport-cpp
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 29839
+ timestamp: 1736209062180
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311h2c3b307_7.conda
+ sha256: ea2640211e377c0b880524d4c0bbb2fe6b8f31c1b5c28dba0cc8559ce7e9b6bb
+ md5: 58aabc3c1eb5ff44e274b5c0cff98b23
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-generator-py
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-c
+ - ros-humble-rosidl-typesupport-cpp
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 28848
+ timestamp: 1736209052479
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-c-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 09b6a087a006b4c7e9c88f15423f42608ffa1162dac246b0038ae33fe7aba7bd
+ md5: 16e7a9beed934789dbf03a87b737863e
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-index-python
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-parser
+ - ros-humble-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 45261
+ timestamp: 1736208697635
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 804a896dba771d8afee698816d4fccbd7c99893a3065eeaa4dc2bc9ae36a48dc
+ md5: f6bd1fb10d7e5f4ca7ad0ee095687fae
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-index-python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-generator-c
+ - ros-humble-rosidl-parser
+ - ros-humble-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 48296
+ timestamp: 1736208736376
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-generator-py-0.14.4-np126py311h2c3b307_7.conda
+ sha256: 176b09cbdbcad422eed3a64f54160997f09bc09218f3e426a9b28d7e1fea5d6c
+ md5: d527fad6a5260f831a8b2ccc9ee4ce3b
+ depends:
+ - numpy
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-index-python
+ - ros-humble-python-cmake-module
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-generator-c
+ - ros-humble-rosidl-parser
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-typesupport-c
+ - ros-humble-rosidl-typesupport-interface
+ - ros-humble-rpyutils
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 58991
+ timestamp: 1736209027985
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-parser-3.1.6-np126py311h2c3b307_7.conda
+ sha256: f2045ded7e348395ad0a6b98768356836f5c9fdeea38fb66cfdd0b08ae3c9d60
+ md5: ff082e99304c62a808b916b7d1812175
+ depends:
+ - lark-parser
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-adapter
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 58503
+ timestamp: 1736208475571
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 4f21b666450762121f032c0f8c3269d95c7aaea86173e9e9cd686588be9270d2
+ md5: 9a5f67756089c9355dfd72c9a3d11cea
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 46314
+ timestamp: 1736208630684
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 3d4e2b3cb3f8653038071a9d2c865b5a5d865d457fbb8308cd94f84815e73731
+ md5: b0aaa0da0aae6a06c34b4803b50209c8
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 34058
+ timestamp: 1736208685060
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311h2c3b307_7.conda
+ sha256: fb296c4c66594ccf8f52fc77a38c5182490c4876f30e9ba178b58acbf8bc1d10
+ md5: 457876038b4f981e1a717e5ea95ffa8c
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-parser
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 45089
+ timestamp: 1736209598198
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311h2c3b307_7.conda
+ sha256: 91a1352d45770245fe94ed58c15fbd5ed4f20a81c52cdad4873d6d48345d79c7
+ md5: ac116dc81cf89886d20add8207fa4c14
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-index-python
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-typesupport-fastrtps-c
+ - ros-humble-rosidl-typesupport-interface
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 47588
+ timestamp: 1736209010857
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311h2c3b307_7.conda
+ sha256: 7d525dbd7e3e54d0c19a787f80a1f90eb46fe8bef61c3cff240b2d073fb62623
+ md5: bf18b6b068d1734fb700ecc9153c737a
+ depends:
+ - python
+ - ros-humble-ament-cmake-core
+ - ros-humble-ament-index-python
+ - ros-humble-rcpputils
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-c
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-interface
+ - ros-humble-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 46756
+ timestamp: 1736209021979
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311h2c3b307_7.conda
+ sha256: 0ba946b80619bb404b2ebb8fb3f421a434b1bfeb9d5d88fc71bcb6c567a1a7ab
+ md5: 096294f7cfcc2e22fc0e4c77612121a5
+ depends:
+ - python
+ - ros-humble-ament-cmake-ros
+ - ros-humble-ament-index-python
+ - ros-humble-fastcdr
+ - ros-humble-fastrtps-cmake-module
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-generator-c
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-fastrtps-cpp
+ - ros-humble-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 46895
+ timestamp: 1736208930591
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311h2c3b307_7.conda
+ sha256: 4e506897b48cf907ae437420e71e8b80d764c78f0f49ab4574f75f7c12cbd5fd
+ md5: ad63d1859f877850a6c0f2a45058ea7d
+ depends:
+ - python
+ - ros-humble-ament-cmake-ros
+ - ros-humble-ament-index-python
+ - ros-humble-fastcdr
+ - ros-humble-fastrtps-cmake-module
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-generator-cpp
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 48940
+ timestamp: 1736208801735
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 61403c3f0bad550b6373e659d35e386b67250a363b4499afe8e56ca8742a763f
+ md5: c766ae1960e035927df3ebafab95e83c
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27047
+ timestamp: 1736208166058
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311h2c3b307_7.conda
+ sha256: 54cf06f2d15fd71d8760c7ccb00ddab4141aee2b9e05642c6ff33f9f109fb913
+ md5: e62862c3d3c3d2e7a79da43c814aa583
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-index-python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-parser
+ - ros-humble-rosidl-runtime-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 44587
+ timestamp: 1736208707557
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311h2c3b307_7.conda
+ sha256: e911a28f29af4782227a03c1f2f8c0db3f68cb90604dfb4541faec50a19b5504
+ md5: 6c808a6da6995bc725e3f6bee31267e0
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ament-index-python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-cli
+ - ros-humble-rosidl-cmake
+ - ros-humble-rosidl-parser
+ - ros-humble-rosidl-runtime-c
+ - ros-humble-rosidl-runtime-cpp
+ - ros-humble-rosidl-typesupport-interface
+ - ros-humble-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 44973
+ timestamp: 1736208748719
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rpyutils-0.2.1-np126py311h2c3b307_7.conda
+ sha256: 577e7562016cf46d8a7f879db09778ee1b132bb9b6c327f8ec01d373dcef1551
+ md5: 5b2f319c93475b695c86db4d43262b5e
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 25018
+ timestamp: 1736207198475
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-action-2.0.1-np126py311h2c3b307_7.conda
+ sha256: f920712b077da56d2907d730b9a4277f9fd3f6fcc37196547ea3e2076c69a4f9
+ md5: c29c04edbd18bcca89a3c78dc87ee72c
+ depends:
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-msg
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 18652
+ timestamp: 1736211997583
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-bag-1.1.5-np126py311h2c3b307_7.conda
+ sha256: 81f204e93ddb63177a2f425a51fabe74e7f5b0d3066da61429dbf8af5c36bad7
+ md5: 5e961c49c389587c94a60f6230f15d28
+ depends:
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2-py
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 135079
+ timestamp: 1736214086701
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311h2c3b307_7.conda
+ sha256: c08ba9bb7a189dc444e5a8341577639b21569022133f9b491200c732234f9a22
+ md5: 00f3ebe08d32f5f27e80487f4af60850
+ depends:
+ - pillow
+ - pycairo
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rosbag2
+ - ros-humble-rqt-bag
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-plot
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 44213
+ timestamp: 1736214862362
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-common-plugins-1.2.0-np126py311h2c3b307_7.conda
+ sha256: e88992ddb64ca4b09317ebcd1c5b4f18afa040804f5d4d3829691e608715f57f
+ md5: 63b792571727ac766a253bb0baceb1b2
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-action
+ - ros-humble-rqt-bag
+ - ros-humble-rqt-bag-plugins
+ - ros-humble-rqt-console
+ - ros-humble-rqt-graph
+ - ros-humble-rqt-image-view
+ - ros-humble-rqt-msg
+ - ros-humble-rqt-plot
+ - ros-humble-rqt-publisher
+ - ros-humble-rqt-py-common
+ - ros-humble-rqt-py-console
+ - ros-humble-rqt-reconfigure
+ - ros-humble-rqt-service-caller
+ - ros-humble-rqt-shell
+ - ros-humble-rqt-srv
+ - ros-humble-rqt-topic
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 21448
+ timestamp: 1736215244449
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-console-2.0.3-np126py311h2c3b307_7.conda
+ sha256: 58d4b7cdeedeb441997b27bc3b053ce29720c96b51de4160ee5706b836bfc546
+ md5: 8aba9e30cc7235a498c403f541eeadff
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 84887
+ timestamp: 1736210938306
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-graph-1.3.1-np126py311h2c3b307_7.conda
+ sha256: b5b2c931c174763eda50bc4c786fa45e4e2c79ffdf26e4eda9ac590abec6f4a0
+ md5: ca628b258a3881fa88dcb439c3abb1b2
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-dotgraph
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 70041
+ timestamp: 1736211140992
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-1.1.7-np126py311h2c3b307_7.conda
+ sha256: 9cba6e15d20f5083a5bc947784c1ef97a45e48e667e1013cf7e36589e407a7e8
+ md5: 026feaafbbcc5f5ced352be6f66b3e6c
+ depends:
+ - catkin_pkg
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 126178
+ timestamp: 1736210484512
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311h2c3b307_7.conda
+ sha256: 5fa2b6073c98c319d76b337fb7c496340757ffd0f69bc452b65b81aa7832a209
+ md5: 1e1734bb0ee339696e03e64f59049878
+ depends:
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-qt-gui
+ - ros-humble-qt-gui-cpp
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - qt-main >=5.15.15,<5.16.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 179441
+ timestamp: 1736210427860
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-gui-py-1.1.7-np126py311h2c3b307_7.conda
+ sha256: 6fddeb3b1df0befa8e193fe15a412e97a7682fadf186baa9d96bd1207a469629
+ md5: 9e87e404c7b55b61bd13e69f3371704a
+ depends:
+ - python
+ - ros-humble-qt-gui
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 47230
+ timestamp: 1736210606054
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-image-view-1.2.0-np126py311h2c3b307_7.conda
+ sha256: 3636d1e0b156a2ecbe70089d0ad7315d3c7c37cb74288a702f310fcc2157d7d8
+ md5: 2e7e48402ecf3472e57f485c32fe8121
+ depends:
+ - python
+ - ros-humble-cv-bridge
+ - ros-humble-geometry-msgs
+ - ros-humble-image-transport
+ - ros-humble-qt-gui-cpp
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-cpp
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 247605
+ timestamp: 1736211630604
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-msg-1.2.0-np126py311h2c3b307_7.conda
+ sha256: c552cfa03a23c213945a93214686f696cf2e0203e79114537f0d1d50a35d30d4
+ md5: c9dd85dcbf144e2d62d974abe7925856
+ depends:
+ - catkin_pkg
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-console
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 28148
+ timestamp: 1736211683258
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-plot-1.1.2-np126py311h2c3b307_7.conda
+ sha256: 9736abb80f6c5ed23c8aa14b0db4a3f58a978f6307baaf93c4dbe0b8138b0af4
+ md5: 186ce71e16983faa1ee2510b33368725
+ depends:
+ - catkin_pkg
+ - matplotlib-base
+ - numpy
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui-py-common
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 67691
+ timestamp: 1736210938533
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-publisher-1.5.0-np126py311h2c3b307_7.conda
+ sha256: d06b3a29ef836e656c4fd67c5e59afbb82c5064ef9d540dff4e5881f68024617
+ md5: 2eefa97d45d470ed04219d8a0be9005a
+ depends:
+ - catkin_pkg
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui-py-common
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 41434
+ timestamp: 1736211136807
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-py-common-1.1.7-np126py311h2c3b307_7.conda
+ sha256: 3cea8860575a451c307582a90a70cf9a6df708d90c526de3b6010feb6d1c1923
+ md5: 1155735c942b4e65403cc47a27fa6055
+ depends:
+ - python
+ - qt-main
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 84126
+ timestamp: 1736210411641
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-py-console-1.0.2-np126py311h2c3b307_7.conda
+ sha256: 8c660b2090b23a0404181f191eca096c66a5ac410505c7bbae643cc2503b095a
+ md5: 1482524cd603ce5eaef19815cf4ab64a
+ depends:
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui
+ - ros-humble-qt-gui-py-common
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 24439
+ timestamp: 1736211132627
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-reconfigure-1.1.2-np126py311h2c3b307_7.conda
+ sha256: 2cdbaf83c61a35f17a228a3c22e97272c3bbe4850fc803b8d441f98d0ed0e3f7
+ md5: 115f4be651655a08db1eff78902dfa87
+ depends:
+ - python
+ - pyyaml
+ - ros-humble-ament-index-python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui-py-common
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-console
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 75484
+ timestamp: 1736211675961
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-service-caller-1.0.5-np126py311h2c3b307_7.conda
+ sha256: 8dd77e555f1bdcd7abafeb4b76d25e5751517dedd581538378cb17e6eeb3c3e5
+ md5: b7234516e80e6ade08ec3ddcffd4e7b4
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 31527
+ timestamp: 1736211128251
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-shell-1.0.2-np126py311h2c3b307_7.conda
+ sha256: d33443ef84ded2d60663efde8b8619bd71fc71596e1b32691df3d5b489407a57
+ md5: 55b8c3d4aeb22675481ab0fb3d83ded0
+ depends:
+ - catkin_pkg
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-qt-gui
+ - ros-humble-qt-gui-py-common
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 28452
+ timestamp: 1736210941174
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-srv-1.0.3-np126py311h2c3b307_7.conda
+ sha256: 9f2252617ad3ed10322043124c95f7029b689968f2149972f82c2b0d58737d4b
+ md5: fe5a754e81d031bd6c7051046c2a5641
+ depends:
+ - python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-msg
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 18592
+ timestamp: 1736211988237
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rqt-topic-1.5.0-np126py311h2c3b307_7.conda
+ sha256: 312642e02d5a91fe3aaa8a5584609778f2c30f2ddc87bb1dae72b898cc4deaa3
+ md5: 24e76e59555abce305601d9b221f38a0
+ depends:
+ - python
+ - ros-humble-python-qt-binding
+ - ros-humble-ros-workspace
+ - ros-humble-rqt-gui
+ - ros-humble-rqt-gui-py
+ - ros-humble-rqt-py-common
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 36997
+ timestamp: 1736211171546
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rsl-1.1.0-np126py311h2c3b307_7.conda
+ sha256: ce0edd2d93f384c144cb52a1db030547a99bd483f94f809aba47fa25d15b9349
+ md5: accdaa8093a107f57bdb635c55039a88
+ depends:
+ - eigen
+ - fmt
+ - python
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros-humble-tcb-span
+ - ros-humble-tl-expected
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - graphviz >=12.0.0,<13.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - fmt >=11.0.2,<12.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 48435
+ timestamp: 1736210430298
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311h2c3b307_7.conda
+ sha256: d98d4220e5269773db84c25746af5e38095058e85cdcb9d611957402f45f3847
+ md5: ee7773cf356c772693e144aaa1d5c93d
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 29372
+ timestamp: 1736208427967
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rttest-0.13.0-np126py311h2c3b307_7.conda
+ sha256: a5babc3ff4d7295f23ba7c11e4328893591e51ea28196e6f8e962edd171cbe80
+ md5: da41b66a6afcccc48afd027a9b717c27
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 51938
+ timestamp: 1736208176734
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-assimp-vendor-11.2.15-np126py311h2c3b307_7.conda
+ sha256: d958338f5a692eabeacde67daef46aa44c81bec782c55922ad0223c3998e8491
+ md5: 6ab6264160dc97efaaf936f0c5086b01
+ depends:
+ - assimp
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 22805
+ timestamp: 1736207942524
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-common-11.2.15-np126py311h2c3b307_7.conda
+ sha256: 6aa1c7a40c085cb560e3c691c9a1d9e20c172732043805de98606eef85aa7d3f
+ md5: fa85c669637c948873b6c620f26ef490
+ depends:
+ - python
+ - qt-main
+ - ros-humble-geometry-msgs
+ - ros-humble-message-filters
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rcpputils
+ - ros-humble-resource-retriever
+ - ros-humble-ros-workspace
+ - ros-humble-rviz-ogre-vendor
+ - ros-humble-rviz-rendering
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros-humble-tf2
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-tf2-ros
+ - ros-humble-tinyxml2-vendor
+ - ros-humble-urdf
+ - ros-humble-yaml-cpp-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 865497
+ timestamp: 1736211997586
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-default-plugins-11.2.15-np126py311h2c3b307_7.conda
+ sha256: cbf35da017a8511903729f06c380292d92617d3de7dc8a24fdcc36abd9aa04e0
+ md5: b2fc7d1767d728e5c4f130ab1d5a9c28
+ depends:
+ - python
+ - qt-main
+ - ros-humble-geometry-msgs
+ - ros-humble-ignition-math6-vendor
+ - ros-humble-image-transport
+ - ros-humble-interactive-markers
+ - ros-humble-laser-geometry
+ - ros-humble-map-msgs
+ - ros-humble-nav-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-resource-retriever
+ - ros-humble-ros-workspace
+ - ros-humble-rviz-common
+ - ros-humble-rviz-ogre-vendor
+ - ros-humble-rviz-rendering
+ - ros-humble-tf2
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-tf2-ros
+ - ros-humble-urdf
+ - ros-humble-visualization-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 2265643
+ timestamp: 1736213020598
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-ogre-vendor-11.2.15-np126py311h2c3b307_7.conda
+ sha256: f9786740ee8717af8e9ad1db0d918316dbb6738ce7b383b280124e71ae869700
+ md5: 3486cdfd5dda6d43bfacd203f9cf173b
+ depends:
+ - assimp
+ - freetype
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxaw
+ - xorg-libxrandr
+ - xorg-xorgproto
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - zziplib >=0.13.69,<0.14.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - freeimage >=3.18.0,<3.19.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 5513885
+ timestamp: 1736207562666
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz-rendering-11.2.15-np126py311h2c3b307_7.conda
+ sha256: ebcad1222c48f33792266b6c758e72bc3b32c6bd4a4eb534e7a96b04a1978392
+ md5: d53d357fdbbd762a69f72b614790d72e
+ depends:
+ - eigen
+ - python
+ - qt-main
+ - ros-humble-ament-index-cpp
+ - ros-humble-eigen3-cmake-module
+ - ros-humble-resource-retriever
+ - ros-humble-ros-workspace
+ - ros-humble-rviz-assimp-vendor
+ - ros-humble-rviz-ogre-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - glew >=2.1.0,<2.2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 902675
+ timestamp: 1736208566702
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-rviz2-11.2.15-np126py311h2c3b307_7.conda
+ sha256: ee3283a41cf43a844dcf6c6fe326e5df23adbf0b5f7321b74d708e5179e02071
+ md5: 24a647930dd99ac9a395b8c8490f92f1
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rviz-common
+ - ros-humble-rviz-default-plugins
+ - ros-humble-rviz-ogre-vendor
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 59614
+ timestamp: 1736213703075
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sdl2-vendor-3.3.0-np126py311h2c3b307_7.conda
+ sha256: 2f310d179571fbf0d0b685b2168e507b5ae174e1cdfc91eb6b65093ad27cfefc
+ md5: 3f13c829bcd754bff0d9b6da49bf863e
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - sdl2
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - sdl2 >=2.30.10,<3.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25026
+ timestamp: 1736207165091
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sensor-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: d5ee5588dc8f4ecfa831a31c70e0be13728ae19b3c30d8dcc6d5514e781bf317
+ md5: 723fbaf94adae9ec48c6eb6f75b554af
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 446751
+ timestamp: 1736209553492
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sensor-msgs-py-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 4c91002093d9cf7c47f4c399f703bdb4418d104e9936cb7d09937b6c675582cb
+ md5: e6b54b523a0d6ce5a8c013b10e41258d
+ depends:
+ - numpy
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 29787
+ timestamp: 1736209729192
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-shape-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 1625a9f576b641cdd30964a7794735ceb7e3331e3a97564a1d6f138ba501268b
+ md5: cd985400965b9ca9a31d2bae1a06a4ae
+ depends:
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 114007
+ timestamp: 1736209527612
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-shared-queues-vendor-0.15.13-np126py311h2c3b307_7.conda
+ sha256: f7ebfd5d1b808d07bee8b731613fad977a9a9f3f5faf4a804e48dfbcb827b63b
+ md5: f5e850892627cc24a26ca14e81430423
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 64872
+ timestamp: 1736207175563
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-spdlog-vendor-1.3.1-np126py311h6a008e1_7.conda
+ sha256: c2f08f93c2d6f61109524eed6077e4c2a0d535e0a887de3b05bca2145014c29d
+ md5: 511f6231235fcfbc355a5a6590766599
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - spdlog
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - spdlog >=1.14.1,<1.15.0a0
+ license: BSD-3-Clause
+ size: 24373
+ timestamp: 1736208178457
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sqlite3-vendor-0.15.13-np126py311h2c3b307_7.conda
+ sha256: a0c9ac4dc3129e534a1db2d672987920fdf4458961036fdfc192b308f9ff371a
+ md5: 7d6edea29c8d9b572a6717b2bd0e0881
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - sqlite
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - libsqlite >=3.47.2,<4.0a0
+ license: BSD-3-Clause
+ size: 22463
+ timestamp: 1736207164844
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sros2-0.10.5-np126py311h2c3b307_7.conda
+ sha256: 06b3684c099d47646135d349aa525f3ed5b997d27e1d84d0d6778d36bf278e45
+ md5: e85e7bbe01806ea370a094954343b9b9
+ depends:
+ - cryptography
+ - importlib_resources
+ - lxml
+ - python
+ - ros-humble-ament-index-python
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 71932
+ timestamp: 1736211989019
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-sros2-cmake-0.10.5-np126py311h2c3b307_7.conda
+ sha256: a82738d225ee8f67b6050e847d2d69808e3e648a90f7beb645c9eedb7677b9b2
+ md5: a4c9d6f957540d75554ecf38bf1c9b6c
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-ros2cli
+ - ros-humble-sros2
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 34894
+ timestamp: 1736212521053
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-statistics-msgs-1.2.1-np126py311h2c3b307_7.conda
+ sha256: f3473634c3d0ff080603d470533dac5ca61d808dc0f226bd65efd81d2094288d
+ md5: e46f0fc73a7da6bfe440457fe5e42b13
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 98729
+ timestamp: 1736209219341
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-std-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: a0ca6df6139c14b7b0d9495661ffa69b9aa6761848c6ff477c05fccd2a8d9b3b
+ md5: 20cc53f864b7f5f1607bc2a63bcfa65d
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 287145
+ timestamp: 1736209174531
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-std-srvs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 825d91a607a17d01f682620fc9db3b58a9ce756bc74e2ac10b2742017af0e8b5
+ md5: 46a2844ab9a70c17513b557bce3d2a80
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 103766
+ timestamp: 1736209142312
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-steering-controllers-library-2.40.0-np126py311h2c3b307_7.conda
+ sha256: edbb3503bd8b30d9159843318ab780cd1f9f7e1bd7e2025a9974919a3f6a8e09
+ md5: d084281f75a3c8ef96ecf7aef46bd435
+ depends:
+ - python
+ - ros-humble-ackermann-msgs
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-geometry-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-nav-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rcpputils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros-humble-tf2
+ - ros-humble-tf2-geometry-msgs
+ - ros-humble-tf2-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 287695
+ timestamp: 1736212492516
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-stereo-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: abd46f0ec286d815598d99c672511aa7d4c425589006ca743b72f7f6f6f75db2
+ md5: 72f623956cdb15061572a89ee724f6e0
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 74928
+ timestamp: 1736209719860
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tango-icons-vendor-0.1.1-np126py311h2c3b307_7.conda
+ sha256: 6ea059c03356c37c2b8a5aa374aabf08b6bfd30707dfb49201cbb7460f9aa193
+ md5: a5fbaa59e75f79316e95bbf031929bd2
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 24186
+ timestamp: 1736208181778
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tcb-span-1.0.2-np126py311h2c3b307_7.conda
+ sha256: 6c4d652fa5cf2f7eaf2d612ba82f082974537c4341c54b9c241bf986d7001412
+ md5: 54da39836c40fbfdd7f98a2ce8d5470e
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 26112
+ timestamp: 1736207370725
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-teleop-twist-joy-2.4.7-np126py311h2c3b307_7.conda
+ sha256: bf240674881f960583dbb391374697ad2be40b1173583b32c95033424e3641a8
+ md5: d5f528fa7c587df50645479c3e645a23
+ depends:
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-joy
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 208745
+ timestamp: 1736211126273
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311h2c3b307_7.conda
+ sha256: 8d4e06658d5b7d0c0d95e88f012a405ea6f87561983bc3ba2f375901b495f4b5
+ md5: 28397c4df0522abdc3a230d91b14a3e6
+ depends:
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21935
+ timestamp: 1736210411371
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 6fe02d77e6da7f4a6b2731ae988de84494e11bd29c20cb91a05615687ef2ba52
+ md5: e9b8816b76d59ee653a52a9efdaa2715
+ depends:
+ - console_bridge
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-console-bridge-vendor
+ - ros-humble-geometry-msgs
+ - ros-humble-rcutils
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - console_bridge >=1.0.2,<1.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 128456
+ timestamp: 1736209604039
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-bullet-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 4ae0a06da06cfaf288cfb7d9e400f3ca49a34efdb46a19111bc245361ac0f388
+ md5: 45b2988c7f61043dbb881bdb956171a1
+ depends:
+ - bullet
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-ros
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 39536
+ timestamp: 1736211673458
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-eigen-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 6505c33db221171103ba8184c74f491e5a8c61aa8f780a2ee5b4598feab8fd98
+ md5: dba8e4e58ca850edcae33dd2a11eda5a
+ depends:
+ - eigen
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-ros
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 41242
+ timestamp: 1736211956800
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-eigen-kdl-0.25.10-np126py311h2c3b307_7.conda
+ sha256: db5a4c33c50100339e63ac618fbf3063a6a483c2912a86e92ca5951d22e85e7a
+ md5: 7b695b98df9351330e188be11a8a71f1
+ depends:
+ - eigen
+ - python
+ - ros-humble-orocos-kdl-vendor
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 38508
+ timestamp: 1736209752538
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-geometry-msgs-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 9b8144f0a34ae074c395f1b3569f081ede62b7ac1a18402b2ece829e219b9c9d
+ md5: c478f0630e6a89a61308365eb6ad5372
+ depends:
+ - numpy
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-orocos-kdl-vendor
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-ros
+ - ros-humble-tf2-ros-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 53343
+ timestamp: 1736211950116
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-kdl-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 0ff26f8c3f00e78b68f1d5b1f2e261d056ec628d99ae35ab5c0206ae6fd69429
+ md5: 32f2383f045d0c5f30b79b3a74c8e2eb
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-orocos-kdl-vendor
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-ros
+ - ros-humble-tf2-ros-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 40645
+ timestamp: 1736211941805
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-msgs-0.25.10-np126py311h2c3b307_7.conda
+ sha256: a2776c3b977fc8675bbff86b3f34ae17b834b2c83564a77fd69cfc6d2714b332
+ md5: 0dc644a401df0c9a082f8329c1263d0e
+ depends:
+ - python
+ - ros-humble-action-msgs
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 169623
+ timestamp: 1736209498161
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-py-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 578471eb8eb5f27c9d34ab5997534161b85d196a70fa58e428ea54c35023e8c5
+ md5: fa58cb44e231cfa8aa7769e0452b8634
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-rpyutils
+ - ros-humble-tf2
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 56388
+ timestamp: 1736210416687
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-ros-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 4c18b4d53bbdf042f4371926a9ef0eff621903dc0c7e25043e87e4d5a6ab8a60
+ md5: 8d313bcb9449e2957fdbf556505db01c
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-message-filters
+ - ros-humble-rcl-interfaces
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-rclcpp-components
+ - ros-humble-ros-workspace
+ - ros-humble-tf2
+ - ros-humble-tf2-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 453920
+ timestamp: 1736211133887
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-ros-py-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 9df298e6371ce208b40d72daa90cab8b86a5620d29977b3d9acded105b5606b9
+ md5: 68a671871fdfb526f021115745acbc03
+ depends:
+ - python
+ - ros-humble-geometry-msgs
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros-humble-tf2-msgs
+ - ros-humble-tf2-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 44200
+ timestamp: 1736210596445
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-sensor-msgs-0.25.10-np126py311h2c3b307_7.conda
+ sha256: de38a0dfe18d1b10d5d72398447c0b20f5a66b5c7ae836f8095a111b55b7e661
+ md5: 8ec7342886b74cb140f16b92d0d047f5
+ depends:
+ - eigen
+ - python
+ - ros-humble-eigen3-cmake-module
+ - ros-humble-ros-workspace
+ - ros-humble-sensor-msgs
+ - ros-humble-tf2
+ - ros-humble-tf2-ros
+ - ros-humble-tf2-ros-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 38360
+ timestamp: 1736211645916
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tf2-tools-0.25.10-np126py311h2c3b307_7.conda
+ sha256: 7270b4ef9fd242e0fb3c3f3970f271a3789efb62277719339626b74ec5c045b6
+ md5: a00a7703b8519ca887eaa7fdb28b657e
+ depends:
+ - graphviz
+ - python
+ - pyyaml
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-tf2-msgs
+ - ros-humble-tf2-py
+ - ros-humble-tf2-ros-py
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 20886
+ timestamp: 1736211126812
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tinyxml-vendor-0.8.3-np126py311h2c3b307_7.conda
+ sha256: 76313f87e43fc876d9dbf339ae5f2437b7e1485051de42442fd32cabce90f357
+ md5: 314342ffe6366e117e03c233c4fc7467
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - tinyxml
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - tinyxml
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 22231
+ timestamp: 1736207356735
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311h2c3b307_7.conda
+ sha256: 82cddc9517bd4660bea7a2471125f9eb9ede985a89f55f3b8f99f537a81c904c
+ md5: 29e0571ab48c0924ab11ec97cd82bb6d
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - tinyxml2
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - tinyxml2 >=10.0.0,<11.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 22399
+ timestamp: 1736207361444
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tl-expected-1.0.2-np126py311h2c3b307_7.conda
+ sha256: 2e508810c29752b16737ea7c6b1393ed5091adaa1ce9cef537c26be26c7fa849
+ md5: 56725777e772abc68ea358c2c2dc35c8
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 31728
+ timestamp: 1736207366194
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tlsf-0.7.0-np126py311h2c3b307_7.conda
+ sha256: 1d79d89d279af9a1938ce0684297663d6f4b2609ce179bb9feaadb13e6e0090a
+ md5: d825319646b727d554a11a04918255f8
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 30892
+ timestamp: 1736208193069
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tlsf-cpp-0.13.0-np126py311h2c3b307_7.conda
+ sha256: d0f93de55a988af03d891aefe1111930d91458136000f273e9ec77c51aba9606
+ md5: d2fc361a560dc173678e8b64ce51a027
+ depends:
+ - python
+ - ros-humble-ament-cmake
+ - ros-humble-rclcpp
+ - ros-humble-rmw
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros-humble-tlsf
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 183322
+ timestamp: 1736210420210
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-topic-monitor-0.20.5-np126py311h2c3b307_7.conda
+ sha256: 96f423ca71bd9c6583a39b9a86ff298b9b6d0565b244e5bf1c29b9325f8a10b1
+ md5: d9f7f616f8a657af826ca50cf54993fa
+ depends:
+ - python
+ - ros-humble-launch
+ - ros-humble-launch-ros
+ - ros-humble-rclpy
+ - ros-humble-ros-workspace
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 46530
+ timestamp: 1736210679519
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tracetools-4.1.1-np126py311h2c3b307_7.conda
+ sha256: c4cdb72d6d393c8f687632e4038f4936c8b05737607e74dc1f9d5b4d719d5a9e
+ md5: b7b04a244845adb1c027beba4612b05b
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 38270
+ timestamp: 1736208482873
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-trajectory-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 2c45c08a48609c91cf7ddf99a07d444532df62cfdd3e0d27f2ced33759e300bb
+ md5: b732868f9f69f638fe1018db2b89b066
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 132443
+ timestamp: 1736209541107
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-transmission-interface-2.47.0-np126py311h2c3b307_7.conda
+ sha256: 12923232642439ba918e747f55f701762800df4b949d3b2d99e7bdd56c69cb62
+ md5: 9a0399728768690a58841825d8539c72
+ depends:
+ - python
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 83930
+ timestamp: 1736211157789
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tricycle-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 56881c14b816de0016447f9bab57c5bf803f54728b63dce2b5aeed555ebdee42
+ md5: 02d3664913456a976dfb38d10b4b2882
+ depends:
+ - python
+ - ros-humble-ackermann-msgs
+ - ros-humble-backward-ros
+ - ros-humble-builtin-interfaces
+ - ros-humble-controller-interface
+ - ros-humble-geometry-msgs
+ - ros-humble-hardware-interface
+ - ros-humble-nav-msgs
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-rcpputils
+ - ros-humble-realtime-tools
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros-humble-tf2
+ - ros-humble-tf2-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 273266
+ timestamp: 1736212443744
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-tricycle-steering-controller-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 7c20d0db3a0e6ca1dce90f8688afbc8f8d7d37cd3761b903a736b46811d9e714
+ md5: 12644ad9b458aef36d8408d9701589c9
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-control-msgs
+ - ros-humble-controller-interface
+ - ros-humble-hardware-interface
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-lifecycle
+ - ros-humble-ros-workspace
+ - ros-humble-std-srvs
+ - ros-humble-steering-controllers-library
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 83439
+ timestamp: 1736212804491
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-turtlesim-1.4.2-np126py311h2c3b307_7.conda
+ sha256: 915e777a69a1a2bfb92b354d2112c07c03e3614209dcd743928473bb1cca2ff4
+ md5: 20c6c962faddbcbee3cb2234e709b19f
+ depends:
+ - python
+ - qt-main
+ - ros-humble-ament-index-cpp
+ - ros-humble-geometry-msgs
+ - ros-humble-rclcpp
+ - ros-humble-rclcpp-action
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-std-msgs
+ - ros-humble-std-srvs
+ - ros2-distro-mutex 0.6.* humble_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 710769
+ timestamp: 1736210629645
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-uncrustify-vendor-2.0.2-np126py311h2c3b307_7.conda
+ sha256: 34f4089b2862eaa690b67dea3f39bda0a2a56cd15158de3a90a519d2cf5cdd86
+ md5: 2ab7fbb64863708e0a4108350511f315
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - uncrustify
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - uncrustify >=0.74.0,<0.75.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21306
+ timestamp: 1736207178839
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311h2c3b307_7.conda
+ sha256: c4fcd02dac0e3ce9bfc960fe574f8f55b910e08f265b1cf1d09a319a45f0bf9d
+ md5: cf71ad54ee011fb5b538f98880ac3e67
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 68439
+ timestamp: 1736209086378
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdf-2.6.1-np126py311h2c3b307_7.conda
+ sha256: 49934ffe1fb16408ba55c109486252780f7d73b080d0e2f552031fc92eb9cfaf
+ md5: 1d3db4c06fe6b149e20da0261752908f
+ depends:
+ - python
+ - ros-humble-pluginlib
+ - ros-humble-ros-workspace
+ - ros-humble-tinyxml2-vendor
+ - ros-humble-urdf-parser-plugin
+ - ros-humble-urdfdom
+ - ros-humble-urdfdom-headers
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 152471
+ timestamp: 1736208812739
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311h2c3b307_7.conda
+ sha256: e4be64214684a114693b8bcf51bff186fdf19c0d185edb81e070f767eb018259
+ md5: 3f1f001b8b81197ce54328b9e0e90954
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros-humble-urdfdom-headers
+ - ros2-distro-mutex 0.6.* humble_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 29653
+ timestamp: 1736208492539
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdfdom-3.0.2-np126py311h2c3b307_7.conda
+ sha256: 73f02cf524bd8d8418767239ba7bda3af9fbec34c25f161ca15d189f69b1fdb7
+ md5: 508705cafe28eceaab9ee37edadfebbd
+ depends:
+ - console_bridge
+ - python
+ - ros-humble-console-bridge-vendor
+ - ros-humble-ros-workspace
+ - ros-humble-tinyxml-vendor
+ - ros-humble-urdfdom-headers
+ - ros2-distro-mutex 0.6.* humble_*
+ - tinyxml
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - python_abi 3.11.* *_cp311
+ - tinyxml
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 124473
+ timestamp: 1736208544154
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-urdfdom-headers-1.0.6-np126py311h2c3b307_7.conda
+ sha256: bd3b5c1d7a38ed4c057d1b35f0e3f6743d550c267925db41a87aa744ab2efcf5
+ md5: 12d4112736de3561059974c62179203b
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 27125
+ timestamp: 1736205378985
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-velocity-controllers-2.40.0-np126py311h2c3b307_7.conda
+ sha256: 3a25eb3a6d3e07afe093c8b2c2f8fc2f3e70f72dcc336be9194193de3c2883c0
+ md5: 55c004dc3b3eadc5f7df894f0507ee0a
+ depends:
+ - python
+ - ros-humble-backward-ros
+ - ros-humble-forward-command-controller
+ - ros-humble-pluginlib
+ - ros-humble-rclcpp
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 60746
+ timestamp: 1736213615261
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-visualization-msgs-4.2.4-np126py311h2c3b307_7.conda
+ sha256: 20ba46f0268464d8794a13ff9e10105144711cf78dd23ba15560ccc8fab5edfe
+ md5: fcfa4a23cad646713b7bbc18fb7e26ba
+ depends:
+ - python
+ - ros-humble-builtin-interfaces
+ - ros-humble-geometry-msgs
+ - ros-humble-ros-workspace
+ - ros-humble-rosidl-default-runtime
+ - ros-humble-sensor-msgs
+ - ros-humble-std-msgs
+ - ros2-distro-mutex 0.6.* humble_*
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ license: BSD-3-Clause
+ size: 298958
+ timestamp: 1736209690733
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311h2c3b307_7.conda
+ sha256: 09ba8fc666229f747e2fd99c8109ced58a71041b62d7437176794dac18888c25
+ md5: c8e76afd8d24248addd6ea9fffdb3e0e
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ size: 21823
+ timestamp: 1736207365699
+- conda: https://prefix.dev/robostack-humble/linux-64/ros-humble-zstd-vendor-0.15.13-np126py311h2c3b307_7.conda
+ sha256: da2d53b05255ca1dccb9352714e17c0587b9cb78b0465b288f7dd7e72696c516
+ md5: bd744a023f60b32cd93d921bb894ec08
+ depends:
+ - python
+ - ros-humble-ros-workspace
+ - ros2-distro-mutex 0.6.* humble_*
+ - zstd
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ - ros2-distro-mutex >=0.6.0,<0.7.0a0
+ - python_abi 3.11.* *_cp311
+ license: BSD-3-Clause
+ size: 21920
+ timestamp: 1736207370934
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ackermann-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: 8869ddf66190e722a1234225dd138fcf7d8c4d2f85e55a2cd36bf96b49eee615
+ md5: 2343b1ac2c67796d080c0ca50d5afc65
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 89381
+ timestamp: 1749685880342
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ackermann-steering-controller-4.26.0-np126py312he556185_7.conda
+ sha256: f621f4c21e967da23adb0726723e0f19848086790039267dd71c3246a089d6fe
+ md5: 83762098251221d57e3f8b922bbc8014
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-steering-controllers-library
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 101551
+ timestamp: 1749728225359
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: 37f319fa2ffaf4edafaa6dc257c55f217de71742dc54783c233c8f5bed50fb4f
+ md5: 822149b6aa8f6b3fb9b50dd4e5b78154
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros-jazzy-service-msgs
+ - ros-jazzy-unique-identifier-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 152119
+ timestamp: 1749685558255
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-cpp-0.33.5-np126py312he556185_7.conda
+ sha256: c56ab810391411076a1f8bea5eecdddcebb4af63e3eb6a39fc1c2c3f6043e8cd
+ md5: ca8b656864cd9858a356a5935fb9e9ce
+ depends:
+ - python
+ - ros-jazzy-action-tutorials-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 131640
+ timestamp: 1749687796474
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-interfaces-0.33.5-np126py312he556185_7.conda
+ sha256: 320ce2aac1c16cb0e9c6985c083923fc70b901fa288ab2502b9058e128a5f5ef
+ md5: c32db56deb6a9c16512f387152436a40
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 185107
+ timestamp: 1749685736615
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-action-tutorials-py-0.33.5-np126py312he556185_7.conda
+ sha256: 175c6317ff14c6bdbdc1c81341d05ab4cd8781239ff85dd1df926a6770a4ef09
+ md5: 96c6ac95d83523676b5eaef436cbccd7
+ depends:
+ - python
+ - ros-jazzy-action-tutorials-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 30553
+ timestamp: 1749687431806
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-actionlib-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: ff3c30e499bcba4b36bf51aa8c9a63da918ebf51dadf4569be46f425cd3d7199
+ md5: 415b523050ecd33da6c77ad6f96902a3
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 110704
+ timestamp: 1749685944054
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-admittance-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 0a0ceed09a80a16e51d20536bd3cd132345ff263501b979a9f3cd9f222f8a612
+ md5: ca1b651cde9079de3e773a04b98dd09b
+ depends:
+ - python
+ - ros-jazzy-angles
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-kinematics-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-eigen
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-kdl
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-trajectory-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 409606
+ timestamp: 1749727755682
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-2.5.4-np126py312he556185_7.conda
+ sha256: 622be7e4fb0c6a70a1fce4372919bca4a2d06cda90aa9d2b2deb62a552f49172
+ md5: b88dc881b25e7dab9efd3929afaf8c4c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-export-definitions
+ - ros-jazzy-ament-cmake-export-dependencies
+ - ros-jazzy-ament-cmake-export-include-directories
+ - ros-jazzy-ament-cmake-export-interfaces
+ - ros-jazzy-ament-cmake-export-libraries
+ - ros-jazzy-ament-cmake-export-link-flags
+ - ros-jazzy-ament-cmake-export-targets
+ - ros-jazzy-ament-cmake-gen-version-h
+ - ros-jazzy-ament-cmake-libraries
+ - ros-jazzy-ament-cmake-python
+ - ros-jazzy-ament-cmake-target-dependencies
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-cmake-version
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - cmake
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22870
+ timestamp: 1749683800195
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-auto-2.5.4-np126py312he556185_7.conda
+ sha256: c2c58959796422e93556ff7f19eb49c75765fcc9a8abbb55cc4ccb8fb0ad947d
+ md5: 01a8b1c8f7ba6c7078fb90bf0b8abc30
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-cmake-gmock
+ - ros-jazzy-ament-cmake-gtest
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 26965
+ timestamp: 1749683860867
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-copyright-0.17.2-np126py312he556185_7.conda
+ sha256: c1228b620a50e29e48ac6a184e38dcab03dec70ab9f131f2d5af0c7a37fad1a4
+ md5: 33789720bf7252a972e2ad5baf72bf5c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-copyright
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 22313
+ timestamp: 1749683957655
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-core-2.5.4-np126py312he556185_7.conda
+ sha256: edc50c319146b30654d5f53b50bdad142941c289a9274148db547003b6b71c6f
+ md5: b6d3a5e0ac251cf7d8e1cf141b9f136c
+ depends:
+ - catkin_pkg
+ - python
+ - ros-jazzy-ament-package
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - cmake
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 44318
+ timestamp: 1749682540937
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-cppcheck-0.17.2-np126py312he556185_7.conda
+ sha256: 7b936fc31a46429d6a254927672a59f51dbfdcc091e13597298407ee6a76b457
+ md5: e6243f282c6ecb911e263a597476b7bb
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-cppcheck
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23948
+ timestamp: 1749684087317
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-cpplint-0.17.2-np126py312he556185_7.conda
+ sha256: 5fa4a6f05015ca2833fe8078a83035788064b8fb29e0cbfba76066fc0840bd68
+ md5: ab6f876beee266ce7f61c003da8e1df4
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-cpplint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22932
+ timestamp: 1749684111845
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-definitions-2.5.4-np126py312he556185_7.conda
+ sha256: bc2dbda9902aec66d4d225e2ca18b367e8af0b4fbcfe5239d9e63cf0d9d742d1
+ md5: cb17c388449d688ef100eadf52f299c8
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 21636
+ timestamp: 1749682648425
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-dependencies-2.5.4-np126py312he556185_7.conda
+ sha256: a4a9f409173420a541cedef83fe86209e3b476b1d76cc6acd080b86f2c4c5dc5
+ md5: 68c32c85f6e8e049a2c12269ddb8b987
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-libraries
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22558
+ timestamp: 1749683477121
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-include-directories-2.5.4-np126py312he556185_7.conda
+ sha256: b11ad523df6b8366d088a691cf6e6c4a2b7e089aea39b9fa96c77fa7f28ec1d0
+ md5: 5110bbdbe0abc84d2688aeac5742ef0c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22046
+ timestamp: 1749682644519
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-interfaces-2.5.4-np126py312he556185_7.conda
+ sha256: 913369cb271d20bb50bff769c7c5de1f575b1f0005d48b429af52339339daee5
+ md5: 3f2bac9bbe8513655631fb045483111b
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-export-libraries
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22270
+ timestamp: 1749683454023
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-libraries-2.5.4-np126py312he556185_7.conda
+ sha256: a7b1acec1ed7441af893758627411c4bdd6514ab1aa9c4e97227d84b1fc595cc
+ md5: b0bbe51baafa9d050e0aee7c2bb44bf3
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23569
+ timestamp: 1749682624680
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-link-flags-2.5.4-np126py312he556185_7.conda
+ sha256: bbaee14dc6824b65f02fdfcc8eccf19d7e10b9465fcccd3007058444ef1d37f3
+ md5: e7db58ae47dfa1acef10f30deea90409
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 21583
+ timestamp: 1749682640730
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-export-targets-2.5.4-np126py312he556185_7.conda
+ sha256: 8dd85880dbd1e52ff61c3a7b2e0b6433ed062c3aad342b4b5e21cbe8bb0dfca6
+ md5: 4bc2b32ef0a7b70eb65d5ec2cd1f98ce
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-export-libraries
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22427
+ timestamp: 1749683486920
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-flake8-0.17.2-np126py312he556185_7.conda
+ sha256: 1b6bd4597d2cb2b82c97ad3efe92fd5219a01dfdf0ae9190a8dc1c0f4f06e40e
+ md5: 234083d970253b90c331c24b791fe587
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-flake8
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 23938
+ timestamp: 1749684107719
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gen-version-h-2.5.4-np126py312he556185_7.conda
+ sha256: 6131ae4f4b77c2c8e86be41f408802704d782339384c6156af061fab5392abab
+ md5: b12cd1755af32eddb5ea68974b943819
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 24384
+ timestamp: 1749683680161
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gmock-2.5.4-np126py312he556185_7.conda
+ sha256: 9b270366be5169c09e0edc1fb8034cb8f55e09cde492a219d1ff6b1ab63dd090
+ md5: d66e4a860d17b27f1357f9c0b1e0037a
+ depends:
+ - gmock
+ - python
+ - ros-jazzy-ament-cmake-gtest
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-gmock-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 24524
+ timestamp: 1749683687452
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-gtest-2.5.4-np126py312he556185_7.conda
+ sha256: 8cc1f742a8554a1685ebc1e1076ab16552e6a6c1c5452eb88376073b800369e7
+ md5: 59fd7857f48acedbf843eb5749f613d1
+ depends:
+ - gtest
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-gtest-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - gtest >=1.17.0,<1.17.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 24261
+ timestamp: 1749683567255
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-include-directories-2.5.4-np126py312he556185_7.conda
+ sha256: d6c379114242a6d64d483e3c70c4db53aee9824f6b4f14cb0077eff92b7ec2cf
+ md5: 3539b970c68ef1328550ad11e129b344
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21509
+ timestamp: 1749682651675
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-libraries-2.5.4-np126py312he556185_7.conda
+ sha256: c14480cee2a9e3a1af372e5f92355b7beea72f1d8cee1f09a4524c9462c10cb9
+ md5: 37485d7865b5f0a9d16a1c0f885a5e57
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21235
+ timestamp: 1749682647713
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-lint-cmake-0.17.2-np126py312he556185_7.conda
+ sha256: eb0d62b42ca6e7b40c6bfde98849ca0b6ee30b68d346246b17a1f6788248eb1f
+ md5: 14e0643a104d3ec59840c2b6a0e4da7c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-lint-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21966
+ timestamp: 1749683861294
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-pep257-0.17.2-np126py312he556185_7.conda
+ sha256: fd41d34419a2a2b5f0aa888d3398a91b130011303ed1b9739889ab42d40469fe
+ md5: 6360233ab79de4c26bf11de44afbc829
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-pep257
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 22705
+ timestamp: 1749684103543
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-pytest-2.5.4-np126py312he556185_7.conda
+ sha256: 830c2c4f08ea5695f414ce6e44b437392d96eed8c0de17daaa891e3d669ffe65
+ md5: 6fe892643d1bbd8fbe16e75293c342e6
+ depends:
+ - pytest
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24533
+ timestamp: 1749683553892
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-python-2.5.4-np126py312he556185_7.conda
+ sha256: 65e1ec7063a4e6fb88fea2d9e251c8fd4d7c395c52978ffb99377a5c8bf39844
+ md5: efeaee4228505c9a3212a03dc15e7e7e
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 23756
+ timestamp: 1749682636486
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-ros-0.12.0-np126py312he556185_7.conda
+ sha256: aea80e0f127355741135901dc1105c62d677c42bdcac42a38132da42477d3998
+ md5: 55ee8a508f2713ac3da1ea1518af9910
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-cmake-gmock
+ - ros-jazzy-ament-cmake-gtest
+ - ros-jazzy-ament-cmake-pytest
+ - ros-jazzy-domain-coordinator
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 31015
+ timestamp: 1749684471348
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-target-dependencies-2.5.4-np126py312he556185_7.conda
+ sha256: ce0632790d8efa5c2e017b001b680a14e68ddc54e6bd1c056cfa52de1bfdc1b6
+ md5: e8fae31405e593149c8b6a41569afb70
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-include-directories
+ - ros-jazzy-ament-cmake-libraries
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23195
+ timestamp: 1749683482626
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-test-2.5.4-np126py312he556185_7.conda
+ sha256: a317c59d6f1f6f1ed31f1fe5760abb64eed4562460986b5e5afb8d58d3d8ff47
+ md5: 4c406de7370a23220e5005ed96936a40
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 35698
+ timestamp: 1749683469043
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-uncrustify-0.17.2-np126py312he556185_7.conda
+ sha256: 9fda225509cc1a7f6a44b3f8bacb143cdbf6886d947b3b9c23e18fd3dfb2da7a
+ md5: db08abe72e0611c4de02228648646c7b
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-uncrustify
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23211
+ timestamp: 1749684099205
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-version-2.5.4-np126py312he556185_7.conda
+ sha256: 2365c1900751656d14707e7d91ac0c158a4c374d26e458f534c1245b052db775
+ md5: f7ed982391a49b23ee6359b870675c66
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21397
+ timestamp: 1749682636885
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cmake-xmllint-0.17.2-np126py312he556185_7.conda
+ sha256: 941791ed235bb64e146be4ae9a45b9becaf1e30dbc14cc445b98caa5a3bd5a9f
+ md5: d9040f1d06140738a66c7d9b455773ee
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ament-xmllint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 22672
+ timestamp: 1749684086755
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-copyright-0.17.2-np126py312he556185_7.conda
+ sha256: e05ace6e7827ec910a55625ecffe4caa4db5c61cfae6e00c0ae7752965f2c2df
+ md5: 00855df516450e1d7b117ef5b0045304
+ depends:
+ - importlib-metadata
+ - python
+ - ros-jazzy-ament-lint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 66226
+ timestamp: 1749683666803
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cppcheck-0.17.2-np126py312he556185_7.conda
+ sha256: b074d966e114789b702b5a9d59dfdd608a8747c4105c21036a43df5f09e5a958
+ md5: 9b4fac8972adb8ad24179c3b617451db
+ depends:
+ - cppcheck
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 29596
+ timestamp: 1749683819122
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-cpplint-0.17.2-np126py312he556185_7.conda
+ sha256: 55ead71c0837a1715463a5f527d1ba351ac5e0b2df5f81a6018fd3837d449dfa
+ md5: 9666813913fc3f972298e160352b2b92
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 168375
+ timestamp: 1749683813580
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-flake8-0.17.2-np126py312he556185_7.conda
+ sha256: de8612f28d993f47807874ee75318a6e882b13f8791836ed2b6ea5d1f13b909f
+ md5: f80de0e89feec7be7356765e7535d02c
+ depends:
+ - flake8
+ - flake8-builtins
+ - flake8-comprehensions
+ - flake8-docstrings
+ - flake8-import-order
+ - flake8-quotes
+ - python
+ - ros-jazzy-ament-lint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 28077
+ timestamp: 1749683455457
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-index-cpp-1.8.1-np126py312he556185_7.conda
+ sha256: 0d1efb86b5c63c65a6da680854857178b5b1d0bc9a51f46e968b1b26cc340bea
+ md5: a8309bdf1afbc47f672d631ac5369ca9
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 46186
+ timestamp: 1749684731010
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-index-python-1.8.1-np126py312he556185_7.conda
+ sha256: 16625839dde1a83f007e67a00952604fc26cdab57032fb2052fabced7095fbd4
+ md5: 2ace0e1ca280c49549052a1f0a6b2162
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 29418
+ timestamp: 1749683786570
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-0.17.2-np126py312he556185_7.conda
+ sha256: 1adafb1b74f2db378618cefb403346a32d874c4e653c80a848ddaddee3f1e9cf
+ md5: 2e4b0227d75f99fe28b6bb3ec607584c
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 17370
+ timestamp: 1749682623763
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-auto-0.17.2-np126py312he556185_7.conda
+ sha256: fc47f1c9cc6eb04d47eb88d0e75e9ad4f02383cc0e5926d74931920922f81f5d
+ md5: 0405c3f52044c4356793bf8ba7ae22e3
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21605
+ timestamp: 1749683583459
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-cmake-0.17.2-np126py312he556185_7.conda
+ sha256: 7824b12d595ae79f5868b9ee303882f4f2dae434faf57e5d2d82c3e26e1f2a03
+ md5: 331a7958ccbcbc41c3701c985f50e9b7
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 39189
+ timestamp: 1749683786040
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-lint-common-0.17.2-np126py312he556185_7.conda
+ sha256: 1fbb045d062d9fd3417da83bb730557c43fc84ed8a6bf23aa9382ff881674c59
+ md5: 44daf4607205ef3e1e55fa5e8cdd8be8
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-copyright
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-cmake-cppcheck
+ - ros-jazzy-ament-cmake-cpplint
+ - ros-jazzy-ament-cmake-flake8
+ - ros-jazzy-ament-cmake-lint-cmake
+ - ros-jazzy-ament-cmake-pep257
+ - ros-jazzy-ament-cmake-uncrustify
+ - ros-jazzy-ament-cmake-xmllint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21917
+ timestamp: 1749684155156
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-package-0.16.4-np126py312he556185_7.conda
+ sha256: 6dc9533e27a6ad9a48b24ea84431e1c90e731f43c182c06d0a4d8d76928e28be
+ md5: 980f3c14a0e92adffd37fe65c32d6977
+ depends:
+ - importlib-metadata
+ - importlib_resources
+ - python
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - setuptools
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 42720
+ timestamp: 1749682529922
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-pep257-0.17.2-np126py312he556185_7.conda
+ sha256: 18c91b35358806c9ff50859ab7bf832f2de6b7602ad7c5b65d070a3a5304d617
+ md5: 40d7c77c1fd974f94556b129b56a08ba
+ depends:
+ - pydocstyle
+ - python
+ - ros-jazzy-ament-lint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 26738
+ timestamp: 1749683554032
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-uncrustify-0.17.2-np126py312he556185_7.conda
+ sha256: c6a1358321b135d32745fbcb93a9203e1cd9bf9f58bcefd35ffbffd2581120fa
+ md5: fb6bde50be9b7ef47a62109524717cd0
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-uncrustify-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 67844
+ timestamp: 1749683970006
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ament-xmllint-0.17.2-np126py312he556185_7.conda
+ sha256: 1718fda84e57ba0fd28bd9bd3246050415f7ffd285d35f421fa762c914e55eae
+ md5: fda026057981b7afd3f8d9ae7924356e
+ depends:
+ - libxml2
+ - python
+ - ros-jazzy-ament-lint
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27773
+ timestamp: 1749683807886
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-angles-1.16.0-np126py312he556185_7.conda
+ sha256: d089b8e50402e4bee56aee4322e97d2561d7872dc1ada6c184f0d0c8f7cac169
+ md5: ba247366b4e71093f6ca8e917518a8ca
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 32109
+ timestamp: 1749683890846
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-backward-ros-1.0.7-np126py312he556185_7.conda
+ sha256: 68e307b52413ea16f7e1ab3857c090feac13d283b21e07b452a3839b97410fb9
+ md5: ebba8a4379923bf51b474c7c23a5ce01
+ depends:
+ - elfutils
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - elfutils >=0.192,<0.193.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 338257
+ timestamp: 1749683515554
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-bicycle-steering-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 17abe50a96e36ea9c5ce74d8a12672174c447f7d75e1b5429e72122de990bb97
+ md5: 9e66fcd60452a47ea6e3cf33b0525ebb
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-steering-controllers-library
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 99450
+ timestamp: 1749728299005
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-builtin-interfaces-2.0.2-np126py312he556185_7.conda
+ sha256: eefd77e06cd27cdbba5d2fd5083c080a2296676105393e5e6a5897c18ca200c1
+ md5: 8c6b60fe7641874bc0fe9507861dc49e
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 79639
+ timestamp: 1749685480701
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-class-loader-2.7.0-np126py312he556185_7.conda
+ sha256: 84a17c6df1804a98df4ec113faa191dd20c22d9aa30623e36e71cb9402ccf01e
+ md5: 39c130330c348ab616ddb5fcf215937b
+ depends:
+ - console_bridge
+ - python
+ - ros-jazzy-console-bridge-vendor
+ - ros-jazzy-rcpputils
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - console_bridge >=1.0.2,<1.1.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 74531
+ timestamp: 1749685051325
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-common-interfaces-5.3.6-np126py312he556185_7.conda
+ sha256: 7c1b86b14b1f215fc992712e0801fd875d141fbb0570c17a854ed5971289c796
+ md5: 757d45ffa02ec520f27d8da13a737994
+ depends:
+ - python
+ - ros-jazzy-actionlib-msgs
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-diagnostic-msgs
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-shape-msgs
+ - ros-jazzy-std-msgs
+ - ros-jazzy-std-srvs
+ - ros-jazzy-stereo-msgs
+ - ros-jazzy-trajectory-msgs
+ - ros-jazzy-visualization-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 26318
+ timestamp: 1749686776130
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-composition-0.33.5-np126py312he556185_7.conda
+ sha256: 1d12521c07370195fd3491756102e228ec4d75399e9fb0b847a911c01777b030
+ md5: fa13531cc95ea25273e5a04dad9474c5
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-launch-ros
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 322445
+ timestamp: 1749688112829
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-composition-interfaces-2.0.2-np126py312he556185_7.conda
+ sha256: d52e9f1a64f0d8f7d3633465cc87509126d64266f0621bc0a18d1386777e901f
+ md5: 70002f9a3fbdb83a1b96e2f906a1f1c8
+ depends:
+ - python
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 229179
+ timestamp: 1749685948030
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-console-bridge-vendor-1.7.1-np126py312he556185_7.conda
+ sha256: 471b0cd6cfb694d2260b380bb40275594d965c60a137e893d218f4b771b1c0b2
+ md5: 12ab27ca578ec20e7495b22793a02bc1
+ depends:
+ - console_bridge
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - console_bridge >=1.0.2,<1.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27278
+ timestamp: 1749684805303
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-control-msgs-5.4.1-np126py312he556185_7.conda
+ sha256: 91a081e7f68fd8dd2f8366d8958dbd251ccabdab51832c4d93d2ec6b035a6048
+ md5: 9a7dc88f14e4ba75df57371f44a437b3
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros-jazzy-trajectory-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 1055639
+ timestamp: 1749686263194
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-control-toolbox-4.4.0-np126py312he556185_7.conda
+ sha256: 47120194e8e0ec6ceb7cef1aeccead12de8c9fd8d74186309a05e114ef36d6af
+ md5: d04307ce794e2c254c46705a4df19991
+ depends:
+ - eigen
+ - python
+ - ros-jazzy-control-msgs
+ - ros-jazzy-filters
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcutils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-ros
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 255480
+ timestamp: 1749691969438
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-interface-4.32.0-np126py312he556185_7.conda
+ sha256: 78ca12a3d9d2dc36704591c8b99960a69b6e01b5e0d2ebc2ba882af935876d86
+ md5: 9acc990e2fda708a269dd723e215d9e8
+ depends:
+ - python
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - fmt >=11.1.4,<11.2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 116397
+ timestamp: 1749724152622
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-manager-4.32.0-np126py312he556185_7.conda
+ sha256: 3b7d5b3bbd122e0b373b502ffc5ec929f254247ef20383b27d84be93e4145b6d
+ md5: 84e19d3f1fbeb7db5f4f4940c243d73f
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-controller-manager-msgs
+ - ros-jazzy-diagnostic-updater
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-launch
+ - ros-jazzy-launch-ros
+ - ros-jazzy-libstatistics-collector
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcpputils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2-control-test-assets
+ - ros-jazzy-ros2param
+ - ros-jazzy-ros2run
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - fmt >=11.1.4,<11.2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 631708
+ timestamp: 1749727287871
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-controller-manager-msgs-4.32.0-np126py312he556185_7.conda
+ sha256: f427a83cd1d1c39387e35432a6ef627567152b9c893db55b0fc0a7b4263d74c0
+ md5: 846d8b6db616a570fc07a48ac25d5d5b
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 554761
+ timestamp: 1749685904636
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-cv-bridge-4.1.0-np126py312h1758b5b_7.conda
+ sha256: d378cf812e918bfdbb2f828efcd6a7f9d037f68fd81a522b8c35fa0c47b5952f
+ md5: 36cfaca9e82bc1f3d06bbd0aeb8a90d7
+ depends:
+ - libboost-python
+ - libopencv
+ - numpy
+ - py-opencv
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcpputils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libboost-python >=1.86.0,<1.87.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - numpy >=1.26.4,<2.0a0
+ - py-opencv >=4.11.0,<5.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libopencv >=4.11.0,<4.11.1.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 209959
+ timestamp: 1749687363691
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-cyclonedds-0.10.5-np126py312he556185_7.conda
+ sha256: 81cd1cef27ebc213097a9f1949b50df18a9799cc3d21c2748fd077146ccb7aa6
+ md5: 15dfacb96fb15c80119187abfc542e0f
+ depends:
+ - openssl
+ - python
+ - ros-jazzy-iceoryx-binding-c
+ - ros-jazzy-iceoryx-hoofs
+ - ros-jazzy-iceoryx-posh
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - openssl >=3.5.0,<4.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 1193843
+ timestamp: 1749683691802
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-cpp-0.33.5-np126py312he556185_7.conda
+ sha256: 71560abe329497bd11c3bef098402823e494aac89748321f1de37c08b0c5ed62
+ md5: d1c3470b270dc3ac35c4b30b30749e68
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-launch-ros
+ - ros-jazzy-launch-xml
+ - ros-jazzy-rcl
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 1243763
+ timestamp: 1749688185743
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-cpp-native-0.33.5-np126py312he556185_7.conda
+ sha256: 1ec29ae794bc51edfcfd5e54f6994305011c54c72859a07a09eea5cff10e5cff
+ md5: eeef88bc06ddeec695757736a818ea24
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rmw-fastrtps-cpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 119144
+ timestamp: 1749688172394
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-demo-nodes-py-0.33.5-np126py312he556185_7.conda
+ sha256: f927e75d54608929e0bf0fad36bc91649177005f97ce845623755a43b3c7b290
+ md5: d155a432b1809ded55746c91e34361e7
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 42832
+ timestamp: 1749687399924
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-depthimage-to-laserscan-2.5.1-np126py312h1758b5b_7.conda
+ sha256: 31a0d52cd5649e7621b2335d1a4200f2cfc08fdab1d54c7f747acd9813e6af22
+ md5: 7b607b6fadfccc25aa75846adb6c2cd4
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-jazzy-image-geometry
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - py-opencv >=4.11.0,<5.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - libopencv >=4.11.0,<4.11.1.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: BSD-3-Clause
+ size: 284923
+ timestamp: 1749687910743
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-desktop-0.11.0-np126py312he556185_7.conda
+ sha256: 0a2f9bc19a220ae92b6a98816eb5b99b75a0329cabfb2c2891a1d488d66bdabb
+ md5: eca62bb19c071bdd3e0643e5fdedbd63
+ depends:
+ - python
+ - ros-jazzy-action-tutorials-cpp
+ - ros-jazzy-action-tutorials-interfaces
+ - ros-jazzy-action-tutorials-py
+ - ros-jazzy-angles
+ - ros-jazzy-composition
+ - ros-jazzy-demo-nodes-cpp
+ - ros-jazzy-demo-nodes-cpp-native
+ - ros-jazzy-demo-nodes-py
+ - ros-jazzy-depthimage-to-laserscan
+ - ros-jazzy-dummy-map-server
+ - ros-jazzy-dummy-robot-bringup
+ - ros-jazzy-dummy-sensors
+ - ros-jazzy-examples-rclcpp-minimal-action-client
+ - ros-jazzy-examples-rclcpp-minimal-action-server
+ - ros-jazzy-examples-rclcpp-minimal-client
+ - ros-jazzy-examples-rclcpp-minimal-composition
+ - ros-jazzy-examples-rclcpp-minimal-publisher
+ - ros-jazzy-examples-rclcpp-minimal-service
+ - ros-jazzy-examples-rclcpp-minimal-subscriber
+ - ros-jazzy-examples-rclcpp-minimal-timer
+ - ros-jazzy-examples-rclcpp-multithreaded-executor
+ - ros-jazzy-examples-rclpy-executors
+ - ros-jazzy-examples-rclpy-minimal-action-client
+ - ros-jazzy-examples-rclpy-minimal-action-server
+ - ros-jazzy-examples-rclpy-minimal-client
+ - ros-jazzy-examples-rclpy-minimal-publisher
+ - ros-jazzy-examples-rclpy-minimal-service
+ - ros-jazzy-examples-rclpy-minimal-subscriber
+ - ros-jazzy-image-tools
+ - ros-jazzy-intra-process-demo
+ - ros-jazzy-joy
+ - ros-jazzy-lifecycle
+ - ros-jazzy-logging-demo
+ - ros-jazzy-pcl-conversions
+ - ros-jazzy-pendulum-control
+ - ros-jazzy-pendulum-msgs
+ - ros-jazzy-quality-of-service-demo-cpp
+ - ros-jazzy-quality-of-service-demo-py
+ - ros-jazzy-ros-base
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-common-plugins
+ - ros-jazzy-rviz-default-plugins
+ - ros-jazzy-rviz2
+ - ros-jazzy-teleop-twist-joy
+ - ros-jazzy-teleop-twist-keyboard
+ - ros-jazzy-tlsf
+ - ros-jazzy-tlsf-cpp
+ - ros-jazzy-topic-monitor
+ - ros-jazzy-turtlesim
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23233
+ timestamp: 1749729987966
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diagnostic-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: 299a666b46a6448fff8412c70f471af3882d81d6c09adde3bbc83afb303ac430
+ md5: 5f7663d3b997b2da0127e5fcc61d7991
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 209353
+ timestamp: 1749686079847
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diagnostic-updater-4.2.6-np126py312he556185_8.conda
+ sha256: 6c41245040b908897a4b12661646e39b2232eaecb9dba33282fbf51fdecbf88f
+ md5: 18ce8d9f88311c331becc3a1cfaf506b
+ depends:
+ - python
+ - ros-jazzy-diagnostic-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 186834
+ timestamp: 1751841955047
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-diff-drive-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 061ef7345bae9bf4c76a1434bad7752db037d48b735afa7c884eb46bcff81951
+ md5: ce3dd93cea5d75b6a9bda228e03d6b80
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rcpputils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 319313
+ timestamp: 1749727722957
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-domain-coordinator-0.12.0-np126py312he556185_7.conda
+ sha256: 9e5d5a5423954275290a1965b1ced0bbf123cc46998c58444f1bcf389d6e1def
+ md5: 912c791ae9baa7b4aaae339fd0c4e22d
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20829
+ timestamp: 1749683798597
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-map-server-0.33.5-np126py312he556185_7.conda
+ sha256: bbc942b199aefc976a7a71c23a9673148d50d233f17dfd334ce943d30718827e
+ md5: ee3e5f088d58145367f3bc7060dcb907
+ depends:
+ - python
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 87114
+ timestamp: 1749687310002
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-robot-bringup-0.33.5-np126py312he556185_7.conda
+ sha256: 3f9123b6240cdfaea28eeba171d7e0e11733cf3b91a31b53f1866232c2783541
+ md5: adf481d04e16940cac43aa2b0907eae4
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-dummy-map-server
+ - ros-jazzy-dummy-sensors
+ - ros-jazzy-launch
+ - ros-jazzy-launch-ros
+ - ros-jazzy-robot-state-publisher
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 30230
+ timestamp: 1749724264668
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-dummy-sensors-0.33.5-np126py312he556185_7.conda
+ sha256: a65d691e16f3e9d192c57b97794f590179a9989403e6cb8f0b9ecd41a8641305
+ md5: 204ba8ea512007e255b515ffb5a388c2
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 119366
+ timestamp: 1749687490145
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-effort-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: 95aea9e1367d09f6eb1c5d64666dc8b42bc10344f2be088c4e212ffaf77c120a
+ md5: fff380b9352a1d597b7fcc275af42735
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-forward-command-controller
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 74519
+ timestamp: 1749728285022
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-eigen3-cmake-module-0.3.0-np126py312he556185_7.conda
+ sha256: 88d340b066ff3086fdc5e0dfa2423bc0920b75abdb272c002111f3787b362da7
+ md5: 56fae1d358a09a32a69f593c022e0fc9
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23143
+ timestamp: 1749684105699
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-example-interfaces-0.12.0-np126py312he556185_7.conda
+ sha256: 8dd87355e866b5455e697b5aa82f84c38088757a1e38aa9b51045c4555b95825
+ md5: ceb692e4e94e6dacca73a54205554a6c
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 536700
+ timestamp: 1749685725759
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-action-client-0.19.5-np126py312he556185_7.conda
+ sha256: 51bd495d9701a9e571f6b504aa12ee1d020fc4616f07aed5ca29d5f7ac3dfcc9
+ md5: 443935812a958a3f5619d98342acefc5
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 156083
+ timestamp: 1749687895593
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-action-server-0.19.5-np126py312he556185_7.conda
+ sha256: e8ec10d9d006638c6e13075f700aa8959d80a2e3c9af03bde10f50db304a22d8
+ md5: ad3bffed70b6efc98ab438f9eb38a577
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 89888
+ timestamp: 1749687883886
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-client-0.19.5-np126py312he556185_7.conda
+ sha256: 2570597de9e09eba8af152c2ff06368e617d533120c7be3d763e4d2d82e71e27
+ md5: 3cf53572168a644d47a49b42af02907e
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 67731
+ timestamp: 1749687309381
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-composition-0.19.5-np126py312he556185_7.conda
+ sha256: 5842281749052340055d64c32880314681bdb8cb25dd42098b5b0bc338823033
+ md5: dd673f2ba7b1798a0b73e6054ba76599
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 187715
+ timestamp: 1749687863480
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-publisher-0.19.5-np126py312he556185_7.conda
+ sha256: 47f091f634f141a397f8a1eb09a11b37a4949be50f5982a55cacadb22355e90d
+ md5: 3a67c8c1c7c5b990d10c13cc33246a35
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 200433
+ timestamp: 1749687456117
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-service-0.19.5-np126py312he556185_7.conda
+ sha256: 3ea173aae522b8efaf867f274ab61f2f43927f0cca8d1d73717c9ef50faa75af
+ md5: cc2cba0d5cf8c9ee529a66fa4cda9600
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 59712
+ timestamp: 1749687445528
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-subscriber-0.19.5-np126py312he556185_7.conda
+ sha256: 7d61ac39718d8b7ac2cc4277e1b1ba9a65cd2bee303fae188271edbc6fbcacd0
+ md5: 26fb9dea6be667a9034d9e1b437af190
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 574589
+ timestamp: 1749687797976
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-minimal-timer-0.19.5-np126py312he556185_7.conda
+ sha256: df9d73bb69b2f0fa07c8d6ec0879513413be2a99b24347b8f412a06e5b6e737b
+ md5: 7e4dba8429805633b18ecf66b99208b7
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 51917
+ timestamp: 1749687418298
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclcpp-multithreaded-executor-0.19.5-np126py312he556185_7.conda
+ sha256: fd17afa77f31b130c906e50748bef51b07dde78cec8ea3b7f49c161d5acf92c6
+ md5: ca1fcf4abfd809ffa03f15660155b073
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 166127
+ timestamp: 1749687370705
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-executors-0.19.5-np126py312he556185_7.conda
+ sha256: bdaf81b80a558646b77dff58823056620d33219c885952519dacc2cebd4570e6
+ md5: 315576afdecdd428ad8ebeda96432543
+ depends:
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27757
+ timestamp: 1749687308555
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-action-client-0.19.5-np126py312he556185_7.conda
+ sha256: 5db27cd41e4253d6b53265224d7f5f9fb74ed49cfcd2fd8451277b67de8564ab
+ md5: 47f3621195d348779810de8d0eab0dfd
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 26276
+ timestamp: 1749687411039
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-action-server-0.19.5-np126py312he556185_7.conda
+ sha256: 3529b7c67b3e01d3d74372eef9af2e8e2a046d07c1601cab2b146b3f01841c21
+ md5: 140b6ec6c0b1683715638721dd57bd13
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27440
+ timestamp: 1749687405087
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-client-0.19.5-np126py312he556185_7.conda
+ sha256: ee2b26c28ef0bccf53e8fc6a0900e3fb1f9b5ad95aba36bbfd2ed89db4722afb
+ md5: 23c953c97144e3c1f066bdb351ca4f34
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23391
+ timestamp: 1749687401249
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-publisher-0.19.5-np126py312he556185_7.conda
+ sha256: f3850a883ca316e9d9e6645b4c18841f3e7dd36a24960558f5e799fe9b358b69
+ md5: 4c6b174d62e49ee7ab0f03e840edde6b
+ depends:
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23909
+ timestamp: 1749687383833
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-service-0.19.5-np126py312he556185_7.conda
+ sha256: 659bdf1b04312c3f3696ce38c15d8f4cd4839ae6024458c8d917afdd76b0586b
+ md5: 123148a9689639fceb7f091868cf4a99
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 21086
+ timestamp: 1749687311166
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-examples-rclpy-minimal-subscriber-0.19.5-np126py312he556185_7.conda
+ sha256: bf9c3479615ef70163d3d7d40f0e7a58bc2e8733d22412ea4ab13d706a9ec6cb
+ md5: 746688f0f8fb4ae94de22533ec695882
+ depends:
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21647
+ timestamp: 1749687492402
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastcdr-2.2.5-np126py312he556185_7.conda
+ sha256: 16813cb64e47a87cce18305fd6b67ee71ba5b0af37ea8ec89bea6d1ec0f9fd24
+ md5: e33aadff08852fd16a00c499b8b08f99
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 87978
+ timestamp: 1749683894710
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastrtps-2.14.4-np126py312he556185_7.conda
+ sha256: d4ca1fb3433429b406be156bb94cef1ca2c13662a3411ffc28a25498dc489744
+ md5: 25b412ee963f5cc24cc2fd1ee93c058c
+ depends:
+ - openssl
+ - python
+ - ros-jazzy-fastcdr
+ - ros-jazzy-foonathan-memory-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - tinyxml2
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - openssl >=3.5.0,<4.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 4051437
+ timestamp: 1749684454534
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-fastrtps-cmake-module-3.6.1-np126py312he556185_7.conda
+ sha256: 40d8255b598cc59d6aa2bedeb1e35c9729dc06d147d5b54bbe52542ba8598af9
+ md5: 40bf0c88e1de3d34df3b9f82e271c686
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27076
+ timestamp: 1749684443825
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-filters-2.2.1-np126py312he556185_7.conda
+ sha256: 59ec6ce9e68394d16d2bdf12808122618816c412e4aa7582d0b6fefe7e8f34f4
+ md5: febcdd6163eb5bf2195f82fb84da64bf
+ depends:
+ - libboost-devel
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - libboost >=1.86.0,<1.87.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 134838
+ timestamp: 1749687435502
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-foonathan-memory-vendor-1.3.1-np126py312he556185_7.conda
+ sha256: 5363d8202143e83b68746fc1a5d156c5b686aa4e9d3a87f8e46bb609570fcf17
+ md5: d1e6b78ba3c075f5a53d1363025574e5
+ depends:
+ - foonathan-memory
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - cmake
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - foonathan-memory >=0.7.3,<0.7.4.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 19241
+ timestamp: 1749684167584
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-force-torque-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: b12bbe7db00d77da1dbdad6f814de14c58dcb243934ddb5ba947500326b207e6
+ md5: bbd26255e8a31f36e0259a903f13214a
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 169104
+ timestamp: 1749727703308
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-forward-command-controller-4.26.0-np126py312he556185_7.conda
+ sha256: bc415a9eec12071165ca68f8332d861fc80db90f810e64fca389e8228beab9cb
+ md5: d14169d4115f50294db841ced207c8ef
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 219946
+ timestamp: 1749727665203
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-generate-parameter-library-0.4.0-np126py312he556185_7.conda
+ sha256: ab7ab5626bcf54317df2b74f46fb9718be1d8fe37055b5f7b96808149828360b
+ md5: d5c6571d7d4cd969ebbc7c97b0f970cc
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-generate-parameter-library-py
+ - ros-jazzy-parameter-traits
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rsl
+ - ros-jazzy-tcb-span
+ - ros-jazzy-tl-expected
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.1.4,<11.2.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 48834
+ timestamp: 1749688113342
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-generate-parameter-library-py-0.4.0-np126py312he556185_7.conda
+ sha256: 54b2bcd301f0fda401bbee0f261dcc229293b64d9aa18784d752404df39c7e30
+ md5: 9bce0e6309167197428499fbc18fe512
+ depends:
+ - jinja2
+ - python
+ - pyyaml
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - typeguard
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 70118
+ timestamp: 1749683804170
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-geometry-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: e3def83da7bbc3f3f3b61ca533c4900b71cdff63448777baa5c0b98a95e97234
+ md5: e7243868fcf1d341a13b57e47d1f9446
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 377059
+ timestamp: 1749685966517
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-geometry2-0.36.11-np126py312he556185_7.conda
+ sha256: ef8fdd4927fc9b66aeb5a99451670ccc1ecf3df69f36e2422d975a4568f385b4
+ md5: a6fdcfd33bf780ca413b049d77430126
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-bullet
+ - ros-jazzy-tf2-eigen
+ - ros-jazzy-tf2-eigen-kdl
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-kdl
+ - ros-jazzy-tf2-msgs
+ - ros-jazzy-tf2-py
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-tf2-sensor-msgs
+ - ros-jazzy-tf2-tools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22049
+ timestamp: 1749692120211
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gmock-vendor-1.14.9000-np126py312he556185_7.conda
+ sha256: 4e3b74cac7945190f592827bdbe96a1076bc8512efc23308ef950e1bdcb3764a
+ md5: cbb34ec245a7c33110bd65753abc3dec
+ depends:
+ - python
+ - ros-jazzy-gtest-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 122212
+ timestamp: 1749683466930
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gpio-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: d63cf3035f19e4583eef5bf1b08058fe2286194ea817e86541851035daffa05a
+ md5: 337f2bf02a7e42b16a77da13ff9de085
+ depends:
+ - python
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 240672
+ timestamp: 1749727664880
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gps-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: ac9364e479214caf541977804ec7f1e0aede77836e75a7e41626cacf272c9283
+ md5: 432492e2cc8508422f56c4fec4c29ab0
+ depends:
+ - python
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 151351
+ timestamp: 1749727795069
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gripper-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: cd415b259f2c7a5a0f8d5875a1fb76e1c4db9c818de0338e1c86c5e656db0f3f
+ md5: f7143adaabb0802379de2cca88f4644a
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 151839
+ timestamp: 1749727703208
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gtest-vendor-1.14.9000-np126py312he556185_7.conda
+ sha256: 9acd0816c021471fe1830cfb0745ac77e8e87343b776bf555e80cd3cc820c792
+ md5: 52e85663b9dc73f1f3b4b1b7febf533a
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 208582
+ timestamp: 1749682643921
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-cmake-vendor-0.0.10-np126py312he556185_7.conda
+ sha256: cd03e20a4647d81d6f7275186cc976aa6fef43925aea5fe34acd261dadfb5678
+ md5: e19e3196c000ff0444807ff1d1c59e1b
+ depends:
+ - gz-cmake3
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libgz-cmake3 >=3.5.3,<4.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 302702
+ timestamp: 1749684172665
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-math-vendor-0.0.8-np126py312he556185_7.conda
+ sha256: 5c3658eb3f5292db07621a907e6fca11617d213a1acd02b30461129fb7bf1ed8
+ md5: ab11509a3ba57002012b2cd101ddb5ac
+ depends:
+ - eigen
+ - gz-math7
+ - python
+ - ros-jazzy-gz-cmake-vendor
+ - ros-jazzy-gz-utils-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libgz-math7 >=7.5.1,<8.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27946
+ timestamp: 1749684786442
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-tools-vendor-0.0.6-np126py312he556185_7.conda
+ sha256: ce184d2c100d72e1dea5bf73ed8372077064829fb4031d7b46c444cd78010d18
+ md5: 14e806984d12d87b94cda2626af364aa
+ depends:
+ - gz-tools2
+ - python
+ - ros-jazzy-gz-cmake-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - ruby
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libgz-tools2 >=2.0.1,<3.0a0
+ license: BSD-3-Clause
+ size: 27366
+ timestamp: 1749684461041
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-gz-utils-vendor-0.0.5-np126py312he556185_7.conda
+ sha256: c6bf6e6928af5fb3aff96a0d4cb3bd398ac1c24779a170af1a66a539dd869686
+ md5: 332b5df3ec71f55a61613ff470195308
+ depends:
+ - gz-utils2
+ - python
+ - ros-jazzy-gz-cmake-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libgz-utils2 >=2.2.0,<3.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25855
+ timestamp: 1749684454941
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-hardware-interface-4.32.0-np126py312he556185_7.conda
+ sha256: c793a5be8279f1816ba4ec6bd76655af1a003bb78e76e71275b8ac0f097bf6c3
+ md5: 012b4cd56d1804d9c09aa21bf7d84971
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-joint-limits
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-pal-statistics
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sdformat-urdf
+ - ros-jazzy-tinyxml2-vendor
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - fmt >=11.1.4,<11.2.0a0
+ license: BSD-3-Clause
+ size: 444841
+ timestamp: 1749691908593
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-binding-c-2.0.6-np126py312he556185_7.conda
+ sha256: ba76019971b25f6416a6659fd85373b3b9fb0778e86494ba034dfcaa9b393de6
+ md5: 4356fa682ce0a772545ac2c0d0a92046
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 90355
+ timestamp: 1749683571231
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-hoofs-2.0.6-np126py312he556185_7.conda
+ sha256: 7b5bdbe58a45f2a8354e8b4278d74421bb9e6d00d82f79e6f6c7a655448fa5e8
+ md5: 97d333e5a063a51cc5549b8a0e8bd7fd
+ depends:
+ - libacl
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - libacl >=2.3.2,<2.4.0a0
+ license: BSD-3-Clause
+ size: 260529
+ timestamp: 1749682625882
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-iceoryx-posh-2.0.6-np126py312he556185_7.conda
+ sha256: ab9dd9ba28f86f27d98da1425de9148dcba9ea4d9257264a6ee948fc37c3f091
+ md5: d6d0f897d9de75413b066d7b34afa19a
+ depends:
+ - python
+ - ros-jazzy-iceoryx-hoofs
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 566486
+ timestamp: 1749683470971
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-geometry-4.1.0-np126py312h1758b5b_7.conda
+ sha256: e1f7e93c6bfc842220515a7cdce90322d23c43d0136aef26b2d738b51266e328
+ md5: 80c7b16daaaa6982702785d730f09813
+ depends:
+ - deprecated
+ - libopencv
+ - py-opencv
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libopencv >=4.11.0,<4.11.1.0a0
+ - python_abi 3.12.* *_cp312
+ - libopengl >=1.7.0,<2.0a0
+ - py-opencv >=4.11.0,<5.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 88120
+ timestamp: 1749686321592
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-tools-0.33.5-np126py312h1758b5b_7.conda
+ sha256: 263f55b496ca2b5c6690f254c101d2c8ff249e441aa85d8413540ed7a11708ea
+ md5: 4bdffa9969deef72796af279d3173be0
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopencv >=4.11.0,<4.11.1.0a0
+ - python_abi 3.12.* *_cp312
+ - py-opencv >=4.11.0,<5.0a0
+ license: BSD-3-Clause
+ size: 298398
+ timestamp: 1749688144096
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-image-transport-5.1.6-np126py312he556185_7.conda
+ sha256: 321aa213917725594990c73e199c6ce186aa5f729620bbc361b3eec0d21d72ea
+ md5: d0a593f7b35994737d57e04611ab3e41
+ depends:
+ - python
+ - ros-jazzy-message-filters
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 563516
+ timestamp: 1749688111783
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-imu-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: 7700642de0a38844b7ec3a45130ce2e282e7b69ec1637826b801114561ba8788
+ md5: ebc0c2ff13dd6078c0d1f3dff654ab84
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 149451
+ timestamp: 1749727776251
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-interactive-markers-2.5.4-np126py312he556185_7.conda
+ sha256: 473640764a22025bbac4ac36d337b51463c6a4315b0417aabaa08d1c13b2ff29
+ md5: fe902d29900330a7098a34ec48b70d42
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclpy
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-visualization-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 314182
+ timestamp: 1749692011399
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-intra-process-demo-0.33.5-np126py312h1758b5b_7.conda
+ sha256: 5090f9b5583db38c3508315cd2b3709f07c682c12f4780cf76a0a4049b04b5eb
+ md5: 3fc4bc978c614596dc34ffee59fafd70
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libopencv >=4.11.0,<4.11.1.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - py-opencv >=4.11.0,<5.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: BSD-3-Clause
+ size: 503150
+ timestamp: 1749687435317
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-limits-4.32.0-np126py312he556185_7.conda
+ sha256: dfba43e1261d4a5961b36a4aa66b54156987db9fe3bcca0289d7a809dfd6cb8e
+ md5: 21a5632b7107bd1c33a381a564fc871e
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-trajectory-msgs
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - fmt >=11.1.4,<11.2.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 144072
+ timestamp: 1749688332826
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-state-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: 7f7eab3a1030d456ca54495092805e0eef8c04203bb4e1b94651e8a46532b86e
+ md5: 8fca7bed188c8dc615701340f5af1650
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 179879
+ timestamp: 1749727754453
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joint-trajectory-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 90c7d666429826db1f47bb1a01a6d49bac397bc62b9b4c8347224477f6c134c4
+ md5: 58a860e27e7bee0a65a33323da4c5188
+ depends:
+ - python
+ - ros-jazzy-angles
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rsl
+ - ros-jazzy-tl-expected
+ - ros-jazzy-trajectory-msgs
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 378669
+ timestamp: 1749727717968
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-joy-3.3.0-np126py312he556185_7.conda
+ sha256: bfd5c54b385f0662c015ceb29e88c63e78a7f898d6df78dfd50dea9091c86ff6
+ md5: 1cd8a1771f12eb96268befa1fe31ff2a
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sdl2-vendor
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 280308
+ timestamp: 1749687814020
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-kdl-parser-2.11.0-np126py312he556185_7.conda
+ sha256: 243ccf9a81c061d83ff99b670f0b58e8ac6c061d18d5af838b38e943d375cad1
+ md5: 35f8bb30fee0836b23742ddb322c6ecd
+ depends:
+ - python
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-urdf
+ - ros-jazzy-urdfdom-headers
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 46978
+ timestamp: 1749685348056
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-keyboard-handler-0.3.1-np126py312he556185_7.conda
+ sha256: 7fb93dc9a246bfc4dad802a5230d855509cfa501ac957d4ee1916dbfc772be94
+ md5: a8617069398656b1501c171a0c4a3264
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 55686
+ timestamp: 1749684478147
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-kinematics-interface-1.4.0-np126py312he556185_7.conda
+ sha256: 3634b615322a494504fad4d04d4f5ca09291ae588861024c57f6bb550f7c12c4
+ md5: 503206eb0a1b1abca6b722066fdb4ce5
+ depends:
+ - eigen
+ - python
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 46075
+ timestamp: 1749687840108
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-laser-geometry-2.7.0-np126py312he556185_7.conda
+ sha256: 12003571db6bd62ec5f7b863716e350e283d373888e3460e363c093a1df023cf
+ md5: 8c8cdbae8a0cec2f2ac5807299c1e549
+ depends:
+ - eigen
+ - numpy
+ - python
+ - ros-jazzy-eigen3-cmake-module
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-sensor-msgs-py
+ - ros-jazzy-tf2
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 61177
+ timestamp: 1749687427518
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-3.4.4-np126py312he556185_7.conda
+ sha256: 15adb00511cd2ceee76f8e098e21c9d1a4e10807bcd2bc3ae1a132e47a630c5b
+ md5: e7cea4e33572e71ff79d135abec33680
+ depends:
+ - importlib-metadata
+ - lark-parser
+ - python
+ - pyyaml
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-osrf-pycommon
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 231920
+ timestamp: 1749683880228
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-ros-0.26.7-np126py312he556185_7.conda
+ sha256: af91b6aafa8d1b8298b581df077681680b5e008cf1d7d6c0d4ba6e467fd846d7
+ md5: a60300ff43422d59b2274cca59c33398
+ depends:
+ - importlib-metadata
+ - python
+ - pyyaml
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-composition-interfaces
+ - ros-jazzy-launch
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-osrf-pycommon
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 126886
+ timestamp: 1749687455572
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-3.4.4-np126py312he556185_7.conda
+ sha256: 0027f6d6c0fd05c6c956bc55f673d414f1546bd02bb59f054b870891f9000d60
+ md5: f91aa1817224bba10ca72af411b689d3
+ depends:
+ - pytest
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-launch
+ - ros-jazzy-launch-xml
+ - ros-jazzy-launch-yaml
+ - ros-jazzy-osrf-pycommon
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 115597
+ timestamp: 1749684099647
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-ament-cmake-3.4.4-np126py312he556185_7.conda
+ sha256: 65cd47aac6d69ae673be88148b704d2a0dad4d7c2c159fc2b32c8fc1f2ff9888
+ md5: af0cc740303bbfc72a8e96ea1c6ce362
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-test
+ - ros-jazzy-launch-testing
+ - ros-jazzy-python-cmake-module
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 26963
+ timestamp: 1749684773587
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-testing-ros-0.26.7-np126py312he556185_7.conda
+ sha256: 1d5f924c252851cd26ec4031459fc66926df6cb61ebe4d84c476d880b293516f
+ md5: 899c302413ed84dec4691aca4f3b0c85
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-launch-ros
+ - ros-jazzy-launch-testing
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 51754
+ timestamp: 1749687834580
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-xml-3.4.4-np126py312he556185_7.conda
+ sha256: b77d2e685a4bb8adfb65ea20cc72a866b1655ab27b15ce17aef8309755a777f9
+ md5: f14bce66f29fed0bae43cfac316b486b
+ depends:
+ - python
+ - ros-jazzy-launch
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25843
+ timestamp: 1749683982764
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-launch-yaml-3.4.4-np126py312he556185_7.conda
+ sha256: c3145dffc346b98d5e655a2297aed8d1bf2a9588de4aa3bea42f0598034dc95a
+ md5: d5a70e7f93d12b18a9f1f6d5f892d309
+ depends:
+ - python
+ - ros-jazzy-launch
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 26400
+ timestamp: 1749683975967
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libcurl-vendor-3.4.4-np126py312he556185_7.conda
+ sha256: 0da471baa29331f5d7d883a951030c9894a8b792e3db1aa56764e4794c695f0c
+ md5: 9a9c9ed43b2a170b643c601a9846fd55
+ depends:
+ - libcurl
+ - pkg-config
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libcurl >=8.14.1,<9.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 23430
+ timestamp: 1749683880470
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-liblz4-vendor-0.26.7-np126py312he556185_7.conda
+ sha256: c1ee1addcb392b16398f5b1e659835d2cfc86b9a3d0129d465da441c973a7bc6
+ md5: 2f7e15100aed58fcae03c758e0eae1ce
+ depends:
+ - lz4
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23679
+ timestamp: 1749683862812
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libstatistics-collector-1.7.4-np126py312he556185_7.conda
+ sha256: 51363e5bb50aa009e4427b96d43f75a7f1d995b986290579a046c9dbf34f9c72
+ md5: 401b76a4ce438db831af150106e71fd5
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-rcl
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-statistics-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 58165
+ timestamp: 1749686900579
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-libyaml-vendor-1.6.3-np126py312he556185_7.conda
+ sha256: be3d003059417ceca6c82dba95c03e213a3573cd86e3d4ec994a0f3ea300aa0c
+ md5: 370ce89f2ba4b7c75d193cb83d9303c5
+ depends:
+ - pkg-config
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - yaml
+ - yaml-cpp
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ size: 29305
+ timestamp: 1749684799283
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-lifecycle-0.33.5-np126py312he556185_7.conda
+ sha256: 711f7fd4809713452fd85ca6d12bdc2989c3b3f0a39965e530425c3bce8c5fec
+ md5: 6ac1c57f2d368aa413d44557dd3eef86
+ depends:
+ - python
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 266002
+ timestamp: 1749724241618
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-lifecycle-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: 164917df305e3af86b599588b424df05cf270400054e263d7561bd14c71cee0a
+ md5: e917b046ac4ce09ffdbdcfe6c90dd0b7
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 268962
+ timestamp: 1749685690418
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-logging-demo-0.33.5-np126py312he556185_7.conda
+ sha256: 187d83efed247a5f5b4b89e45179f024c5e95ca86b82a81e2e8d0f708924092c
+ md5: fff430d5516c2700b04851bb89123d54
+ depends:
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 212315
+ timestamp: 1749688123417
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-map-msgs-2.4.1-np126py312he556185_7.conda
+ sha256: 733b3c2a256e165dba6326629db65aeb7b455471bb346eb817f1b52c526eb499
+ md5: b64c22a9c9b24667a7ffce2fbf83efd3
+ depends:
+ - python
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 347750
+ timestamp: 1749686258966
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-mcap-vendor-0.26.7-np126py312he556185_7.conda
+ sha256: f181e3e4dc40e4a986bc0b13e1848ccb78d5c498799bb84bfa5d04d3eed6e868
+ md5: def96e791f45da87d759950cf40c3184
+ depends:
+ - python
+ - ros-jazzy-liblz4-vendor
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-zstd-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 174235
+ timestamp: 1749683987721
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-mecanum-drive-controller-4.26.0-np126py312he556185_7.conda
+ sha256: f2578f2ceb705732f87f6c75bbcf724c3f565b1c51a6648e39a8d64020ac0ba3
+ md5: 4e2408bbe9bfae54c0424cba1ab6893e
+ depends:
+ - python
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rcpputils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 285719
+ timestamp: 1749727670798
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-message-filters-4.11.6-np126py312he556185_7.conda
+ sha256: 283c9ac95aa74cbfa33947a38b523d5e99104ab76179b7d41c459fda8a4bbf4e
+ md5: cb4910970b398464dadb9b2d8d6645ed
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclpy
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 80809
+ timestamp: 1749687840134
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-nav-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: ab9cb9b58599cabeb56404d843c8d5211d3b5a2da21a3354146e6f23a764eab5
+ md5: 4d73042fa65a946686e6308e60f38f1c
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 320908
+ timestamp: 1749686048389
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-orocos-kdl-vendor-0.5.1-np126py312he556185_7.conda
+ sha256: 202561b07eae807f05ea9b86f26757503172787076c3be43cb263728d6229be7
+ md5: a6c95fe92ea198142100bb0c0516d28b
+ depends:
+ - eigen
+ - orocos-kdl
+ - python
+ - ros-jazzy-eigen3-cmake-module
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - orocos-kdl >=1.5.1,<1.6.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27622
+ timestamp: 1749684471192
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-osrf-pycommon-2.1.6-np126py312he556185_7.conda
+ sha256: 1a1902769c185d21c29b28a15c0a50fcff39c59659cd16aa1faa8d38cdb2235a
+ md5: cd08c6f2e31dd5493c591205a89a0013
+ depends:
+ - importlib-metadata
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 64361
+ timestamp: 1749682637596
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pal-statistics-2.6.2-np126py312he556185_7.conda
+ sha256: cab12c3f2c2d2522a9a9e9c38c6a9a619aa44151cfc7e5458a204a3f64eb51db
+ md5: a46a5c86d9314a93cd7fd4cfbacea380
+ depends:
+ - libboost-devel
+ - python
+ - ros-jazzy-pal-statistics-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 168941
+ timestamp: 1749687847492
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pal-statistics-msgs-2.6.2-np126py312he556185_7.conda
+ sha256: 9ed8a09fce88fde0b893fe641a93df97d370b7f037eac1205b0c11352ba4c232
+ md5: 6df767ec9ef263c46eebd6a1cf8786d4
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 126716
+ timestamp: 1749685878010
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-parallel-gripper-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 121e0550806c308044106f1e59d5bc6e8db840bf76e4cb86799125a3c5040fa3
+ md5: facdeb4291a230c12c511816049631a8
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 152017
+ timestamp: 1749727772692
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-parameter-traits-0.4.0-np126py312he556185_7.conda
+ sha256: 1967845e05f3aa06104d1f1a01df771119f8fcc34f4858551ee6c9617d094226
+ md5: b4fcb65e31f2e713497f27dc989bea79
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rsl
+ - ros-jazzy-tcb-span
+ - ros-jazzy-tl-expected
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - fmt >=11.1.4,<11.2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49106
+ timestamp: 1749687808518
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pcl-conversions-2.6.2-np126py312he556185_7.conda
+ sha256: 672a19baa89f040ece4b8c7f0f810a4200e4ffb86f16bffd99058ce9cd3152e6
+ md5: 8278557ab7121edc958b473202d7bf08
+ depends:
+ - eigen
+ - libboost-devel
+ - pcl
+ - python
+ - ros-jazzy-message-filters
+ - ros-jazzy-pcl-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - vtk-base
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - pcl >=1.15.0,<1.15.1.0a0
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 68625
+ timestamp: 1749688185684
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pcl-msgs-1.0.0-np126py312he556185_7.conda
+ sha256: 80622035840288d44192327783bcea0a85bdb597c6c7b6a23c62824cc20508ae
+ md5: 1ed345d316f925da8dd23b9b7264b3a3
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 170333
+ timestamp: 1749686248678
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pendulum-control-0.33.5-np126py312he556185_7.conda
+ sha256: de0e7df9a4092c6a3fc3511688617341ca76cc92b88fa8b98e41fde51a1a71df
+ md5: 7bd5578b2057597a818a9f9bd17739a6
+ depends:
+ - python
+ - ros-jazzy-pendulum-msgs
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rttest
+ - ros-jazzy-tlsf-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 338387
+ timestamp: 1749691970792
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pendulum-msgs-0.33.5-np126py312he556185_7.conda
+ sha256: d4800ef53a370e3c0313303ecbf7e31544e4d1ba7b546d9a71f0ce3bbf0bb034
+ md5: d86c5e500d04b803e644834a0fd5d26a
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 98931
+ timestamp: 1749685724360
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pid-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 127900752bee743adecdc4f82d934aa8ccb742ad5ddf80e9a17c6e200bfae08e
+ md5: ae0057cafe8e40908a28a2abc43b4051
+ depends:
+ - python
+ - ros-jazzy-angles
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-control-toolbox
+ - ros-jazzy-controller-interface
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-parameter-traits
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 283348
+ timestamp: 1749727745490
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pluginlib-5.4.2-np126py312he556185_7.conda
+ sha256: c83ad8588755e85a123a1523fc1a230ad946279cc481c78e2ecc0f287852fc80
+ md5: 1db232a820a51d3aeee4af2de2fda6a4
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-class-loader
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tinyxml2-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 40736
+ timestamp: 1749685089388
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-point-cloud-transport-4.0.4-np126py312he556185_7.conda
+ sha256: 9e1772c5bf588f1cc3e3eebfac0b90746716cf085787e8ed2321c16c58f26254
+ md5: 2d6f4f5ee4006058db3c1fbf2b0f9c75
+ depends:
+ - python
+ - ros-jazzy-message-filters
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 453800
+ timestamp: 1749688273208
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pose-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: 38b198cc8f294f71f357e6e0ccd5257b33de8082cf585e1dd4c55355f12ba3cb
+ md5: e2816755fbf4cff12a96557bfbf1cac7
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 169327
+ timestamp: 1749727726567
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-position-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: 796aa4381f2d5badc8a284e3d2ef60e10ce42a01ce2419a347151f0fbcac7b4a
+ md5: 14aa830bbd5b6d2961d03391ec7f3160
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-forward-command-controller
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 73676
+ timestamp: 1749728224619
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-pybind11-vendor-3.1.3-np126py312he556185_7.conda
+ sha256: 1ea63015d021749cf0b1bef39c19c931d0a9d71240fe4d5f5129a70f3f95b831
+ md5: 38f1f7ba288616e0f9bc4ac45bf9cba0
+ depends:
+ - pybind11
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22802
+ timestamp: 1749683878942
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-cmake-module-0.11.1-np126py312he556185_7.conda
+ sha256: 82a81628162e7c0397ef412503e2c02aa8b84013e0e4db503237f9b9a747fd60
+ md5: 69f535c72a79cf483f59978abe62bb0d
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27472
+ timestamp: 1749684445675
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-orocos-kdl-vendor-0.5.1-np126py312he556185_7.conda
+ sha256: d055f31b55822c73260c849125e9052bd123cb0acff31710656eab079d796e66
+ md5: 53e7061f3080e15873b9b96ebb9d6767
+ depends:
+ - python
+ - python-orocos-kdl
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-pybind11-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python-orocos-kdl >=1.5.1,<1.6.0a0
+ license: BSD-3-Clause
+ size: 27210
+ timestamp: 1749684792637
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-python-qt-binding-2.2.1-np126py312he556185_7.conda
+ sha256: 997491ba2d056310968caabca14afd93bc5b5c78de453bf72d4467efbc8370ec
+ md5: 0612ccbfe3dd52dc2ebf29115533dc68
+ depends:
+ - pyqt
+ - pyqt-builder
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libgl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - pyqt >=5.15.11,<5.16.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: BSD-3-Clause
+ size: 60640
+ timestamp: 1749684442584
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-dotgraph-2.7.5-np126py312he556185_7.conda
+ sha256: d5b27a5d0744584cd0b4ab328331bd373a80c5f2ffcea264df27799104bf26c7
+ md5: fbfbb62ba9c302bc210cc8e800cc3676
+ depends:
+ - pydot
+ - python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 62192
+ timestamp: 1749684800459
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-2.7.5-np126py312he556185_7.conda
+ sha256: b76835672324e7087b33f80dcbba1029385280e369b7d40f17917e5f4b6d38ae
+ md5: 9217f65c3b24a780f31d033e3e4878ee
+ depends:
+ - catkin_pkg
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tango-icons-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - pyqt >=5.15.11,<5.16.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 171491
+ timestamp: 1749684772251
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-cpp-2.7.5-np126py312he556185_7.conda
+ sha256: e762e2ae8e86dba7c5c7dd1bab35ea9d5d69c14b85b9b7da3fe19fade1b928e7
+ md5: 0041b6f24e60907f2492f1697068ea9d
+ depends:
+ - pep517
+ - pyqt-builder
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-qt-gui
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tinyxml2-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 501039
+ timestamp: 1749685201468
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-qt-gui-py-common-2.7.5-np126py312he556185_7.conda
+ sha256: fb698f78d806ff68e8f26320d134d9bf106212a09c8d2486a466fd962ea5e83d
+ md5: 6d9046a110e93bffe7c903a9161b535c
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 38865
+ timestamp: 1749684789355
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-quality-of-service-demo-cpp-0.33.5-np126py312he556185_7.conda
+ sha256: e6698f6b89dde96894764ee5c9f00ca93b40158dcd1db2496174aed576ca9374
+ md5: 4c7ff635d52ed5546f7378c856ebe668
+ depends:
+ - python
+ - ros-jazzy-example-interfaces
+ - ros-jazzy-launch-ros
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 596784
+ timestamp: 1749687895918
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-quality-of-service-demo-py-0.33.5-np126py312he556185_7.conda
+ sha256: afacba473f70bc7e900c901e15a627e85f2960a4d994a094348273405d482954
+ md5: fcd65c7daedbf62e7b86d802982d1e55
+ depends:
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 34622
+ timestamp: 1749687431505
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-range-sensor-broadcaster-4.26.0-np126py312he556185_7.conda
+ sha256: f7cf3400cb7ee4613be2c592eccf34d8dbe1ba796ef530bdaf1a25eb1eb32d24
+ md5: 77a0c5021cd34f4d43a4fd88dac1becb
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 145155
+ timestamp: 1749727708950
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-9.2.6-np126py312he556185_7.conda
+ sha256: 9e620aea123dc4eefcb0eda0500b5504ce7e0976d459e6df4a291fa6c58a9650
+ md5: 3760c018f09d9e7b0b83e95deb97b8f6
+ depends:
+ - python
+ - ros-jazzy-libyaml-vendor
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rcl-logging-interface
+ - ros-jazzy-rcl-logging-spdlog
+ - ros-jazzy-rcl-yaml-param-parser
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-implementation
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-service-msgs
+ - ros-jazzy-tracetools
+ - ros-jazzy-type-description-interfaces
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - yaml
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 201448
+ timestamp: 1749686526325
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-action-9.2.6-np126py312he556185_7.conda
+ sha256: 26ec88ea869c1394b92517a8b4d259cb33f6dfd29f66160e1543f1f39d728452
+ md5: 1fa331d5d06265b55e759d747d7ed310
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-rcl
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 80282
+ timestamp: 1749686926870
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-interfaces-2.0.2-np126py312he556185_7.conda
+ sha256: 9475d10c9afbf73849dfbd66f158e89bd6d9ec7d349fe7be5145d32eeada7194
+ md5: f58b228fc43825e500504fc9d76e3ed4
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 575579
+ timestamp: 1749685750238
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-lifecycle-9.2.6-np126py312he556185_7.conda
+ sha256: fb3cc7b26bf451e5203049841efec51b7d2a535c871bf1701e86919cdb65a9b9
+ md5: 36dcc37ca1cc50233cc0ba3e745927fc
+ depends:
+ - python
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-rcl
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 58047
+ timestamp: 1749686917209
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-logging-interface-3.1.1-np126py312he556185_7.conda
+ sha256: f6b0cd746636142cfef5a7803d5bb351b6b9ef7eb999be6b4ac5e038c775e1eb
+ md5: a0d8252ffe8212014d6875a327243a5c
+ depends:
+ - python
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 35294
+ timestamp: 1749685045366
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-logging-spdlog-3.1.1-np126py312hb9c0a37_7.conda
+ sha256: 6b6730a998dd296e4a8f6069730986796173544ae563eb2be3692b97ead528b7
+ md5: 15315252582be04d6082cd6b9df9dd22
+ depends:
+ - python
+ - ros-jazzy-rcl-logging-interface
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-spdlog-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - spdlog
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - spdlog >=1.15.3,<1.16.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 45911
+ timestamp: 1749685125976
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcl-yaml-param-parser-9.2.6-np126py312he556185_7.conda
+ sha256: 75a19f245c0f0b7afad95ba89d46eeb93833dc3da7fd79489e57e91638af4550
+ md5: 5af267f7a9b4d40715a35219fb1a2c82
+ depends:
+ - python
+ - ros-jazzy-libyaml-vendor
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - yaml
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - yaml >=0.2.5,<0.3.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 51773
+ timestamp: 1749685183276
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-28.1.9-np126py312he556185_7.conda
+ sha256: 97a2739eaa2725775e97afa9988e429b60d486512c9da2fdf80577301c9ef062
+ md5: 6ffd0bbe96f60a449beb3bfddd688b1f
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-libstatistics-collector
+ - ros-jazzy-rcl
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rcl-logging-interface
+ - ros-jazzy-rcl-yaml-param-parser
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosgraph-msgs
+ - ros-jazzy-rosidl-dynamic-typesupport
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-c
+ - ros-jazzy-rosidl-typesupport-cpp
+ - ros-jazzy-statistics-msgs
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 1088463
+ timestamp: 1749686978810
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-action-28.1.9-np126py312he556185_7.conda
+ sha256: 3c5b005818c9fe069c3f227ea035f16643607b7423490fa0dd2b688948de38b4
+ md5: 713b9e9a1e8d543d99a24ad60361ac7b
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-rcl
+ - ros-jazzy-rcl-action
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcpputils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 116171
+ timestamp: 1749687432125
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-components-28.1.9-np126py312he556185_7.conda
+ sha256: 04c2ab1d389fba3eca2ed98be2d82ad2b5bceb2ff16e48ce44ee6d3f7159ff46
+ md5: 1fa2bc3b75a1c2ceb02113521e7ef413
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-class-loader
+ - ros-jazzy-composition-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 139773
+ timestamp: 1749687309722
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclcpp-lifecycle-28.1.9-np126py312he556185_7.conda
+ sha256: 4b94612950b587e3207a720db0b694c48a5c6c8133e14f6f50de7197184415ae
+ md5: b94e303ddf1b5a3a3892ffebee80bfaf
+ depends:
+ - python
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-rcl
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rcl-lifecycle
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-typesupport-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 130424
+ timestamp: 1749687399064
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rclpy-7.1.4-np126py312he556185_7.conda
+ sha256: f2244d1bbb2674c3e097549541e2975aa7db380ebfc9d6d9e5c35a0e415ce4ef
+ md5: f31e79c967d00820efefc8b6a65476d4
+ depends:
+ - python
+ - pyyaml
+ - ros-jazzy-action-msgs
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-rcl
+ - ros-jazzy-rcl-action
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rcl-lifecycle
+ - ros-jazzy-rcl-logging-interface
+ - ros-jazzy-rcl-yaml-param-parser
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-implementation
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosgraph-msgs
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rpyutils
+ - ros-jazzy-unique-identifier-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 680625
+ timestamp: 1749687071173
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcpputils-2.11.2-np126py312he556185_7.conda
+ sha256: e7fe820b23a3ed959562489071226da1394b28dfb9039e4b14b8d6caab2d51db
+ md5: 1d596c33ca917f198089824f99857e69
+ depends:
+ - python
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 80504
+ timestamp: 1749684959226
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rcutils-6.7.2-np126py312he556185_7.conda
+ sha256: 8caa31791e27d485d23674d19a09c6abe41d035a78611fd1acf7e500752fffc2
+ md5: e3b4589d5203bffbdee3d0c214c0b6a5
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 122195
+ timestamp: 1749684854986
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-realtime-tools-3.6.0-np126py312h01d8f83_7.conda
+ sha256: bd310696bd417cff001f56097d499fd8c3c3629e199aab56edb63cc5b5f6979c
+ md5: fe41b360e614a468eebbbcbae3881d0a
+ depends:
+ - libboost-devel
+ - libcap
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libcap >=2.71,<2.72.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 74802
+ timestamp: 1749687823803
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-resource-retriever-3.4.4-np126py312he556185_7.conda
+ sha256: 64f3f277418c2de91fffcaa30d0c9dd36260188090977e4e2f5a24c696ac3827
+ md5: 0bca1994e0cb83eb58665daef1f88942
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-libcurl-vendor
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 44724
+ timestamp: 1749684798685
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-7.3.2-np126py312he556185_7.conda
+ sha256: 753c8532a95613360681958bb8cd6f1b827db6a02ecbbe411d50bceaa041c202
+ md5: 3aade12344f703e7ebb742f709ecc509
+ depends:
+ - python
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-dynamic-typesupport
+ - ros-jazzy-rosidl-runtime-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 96958
+ timestamp: 1749685104572
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-connextdds-0.22.1-np126py312he556185_7.conda
+ sha256: 8f3f3af395457a501921fdf43b09bf2e2942978dfc4ae625e51c07ef2ebdcf07
+ md5: 209b806e3938991cb9fe37104c09a7dc
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-rmw-connextdds-common
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 32000
+ timestamp: 1749686102567
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-connextdds-common-0.22.1-np126py312he556185_7.conda
+ sha256: 0dd1f55cde202da1d0a55ca33ecb80d406209f0548aef06a5f5f2d5eebe73837
+ md5: 2281201902eb0e19421baac0f4cf028a
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-fastcdr
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-dds-common
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-fastrtps-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros-jazzy-rti-connext-dds-cmake-module
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 53835
+ timestamp: 1749685922293
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-cyclonedds-cpp-2.2.3-np126py312he556185_7.conda
+ sha256: 0a95e77a24fa46c3556ff23b3c9dfc2369ba46696591a04b81081096cad611db
+ md5: 728dee0d73713d62b5f3539351c4014c
+ depends:
+ - python
+ - ros-jazzy-cyclonedds
+ - ros-jazzy-iceoryx-binding-c
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-dds-common
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 264304
+ timestamp: 1749685928664
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-dds-common-3.1.0-np126py312he556185_7.conda
+ sha256: 626269d98b322b5120e1f15a8ea73274fa0087a8a7151f6cba46cf68e29c8c62
+ md5: ad471473c63783875752b93b443aeeaf
+ depends:
+ - python
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 177976
+ timestamp: 1749685672881
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-cpp-8.4.2-np126py312he556185_7.conda
+ sha256: d6e10c6b5cade077db6e6da36f7cab7b4ec58d608258520d7185e58db9d8a949
+ md5: ea6f886d5db3ef290ee8ceb50b495c1f
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps
+ - ros-jazzy-fastrtps-cmake-module
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-dds-common
+ - ros-jazzy-rmw-fastrtps-shared-cpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-dynamic-typesupport
+ - ros-jazzy-rosidl-dynamic-typesupport-fastrtps
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-fastrtps-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 156945
+ timestamp: 1749686079745
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-dynamic-cpp-8.4.2-np126py312he556185_7.conda
+ sha256: 0b7fd297b6a3474b50a64f5e2012e312813a08249791e7381d144bd6a0e6d202
+ md5: 2ae7cf94319d70315eb7c336fee02c5c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps
+ - ros-jazzy-fastrtps-cmake-module
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-dds-common
+ - ros-jazzy-rmw-fastrtps-shared-cpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 180644
+ timestamp: 1749686047170
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-fastrtps-shared-cpp-8.4.2-np126py312he556185_7.conda
+ sha256: c1fceba4bed528b96644e7b0d65ab641f5b6444f7ee610a02c75cf0cbbe6b240
+ md5: b0b7eb34f86261b56e6265874eb5a41e
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps
+ - ros-jazzy-fastrtps-cmake-module
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-dds-common
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-dynamic-typesupport
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros-jazzy-tracetools
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 231639
+ timestamp: 1749685879651
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-implementation-2.15.5-np126py312he556185_7.conda
+ sha256: f47316a2c866a2cdc934f85b4c30808d33d649cb743eddfd32ec50b00adf7232
+ md5: f8b521a51fc71d9233b584481f73621d
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw-connextdds
+ - ros-jazzy-rmw-cyclonedds-cpp
+ - ros-jazzy-rmw-fastrtps-cpp
+ - ros-jazzy-rmw-fastrtps-dynamic-cpp
+ - ros-jazzy-rmw-implementation-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 53931
+ timestamp: 1749686248527
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rmw-implementation-cmake-7.3.2-np126py312he556185_7.conda
+ sha256: 5b1873835ac783b0c1e8eec93515d87b1fbe1ed564a2726c8be8a78322d2bcfb
+ md5: 15614b18f1e84b22932452b602a151b4
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 29053
+ timestamp: 1749684726689
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-robot-state-publisher-3.3.3-np126py312he556185_7.conda
+ sha256: 21711f80be7c42eea7faa5d8c7b00a2ac4c9687196231c2d6cabf2d3f2be31c5
+ md5: 71ada033184e02f95729e6fb8dad8f79
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-kdl-parser
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 266879
+ timestamp: 1749688373612
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-base-0.11.0-np126py312he556185_7.conda
+ sha256: 8f7f1ed17585b97dbf07e0a4ddc62f3aa5cea9a152d2e72a1d288b4005b4fdb6
+ md5: 7b767e1d763efcb739af6c374b67c7df
+ depends:
+ - python
+ - ros-jazzy-geometry2
+ - ros-jazzy-kdl-parser
+ - ros-jazzy-robot-state-publisher
+ - ros-jazzy-ros-core
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2
+ - ros-jazzy-urdf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 21989
+ timestamp: 1749729504320
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-core-0.11.0-np126py312he556185_7.conda
+ sha256: d95d01c75242e71c0831e49794ed6f85f92972545ee61ff9887f17f76bac4f98
+ md5: ac155724c6ba696c2397cc16520642db
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-cmake-auto
+ - ros-jazzy-ament-cmake-gmock
+ - ros-jazzy-ament-cmake-gtest
+ - ros-jazzy-ament-cmake-pytest
+ - ros-jazzy-ament-cmake-ros
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ament-lint-auto
+ - ros-jazzy-ament-lint-common
+ - ros-jazzy-class-loader
+ - ros-jazzy-common-interfaces
+ - ros-jazzy-launch
+ - ros-jazzy-launch-ros
+ - ros-jazzy-launch-testing
+ - ros-jazzy-launch-testing-ament-cmake
+ - ros-jazzy-launch-testing-ros
+ - ros-jazzy-launch-xml
+ - ros-jazzy-launch-yaml
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rcl-lifecycle
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-environment
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli-common-extensions
+ - ros-jazzy-ros2launch
+ - ros-jazzy-rosidl-default-generators
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sros2
+ - ros-jazzy-sros2-cmake
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22676
+ timestamp: 1749727287600
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-environment-4.2.1-np126py312he556185_7.conda
+ sha256: 8629c764dbe5f65c19cffcfa2d2f43083f8b0f25d5859cd3bdfb8fbe4531dca2
+ md5: 643fc365ba1ef5ce6ef8cc6f396015ce
+ depends:
+ - python
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20945
+ timestamp: 1749682589106
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros-workspace-1.0.3-np126py312he556185_7.conda
+ sha256: 26736ce2ac7f04a87bde6f76e6eb0ab20ccc7ee2e0451b7ebf1420b258d54c47
+ md5: 8959eec362d4c9aec508b16c3ff86f2e
+ depends:
+ - python
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 35273
+ timestamp: 1749682578961
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-control-4.32.0-np126py312he556185_7.conda
+ sha256: 1a14ba1a821e73734916a527a213300222cea8e9d6caa8500192db61b986d5fe
+ md5: 3ace2de9367dbcc2b2cb3b9835eda34d
+ depends:
+ - python
+ - ros-jazzy-controller-interface
+ - ros-jazzy-controller-manager
+ - ros-jazzy-controller-manager-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-joint-limits
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2-control-test-assets
+ - ros-jazzy-ros2controlcli
+ - ros-jazzy-transmission-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 22083
+ timestamp: 1749728348306
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-control-test-assets-4.32.0-np126py312he556185_7.conda
+ sha256: 54a839c46589f417b06db0f984ab2d93ea552a32de81569b905e86259554da00
+ md5: fc85c9105c84a568f837c85a73e738e0
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 30847
+ timestamp: 1749683873448
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: cea09d9816c07c4c582ff505f8ec391a6e1fdf7a02a566a1f08ee42e0a0f63fb
+ md5: e1eb071272246d6b6a73d4636dcdb527
+ depends:
+ - python
+ - ros-jazzy-ackermann-steering-controller
+ - ros-jazzy-admittance-controller
+ - ros-jazzy-bicycle-steering-controller
+ - ros-jazzy-diff-drive-controller
+ - ros-jazzy-effort-controllers
+ - ros-jazzy-force-torque-sensor-broadcaster
+ - ros-jazzy-forward-command-controller
+ - ros-jazzy-gpio-controllers
+ - ros-jazzy-gps-sensor-broadcaster
+ - ros-jazzy-gripper-controllers
+ - ros-jazzy-imu-sensor-broadcaster
+ - ros-jazzy-joint-state-broadcaster
+ - ros-jazzy-joint-trajectory-controller
+ - ros-jazzy-mecanum-drive-controller
+ - ros-jazzy-parallel-gripper-controller
+ - ros-jazzy-pid-controller
+ - ros-jazzy-pose-broadcaster
+ - ros-jazzy-position-controllers
+ - ros-jazzy-range-sensor-broadcaster
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-steering-controllers-library
+ - ros-jazzy-tricycle-controller
+ - ros-jazzy-tricycle-steering-controller
+ - ros-jazzy-velocity-controllers
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22558
+ timestamp: 1749728504317
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2action-0.32.4-np126py312he556185_7.conda
+ sha256: e397bef116746a840ca54cbe756abc2b57f941887e4198d8f93bd6e265d797d4
+ md5: fcae13340d0ed247abdb2fbf6e6b8a06
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-rosidl-runtime-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 46274
+ timestamp: 1749688112636
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2bag-0.26.7-np126py312he556185_7.conda
+ sha256: 65eee32a897f7d44e014cfe437e7f4f55a13dee0961b93fd2fc88ec220b4a867
+ md5: bb63dad578195920509da21049992d69
+ depends:
+ - python
+ - pyyaml
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-rosbag2-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 69292
+ timestamp: 1749728536154
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2cli-0.32.4-np126py312he556185_7.conda
+ sha256: 3718d0c3f46ed46be7ecf1d845ee137bb58aacfb099f818df22d06cb913ca84e
+ md5: ab11cfbf4bd51379ca7e3c8a1c2915e6
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - packaging
+ - psutil
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 75548
+ timestamp: 1749687463230
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2cli-common-extensions-0.3.0-np126py312he556185_7.conda
+ sha256: 4e845b38cca6aa7e6ed152310f49f7f787f67621d25e7cbaf234a4be8435a5a3
+ md5: 88343c20c5b8d3387e5169edc21b64ca
+ depends:
+ - python
+ - ros-jazzy-launch-xml
+ - ros-jazzy-launch-yaml
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2action
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2component
+ - ros-jazzy-ros2doctor
+ - ros-jazzy-ros2interface
+ - ros-jazzy-ros2launch
+ - ros-jazzy-ros2lifecycle
+ - ros-jazzy-ros2multicast
+ - ros-jazzy-ros2node
+ - ros-jazzy-ros2param
+ - ros-jazzy-ros2pkg
+ - ros-jazzy-ros2run
+ - ros-jazzy-ros2service
+ - ros-jazzy-ros2topic
+ - ros-jazzy-sros2
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 26433
+ timestamp: 1749724168343
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2component-0.32.4-np126py312he556185_7.conda
+ sha256: a0ed59b4ba0de89148d0b72727d80bd64094da9727e8a868dbe66fd88fb637f2
+ md5: 5192becc264eb375246901a032a6672d
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-composition-interfaces
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2node
+ - ros-jazzy-ros2param
+ - ros-jazzy-ros2pkg
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 37942
+ timestamp: 1749691962878
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2controlcli-4.32.0-np126py312he556185_7.conda
+ sha256: 4cadd2685422d2c9aaba643cbf197dc9dead921d4108797c8b3d527098c63270
+ md5: ba582f34b2223ebdda7d876994854cf6
+ depends:
+ - pygraphviz
+ - python
+ - ros-jazzy-controller-manager
+ - ros-jazzy-controller-manager-msgs
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2node
+ - ros-jazzy-ros2param
+ - ros-jazzy-rosidl-runtime-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 76125
+ timestamp: 1749727803103
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2doctor-0.32.4-np126py312he556185_7.conda
+ sha256: 29a37b7289a60fcde659ab9e98ef78a78b1f4d5a49a9ef49c4f791eead8e2f6b
+ md5: 4eb781ad9cb1eac68d3470bc22ff90fd
+ depends:
+ - catkin_pkg
+ - importlib-metadata
+ - psutil
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-environment
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - rosdistro
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 67623
+ timestamp: 1749688158924
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2interface-0.32.4-np126py312he556185_7.conda
+ sha256: 98974694677832058af0cef2d933f1f7253200bb9f53a6d5aae8be32ea9778ea
+ md5: db1431bd40b1cd0c9f32d258191ccfcf
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-rosidl-adapter
+ - ros-jazzy-rosidl-runtime-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 46424
+ timestamp: 1749688151790
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2launch-0.26.7-np126py312he556185_7.conda
+ sha256: 0c9e717bd0eecbccaf608dbc7db9796d5aa89f0808919e960d911c751a7b0016
+ md5: c323eaa0b984b5f750ec4dee37b0fd05
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-launch
+ - ros-jazzy-launch-ros
+ - ros-jazzy-launch-xml
+ - ros-jazzy-launch-yaml
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2pkg
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 46121
+ timestamp: 1749688359546
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2lifecycle-0.32.4-np126py312he556185_7.conda
+ sha256: 9c83e84f9b017b7d29fd3e0ff8597ec3f1b0b422a8de3ca0d8ba9d4c3cdc91e0
+ md5: b24b4a673d550f9cc317c4f9d7bc2323
+ depends:
+ - python
+ - ros-jazzy-lifecycle-msgs
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2node
+ - ros-jazzy-ros2service
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 45028
+ timestamp: 1749688350613
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2multicast-0.32.4-np126py312he556185_7.conda
+ sha256: 9b7f4727f7dbde7cf0db8fd65d474b09acdfcbc9e3e6497190cc31d7757c5eff
+ md5: a12fa64463ce9c2c1b3b7383febf71a0
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 25426
+ timestamp: 1749687826227
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2node-0.32.4-np126py312he556185_7.conda
+ sha256: 0d2343b9823b74aacc23660ad19039fa8f74c63db5ead16d871addccbff87236
+ md5: 2a5808a39ac8bfe00ae5ad744ebaba1e
+ depends:
+ - python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 42834
+ timestamp: 1749688147970
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2param-0.32.4-np126py312he556185_7.conda
+ sha256: 6d6dcfaf4d88147dd42db5d0d0c361cf58cabcaf57c4d87a159fb45a7db31cb5
+ md5: 228d098bbf38675fbd6e2d1aec911ce9
+ depends:
+ - python
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2node
+ - ros-jazzy-ros2service
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 50080
+ timestamp: 1749688367825
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2pkg-0.32.4-np126py312he556185_7.conda
+ sha256: 17aa514f7f6ac29aad8775cc89c0720fa8e6ce18dd943d52d0b430079155beb4
+ md5: e59734ebb5ee8bddf64bb0ad455f918a
+ depends:
+ - catkin_pkg
+ - empy
+ - importlib_resources
+ - python
+ - ros-jazzy-ament-copyright
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 57490
+ timestamp: 1749688133467
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2run-0.32.4-np126py312he556185_7.conda
+ sha256: 5f1f6282066870127436d95bb8f3795de2b20ec53123bdb08aa092d134e7c465
+ md5: 94ae4a405d939b7da9045a106ca312f8
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-ros2pkg
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 24589
+ timestamp: 1749688361318
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2service-0.32.4-np126py312he556185_7.conda
+ sha256: f26ad260f6799037bf7025428b015928a78fb1d0dd57c98e50bae22ad4970b16
+ md5: 845a5974cf66a37d2b47c96758e26352
+ depends:
+ - python
+ - pyyaml
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-rosidl-runtime-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 51038
+ timestamp: 1749688141932
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-ros2topic-0.32.4-np126py312he556185_7.conda
+ sha256: 599bbb3c5ca395d5e5102f6e20105b317f64f0791d939e42b0141445ae8e1c3c
+ md5: 57ea57e639a7efcefac38e711f4ffc8d
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-rosidl-runtime-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 73934
+ timestamp: 1749688143660
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-0.26.7-np126py312he556185_7.conda
+ sha256: b94b3fc6e74d3b8739890a641cd23df1bcc4f6578e8323d28ffc9a7288b667c7
+ md5: 9860800b9ef468b93302d812cad149a2
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2bag
+ - ros-jazzy-rosbag2-compression
+ - ros-jazzy-rosbag2-compression-zstd
+ - ros-jazzy-rosbag2-cpp
+ - ros-jazzy-rosbag2-py
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-rosbag2-storage-default-plugins
+ - ros-jazzy-rosbag2-transport
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 35143
+ timestamp: 1749729116049
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-compression-0.26.7-np126py312he556185_7.conda
+ sha256: 7f8036fc495ca50a880732743d895f2f80ea545312e0ff4fb7320295126c8b2f
+ md5: 0c3d4a1b28e0ad04b341149d1f0646e9
+ depends:
+ - python
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-cpp
+ - ros-jazzy-rosbag2-storage
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 202396
+ timestamp: 1749724118481
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-compression-zstd-0.26.7-np126py312he556185_7.conda
+ sha256: 55c7a3bb46dda460aeb434abea50f568513748f9ba5b3d6ab15c7db3bba3d884
+ md5: ad06d5963c9d603d5bdcf045301cf3dc
+ depends:
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-compression
+ - ros-jazzy-zstd-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 69685
+ timestamp: 1749727287946
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-cpp-0.26.7-np126py312he556185_7.conda
+ sha256: 601327c2a3bc1e0a9504e907e5960dd237b15e172d98cc7c16268035ef0d372c
+ md5: d355c83101df8838b1144c26a5055572
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-rmw-implementation
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-cpp
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 341759
+ timestamp: 1749691951903
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-interfaces-0.26.7-np126py312he556185_7.conda
+ sha256: c30217c8d5e5ff4651e96f27e57fa86913a7ccf6baecc2f0b87e2c23f1781f7c
+ md5: 2c467ceef76d3ca794bba8e678381327
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 458729
+ timestamp: 1749685722872
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-py-0.26.7-np126py312he556185_7.conda
+ sha256: fb0d0ff3e77eec4f31cb3e6fb1fb0d55eb701ace1efad9af6c8e0414fc51e718
+ md5: a82a054ffdec2352ce3b105414a3111e
+ depends:
+ - python
+ - ros-jazzy-pybind11-vendor
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-compression
+ - ros-jazzy-rosbag2-cpp
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-rosbag2-transport
+ - ros-jazzy-rpyutils
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 686476
+ timestamp: 1749728342030
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-0.26.7-np126py312he556185_7.conda
+ sha256: b9a9c00348b4d9e0a810ba969935ae39793f5300020c5e260a7216776feaf183
+ md5: 36972f0c4c5146189ef643820f546138
+ depends:
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-yaml-cpp-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 272027
+ timestamp: 1749687871084
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-default-plugins-0.26.7-np126py312he556185_7.conda
+ sha256: f077a2edb547f496c222122d7d0273dab76d1106ea0eb1f2afb445ea45446e97
+ md5: 555fa86ce0ad8ae091328d3e9d6b1519
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-storage-mcap
+ - ros-jazzy-rosbag2-storage-sqlite3
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 21965
+ timestamp: 1749688347866
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-mcap-0.26.7-np126py312he556185_7.conda
+ sha256: 3e13af44f69fedcb281ca7ff4fd048413b9760f8183ea01ed1acccee470ff81b
+ md5: 82a297c3580ef57c1e31775d93e7e20f
+ depends:
+ - python
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-mcap-vendor
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-yaml-cpp-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 194883
+ timestamp: 1749688144167
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-storage-sqlite3-0.26.7-np126py312he556185_7.conda
+ sha256: 7d5f25190c5236b19a348719c85cb01af24bd40f55f5bc035f99d9344dd25af9
+ md5: 1808dbd632ab64a0b64a90e32cd57941
+ depends:
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-sqlite3-vendor
+ - ros-jazzy-yaml-cpp-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 242506
+ timestamp: 1749688126656
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosbag2-transport-0.26.7-np126py312he556185_7.conda
+ sha256: 98a124fa55b58ac3bdc0a6a47542cb6a8e97206240f95096fac3e05629f37b71
+ md5: ea0b96906738386a64d1574fecc5a3a2
+ depends:
+ - python
+ - ros-jazzy-keyboard-handler
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-compression
+ - ros-jazzy-rosbag2-cpp
+ - ros-jazzy-rosbag2-interfaces
+ - ros-jazzy-rosbag2-storage
+ - ros-jazzy-yaml-cpp-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 517208
+ timestamp: 1749727762860
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosgraph-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: 6b596b554a2fb20068afff311b6578140e42b17b69902ca55ea742be9b13b0d8
+ md5: eff5e83ee3a367b67879b8d5b47b98be
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 72304
+ timestamp: 1749685672759
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-adapter-4.6.5-np126py312he556185_7.conda
+ sha256: 5f6913b7f7f101a2e34c44df45dfcba717da35650cfb993d7bce68fd3255f214
+ md5: f3e8eb4c900d1386bb6b9f2aa10f3d4f
+ depends:
+ - empy
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 63268
+ timestamp: 1749684456526
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-cli-4.6.5-np126py312he556185_7.conda
+ sha256: 69e4cb7761413572b6afe1553f7a1fc06b7c51b6835c56f33dd198c1118ca25a
+ md5: 5bee07ea0f5ebc0c71aa923f5725fd82
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 38751
+ timestamp: 1749683888092
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-cmake-4.6.5-np126py312he556185_7.conda
+ sha256: a70707641451e8bce080c2b6062c9fc2d023c6f8bdc1a86a9946ce41b3909fac
+ md5: e4b480f5284008df23dd19be1e427254
+ depends:
+ - empy
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-pycommon
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 34811
+ timestamp: 1749684953732
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-core-generators-0.2.0-np126py312he556185_7.conda
+ sha256: dc1eef36077ccd4e32be2d87f25dfaf356cf0ca292444e24f47ea8913abcd70d
+ md5: 9f4abd7e12dfe39f1ffe68c1543820c5
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cmake
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-generator-cpp
+ - ros-jazzy-rosidl-generator-py
+ - ros-jazzy-rosidl-generator-type-description
+ - ros-jazzy-rosidl-typesupport-c
+ - ros-jazzy-rosidl-typesupport-cpp
+ - ros-jazzy-rosidl-typesupport-fastrtps-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 32113
+ timestamp: 1749685475325
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-core-runtime-0.2.0-np126py312he556185_7.conda
+ sha256: 9f089437678a03e116ea92bbfc404bdcc1afa677d618e6fb8676c5e94576b8f5
+ md5: a5f476c8790d0b9c1834cab375a94a88
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-generator-py
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-c
+ - ros-jazzy-rosidl-typesupport-cpp
+ - ros-jazzy-rosidl-typesupport-fastrtps-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 31155
+ timestamp: 1749685464002
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-default-generators-1.6.0-np126py312he556185_7.conda
+ sha256: 9a98c012d9f195ff9742721e6e49c6112f8d7a38e9b6fb77eedb63cf5098634a
+ md5: 508f6b2c0b3aac34c4e9f2fd59c66919
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-generators
+ - ros-jazzy-service-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 32329
+ timestamp: 1749685638377
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-default-runtime-1.6.0-np126py312he556185_7.conda
+ sha256: 3d37e87d429b50e2ff0c98cb1323f892e46c211e2ef9d28d30471a64ce1564db
+ md5: d7a8a89af9f4353e9121dcd70147fad0
+ depends:
+ - python
+ - ros-jazzy-action-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros-jazzy-service-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 31774
+ timestamp: 1749685627702
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-dynamic-typesupport-0.1.2-np126py312he556185_7.conda
+ sha256: 9a96e38ab6cd5c39da3496247b2ca7f5677dd26e718323beea594aee2110cefd
+ md5: 0c2d097b4434ac2146ec643713830f62
+ depends:
+ - python
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 62804
+ timestamp: 1749685039572
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-dynamic-typesupport-fastrtps-0.1.0-np126py312he556185_7.conda
+ sha256: 2cbd68379e6c763b47baa1b59681cb4701a590eb89086e39fc03155884af5944
+ md5: 5a1c714eae978784b772d4ed8da53551
+ depends:
+ - python
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-dynamic-typesupport
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 86190
+ timestamp: 1749685116332
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-c-4.6.5-np126py312he556185_7.conda
+ sha256: e82d6595ec032ea5189616144c4009750234be4a2782f76957245bb8c2967dbe
+ md5: daa00b9b2d97d8fa75a1e0ca5e93abb5
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-cmake
+ - ros-jazzy-rosidl-generator-type-description
+ - ros-jazzy-rosidl-parser
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 52610
+ timestamp: 1749685033921
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-cpp-4.6.5-np126py312he556185_7.conda
+ sha256: 10073031bf8b10ffac095a5de38835a790aba0615cf7045fe29eedbf17666ac5
+ md5: 2534c6f7d8fb4eda5474dfaeec84632d
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-cmake
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-generator-type-description
+ - ros-jazzy-rosidl-parser
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49270
+ timestamp: 1749685091542
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-py-0.22.1-np126py312he556185_7.conda
+ sha256: 8941b14b69a6bd7da5b48f917e3cdc7d6a92a26a15af6da3ee80b42d3865df32
+ md5: ebb9ed05b28f073a9cba8673758b9da4
+ depends:
+ - numpy
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-cmake-cppcheck
+ - ros-jazzy-ament-cmake-cpplint
+ - ros-jazzy-ament-cmake-flake8
+ - ros-jazzy-ament-cmake-pep257
+ - ros-jazzy-ament-cmake-uncrustify
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-cmake-module
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-parser
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-typesupport-c
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros-jazzy-rpyutils
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 60017
+ timestamp: 1749685436470
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-generator-type-description-4.6.5-np126py312he556185_7.conda
+ sha256: a005382e9d14c1d46f988f4434ff6b552a3ec27a7c7cb798822914ed37d8ca07
+ md5: 78cdbd58fa696ed8e1265081b672dfbb
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-parser
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 46606
+ timestamp: 1749684873298
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-parser-4.6.5-np126py312he556185_7.conda
+ sha256: 9a985d5bb9ab3f014ad326c1334b5b39089f905c3f46fb07223b65ee078975ef
+ md5: 59e317393dcdc1736214a610f436f8d1
+ depends:
+ - lark-parser
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-adapter
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 60065
+ timestamp: 1749684785526
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-pycommon-4.6.5-np126py312he556185_7.conda
+ sha256: 4604d6f31370a12381cc362ae06860933c332b3ee480e046983058b099bd8260
+ md5: 6edd522f971d957faedfd49deeda5492
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-parser
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 24977
+ timestamp: 1749684868103
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-c-4.6.5-np126py312he556185_7.conda
+ sha256: 0c172c5415e73ec46d58e5ccbc3d3b4538cb23a56c9ae2b9e89ec4e37c31eb30
+ md5: d178e8d3a579d66281b4ffe0a4753562
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 83149
+ timestamp: 1749684941331
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-cpp-4.6.5-np126py312he556185_7.conda
+ sha256: ab98ac8d1c32ae502908e75eb177ad9926a1ca84fe3faada837e9f2ed8cef2db
+ md5: a1b53aba07d42ce94d484c2bb04334c4
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 40621
+ timestamp: 1749685021776
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-runtime-py-0.13.1-np126py312he556185_7.conda
+ sha256: c56642ad38c153966648bc2f69f22f60eed21ce728ba613d29f90b23f62dad0f
+ md5: ba725559724eafcc047b14a36ea3ca0b
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-parser
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 47220
+ timestamp: 1749685898642
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-c-3.2.2-np126py312he556185_7.conda
+ sha256: 7ff5e7b214aa5c1e2ffacf87e402ef96497d82eec47f34c46dbe69f65761458a
+ md5: 44a0fe1e637036cdcd1b11e5d5806bcb
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-c
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 50752
+ timestamp: 1749685393936
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-cpp-3.2.2-np126py312he556185_7.conda
+ sha256: abbe109d4cba5664a25b0479cee4d047f4cf37308f0d39ddeca8797c0307d939
+ md5: 85beabb06a3d47ff8ad3fcbbe71c8571
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-core
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rcpputils
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-generator-type-description
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-c
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros-jazzy-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 49879
+ timestamp: 1749685430759
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-fastrtps-c-3.6.1-np126py312he556185_7.conda
+ sha256: 9e4c5cc3fc188fec0bd4f11943763109ee90771ac1f1a2506e23ba453b35a019
+ md5: 3f13a800017cc8d6efe5c987d558b08d
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-ros
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps-cmake-module
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-fastrtps-cpp
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 51567
+ timestamp: 1749685324500
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-fastrtps-cpp-3.6.1-np126py312he556185_7.conda
+ sha256: c966fe835d93f0f2b5d62949a6c0833f6a512f0389d3ddd8034da847438d254f
+ md5: d735475254ff948c40a10a86f1991bec
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-ros
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-fastcdr
+ - ros-jazzy-fastrtps-cmake-module
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-generator-cpp
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 53591
+ timestamp: 1749685164860
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-interface-4.6.5-np126py312he556185_7.conda
+ sha256: 61f6cb0624b4faaa6592da28a09e5ea93d3863eafa668de823ded5e6d5f7d60b
+ md5: 8ae3edffb51c538540235a390d100659
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 28949
+ timestamp: 1749684477366
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-introspection-c-4.6.5-np126py312he556185_7.conda
+ sha256: bdb494a6be36ddd218571af78654f6e47e5ec80146f8b00c51e55277a21421a3
+ md5: 2d6726482e0d61d5876acbd6dd3ff856
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-cmake
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-parser
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 48109
+ timestamp: 1749685111259
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rosidl-typesupport-introspection-cpp-4.6.5-np126py312he556185_7.conda
+ sha256: d9dd81bc4aad63baa28c4b5c1fa4910f141984c86d8f07670be87f30f446d9ff
+ md5: a865504d69d109c3a8c8db24eadb57bf
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-cli
+ - ros-jazzy-rosidl-cmake
+ - ros-jazzy-rosidl-generator-c
+ - ros-jazzy-rosidl-generator-cpp
+ - ros-jazzy-rosidl-parser
+ - ros-jazzy-rosidl-pycommon
+ - ros-jazzy-rosidl-runtime-c
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros-jazzy-rosidl-typesupport-interface
+ - ros-jazzy-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 48389
+ timestamp: 1749685176690
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rpyutils-0.4.1-np126py312he556185_7.conda
+ sha256: d416938c0f9756036cfe2a34adee4674d2eccacb447d0f296019e0d8d3955491
+ md5: eef9b3220d69f160623ac579f1fbe157
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 26061
+ timestamp: 1749683858617
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-action-2.2.0-np126py312he556185_7.conda
+ sha256: 3a96a3fd9d20af2b7f54cd8a66b13f4af6dbed2ba42bf37c3e661e215a13aba7
+ md5: cff0c770ab859ce29083a45f60c44add
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-msg
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 20369
+ timestamp: 1749691909245
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-bag-1.5.4-np126py312he556185_7.conda
+ sha256: 767bc9fdb4013c9c9b8cf0ddd6fa41e59a421e9e29c21f6bb9e40d1fac445b07
+ md5: 7aaa07b2bc17d1b49ba6e01f25c8af77
+ depends:
+ - python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2-py
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 133818
+ timestamp: 1749728567263
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-bag-plugins-1.5.4-np126py312he556185_7.conda
+ sha256: 419a24469f467961994e0d2b142e026e14751cb9f5acd575e65f9d6c6b980e4a
+ md5: 4a90672aa787e00f6daefec216e8f5a8
+ depends:
+ - pillow
+ - pycairo
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosbag2
+ - ros-jazzy-rqt-bag
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-plot
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 48680
+ timestamp: 1749729498689
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-common-plugins-1.2.0-np126py312he556185_7.conda
+ sha256: 055422199a0bc76876a569bc0ada79ec840d14f1a8fa24bb804314d2c8ae3fe3
+ md5: e17e3f546e25bf3162b4ffb9e7f09e3d
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-action
+ - ros-jazzy-rqt-bag
+ - ros-jazzy-rqt-bag-plugins
+ - ros-jazzy-rqt-console
+ - ros-jazzy-rqt-graph
+ - ros-jazzy-rqt-image-view
+ - ros-jazzy-rqt-msg
+ - ros-jazzy-rqt-plot
+ - ros-jazzy-rqt-publisher
+ - ros-jazzy-rqt-py-common
+ - ros-jazzy-rqt-py-console
+ - ros-jazzy-rqt-reconfigure
+ - ros-jazzy-rqt-service-caller
+ - ros-jazzy-rqt-shell
+ - ros-jazzy-rqt-srv
+ - ros-jazzy-rqt-topic
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22602
+ timestamp: 1749729798539
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-console-2.2.1-np126py312he556185_7.conda
+ sha256: 9dc95816acce4adb2f9a354ad93ac0eeb7204ef735fea921ece5e95c79e3b463
+ md5: fb6460fcbcc2f5bebed8c07b43313bde
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 83181
+ timestamp: 1749688111454
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-graph-1.5.4-np126py312he556185_7.conda
+ sha256: 04737e98bb9691e13dfc7453264dd272041d2322db0771dc5cd4fa07941023ad
+ md5: 19f66b62aad40989b655b62b598071a8
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-dotgraph
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 68513
+ timestamp: 1749688112296
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-1.6.0-np126py312he556185_7.conda
+ sha256: 48071b59d80ac790bdd022633a3be2f7a0077c89948af14834e309301c0f7c8e
+ md5: 68cfae0d195ced390522be7dcc03244e
+ depends:
+ - catkin_pkg
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 126480
+ timestamp: 1749687569573
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-cpp-1.6.0-np126py312he556185_7.conda
+ sha256: d59cb7e4e8dcadbe7679c5fa41f9d09365ecf82ac2e24556cfd9ac85c219dc0b
+ md5: bb87dc5cc807767177789227eb29ec20
+ depends:
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-qt-gui-cpp
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 183724
+ timestamp: 1749687396911
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-gui-py-1.6.0-np126py312he556185_7.conda
+ sha256: 5ceeaa672affb08926f18ac3408696ecb764dc32369f0f4ee8b0ab39e0ece415
+ md5: 8a7b0af0677d81bd8e631b57bd1055ec
+ depends:
+ - python
+ - ros-jazzy-qt-gui
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 49358
+ timestamp: 1749687797537
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-image-view-1.3.0-np126py312he556185_7.conda
+ sha256: da30a31252988314805a989f5bad662d96e5715ea2436b3fb0dd8b1ff270835a
+ md5: 60d6fd19c71ad37a73e8dd2ab5080089
+ depends:
+ - python
+ - ros-jazzy-cv-bridge
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-image-transport
+ - ros-jazzy-qt-gui-cpp
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-cpp
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - qt-main >=5.15.15,<5.16.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 293130
+ timestamp: 1749688372791
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-msg-1.5.1-np126py312he556185_7.conda
+ sha256: b21987a4761ce0edb16e1030a65a0287ed291f8c750ffb3ca36a80671b0c4972
+ md5: 7d951cb927dfe03a6fb649e8e98bb712
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-py
+ - ros-jazzy-rqt-console
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 30343
+ timestamp: 1749688372570
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-plot-1.4.3-np126py312he556185_7.conda
+ sha256: e078a903dc7e540a3aa681b80f1e53af9c58c99e44c66c5dc5c7bb80f139f3ab
+ md5: 337dcb6df0c59b75b383fefeb0d67e63
+ depends:
+ - catkin_pkg
+ - matplotlib-base
+ - numpy
+ - python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui-py-common
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-py
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 67304
+ timestamp: 1749688181863
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-publisher-1.7.2-np126py312he556185_7.conda
+ sha256: f5acdcbbd30db38e7f22c4395855fabaffd7576aebed707b2faac2c90ab955c3
+ md5: 1b306bfb4fd176e07e0c36c8b44f2a3b
+ depends:
+ - numpy
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui-py-common
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-py
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 42589
+ timestamp: 1749688138357
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-py-common-1.6.0-np126py312he556185_7.conda
+ sha256: f71470ad3d207ec5120cbf218a63f47e3c4c53f92be9cafeeb4b8e7e7ed1ad59
+ md5: 19b79eb75ff1d480550934ab40b464b5
+ depends:
+ - python
+ - qt-main
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ license: BSD-3-Clause
+ size: 87620
+ timestamp: 1749687311392
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-py-console-1.2.2-np126py312he556185_7.conda
+ sha256: f25b429b65738ad143815e3b1e585517a54b42b49028088a14021514cb357066
+ md5: cbaf24439edbd6ad85bbf353d7665b13
+ depends:
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui
+ - ros-jazzy-qt-gui-py-common
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 25270
+ timestamp: 1749688134588
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-reconfigure-1.6.2-np126py312he556185_7.conda
+ sha256: 444a573ba86a97a622311fb490c279f45d2dd757cbb9a0d34638d1fa68d1d4f4
+ md5: 2b280980685b787bfb4a88e892766379
+ depends:
+ - python
+ - pyyaml
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui-py-common
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-console
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 78328
+ timestamp: 1749688350925
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-service-caller-1.2.1-np126py312he556185_7.conda
+ sha256: 0fee4eba9d6c2ed2cdfa88d222b445d6d4eae77f4034f694395c71f4e9e5f506
+ md5: 1c1216067896683ebcb109da79bf2caf
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 31942
+ timestamp: 1749688130772
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-shell-1.2.2-np126py312he556185_7.conda
+ sha256: 1bde528abbafad77699358311f2a5a6e4283a05ced4f4559ed0b87018d99700d
+ md5: 3cfafa0a6c6c4c22550cc83a440430f4
+ depends:
+ - catkin_pkg
+ - python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-qt-gui
+ - ros-jazzy-qt-gui-py-common
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 29158
+ timestamp: 1749688126988
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-srv-1.2.2-np126py312he556185_7.conda
+ sha256: 1828ca34de12387b32f554e44b28ca851628b44017749fc985bb2311dd43f16e
+ md5: d1a5419056da1de0d3da525f22f6e559
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-msg
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 21319
+ timestamp: 1749692126565
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rqt-topic-1.7.3-np126py312he556185_7.conda
+ sha256: 9a65236e6c9b20e19ffd359f330140d2a03375cf5660824d75cb02a61cb035df
+ md5: b8b20498ffd5ed60e6da0593e547f0d3
+ depends:
+ - python
+ - ros-jazzy-python-qt-binding
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2topic
+ - ros-jazzy-rqt-gui
+ - ros-jazzy-rqt-gui-py
+ - ros-jazzy-rqt-py-common
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 38571
+ timestamp: 1749688368862
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rsl-1.1.0-np126py312he556185_7.conda
+ sha256: 14946a6b05c795ff6ca79e3a7ed6d85da4d3094fe89a62424f1328d089a9a465
+ md5: c21d2134f94efb9e49a1a9d3100e0069
+ depends:
+ - eigen
+ - fmt
+ - python
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tcb-span
+ - ros-jazzy-tl-expected
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - graphviz >=12.2.1,<13.0a0
+ - python_abi 3.12.* *_cp312
+ - fmt >=11.1.4,<11.2.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 59694
+ timestamp: 1749687310625
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rti-connext-dds-cmake-module-0.22.1-np126py312he556185_7.conda
+ sha256: 5b33b9d90ebff615863707bb30a84f937e3556ce8c4096223b2ca1e4869fed3e
+ md5: 5117f0b31b1858ea9512d80eecf01a4f
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 31291
+ timestamp: 1749684722029
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rttest-0.17.1-np126py312he556185_7.conda
+ sha256: 708b9eef2498f96a9806681dfe9b9d9b418fffc785cd9220855da19dede69d19
+ md5: 5947ae0465088257c60130c484222b0d
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 53895
+ timestamp: 1749684476460
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-assimp-vendor-14.1.11-np126py312he556185_7.conda
+ sha256: 4bfbdce2d8a6d10a0157ae6620e3e93f26297a4cfa88894ad831e9c3cf1d9c4b
+ md5: 9d583a4a4dd45c63a10cb7b75189dd09
+ depends:
+ - assimp
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 24559
+ timestamp: 1749684410931
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-common-14.1.11-np126py312he556185_7.conda
+ sha256: 78723c93f764a7bafbd7e4c3bd97aa121aee9e287885747ec3acb62d6b181c0f
+ md5: 973e590656a0a131cf1c7e55853d372b
+ depends:
+ - python
+ - qt-main
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-message-filters
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-resource-retriever
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rviz-ogre-vendor
+ - ros-jazzy-rviz-rendering
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros-jazzy-std-srvs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-tinyxml2-vendor
+ - ros-jazzy-urdf
+ - ros-jazzy-yaml-cpp-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 870472
+ timestamp: 1749688354866
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-default-plugins-14.1.11-np126py312he556185_7.conda
+ sha256: 1eb0f65194ed758bcb55e82257766579ba4b374310436a3147fa969dfe8bc48d
+ md5: e6cd7f02c9eb17b8a0906cc80673e47f
+ depends:
+ - python
+ - qt-main
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-gz-math-vendor
+ - ros-jazzy-image-transport
+ - ros-jazzy-interactive-markers
+ - ros-jazzy-laser-geometry
+ - ros-jazzy-map-msgs
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-point-cloud-transport
+ - ros-jazzy-rclcpp
+ - ros-jazzy-resource-retriever
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rviz-common
+ - ros-jazzy-rviz-ogre-vendor
+ - ros-jazzy-rviz-rendering
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-urdf
+ - ros-jazzy-visualization-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - qt-main >=5.15.15,<5.16.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 2273434
+ timestamp: 1749724142474
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-ogre-vendor-14.1.11-np126py312h187c934_7.conda
+ sha256: 6065bbe0b53a36318c25af733377db9ad9c2706980786083504501c9b94bc526
+ md5: 947a66fe21df04a202c5c0e78f2a108d
+ depends:
+ - assimp
+ - freetype
+ - glew
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxaw
+ - xorg-libxrandr
+ - xorg-xorgproto
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ - libglu >=9.0.3,<9.1.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - freeimage >=3.18.0,<3.19.0a0
+ - zziplib >=0.13.69,<0.14.0a0
+ license: BSD-3-Clause
+ size: 5287472
+ timestamp: 1749684180321
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz-rendering-14.1.11-np126py312he556185_7.conda
+ sha256: 5fb231237694cdbd873787cdd5dcc520fb3e256135a42d73180ba26fb0b7ef17
+ md5: 737b47f82a5569f27caf42038dff4097
+ depends:
+ - eigen
+ - python
+ - qt-main
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-eigen3-cmake-module
+ - ros-jazzy-resource-retriever
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rviz-assimp-vendor
+ - ros-jazzy-rviz-ogre-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 902602
+ timestamp: 1749684885099
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-rviz2-14.1.11-np126py312he556185_7.conda
+ sha256: 8de69ed42bc9261c463a20b7336f9adbcd9fe369905f3d0ebffd35a35284ace2
+ md5: 99f16a2bd432dbac298952203ba91f85
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rviz-common
+ - ros-jazzy-rviz-default-plugins
+ - ros-jazzy-rviz-ogre-vendor
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - qt-main >=5.15.15,<5.16.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 75986
+ timestamp: 1749727304425
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdformat-urdf-1.0.2-np126py312he556185_7.conda
+ sha256: c2ca299f58bfa84e56cd03d9f5a1b883a8e94de1a0e3e04ae8357caa892e03bf
+ md5: 893af957c134e135abfb71c46c40521b
+ depends:
+ - python
+ - ros-jazzy-ament-cmake-ros
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sdformat-vendor
+ - ros-jazzy-tinyxml2-vendor
+ - ros-jazzy-urdf
+ - ros-jazzy-urdf-parser-plugin
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - urdfdom_headers
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 84807
+ timestamp: 1749685336885
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdformat-vendor-0.0.9-np126py312hbd98dbb_7.conda
+ sha256: 0b7632603b626e789f60a29c9f9a28b313b86291560d511fbd85632f1de6e556
+ md5: 7a6048c2d1b49d17051864e8bef35055
+ depends:
+ - pybind11
+ - python
+ - ros-jazzy-gz-cmake-vendor
+ - ros-jazzy-gz-math-vendor
+ - ros-jazzy-gz-tools-vendor
+ - ros-jazzy-gz-utils-vendor
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-urdfdom
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - sdformat14
+ - tinyxml2
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - python_abi 3.12.* *_cp312
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - libsdformat14 >=14.5.0,<15.0a0
+ license: BSD-3-Clause
+ size: 31553
+ timestamp: 1749684878289
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sdl2-vendor-3.3.0-np126py312he556185_7.conda
+ sha256: d129a05336f9b20cbf54d4e9aae267449da9ef1c1f2ff0ac8dfd8c47dd70ecc5
+ md5: 3699a73d40d91815367b8ba94bb2ab7e
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - sdl2
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - sdl2 >=2.32.54,<3.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 28190
+ timestamp: 1749683862121
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sensor-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: fcbc30bb37fa39b97c4b4f8c1ba9ffdb1ed1a724e1d6ecfe441c0d6d5bbf5104
+ md5: a697a2180e15b4a1dec321cc2862a60c
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 546885
+ timestamp: 1749686108164
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sensor-msgs-py-5.3.6-np126py312he556185_7.conda
+ sha256: 624b28ac94d9ee91faf94cf6e1bcda4c0112dd6f3e6f3da685695201827a0097
+ md5: c5c89bb6be6ec5591198784612d8f075
+ depends:
+ - numpy
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 30361
+ timestamp: 1749686248785
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-service-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: d82ad83ed1292734bac14ba85843ebd81ed2d568f62f1b0ec7eff4c8e9fb562d
+ md5: a1b62b00c1429b03ad68a16342965188
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 80520
+ timestamp: 1749685532799
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-shape-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: 4e325d10686355e0a74cc5cc0bd8d734055807c53cf54c86452e15200e874817
+ md5: 95090cd4d6e1b913d86ae87bbc71c7bb
+ depends:
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 127435
+ timestamp: 1749686097088
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-spdlog-vendor-1.6.1-np126py312hb9c0a37_7.conda
+ sha256: e69e59dedd2751793ce5cce593a162f0cfe35e999318a37074bc9625507a2adc
+ md5: 03237942760bff0c507e6e3c04d17c7a
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - spdlog
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - spdlog >=1.15.3,<1.16.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 26805
+ timestamp: 1749684443607
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sqlite3-vendor-0.26.7-np126py312he556185_7.conda
+ sha256: ef4904ab86546c55017cf83c04b7eea2ca6b7eb05f7c5ab5ac51e39ed8b94c71
+ md5: 8ccd9158322a47af4261df9457acb567
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - sqlite
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libsqlite >=3.50.1,<4.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 24082
+ timestamp: 1749683861174
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sros2-0.13.3-np126py312he556185_7.conda
+ sha256: 7e932ed7bc1b1e509debfc4f84c9f3efb1ed6b821a555e1e40c9c43bb579aa49
+ md5: daa114ae9b2fe287702c4b2f929688de
+ depends:
+ - argcomplete
+ - cryptography
+ - importlib_resources
+ - lxml
+ - python
+ - ros-jazzy-ament-index-python
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 75346
+ timestamp: 1749691955944
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-sros2-cmake-0.13.3-np126py312he556185_7.conda
+ sha256: a1f679ff92b64e693c1e1bbf43f61cd13d9c6e69d344cca515dc71b7c37e7a0f
+ md5: d50b7f6e5ef6aebcc13c21243816db49
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-ros2cli
+ - ros-jazzy-sros2
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 38026
+ timestamp: 1749724143742
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-statistics-msgs-2.0.2-np126py312he556185_7.conda
+ sha256: 898c7e536da858e73b76afcc4b37dfa7317b967ee7c0aa65ba1f9727ec345d29
+ md5: 25d5e1388f3de816f2ef357c950a853c
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 108380
+ timestamp: 1749685837697
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-std-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: b71e500c0202efa2a74f2239f80f5fdd7c466551b7c821eb6221ce4b29c69785
+ md5: 72ca98aad546e7559adc8c1decb34642
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 340010
+ timestamp: 1749685794780
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-std-srvs-5.3.6-np126py312he556185_7.conda
+ sha256: 501182fb3b206bf533ae0ad2aeb0576edf8a8b8669a6f748b461657011151e8b
+ md5: d6ba6f9c87cfc7e7d86f19d5381adc12
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 169086
+ timestamp: 1749685711754
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-steering-controllers-library-4.26.0-np126py312he556185_7.conda
+ sha256: 8ebc904664fb088ec9e2121f51d923b2b3a615f0604c15c7cda670c3f60de62a
+ md5: 329536d5d09ec95067fe3d9bec04ec6e
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-generate-parameter-library
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rcpputils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-geometry-msgs
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 294627
+ timestamp: 1749727721762
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-stereo-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: 9696b3d4e0f4aebda76b9d6e24fa014fd39dc245d88e316521edea4bff8d28f0
+ md5: 93fd8205b84ea09dfd079f87617e46c1
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 83011
+ timestamp: 1749686383171
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tango-icons-vendor-0.3.0-np126py312he556185_7.conda
+ sha256: 2d0661edb47eb91efe5df26724b06f1909b6d94b902da75cc454b9b998e1cc15
+ md5: a74c312461b45d1bd34782fb1fc2627b
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 26113
+ timestamp: 1749684473225
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tcb-span-1.0.2-np126py312he556185_7.conda
+ sha256: a1a4f783d1ce0ed504ffd65b0ac861b8f434097bcba6a378fa5b28222718f2f9
+ md5: 20a75749efabdeabe112a30bfd0918c0
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 27522
+ timestamp: 1749683874771
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-teleop-twist-joy-2.6.3-np126py312he556185_7.conda
+ sha256: b019f8ab4d126103240110b7df315e7d2ed0addde064d549f9c24faf7bb348f7
+ md5: 35d7773e7959900e0420909f35e38a1b
+ depends:
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-joy
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 221127
+ timestamp: 1749688157766
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-teleop-twist-keyboard-2.4.0-np126py312he556185_7.conda
+ sha256: 8670cec02734170cfd6cb42ec7fdf481b70999da5799fde2689f3dfbfc250074
+ md5: 153ac8e67291b70e8f648a4f3f07972a
+ depends:
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22512
+ timestamp: 1749687467280
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-0.36.11-np126py312he556185_7.conda
+ sha256: 9d16bcdeba2334598387baf065178796f00862225343612b3a6459dfee8fde46
+ md5: 05d326da8808d0edbfaf74681cbd5a51
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rcutils
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 134042
+ timestamp: 1749686071353
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-bullet-0.36.11-np126py312he556185_7.conda
+ sha256: d7bf2dda04e156a4c4a465a7816fe19dcd74b42bf81d9ab00758f90d43a90a0c
+ md5: db3baf8e4c6f70724a165124a1700dba
+ depends:
+ - bullet
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 44199
+ timestamp: 1749688362541
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-eigen-0.36.11-np126py312he556185_7.conda
+ sha256: 9a0ad4d12a053d4e101d97c810ce6889b1091c43d3e73df96b8a58d1cb5e77e0
+ md5: 490ccd3a2ebe5546a281e46c689e44af
+ depends:
+ - eigen
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 45537
+ timestamp: 1749688332746
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-eigen-kdl-0.36.11-np126py312he556185_7.conda
+ sha256: e2a72c759a8df57dd026608c1cfa6af789d0ae490856329038907fa2bceb2d80
+ md5: be08a1476c297c79e263141289437303
+ depends:
+ - eigen
+ - python
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 41224
+ timestamp: 1749686284558
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-geometry-msgs-0.36.11-np126py312he556185_7.conda
+ sha256: 50750325a059b924e7447fba0d010b4ee8b084acee9ea5d14b360cb1a08b0843
+ md5: 5e0692210ce3e5be58fddefdace1a3b8
+ depends:
+ - numpy
+ - python
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-tf2-ros-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 57584
+ timestamp: 1749688334403
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-kdl-0.36.11-np126py312he556185_7.conda
+ sha256: a24cd095538c2235225032590e8179e242f31ab7fb24093c1a1172c8266ed2f8
+ md5: 386ddcf374cc4f26b6eedcc9ab4728e8
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-orocos-kdl-vendor
+ - ros-jazzy-python-orocos-kdl-vendor
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-tf2-ros-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 46999
+ timestamp: 1749688372637
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-msgs-0.36.11-np126py312he556185_7.conda
+ sha256: 5318b3df806945d14904c3da62903c81e132c30386f25501446953290275a6a5
+ md5: 4560618676a4b38f9a7aaf18619d7629
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 257666
+ timestamp: 1749686045840
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-py-0.36.11-np126py312he556185_7.conda
+ sha256: 2465c2336201c0ebf1c43a1e198a08b5b25ec661a7f6e61e5a5d3e4fce91da03
+ md5: b9bb82c8990e894500eac2553eb4fced
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rpyutils
+ - ros-jazzy-tf2
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 56567
+ timestamp: 1749687414638
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-ros-0.36.11-np126py312he556185_7.conda
+ sha256: 1060a89c94289064ead0b266be86ee313fc513e5aa1fb835211e0d5e989f3ca1
+ md5: 61d218350f3642d1b5424e2a0604258c
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-message-filters
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-rclcpp-components
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 467985
+ timestamp: 1749688154197
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-ros-py-0.36.11-np126py312he556185_7.conda
+ sha256: 9b65cdce7567da7a9cbcbe91361f064df0ce3fabf72a99624697371811405cbd
+ md5: 5c0c6fc6d5ca9a9b17b0382cc82bab10
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros-jazzy-tf2-msgs
+ - ros-jazzy-tf2-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 48642
+ timestamp: 1749687798488
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-sensor-msgs-0.36.11-np126py312he556185_7.conda
+ sha256: ddf532dc819ade63cf6009f988e7259ad118715da04f86a911decb1b5ed9bab2
+ md5: b4fa8ae2439300ca44410d26c71f4c7d
+ depends:
+ - eigen
+ - numpy
+ - python
+ - ros-jazzy-eigen3-cmake-module
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-sensor-msgs-py
+ - ros-jazzy-std-msgs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-ros
+ - ros-jazzy-tf2-ros-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49513
+ timestamp: 1749688539735
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tf2-tools-0.36.11-np126py312he556185_7.conda
+ sha256: cf390330255f5846bab5283bdc18c5aa84e3e3fd0db07ac492de3b89496fb206
+ md5: f72dcb3f7c6d97ab3fcf40d13a313c78
+ depends:
+ - graphviz
+ - python
+ - pyyaml
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tf2-msgs
+ - ros-jazzy-tf2-py
+ - ros-jazzy-tf2-ros-py
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 23837
+ timestamp: 1749688191969
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tinyxml2-vendor-0.9.1-np126py312he556185_7.conda
+ sha256: 48a0ec1ff44cb977cc17fbdb417e20c6a70d099d1e90d88613f2ae9236f5ed68
+ md5: 35f9687bfd1d9c27748d7e14a760e9cf
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - tinyxml2
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 24407
+ timestamp: 1749683883702
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tl-expected-1.0.2-np126py312he556185_7.conda
+ sha256: 59a4c80dc3d853741e99ec864e44b14a4457e07e13e3759ba1e9de1f56f4f0bd
+ md5: c9151f1109930fcf1700cead785a46f4
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 33149
+ timestamp: 1749683869703
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tlsf-0.9.0-np126py312he556185_7.conda
+ sha256: 6a9d5ddd878a30e3639510d1dfe24ded7914425572f658cfedcbbe2215946252
+ md5: 38c535cb64137a15281c9cbbc096238c
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 32711
+ timestamp: 1749684471821
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tlsf-cpp-0.17.1-np126py312he556185_7.conda
+ sha256: 8b64b25f0a4f9f594750590ec1bdbfa6198ad9d60f640a94001d1095bdb37467
+ md5: 995a416062df59fdffaaf3b5b1d8342e
+ depends:
+ - python
+ - ros-jazzy-ament-cmake
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rmw
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros-jazzy-tlsf
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 184375
+ timestamp: 1749687471604
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-topic-monitor-0.33.5-np126py312he556185_7.conda
+ sha256: f8106c620861a00642ebe1135ca9760955da2342cf54d86dfdb789af7abe6c98
+ md5: f85e6fcc47d258d4b98cde583a858500
+ depends:
+ - python
+ - ros-jazzy-launch
+ - ros-jazzy-launch-ros
+ - ros-jazzy-rclpy
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 49320
+ timestamp: 1749687889378
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tracetools-8.2.3-np126py312he556185_7.conda
+ sha256: d57ae87348b81fc89061f13b02a221653f36c71e1cde55659940a129f1b59738
+ md5: 96db6f53a489cac630fb63fd846262d6
+ depends:
+ - lttng-ust
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - lttng-ust >=2.13.9,<2.14.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 72570
+ timestamp: 1749684792089
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-trajectory-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: 666910a702c148eace34736db567363a93819ca292b8c2329eb5617cc8c351ca
+ md5: 8e38aae76d5a651f1bdcf84cd96717e9
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 149973
+ timestamp: 1749686159199
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-transmission-interface-4.32.0-np126py312he556185_7.conda
+ sha256: ad06fa461afc2ff52a65bd58e0c2e931c617e4630d8e6bf95d7f64939f66042e
+ md5: 92bd968c756625f57fd8e77f936331a8
+ depends:
+ - fmt
+ - python
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - fmt >=11.1.4,<11.2.0a0
+ license: BSD-3-Clause
+ size: 98394
+ timestamp: 1749724119768
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tricycle-controller-4.26.0-np126py312he556185_7.conda
+ sha256: 27872e15249d8f9dc6ae36bc285efddd6c796ba351aa21608d3914b6921d3072
+ md5: dbb42a163d9f07a7b8c4ace07b518244
+ depends:
+ - python
+ - ros-jazzy-ackermann-msgs
+ - ros-jazzy-backward-ros
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-controller-interface
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-nav-msgs
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-rcpputils
+ - ros-jazzy-realtime-tools
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-tf2
+ - ros-jazzy-tf2-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 310627
+ timestamp: 1749727664750
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-tricycle-steering-controller-4.26.0-np126py312he556185_7.conda
+ sha256: f485794419c2ec01f262844d3ddf5fbbf0cf1edc03433fe724a30674dc36bc00
+ md5: 205a6cc158c8777cff189b081edd0984
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-control-msgs
+ - ros-jazzy-controller-interface
+ - ros-jazzy-hardware-interface
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-lifecycle
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-std-srvs
+ - ros-jazzy-steering-controllers-library
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 100673
+ timestamp: 1749728267689
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-turtlesim-1.8.3-np126py312he556185_7.conda
+ sha256: 938a648dde643be4abdd7dc81c98b00665bbd6a476ff5c565729f3734bd84090
+ md5: 8861d0c2349c9028e5f060de7663d1c6
+ depends:
+ - python
+ - qt-main
+ - ros-jazzy-ament-index-cpp
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-rcl-interfaces
+ - ros-jazzy-rclcpp
+ - ros-jazzy-rclcpp-action
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-std-msgs
+ - ros-jazzy-std-srvs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 895802
+ timestamp: 1749687828392
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-type-description-interfaces-2.0.2-np126py312he556185_7.conda
+ sha256: 05a5016b4f38b63d91c2ae723480f067e70423694b0feee3300b46dbb6025da4
+ md5: a10ac6b6742cb0d412a45f2742f65207
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros-jazzy-service-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ license: BSD-3-Clause
+ size: 235146
+ timestamp: 1749685572359
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-uncrustify-vendor-3.0.1-np126py312he556185_7.conda
+ sha256: 02824f7493f60dc0fcf50b3a9c26338140b9ba531c48f5e49c95595d919bfdac
+ md5: a8c736fbf410a8b961e629ea04622ea3
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - uncrustify
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - uncrustify >=0.81.0,<0.82.0a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22634
+ timestamp: 1749683873882
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-unique-identifier-msgs-2.5.0-np126py312he556185_7.conda
+ sha256: 116ee179c509d801ab89427f899fe78052c290bd78ec365998ae3dc7939b5578
+ md5: fd4c58331b20bfe14377b031873c67e0
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-core-runtime
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 73750
+ timestamp: 1749685491704
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdf-2.10.0-np126py312he556185_7.conda
+ sha256: 5da5800668bcd0dece1216b9680ae87e4646ba226416e01a0ed11bdd9a6b7a9f
+ md5: e207ba1b73cc5b6ebd12f45812d3f5ee
+ depends:
+ - python
+ - ros-jazzy-pluginlib
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-tinyxml2-vendor
+ - ros-jazzy-urdf-parser-plugin
+ - ros-jazzy-urdfdom
+ - ros-jazzy-urdfdom-headers
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.26.4,<2.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 153886
+ timestamp: 1749685190036
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdf-parser-plugin-2.10.0-np126py312he556185_7.conda
+ sha256: 0c5e8087f1dfb7ce86be5a2235fa6cad59658ee1b2b52a9b5110df087aca1c97
+ md5: 55e701d7b4ba3f0812a69f3b625625a2
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-urdfdom-headers
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 31729
+ timestamp: 1749684774996
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdfdom-4.0.1-hb0f4dca_7.conda
+ sha256: a77f04efe1402c59f72d2e034626091ba023f27a79ee5d7fb3055d52167efada
+ md5: a333bdd389d1db12d528812c53e65ea7
+ depends:
+ - urdfdom ==4.0.1
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ size: 1820
+ timestamp: 1749727287787
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-urdfdom-headers-1.1.2-hb0f4dca_7.conda
+ sha256: c6a3fbc8228f2174c25c2b723c22f19c5281bc7eeda8bc0d0696a09e9301f4f0
+ md5: 8a45fcfa0aeff32ac0f4b753373584c3
+ depends:
+ - urdfdom_headers ==1.1.2
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ size: 1876
+ timestamp: 1749727287698
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-velocity-controllers-4.26.0-np126py312he556185_7.conda
+ sha256: 0ddb384d4e952e4795c7ab5fa859ccdd3398048021a113563d962d039b803eb8
+ md5: 8bb89310322e31440e4a49f2112f46e9
+ depends:
+ - python
+ - ros-jazzy-backward-ros
+ - ros-jazzy-forward-command-controller
+ - ros-jazzy-pluginlib
+ - ros-jazzy-rclcpp
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.26.4,<2.0a0
+ license: BSD-3-Clause
+ size: 74581
+ timestamp: 1749728253853
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-visualization-msgs-5.3.6-np126py312he556185_7.conda
+ sha256: 4c1a7aa385b38a9efca65b198c05b77e085483b2745d8d2edb99ec93cbf27a40
+ md5: c154dc5a39e7e91fb9f544ea3ff0b302
+ depends:
+ - python
+ - ros-jazzy-builtin-interfaces
+ - ros-jazzy-geometry-msgs
+ - ros-jazzy-ros-workspace
+ - ros-jazzy-rosidl-default-runtime
+ - ros-jazzy-sensor-msgs
+ - ros-jazzy-std-msgs
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - numpy >=1.26.4,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 371542
+ timestamp: 1749686350980
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-yaml-cpp-vendor-9.0.1-np126py312he556185_7.conda
+ sha256: f256522c00421da7465746562349b7bc48875190ba1237b4c0efb872456673dc
+ md5: 731f8a2907a44d7e5fe0b6802c117536
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22693
+ timestamp: 1749683885781
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros-jazzy-zstd-vendor-0.26.7-np126py312he556185_7.conda
+ sha256: ed74da3ff968186eb8d3e622acf2ea21ce3e6f6a113a2011aeebdb2428dc08c6
+ md5: b97e5681c436c1d51af3ebfdffbdcee8
+ depends:
+ - python
+ - ros-jazzy-ros-workspace
+ - ros2-distro-mutex 0.9.* jazzy_*
+ - zstd
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.26.4,<2.0a0
+ - zstd >=1.5.7,<1.6.0a0
+ - ros2-distro-mutex >=0.9.0,<0.10.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23586
+ timestamp: 1749683890818
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ackermann-msgs-2.0.2-np2py312h31f38b3_14.conda
+ sha256: df649d0b19a2a5b392e20e6f162c5771a714cb43e321c2163a674ef8db75f610
+ md5: 63549210355cc9332b99bf0427abc532
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 87826
+ timestamp: 1759312585444
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ackermann-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 382879c0ad1ffb32997a378afe391c36554bde469b30a980aeec41c04ac1dcb4
+ md5: ccd223cf94053b2dd734d158e8efcbfb
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-steering-controllers-library
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 104443
+ timestamp: 1759317102055
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-msgs-2.3.0-np2py312h31f38b3_14.conda
+ sha256: cd18ce49b10f009de08053c8c217cd6c258b9615bab1e88bed7a6b008c67fd62
+ md5: e52f361b2e40fd23c662f37c0441bf09
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros-kilted-service-msgs
+ - ros-kilted-unique-identifier-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 150594
+ timestamp: 1759312218237
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-tutorials-cpp-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 049d83f96e5230b90bc1eb47a85a088804a1d6ccf1da89abfbe0b5a1ab3273d9
+ md5: 4ca42be1e179caf0c485e2db34cabd9a
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 136059
+ timestamp: 1759314385799
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-action-tutorials-py-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 50c67f9ed5f0b7aa1db1d25a5d5fc5b3554be702a6bd35c4270df70e4a8cbe90
+ md5: 0516461d7d20ff90c2093234317350f2
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24682
+ timestamp: 1759314102631
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-actionlib-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: a7d56065e588aab4fa33a1217afba9e2a40afae7b1aa6b65fca9d33c59a930b0
+ md5: ebc4798ee4b706b95edf35bfaf136f85
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 110446
+ timestamp: 1759312573379
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-admittance-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 4754416204ae8e2ee331faf50cba2a73ddfb2f60efc583b3bb2c958e22be2309
+ md5: c692e662651c4378a128ae57379660d1
+ depends:
+ - python
+ - ros-kilted-angles
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-control-toolbox
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-kinematics-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-eigen
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-kdl
+ - ros-kilted-tf2-ros
+ - ros-kilted-trajectory-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 414938
+ timestamp: 1759316636255
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 655ae089e73b91f28d62ce86c40c9a527bc42be2aa00df54800a353d448f4ed0
+ md5: 93fe4f1d8371e1fda1b340fd6c24d995
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-export-definitions
+ - ros-kilted-ament-cmake-export-dependencies
+ - ros-kilted-ament-cmake-export-include-directories
+ - ros-kilted-ament-cmake-export-interfaces
+ - ros-kilted-ament-cmake-export-libraries
+ - ros-kilted-ament-cmake-export-link-flags
+ - ros-kilted-ament-cmake-export-targets
+ - ros-kilted-ament-cmake-gen-version-h
+ - ros-kilted-ament-cmake-libraries
+ - ros-kilted-ament-cmake-python
+ - ros-kilted-ament-cmake-target-dependencies
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-cmake-version
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - cmake
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23168
+ timestamp: 1759310455644
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-auto-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 7d36c04270cc05783e324bbb8db94e8b0eb9c3e31960ef45ce96ff54ebb1033f
+ md5: 1e2317e986a13ba3317d4b2d6e6f1201
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-cmake-gmock
+ - ros-kilted-ament-cmake-gtest
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 28036
+ timestamp: 1759310565166
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-copyright-0.19.2-np2py312h31f38b3_14.conda
+ sha256: f28bec131639d03b23da4df063fe2ec781e1d496fae29c5c323fc721c7d1b2f2
+ md5: 7824ce4c5d5b9f1f74677556a686f490
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-copyright
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22556
+ timestamp: 1759310796509
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-core-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 42d5ae7c3bb4d3c8e7d22cb0b64334d274ad293c638d44296ddfd17f5fd6d540
+ md5: 8427fcc2bc26afc6387bd0115f5f4565
+ depends:
+ - catkin_pkg
+ - python
+ - ros-kilted-ament-package
+ - ros2-distro-mutex 0.12.* kilted_*
+ - cmake
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 44776
+ timestamp: 1759309988709
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-cppcheck-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 60123d833f1f06352370c62d12d1b396c42df4ad5f4a544353e7c475817d4373
+ md5: c33226238dd317e68dd9abb4d531f5c4
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-cppcheck
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24194
+ timestamp: 1759310838992
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-cpplint-0.19.2-np2py312h31f38b3_14.conda
+ sha256: fcee0a0eb0de258dee48ebc9da8609608f43ea516a9573950ba84fbb5395057f
+ md5: 8aa094c06618c80168014a9e577a272a
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-cpplint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23198
+ timestamp: 1759310867159
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-definitions-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 7a712b0bfae69e3cf7bab6c62408067414929041d31f397b18fb542985e19a8d
+ md5: af0947d07d7f41ba77ad0cbb83ab0f77
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21901
+ timestamp: 1759310115932
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-dependencies-2.7.3-np2py312h31f38b3_14.conda
+ sha256: ffa490ac1d0ddffc72b1a0f8b608de0461f35362e299adf2b4f74ab781ffbab3
+ md5: 36fd57ccf93b406b92f108f1f9c00183
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-libraries
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22812
+ timestamp: 1759310178470
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-include-directories-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 6550b746bd6696f9c8e8dbc2c3afeb6b2aab20d5a6b0b2ad4dcb6c225473912a
+ md5: 7bb1fe2bad3c9b4bf25084834d21e502
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22320
+ timestamp: 1759310111792
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-interfaces-2.7.3-np2py312h31f38b3_14.conda
+ sha256: c5696223a395d7e602440008a5b940809555d023dc7b29cd307c6d68857fa0ce
+ md5: 95b30aca364718936368582c7103247b
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-export-libraries
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22513
+ timestamp: 1759310159533
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-libraries-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 61fd213b35c4f16d97e2cb57eee1223fe2481cba6220bd0c7e9710de363a24ca
+ md5: b6a7d48258c020ce7702e3578105a315
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23851
+ timestamp: 1759310089240
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-link-flags-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 78d7853c47d9798826bbc597e2fffe7cdfda49e2572707df118b23bc5fcd2c86
+ md5: 38773b52ea4a4a07d18e23b3cbfbb1bb
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 21834
+ timestamp: 1759310107706
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-export-targets-2.7.3-np2py312h31f38b3_14.conda
+ sha256: fee7a5d10ca6fe9a7e56b2a7066a6bae3dbb096981ebc6fce42a54b077ca7e53
+ md5: fe6e58e38c45eca2b38ecf59c502ee3c
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-export-libraries
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22669
+ timestamp: 1759310186815
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-flake8-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 2ad24c10ad38f50b8f6c7da46462d6b47a745c5307404b233cd5ec21060ba044
+ md5: abacf69c75952174b525451d5c1049b7
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-flake8
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24219
+ timestamp: 1759310862883
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gen-version-h-2.7.3-np2py312h31f38b3_14.conda
+ sha256: fd8e51b5a68c7f228717a05a9a24e56b9a35fa4401c6d8c93018902542ada564
+ md5: dad988f521babe21dbdb644bfa79a9f8
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24634
+ timestamp: 1759310369249
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gmock-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 2f9cca54ed78a441292724d8607d53d4ec7f1ed60c187c7536e6a1d17405172b
+ md5: 1eab53054c54beaf69419148eb3c8cc7
+ depends:
+ - gmock
+ - python
+ - ros-kilted-ament-cmake-gtest
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-gmock-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24741
+ timestamp: 1759310376966
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-gtest-2.7.3-np2py312h31f38b3_14.conda
+ sha256: a14fc08bd9e1cc0b499d265c0f0c84ec002cb7e2f406eb8443886c3bbb07c677
+ md5: 693ad1a55c189b784dc41f95252f5e74
+ depends:
+ - gtest
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-gtest-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - gtest >=1.17.0,<1.17.1.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 24511
+ timestamp: 1759310272596
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-include-directories-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 5082021f5d3816f5b2f530601413ab86339787d1e40d3f21f7606e19dd4044a3
+ md5: f7ce3467cf35a0aad792b7be91deb5ea
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 21775
+ timestamp: 1759310119158
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-libraries-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 614051815762326781d485ccafe4733b29ee883a55e6bb1830a9e957cba6674b
+ md5: 59a0c875934a062dac20075088c5faaf
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 21474
+ timestamp: 1759310115135
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-lint-cmake-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 1d5a8ff385490a6b799ce92dde3a2d9193de318d0d622de8a1dc28a4033ec778
+ md5: 381804aaec3614dcc5c7b457750806fe
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-lint-cmake
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22242
+ timestamp: 1759310656926
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-pep257-0.19.2-np2py312h31f38b3_14.conda
+ sha256: a659f5b1b1d63556106a0c5ad3ea5cc5da27a728d9e32b2dd4e23cc9c0b5e783
+ md5: b086d5f55ce453bdf37a4e71f54059b1
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-pep257
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23010
+ timestamp: 1759310858362
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-pytest-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 9c78c02a4eb278b9a5a33e57d25d96b4760695505c818ab69224ebb30ea7dad6
+ md5: 5500d104b5648493a87b9b45d652c205
+ depends:
+ - pytest
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 24697
+ timestamp: 1759310288864
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-python-2.7.3-np2py312h31f38b3_14.conda
+ sha256: d3e66a6cdf9012e7c56021c206b07c5e9eaec1097131430304f60f42fa93d70c
+ md5: 30f7187aadea517d1146494467bc9665
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 24035
+ timestamp: 1759310103246
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-ros-0.14.3-np2py312h31f38b3_14.conda
+ sha256: 5cb9213909920a230e60fdc7dfdd1997c2db21eef3bed9a90175a0ee7eae0315
+ md5: e25a3e1a0a0b7044299aca5490a144da
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-cmake-gmock
+ - ros-kilted-ament-cmake-gtest
+ - ros-kilted-ament-cmake-pytest
+ - ros-kilted-ament-cmake-ros-core
+ - ros-kilted-rmw-test-fixture-implementation
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 31046
+ timestamp: 1759313333614
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-ros-core-0.14.3-np2py312h31f38b3_14.conda
+ sha256: 4323a97346acd931116a44a05cb76709970beda53df267d55525c16ff6182216
+ md5: 016877a4b66946c7fe8be4c7d65f7842
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-libraries
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26644
+ timestamp: 1759311214649
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-target-dependencies-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 2546cf8bb1c363e136bc3ee7490513b61c13e95e954ae50c558121c7ffb4feaa
+ md5: 07675de162127309194ef3d24b4868ae
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-include-directories
+ - ros-kilted-ament-cmake-libraries
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23726
+ timestamp: 1759310182651
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-test-2.7.3-np2py312h31f38b3_14.conda
+ sha256: c8262a85a40b5ad8daa206e4e62684238057cb783aed504b8ff56a935c943b83
+ md5: 4e8eeba9d33555a3a75a3bdebe773987
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 35917
+ timestamp: 1759310171028
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-uncrustify-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 51479f0e53cbc3fc00ecd32a6d9f91ff3ffda991462a066fb4c4649d7a798a94
+ md5: ce61617820d4235ec9ee18e786795e29
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-uncrustify
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23541
+ timestamp: 1759310853837
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-version-2.7.3-np2py312h31f38b3_14.conda
+ sha256: 1d0361d181e73dcebbdcc906428234546853e2839d96350d7c12eb0bae0f6d41
+ md5: 2f75a3741d942114263af08f9ad29592
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 21663
+ timestamp: 1759310103478
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cmake-xmllint-0.19.2-np2py312h31f38b3_14.conda
+ sha256: c1cb8ddd4d9c050b32574a8a0b869a5f509615680e83addba3c0f6d87c1fb019
+ md5: 12b04af15ca70b0450b9008472b63049
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ament-xmllint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22863
+ timestamp: 1759310840078
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-copyright-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 79ff1ca3603a57f36cc29b287a1dd8529774c0ececab7c56102e854ea4140ac1
+ md5: 5e0bc4382c60416d6ec9925d0f25011f
+ depends:
+ - importlib-metadata
+ - python
+ - ros-kilted-ament-lint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 66495
+ timestamp: 1759310354532
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cppcheck-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 02a66d81cfb70657694267e24d340935455ad9db62cacc4b929fba3f654eea80
+ md5: 0d735e1178ac2f1cfb50d011d083c14a
+ depends:
+ - cppcheck
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 29968
+ timestamp: 1759310683612
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-cpplint-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 406abdfd444b2054ac37abe804d73a19245a5dd65461027ba37d39fee08de267
+ md5: ab2da246a014f20a58b1004b874ee3a3
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 169132
+ timestamp: 1759310579688
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-flake8-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 34c77fc70ffde7f4938dff9b9cd3992375a43132ab3c369865a00dffe2fc2fd0
+ md5: c49bbd2075ce45dd98ab0437da85521d
+ depends:
+ - flake8
+ - flake8-builtins
+ - flake8-comprehensions
+ - flake8-docstrings
+ - flake8-import-order
+ - flake8-quotes
+ - python
+ - ros-kilted-ament-lint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 28173
+ timestamp: 1759310158077
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-index-cpp-1.11.0-np2py312h31f38b3_14.conda
+ sha256: af537a085cb2385c8fce62bd069ae996e03c172c09d97377c9ec9fb6aa1772da
+ md5: 02bbfa670f703638a72aef28d332b60d
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 46307
+ timestamp: 1759311536638
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-index-python-1.11.0-np2py312h31f38b3_14.conda
+ sha256: 6390244c4c5af3c6974a623625aa9793acc8d657e1f5238de14a9a1ef863e547
+ md5: 5ca3f188e7a1b156a94022991b4a27ee
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 30342
+ timestamp: 1759310670879
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 219c8cf79dd3dbd3ab4b606fd0c662cae54d3626d672cd4e57f11d4211332b1d
+ md5: 03136b50eab0f0424d6c7d1879ea7261
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 17521
+ timestamp: 1759310088415
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-auto-0.19.2-np2py312h31f38b3_14.conda
+ sha256: fb2f5502c08ba422a8a17e7b44ee1c4e695e33aefb1dbac96419a9190c06bb16
+ md5: cfc619d5f4f2a39327c0f942c403a813
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21874
+ timestamp: 1759310284831
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-cmake-0.19.2-np2py312h31f38b3_14.conda
+ sha256: bbd319c143202f8e707300384a9329ad8d9ea29df07ed9996d35ecf310b83aec
+ md5: ccf540c0176e1d71d5cd107967a14249
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 39556
+ timestamp: 1759310549075
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-lint-common-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 3c375ab20249d8ac5bdead4c764b6dea9689fc244ddb281c63451e68392cdfe3
+ md5: eb179678bb7ee1431bbfae04c0c53b63
+ depends:
+ - python
+ - ros-kilted-ament-cmake-copyright
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-cmake-cppcheck
+ - ros-kilted-ament-cmake-cpplint
+ - ros-kilted-ament-cmake-flake8
+ - ros-kilted-ament-cmake-lint-cmake
+ - ros-kilted-ament-cmake-pep257
+ - ros-kilted-ament-cmake-uncrustify
+ - ros-kilted-ament-cmake-xmllint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22168
+ timestamp: 1759310894021
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-package-0.17.2-np2py312h31f38b3_14.conda
+ sha256: 15e167a6b89e9ed7cf01ff318b804ae02f088cef8471684f8d4c3471f4a52ad4
+ md5: 7308f3713b5501ffe45b5df37815c928
+ depends:
+ - importlib-metadata
+ - importlib_resources
+ - python
+ - ros2-distro-mutex 0.12.* kilted_*
+ - setuptools
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 42860
+ timestamp: 1759309976878
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-pep257-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 21159cd020b47ee77a503fb3f056b085ce65d856fa477f34c2c33236ed2d9719
+ md5: 161b3846330a276fd04b1190dc433633
+ depends:
+ - pydocstyle
+ - python
+ - ros-kilted-ament-lint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26881
+ timestamp: 1759310258025
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-uncrustify-0.19.2-np2py312h31f38b3_14.conda
+ sha256: 304666d2acaa8fc15cc41d0751c13f6b42d0ccb5eb4d2752a29d23113d88c0e7
+ md5: e74ad16efc5044beb4bdd5d2f0b1889e
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-uncrustify-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 68203
+ timestamp: 1759310678260
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ament-xmllint-0.19.2-np2py312h31f38b3_14.conda
+ sha256: e72b73dba680d925aa7acc96c2e5af7a8ea5c322b3fb91aabdaaab7c5e380d72
+ md5: 002220547fe4ee68462dc622c69f7a17
+ depends:
+ - libxml2
+ - python
+ - ros-kilted-ament-lint
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 27906
+ timestamp: 1759310441032
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-angles-1.16.1-np2py312h31f38b3_14.conda
+ sha256: f6e87c7ab2caa5a2b61ed7b52e58e571f9d71fac7d10e7e4bc010c1826dc602d
+ md5: 54c8454b6a713512351de2e40360baa3
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 33817
+ timestamp: 1759310586944
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-backward-ros-1.0.8-np2py312h31f38b3_14.conda
+ sha256: 805c81229c5f48286532d653186dc15a75e0445e6069201d0db34af00d048a24
+ md5: 87418a6eb712153620b15b9d9c38226e
+ depends:
+ - elfutils
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - elfutils >=0.193,<0.194.0a0
+ license: BSD-3-Clause
+ size: 338815
+ timestamp: 1759310223167
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-bicycle-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 5fddfb28ea1296b1a456f9404e49b1c1d7e28f5d26c3322339033130b943183e
+ md5: b1a33fd568ba407ec771fd32b642db6f
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-steering-controllers-library
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 102614
+ timestamp: 1759317084183
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-builtin-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 507b42d73b4d9ce9259899bfb13e07a86fea50b92e7490ec891c5a252a2274f0
+ md5: 83c58dc63deca446446399c0413f3a72
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 77927
+ timestamp: 1759312158551
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-chained-filter-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: cdb74c88ce8644bfe14e42141bfe80ff267c38a05e4a05f54f90470acd42cb6d
+ md5: 4f230c4cf01c73e6be24a9698ca546b8
+ depends:
+ - python
+ - ros-kilted-controller-interface
+ - ros-kilted-filters
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 209976
+ timestamp: 1759316750277
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-class-loader-2.8.0-np2py312h31f38b3_14.conda
+ sha256: 1811acc37d8c97bd44c565c90a86c1dd6a64947a8a979bd4da9044d65a98ebf8
+ md5: 804ccaf6b67fa17ab4d7a34e44587a02
+ depends:
+ - console_bridge
+ - python
+ - ros-kilted-console-bridge-vendor
+ - ros-kilted-rcpputils
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 77876
+ timestamp: 1759313392814
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-common-interfaces-5.5.0-np2py312h31f38b3_14.conda
+ sha256: ac174074f4b9605cb790330eb0ce5a89bfec4e8ae0b8479d64e4bb8fd5c91ccf
+ md5: 8753e25ae443c5bbef0e9ef51901be68
+ depends:
+ - python
+ - ros-kilted-actionlib-msgs
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-diagnostic-msgs
+ - ros-kilted-geometry-msgs
+ - ros-kilted-nav-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-shape-msgs
+ - ros-kilted-std-msgs
+ - ros-kilted-std-srvs
+ - ros-kilted-stereo-msgs
+ - ros-kilted-trajectory-msgs
+ - ros-kilted-visualization-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 26471
+ timestamp: 1759313243215
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-composition-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 711e268f2588be464041bcc1297121d29a614340e7c18ea13a0816d8b45e6226
+ md5: 62f0d1cc14a71bd5f226eb2de3c69048
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-launch-ros
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 317098
+ timestamp: 1759314828391
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-composition-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 10647d6c676ecfa9434918ddd07672d3ecfa4e4cc8a5022445b5ce12b60f4cb6
+ md5: b3d3d477b97cf3a7c96eb95bb57e5d6c
+ depends:
+ - python
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 229108
+ timestamp: 1759312574886
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-console-bridge-vendor-1.8.0-np2py312h31f38b3_14.conda
+ sha256: 6feb63de78f1aef38bb4ba8685b79d6991e6dae504c346b12d9cc9d5719cc680
+ md5: aa266228f2335ce49a28407fb302d875
+ depends:
+ - console_bridge
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - console_bridge >=1.0.2,<1.1.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27414
+ timestamp: 1759311606913
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-control-msgs-6.5.0-np2py312h31f38b3_14.conda
+ sha256: aa9b611a79dc0ad19c31f39a105dddd771beeeed4e6208708b999957b0a85b3b
+ md5: 9b4a85d35336c4b121cbde720b24d9e0
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-diagnostic-msgs
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros-kilted-trajectory-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 1507140
+ timestamp: 1759312832551
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-control-toolbox-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 94b846b053beba57623a428fa31b1da771acf649849a6148fcce9585e73eecd7
+ md5: 5fd802567872d41dfe435c7bcf3a486d
+ depends:
+ - eigen
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-filters
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rcutils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-ros
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 276142
+ timestamp: 1759315287561
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-interface-5.6.0-np2py312h31f38b3_14.conda
+ sha256: f652b26884af18d6f844ede7b6565712f09670b595aa49be16b8cf672317aada
+ md5: 38c9ba82905352f83b2341a7311e6cde
+ depends:
+ - python
+ - ros-kilted-hardware-interface
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - fmt >=11.2.0,<11.3.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 120591
+ timestamp: 1759315492535
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-manager-5.6.0-np2py312h31f38b3_14.conda
+ sha256: fc73b37cb109b1e6c115b88dc5f7b03adbb8a9f533a0d3b73f1d2f002c8b6f2f
+ md5: d6edd86efd32a07d86c294d41362de12
+ depends:
+ - fmt
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-controller-manager-msgs
+ - ros-kilted-diagnostic-updater
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-launch
+ - ros-kilted-launch-ros
+ - ros-kilted-libstatistics-collector
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rcpputils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2-control-test-assets
+ - ros-kilted-ros2param
+ - ros-kilted-ros2run
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - fmt >=11.2.0,<11.3.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 630658
+ timestamp: 1759316281798
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-controller-manager-msgs-5.6.0-np2py312h31f38b3_14.conda
+ sha256: b8f7dc468daf442812442426978d57aaf05b8083ede7ee2e8ee42d8ac55b0942
+ md5: 9fd05c19fbcdd0966a1060b4e3298b82
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 555746
+ timestamp: 1759312534548
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-cv-bridge-4.1.0-np2py312h887a3b3_14.conda
+ sha256: 73b5fc8d77cf46cd04735e1670e9dbee9410a72f4097be539f596b9b8d9fabf2
+ md5: b296fd0b651d0874969e091bbc3901dc
+ depends:
+ - libboost-python
+ - libopencv
+ - numpy
+ - py-opencv
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-rclcpp
+ - ros-kilted-rcpputils
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libboost-python >=1.86.0,<1.87.0a0
+ - libopencv >=4.12.0,<4.12.1.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - py-opencv >=4.12.0,<5.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 212690
+ timestamp: 1759314115984
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-cyclonedds-0.10.5-np2py312h31f38b3_14.conda
+ sha256: ff2d6efe581c2c7257e527d5d02bb1205893cba7428db702c1046d1f56bd2eab
+ md5: e748294eb8a1bc67ed697cd5f253c3a1
+ depends:
+ - openssl
+ - python
+ - ros-kilted-iceoryx-binding-c
+ - ros-kilted-iceoryx-hoofs
+ - ros-kilted-iceoryx-posh
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - openssl >=3.5.3,<4.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 1193154
+ timestamp: 1759310381087
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-cpp-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 778f7fecb6ab4f7964ffaf0ac1049397209ef80bbc5bdd2d2f793d182666e1c8
+ md5: cc64cce71dd3fbca85d8a3728d9ea90c
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-launch-ros
+ - ros-kilted-launch-xml
+ - ros-kilted-rcl
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 1242054
+ timestamp: 1759314704839
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-cpp-native-0.36.2-np2py312h31f38b3_14.conda
+ sha256: afbdff8d4387f2c8e50ca257b8f2016d81a26400561a94c2ea018a5a690681c4
+ md5: 78cddddf626db5252ff3b2e921f1d861
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rmw-fastrtps-cpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 116608
+ timestamp: 1759314688071
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-demo-nodes-py-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 28333631f57549e079d443fe18fcc8becd5a612a2cbd0111f8202cf0df6edb20
+ md5: cd7ceaee6e6c3d81394e3c6500ba2308
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 43385
+ timestamp: 1759314132226
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-depthimage-to-laserscan-2.5.1-np2py312h887a3b3_14.conda
+ sha256: dcf4705c232f9a2b64fb1cb1978075b52568fb2a72bddf4ce792c3b139900556
+ md5: b108c3d35b2b8c8c0a8601df7cf1c264
+ depends:
+ - libopencv
+ - py-opencv
+ - python
+ - ros-kilted-image-geometry
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - py-opencv >=4.12.0,<5.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libopencv >=4.12.0,<4.12.1.0a0
+ - python_abi 3.12.* *_cp312
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.23,<3
+ - libopengl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 287014
+ timestamp: 1759314354434
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-desktop-0.12.0-np2py312h31f38b3_14.conda
+ sha256: 5b7951c1cae2d13862e0faa40e95cae9db8674511317fbb64defcd9fee45211b
+ md5: ad6dcf4c28471d6dce95d76b7a15f297
+ depends:
+ - python
+ - ros-kilted-action-tutorials-cpp
+ - ros-kilted-action-tutorials-py
+ - ros-kilted-angles
+ - ros-kilted-composition
+ - ros-kilted-demo-nodes-cpp
+ - ros-kilted-demo-nodes-cpp-native
+ - ros-kilted-demo-nodes-py
+ - ros-kilted-depthimage-to-laserscan
+ - ros-kilted-dummy-map-server
+ - ros-kilted-dummy-robot-bringup
+ - ros-kilted-dummy-sensors
+ - ros-kilted-examples-rclcpp-minimal-action-client
+ - ros-kilted-examples-rclcpp-minimal-action-server
+ - ros-kilted-examples-rclcpp-minimal-client
+ - ros-kilted-examples-rclcpp-minimal-composition
+ - ros-kilted-examples-rclcpp-minimal-publisher
+ - ros-kilted-examples-rclcpp-minimal-service
+ - ros-kilted-examples-rclcpp-minimal-subscriber
+ - ros-kilted-examples-rclcpp-minimal-timer
+ - ros-kilted-examples-rclcpp-multithreaded-executor
+ - ros-kilted-examples-rclpy-executors
+ - ros-kilted-examples-rclpy-minimal-action-client
+ - ros-kilted-examples-rclpy-minimal-action-server
+ - ros-kilted-examples-rclpy-minimal-client
+ - ros-kilted-examples-rclpy-minimal-publisher
+ - ros-kilted-examples-rclpy-minimal-service
+ - ros-kilted-examples-rclpy-minimal-subscriber
+ - ros-kilted-image-tools
+ - ros-kilted-intra-process-demo
+ - ros-kilted-joy
+ - ros-kilted-lifecycle
+ - ros-kilted-logging-demo
+ - ros-kilted-pcl-conversions
+ - ros-kilted-pendulum-control
+ - ros-kilted-pendulum-msgs
+ - ros-kilted-quality-of-service-demo-cpp
+ - ros-kilted-quality-of-service-demo-py
+ - ros-kilted-ros-base
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-common-plugins
+ - ros-kilted-rviz-default-plugins
+ - ros-kilted-rviz2
+ - ros-kilted-teleop-twist-joy
+ - ros-kilted-teleop-twist-keyboard
+ - ros-kilted-tlsf
+ - ros-kilted-tlsf-cpp
+ - ros-kilted-topic-monitor
+ - ros-kilted-turtlesim
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23472
+ timestamp: 1759319671269
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diagnostic-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 40cd3546e8dca8d233c6126752e5ccf1f3a0b2dc003ce2bdc3ccaff225f47a13
+ md5: 7a08e2ae465d0f2c2a9e6c8202f424c1
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 211272
+ timestamp: 1759312649373
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diagnostic-updater-4.3.6-np2py312h31f38b3_14.conda
+ sha256: 19d6a46bb7dd6a9a2962e1aac3adb7622df8e6a434e41a8142974fdc97b2c581
+ md5: d88ec46d33b24d0bf6bcb5f3e8a10bb8
+ depends:
+ - python
+ - ros-kilted-diagnostic-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 185072
+ timestamp: 1759314637403
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-diff-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 24817811fbd5697472c03593f25b64797b196d42f7a6c91c4279347eae01ccc2
+ md5: a2c747d9c62973365737521eacf65339
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-toolbox
+ - ros-kilted-controller-interface
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rcpputils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 319380
+ timestamp: 1759316634832
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-map-server-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 8b78da866620aa8eb48a6a6ba800c5b9f0f6c1835dce89a58b64febd0a5be6f0
+ md5: adfe5f994ddda209323407ac8d36433e
+ depends:
+ - python
+ - ros-kilted-nav-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 86521
+ timestamp: 1759314152564
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-robot-bringup-0.36.2-np2py312h31f38b3_14.conda
+ sha256: c34b01fe518bc8f1c283c5a3b2f7ce4846c5cffc00684a8c10a4a86feb6a9670
+ md5: 2619cbb76d803c07178ace93ea1c1928
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-dummy-map-server
+ - ros-kilted-dummy-sensors
+ - ros-kilted-launch
+ - ros-kilted-launch-ros
+ - ros-kilted-robot-state-publisher
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 30295
+ timestamp: 1759315259846
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-dummy-sensors-0.36.2-np2py312h31f38b3_14.conda
+ sha256: be99769bc2ea7bc8eca9af85ee4e54cd96640199ebd87124e09bc0b441269088
+ md5: b6cc895712d9f1676c16284ed6e9223f
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 119039
+ timestamp: 1759314138503
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-effort-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 5905d3b1bfc422ce0359cd79ac8be31bddfb61d8cc51fe80548ed12aa3615332
+ md5: 033e93b79c1b7183bb4bafe8191f16d8
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-forward-command-controller
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 81469
+ timestamp: 1759317053107
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-eigen3-cmake-module-0.4.0-np2py312h31f38b3_14.conda
+ sha256: 8ec120467ada7c3bb14ba1366f5f42c7ec21850a0a527dd0f2d23e456fec4329
+ md5: d76bb4b688d63b15273a83463790abf2
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23403
+ timestamp: 1759310868002
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-example-interfaces-0.13.0-np2py312h31f38b3_14.conda
+ sha256: 2f9442a44d99995d42be35f50876ceedbe0da3a7bb8abe9353361c62589a98fa
+ md5: f0de882b741f3f9512626e3c9ee29e72
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 536161
+ timestamp: 1759312356219
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-action-client-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 7c670ec26fcb22e35c4126e3aab97b9f09ce75360b30d21c924aa4d754cce375
+ md5: c191da7ad842456416636272a9770505
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 155206
+ timestamp: 1759314339700
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-action-server-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 9207c5349267f9ae40bef3362a32d5de8c910c68a465330b48b83987dbef7d04
+ md5: 6f2d67475370c290259e1bdfd826621e
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 88774
+ timestamp: 1759314328282
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-client-0.20.5-np2py312h31f38b3_14.conda
+ sha256: ecc35ba85bd1eced5c66e6dee39356180e738eb2cb6d1bf1835d2ceaf689573d
+ md5: de2a0510641dcce9cc65014885a41443
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 66333
+ timestamp: 1759314172012
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-composition-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 2a1346dd06bfe7d030f57da61e5c07531629ab3059007356c74d28c2e8cd09de
+ md5: 8b589041ae0e6788aa5cf0cde57b2e0b
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 186283
+ timestamp: 1759314299530
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-publisher-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 19fc329f5a32c1f24760fe71e016d650ad862ca3e3e63638b71593e8f8b37187
+ md5: 9e7a5b805245d0e3ae824ce1b4b1a028
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 198815
+ timestamp: 1759314151720
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-service-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 59966b5f14d0063bdfb8fa82e22c58d4c763e020955e072c77c9b456a1e44cd8
+ md5: 59e434dbee4c7d3129068d575503204e
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 58889
+ timestamp: 1759314140897
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-subscriber-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 54061f49f3df0f0b294de388993213b4de6571dd75423f98afd2027afbb0d961
+ md5: 3094c41da71aa775425d46b08541f283
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 569808
+ timestamp: 1759314443454
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-minimal-timer-0.20.5-np2py312h31f38b3_14.conda
+ sha256: ddcce566186320c49c43d9d3c602944d72af51345610f2b0e836175a2f5366e9
+ md5: 4f78c1527bf7d62dae2e8607816a5ea6
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 51058
+ timestamp: 1759314131577
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclcpp-multithreaded-executor-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 381ef9bbf5f034dec2ce759f9cde5316212f13328afa70adb608ef27bbf57969
+ md5: 84e12eaf4581a20eeb57715ebeb76a70
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 166062
+ timestamp: 1759314105613
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-executors-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 98ff2fed428eaee1b22251ab41b66b35e3e5f3299c387cdc030e6eee737e0056
+ md5: fed6fc45e9723bd5785ffca75db165fa
+ depends:
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 27757
+ timestamp: 1759314125115
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-action-client-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 080653587d58ee469a438b3b639d66ad8f8a0fef3920e3c77ab09469015161ed
+ md5: 920a39ae5e509bd12ca67a89aaf32bab
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 26930
+ timestamp: 1759314121204
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-action-server-0.20.5-np2py312h31f38b3_14.conda
+ sha256: d5ae9123a39205725a2a63bf25801b4932a60d48c2e82b060a46505b2d230b53
+ md5: 66f32874f7f699c3a7bb01be4bc9bce4
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 28031
+ timestamp: 1759314117341
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-client-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 78cb78fd10ad091490d9ec48b153d0114b021f0ed1c8ecf6810f60b41c2fbadc
+ md5: dfa6e27c2e45edd0a65f6a579eb4381a
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 24162
+ timestamp: 1759314113156
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-publisher-0.20.5-np2py312h31f38b3_14.conda
+ sha256: a46bd9b752dcd0bc04f372f245d3207d729ad3779cce8cc6f701d32ab9c781c2
+ md5: b2a31f2b9579fdfe8d03e30c2e98bbf3
+ depends:
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24383
+ timestamp: 1759314102090
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-service-0.20.5-np2py312h31f38b3_14.conda
+ sha256: 0905df268970e62fb677b3501cab65cfbdc9c30b6546af50a4e1fdf8936b024f
+ md5: 10b2da24fc170a9db71b9c763b37b097
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21639
+ timestamp: 1759314150148
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-examples-rclpy-minimal-subscriber-0.20.5-np2py312h31f38b3_14.conda
+ sha256: d587ccb07129edb244a05e8529115e25c38660d90d4e92c51b31826cf0b5bab7
+ md5: f8874ef445af2175b55ced5b3baccebe
+ depends:
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 22189
+ timestamp: 1759314143804
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-fastcdr-2.3.0-np2py312h31f38b3_14.conda
+ sha256: e230223ee52bc9e79513ac11aafb4221f0d9ccbae9c3263b93312b1eb931b135
+ md5: d49e20a0ffea33e54426f395ec5aeee8
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 88929
+ timestamp: 1759310549615
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-fastdds-3.2.2-np2py312h31f38b3_14.conda
+ sha256: 52a03e592d1fd974d0aacf95b4a01957bda6b4489cc37d41d7eda121f9eb08fc
+ md5: 330a79d74a4959daa6c4a99dbdbe4093
+ depends:
+ - openssl
+ - python
+ - ros-kilted-fastcdr
+ - ros-kilted-foonathan-memory-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - tinyxml2
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - openssl >=3.5.3,<4.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ license: BSD-3-Clause
+ size: 4835994
+ timestamp: 1759311189808
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-filters-2.2.2-np2py312h31f38b3_14.conda
+ sha256: d04de568f1b01e2285316702e3fc6a1009e8dc7adc04958c02965c22e4aef209
+ md5: aec0a98296a4ab89f3c1ebbbc9e4c3e1
+ depends:
+ - libboost-devel
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ license: BSD-3-Clause
+ size: 134759
+ timestamp: 1759314149714
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-foonathan-memory-vendor-1.3.1-np2py312h31f38b3_14.conda
+ sha256: b1e731c5e31966e1eb431ace17a10cc7e47f6f5262fb45448f39ce20ef41533e
+ md5: c6a428ca8ce83ba4fef28cc4ccf582a6
+ depends:
+ - foonathan-memory
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - cmake
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - foonathan-memory >=0.7.3,<0.7.4.0a0
+ license: BSD-3-Clause
+ size: 19309
+ timestamp: 1759310914840
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-force-torque-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: f6a9e33ba50ba4a0438a9e5fbf132b38bb43d50674ff102dfe536abd530b9dd9
+ md5: 355dd7b883f0a3f62cc690424103fc5e
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-filters
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 274622
+ timestamp: 1759316692885
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-forward-command-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: cb2594d498ed13b44aa997ef5cace2e267ae315032523fb09584d93aa3ebd482
+ md5: 0936068d3448d4dc095405e1648a2c2f
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 230038
+ timestamp: 1759316638095
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-generate-parameter-library-0.5.0-np2py312h31f38b3_14.conda
+ sha256: 29470c0b412720cd0db8a255656dffa8ef02bf1354dcef86a1e1c0fa91d844d2
+ md5: 688baeba94721b6485930e99a1b016e9
+ depends:
+ - fmt
+ - python
+ - ros-kilted-generate-parameter-library-py
+ - ros-kilted-parameter-traits
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rsl
+ - ros-kilted-tcb-span
+ - ros-kilted-tl-expected
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - fmt >=11.2.0,<11.3.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 49354
+ timestamp: 1759314601831
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-generate-parameter-library-py-0.5.0-np2py312h31f38b3_14.conda
+ sha256: 4a21d811fe95d8d655eb969ee44b8ba8a8a17a00623f1a60edf13cefd3ceaf01
+ md5: 0ac983029df650344aeb619197ed22ea
+ depends:
+ - jinja2
+ - python
+ - pyyaml
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - typeguard
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 70828
+ timestamp: 1759310462819
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-geometry-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: b049429ab24887be8d0136a3eb1a93dd040f241443f1f5ee593bcee60194a3d6
+ md5: d078d7e4092b717b87fdb82fa11eb7d3
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 377094
+ timestamp: 1759312590607
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-geometry2-0.41.2-np2py312h31f38b3_14.conda
+ sha256: b155ba9192f805f0f2efba35c60bc030394fbe06513463202292b28f6d565bc5
+ md5: fa7afadc40498e940a7208f1284ca3ca
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-bullet
+ - ros-kilted-tf2-eigen
+ - ros-kilted-tf2-eigen-kdl
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-kdl
+ - ros-kilted-tf2-msgs
+ - ros-kilted-tf2-py
+ - ros-kilted-tf2-ros
+ - ros-kilted-tf2-sensor-msgs
+ - ros-kilted-tf2-tools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22313
+ timestamp: 1759315327350
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gmock-vendor-1.15.1-np2py312h31f38b3_14.conda
+ sha256: f2f050dbc1e7f053026e51e607d53cbb64def69c07e38db178970755718bcd1c
+ md5: 8223eeb1fb5247b279a2cbd4a9edb7ca
+ depends:
+ - python
+ - ros-kilted-gtest-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 122289
+ timestamp: 1759310174697
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gpio-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: fc6d3016a6a118c9b731e1bd1aa5d48f371f8bcbd33bda6902b2fded164bfc95
+ md5: 70e6968008d8fe21d59bd5afbf5832b8
+ depends:
+ - python
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 249326
+ timestamp: 1759316725549
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gps-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 7bff041bd7a2ceebff02f8a7eb5ebd86b949fcbc8f85f94d590fe07fa0df7709
+ md5: 4b3c6b36150f99080b629637e7326a7d
+ depends:
+ - python
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 153172
+ timestamp: 1759316707443
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gtest-vendor-1.15.1-np2py312h31f38b3_14.conda
+ sha256: 1c221c912c2f841fd386c6e800dc0eb611d0ddb301348d608148a6ba55374e00
+ md5: 10d812ffa7281e3be081ab50d5e6bc27
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 208724
+ timestamp: 1759310110824
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-cmake-vendor-0.2.2-np2py312h31f38b3_14.conda
+ sha256: c8611f5208c2885b54cd16d6e540379f9ae894159e238ae0c755dc3f9a0ba875
+ md5: f82aaefcb8b4e9a42712c74af56f6af1
+ depends:
+ - gz-cmake4
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libgz-cmake4 >=4.2.0,<5.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23910
+ timestamp: 1759310919801
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-math-vendor-0.2.5-np2py312h31f38b3_14.conda
+ sha256: 9a137dcf2d6751125c1f9d871294f2f5ddea8c2a8457face4df10db85f193bbf
+ md5: 771a7e841cfadd86b4f94278ae059433
+ depends:
+ - eigen
+ - gz-math8
+ - python
+ - ros-kilted-gz-cmake-vendor
+ - ros-kilted-gz-utils-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libgz-math8 >=8.2.0,<9.0a0
+ license: BSD-3-Clause
+ size: 27837
+ timestamp: 1759311747240
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-tools-vendor-0.1.3-np2py312h31f38b3_14.conda
+ sha256: 75fead82f6241f9d7043bc946dd70d357d79e077ca9993594fac60a06d8061ea
+ md5: 8fdd246781b94eb63ffcd96ad3635297
+ depends:
+ - gz-tools2
+ - python
+ - ros-kilted-gz-cmake-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - ruby
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - libgz-tools >=2.0.3,<3.0a0
+ license: BSD-3-Clause
+ size: 27552
+ timestamp: 1759311191475
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-gz-utils-vendor-0.2.2-np2py312h31f38b3_14.conda
+ sha256: de337e8a251dbd55118c55d7ec79d00d56bf2109ce5a7ebdaab9e2bd3847ab1b
+ md5: 7df7add25a818260ec0af9218948fe6a
+ depends:
+ - gz-utils3
+ - python
+ - ros-kilted-gz-cmake-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-spdlog-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - libgz-utils3 >=3.1.1,<4.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 25885
+ timestamp: 1759311573227
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-hardware-interface-5.6.0-np2py312h31f38b3_14.conda
+ sha256: fea9e284218b675facbd6c814a03066903a1ecebbad3be50dc051a4f8a6aaa90
+ md5: 7b780077bc9f25629827bc3726dfd552
+ depends:
+ - fmt
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-joint-limits
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-pal-statistics
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-sdformat-urdf
+ - ros-kilted-tinyxml2-vendor
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - fmt >=11.2.0,<11.3.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 426627
+ timestamp: 1759315190195
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-binding-c-2.0.5-np2py312h31f38b3_14.conda
+ sha256: fb5ca1b0e68a9d2255f78fa35589840627fd90ad0dba44a0203bafaaa4bb9770
+ md5: 1153d03f8633c67ff4eaacca65b684ab
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 90813
+ timestamp: 1759310272385
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-hoofs-2.0.5-np2py312h31f38b3_14.conda
+ sha256: 5ea3ceb76ace1d89bb196697f506742ec2ade85cc2b29acdf6f6ceff95fbd424
+ md5: 6d0c0ae3d14e5ed30db042e1749b351a
+ depends:
+ - libacl
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libacl >=2.3.2,<2.4.0a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 260866
+ timestamp: 1759310124823
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-iceoryx-posh-2.0.5-np2py312h31f38b3_14.conda
+ sha256: 22a801bc545035908a1b4d8d2a36de83774e5ebcdd78c181a83d9aa6369d75a8
+ md5: b092f5cc27716b3258ca1ee90a3139da
+ depends:
+ - python
+ - ros-kilted-iceoryx-hoofs
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 567381
+ timestamp: 1759310179784
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-geometry-4.1.0-np2py312h887a3b3_14.conda
+ sha256: c4ad3b0afaad12db24794010fb650802d295621f721d6cb9bfa37421e513ef28
+ md5: d7c004f4b25d96592e810f63006890fe
+ depends:
+ - deprecated
+ - libopencv
+ - py-opencv
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - py-opencv >=4.12.0,<5.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopencv >=4.12.0,<4.12.1.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 90781
+ timestamp: 1759313412034
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-tools-0.36.2-np2py312h887a3b3_14.conda
+ sha256: a4473fcee0da8c3b92605b46a72229c09b71d6bb628d7f3e3d62436192ff4fca
+ md5: 7bb01255ae5af7399c06fae47c90bb73
+ depends:
+ - libopencv
+ - libopencv * *qt6*
+ - py-opencv
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - xorg-libxext >=1.3.6,<2.0a0
+ - py-opencv >=4.12.0,<5.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libopencv >=4.12.0,<4.12.1.0a0
+ - libgl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 299568
+ timestamp: 1759314662647
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-image-transport-6.1.2-np2py312h31f38b3_14.conda
+ sha256: 75c99546c408b79e28904965aa956e14fb49c5fc40ad47030c41abccafcbc63b
+ md5: d456b2ce4d4950e6c5198aa53d8ecd3d
+ depends:
+ - python
+ - ros-kilted-message-filters
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 561832
+ timestamp: 1759314652820
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-imu-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: c0b4bdf6f89171bddc259de13b9d55e2679da18db2a983c978083d782d837630
+ md5: 952666e192e64910127042bcdce74c69
+ depends:
+ - eigen
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 166124
+ timestamp: 1759316686937
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-interactive-markers-2.7.0-np2py312h31f38b3_14.conda
+ sha256: f664cacc1db1878307e4cf1616676513cd0db711175b6cc9d965c2af7a53ab4a
+ md5: 176c350a7e6ab7dde7495d4669ad436f
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-rclpy
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-visualization-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 312894
+ timestamp: 1759315317503
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-intra-process-demo-0.36.2-np2py312h887a3b3_14.conda
+ sha256: 2a229e39e49cc8c86d2561386ba8230f34242bc3622af31158957f66553ccd52
+ md5: a83ae661fa024d1dca61d74040f3d94a
+ depends:
+ - libopencv * *qt6*
+ - libopencv
+ - py-opencv
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libopencv >=4.12.0,<4.12.1.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - py-opencv >=4.12.0,<5.0a0
+ license: BSD-3-Clause
+ size: 498876
+ timestamp: 1759314603759
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-limits-5.6.0-np2py312h31f38b3_14.conda
+ sha256: 83eb02a706815f2f0d47b8512488091e4283b7de8dd6cbb3443eda4d2b5a9b94
+ md5: 7975d201220fb1291845b6a34b936751
+ depends:
+ - fmt
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-trajectory-msgs
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 145977
+ timestamp: 1759314939094
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-state-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 889e981ad6a6b6751a48cc583cccb09b23d2af0a192bb46b3f1b61736dec3728
+ md5: 3ae02a91e504952aacb8da6d8c6a5662
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 186485
+ timestamp: 1759316834215
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joint-trajectory-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: c95bf19b10c335c8fa34c84f0c4289a408d94e45febfb2245bae1e2c9fb8cbce
+ md5: a69be84d1cf924d3aa704fb7d71eaf88
+ depends:
+ - python
+ - ros-kilted-angles
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-control-toolbox
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-rsl
+ - ros-kilted-tl-expected
+ - ros-kilted-trajectory-msgs
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 436490
+ timestamp: 1759316663851
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-joy-3.3.0-np2py312h31f38b3_14.conda
+ sha256: 2367a40a1ec948bbfd48ba233afcd3822412422c6705771414ef2aa3cca40179
+ md5: 539ffc2cbc8ce181c260196fbbeac7c0
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sdl2-vendor
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 281102
+ timestamp: 1759314301425
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-kdl-parser-2.12.1-np2py312h31f38b3_14.conda
+ sha256: 4bca899d0302a0574f67979c246955e8b41468bea366e1a98a74f26c294d0372
+ md5: 495f8e0c263c2148b323c4c7bdff333d
+ depends:
+ - python
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-urdf
+ - ros-kilted-urdfdom-headers
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 50171
+ timestamp: 1759313879544
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-keyboard-handler-0.4.0-np2py312h31f38b3_14.conda
+ sha256: 5788751b98d597c473c9d067b8870af9593d8836cc2f1a831fdbb0564c74d11b
+ md5: 1fb6d9db77da0d249d5a89516cdd1870
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 56989
+ timestamp: 1759311219049
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-kinematics-interface-2.2.0-np2py312h31f38b3_14.conda
+ sha256: d3842b6f7bdd0372abe9068eaf2969daf3cfa68a4d4849d15d6508f61e6b047e
+ md5: fba0571fbe402a885da2d73a1b0020a1
+ depends:
+ - eigen
+ - python
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 46333
+ timestamp: 1759314566979
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-laser-geometry-2.10.1-np2py312h31f38b3_14.conda
+ sha256: 5da60d8223860623a2ad89fcb36f5582271515b4f2527986e96674b3cf4832ff
+ md5: 872565d9309235254e2e11407c341a1d
+ depends:
+ - eigen
+ - numpy
+ - python
+ - ros-kilted-eigen3-cmake-module
+ - ros-kilted-rclcpp
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-sensor-msgs-py
+ - ros-kilted-tf2
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 63141
+ timestamp: 1759314144741
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-3.8.3-np2py312h31f38b3_14.conda
+ sha256: f1c060dcbf10a361a715d0246b9a069fb07d3d675f4eb88ff4d51ae3751e12b2
+ md5: f6974d1f562e6689da563b42a054eb13
+ depends:
+ - importlib-metadata
+ - lark-parser
+ - python
+ - pyyaml
+ - ros-kilted-ament-index-python
+ - ros-kilted-osrf-pycommon
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 245153
+ timestamp: 1759310808134
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-ros-0.28.3-np2py312h31f38b3_14.conda
+ sha256: 58f007a0e6863c522d07c9d49af2e45fdfff34ea67d69441c3a1fb4536c7c183
+ md5: 9432655147e0bfde6d3ee7ed4274a798
+ depends:
+ - importlib-metadata
+ - python
+ - pyyaml
+ - ros-kilted-ament-index-python
+ - ros-kilted-composition-interfaces
+ - ros-kilted-launch
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-osrf-pycommon
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 113626
+ timestamp: 1759314125555
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-3.8.3-np2py312h31f38b3_14.conda
+ sha256: 8a522b33c221eaddb8798297b1cd3c3e8dbc4fd8b921c8f37f19c1e3fdd36b94
+ md5: ada35fae00bd4e4f246ad5715c543f37
+ depends:
+ - pytest
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-launch
+ - ros-kilted-launch-xml
+ - ros-kilted-launch-yaml
+ - ros-kilted-osrf-pycommon
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 116031
+ timestamp: 1759310908311
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-ament-cmake-3.8.3-np2py312h31f38b3_14.conda
+ sha256: 2e19da91bc4138b327389bfdc568a7fc51a22e7c0a15022cd5f0e0786e65c43a
+ md5: d38cb714007e12a6707bc9b5a4572faf
+ depends:
+ - python
+ - ros-kilted-ament-cmake-test
+ - ros-kilted-launch-testing
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26942
+ timestamp: 1759311209153
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-testing-ros-0.28.3-np2py312h31f38b3_14.conda
+ sha256: 55f98582b00e53d963b2d677fd85b24e646fc54920ca17480b875d55588f1778
+ md5: 7f1c493bf675ce95e5f44009bd81664c
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-launch-ros
+ - ros-kilted-launch-testing
+ - ros-kilted-rclpy
+ - ros-kilted-rmw-test-fixture-implementation
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 55903
+ timestamp: 1759314313076
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-xml-3.8.3-np2py312h31f38b3_14.conda
+ sha256: 409cd7ca09d16bd238a89ebaa58cfa592672d46f6c5a3c673ade989dcb65b221
+ md5: e33efedee9d112bb07e0211866191644
+ depends:
+ - python
+ - ros-kilted-launch
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 25587
+ timestamp: 1759310857904
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-launch-yaml-3.8.3-np2py312h31f38b3_14.conda
+ sha256: 5e148385b365822c4b4793c42db35d5f5fcbd122c353e01bf99845ff6798aab8
+ md5: 029c5a50aab99cd6ddb94e4c739d3e47
+ depends:
+ - python
+ - ros-kilted-launch
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26139
+ timestamp: 1759310851520
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libcurl-vendor-3.7.0-np2py312h31f38b3_14.conda
+ sha256: 88b69b5d365d71c09f4e12c0cd8c9c3f7afc8982e49e12525e56064070914a49
+ md5: fb216f0c74a2cc79631999f1aca8071b
+ depends:
+ - libcurl
+ - pkg-config
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - libcurl >=8.14.1,<9.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23759
+ timestamp: 1759310586289
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-liblz4-vendor-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 59b8f3556a16870514cdce512208b98c61e23a90f0c3b17b64357e3118b9e419
+ md5: 351689f9adb482337769a0b4b098f632
+ depends:
+ - lz4
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24071
+ timestamp: 1759310550736
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libstatistics-collector-2.0.1-np2py312h31f38b3_14.conda
+ sha256: 9ef1dc270c0691230100ccb859b7294562a9d43065455e9adb2d1247e8d1a8f7
+ md5: bdae1170bc009c49ba70165b1db67096
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-rcl
+ - ros-kilted-rcpputils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-statistics-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 58445
+ timestamp: 1759313836879
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-libyaml-vendor-1.7.1-np2py312h31f38b3_14.conda
+ sha256: 601ebbc55856f5987ff5df6c138fe9d1243769741a2ef43d063f18a0e2573dad
+ md5: 78d8f3f45c2510cd73051b88cf8423f2
+ depends:
+ - pkg-config
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - yaml
+ - yaml-cpp
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - numpy >=1.23,<3
+ - yaml >=0.2.5,<0.3.0a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 29459
+ timestamp: 1759311601029
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-lifecycle-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 555f0c0b9e9c09ac0f012870c86b5a145e20056d9632a73375d363b9fafb477e
+ md5: e906165d50043972b9433dfe04bafad6
+ depends:
+ - python
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 264925
+ timestamp: 1759315237959
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-lifecycle-msgs-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 1b8c5e763d2c3233fcea928cd8462fed3ee07e13051a55549a4610b63f737955
+ md5: 0032a0605bcb311141d4bd2d44eebd4f
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 267882
+ timestamp: 1759312305358
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-logging-demo-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 0b26eb786f52218a331375fda5bd6247ebcf86b2332d88ddfc95f7d594ea80e3
+ md5: f906eccea8f4592f64a6d0333346a258
+ depends:
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 214873
+ timestamp: 1759314771330
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-map-msgs-2.5.0-np2py312h31f38b3_14.conda
+ sha256: a0f5ff0af2971a0bb9fb96c8762db0d9635196760af4c91af5fe0459c0467320
+ md5: 4ef448f4b5239838a352266f14ed5c2c
+ depends:
+ - python
+ - ros-kilted-nav-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 346732
+ timestamp: 1759312815970
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-mcap-vendor-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 11a6a4d8bd5c8c690364fe76571ea1d2079ccc65000c597be628ca8119b5a20e
+ md5: 2cc632690fe5be4503085ecfa134c02e
+ depends:
+ - python
+ - ros-kilted-liblz4-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-zstd-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 174333
+ timestamp: 1759310669297
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-mecanum-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 149dc442fc1a83d604f30a844dcdb0b6343dd52e7881ee767987efd8ec125c21
+ md5: 44f4e4a04f8ee9da6c6b26a4c738371d
+ depends:
+ - python
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rcpputils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 298060
+ timestamp: 1759316637505
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-message-filters-7.1.2-np2py312h31f38b3_14.conda
+ sha256: 955d721a9555e99619c9fec13b211d5d4bcd76120a33ab5d6ef82e82e3326e90
+ md5: 3a901a270d0b15a9826529d18ff865cd
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclpy
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 86500
+ timestamp: 1759314328833
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-motion-primitives-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 643677afe07fb6a1649ae5b9d1ca06a53b731b2b25fc2d09207de86bf4104251
+ md5: 134bf56b5b697966799251943818c6fe
+ depends:
+ - python
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 161125
+ timestamp: 1759316751636
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-nav-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 014ad1ece10651449f62cac9ae98a789598ed7a11fc7780228e8760c3a27dcfe
+ md5: 0c7c17f432d25d215d522d4340c0a9a2
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 320059
+ timestamp: 1759312705042
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-omni-wheel-drive-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 7b8527d0974cf97c2806caaa629222a5738bbce52058d2b724a50a5e7b973d8f
+ md5: 4cb216119a16c0a1705cc0085001cb8a
+ depends:
+ - eigen
+ - python
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 394330
+ timestamp: 1759316721631
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-orocos-kdl-vendor-0.7.1-np2py312h31f38b3_14.conda
+ sha256: cb8e66be4d8d0368f63c8010d2e05e4396c4cf75d1e01992cede5281c0d9c22b
+ md5: 96a91044a4d54702a5dbcf69f4defd1e
+ depends:
+ - eigen
+ - orocos-kdl
+ - python
+ - ros-kilted-eigen3-cmake-module
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - orocos-kdl >=1.5.1,<1.6.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27848
+ timestamp: 1759311210262
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-osrf-pycommon-2.1.6-np2py312h31f38b3_14.conda
+ sha256: 79a689a3ab80e40cf5e9f81cd2ff9cc14019ad5337f40529a263d5dd40d53c78
+ md5: f77f054b05f31a42f318d83ecd2bbc1b
+ depends:
+ - importlib-metadata
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 64454
+ timestamp: 1759310086635
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pal-statistics-2.7.0-np2py312h31f38b3_14.conda
+ sha256: 0e5300c0e6f0ec788337522d47a8dc53607bdd77fae6a589e198ea90d19ad190
+ md5: a8a80cdac02f4f6555bc7d4b95722b9b
+ depends:
+ - libboost-devel
+ - python
+ - ros-kilted-pal-statistics-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - libboost >=1.86.0,<1.87.0a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 169964
+ timestamp: 1759314336255
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pal-statistics-msgs-2.7.0-np2py312h31f38b3_14.conda
+ sha256: f2109dd54cf458d7e573a43f2a6c8112a4444c27782ffe8fe6ae726299741d7b
+ md5: 0d46c2061c1ebdf2bcda3688ba4c360f
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 125927
+ timestamp: 1759312521793
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-parallel-gripper-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 5b982d144f3b4d0dd7a769d0877c7d06adec46fb5add7c00d4c7d43b0c6bfec9
+ md5: fdbb7af3a766bd27539b4e8867e82efd
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-control-toolbox
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 163861
+ timestamp: 1759316702787
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-parameter-traits-0.5.0-np2py312h31f38b3_14.conda
+ sha256: 7623f4b1260b0a6c1225351a735a8a25cbc328ecd0e612eea152c0db17bd334a
+ md5: a9a5bebdd7d27118ed93e24e40ac1c69
+ depends:
+ - fmt
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rsl
+ - ros-kilted-tcb-span
+ - ros-kilted-tl-expected
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - fmt >=11.2.0,<11.3.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49800
+ timestamp: 1759314297848
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pcl-conversions-2.7.3-np2py312h43d1557_14.conda
+ sha256: 5e9762251bbe9852649a3764b15f47394127839daadb599004e7dc0d810bb412
+ md5: f0f46dccf9b4d2a8ebba0ed974f9e411
+ depends:
+ - eigen
+ - libboost-devel
+ - pcl
+ - python
+ - ros-kilted-message-filters
+ - ros-kilted-pcl-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - vtk-base
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - pcl >=1.15.0,<1.15.1.0a0
+ license: BSD-3-Clause
+ size: 70496
+ timestamp: 1759314743397
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pcl-msgs-1.0.0-np2py312h31f38b3_14.conda
+ sha256: d63d60c8567eef850f1ec04675a1bd05325e3d4d09c2ce3b7253f013ab74d0d9
+ md5: fbd638e88ed588403746a531c9dfc099
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 169718
+ timestamp: 1759312848260
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pendulum-control-0.36.2-np2py312h31f38b3_14.conda
+ sha256: b550ebbdf426ed14e0de56bad32170d048c16f2418e3a61e771814b795cc638e
+ md5: ec09564d871bed3ffac019ba23795367
+ depends:
+ - python
+ - ros-kilted-pendulum-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rttest
+ - ros-kilted-tlsf-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 338396
+ timestamp: 1759315208645
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pendulum-msgs-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 91b27cf69b89b8d61cc9a5014154c9500824700ed6164d7f62159e5f4a02ab40
+ md5: cdbf635ff72b4e225aba055b29fc6667
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 96796
+ timestamp: 1759312301587
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pid-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: bab6821384e9bbb475452f7f95905782f58180065c4d04579479f22ce2b0c8f0
+ md5: 299899b6bc8c0f94a44cb1e2595a736b
+ depends:
+ - python
+ - ros-kilted-angles
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-control-toolbox
+ - ros-kilted-controller-interface
+ - ros-kilted-hardware-interface
+ - ros-kilted-parameter-traits
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 298206
+ timestamp: 1759316673488
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pluginlib-5.6.0-np2py312h31f38b3_14.conda
+ sha256: 8321fcd0af84e8adfce3eb238fddddbfb4d15b9a5606dce75b05ac61e71599d8
+ md5: 9336f57375044be6e3d8d3209b78f4fe
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-class-loader
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-tinyxml2-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 44447
+ timestamp: 1759313602427
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-point-cloud-transport-5.1.3-np2py312h31f38b3_14.conda
+ sha256: 462e0749cac0345e91e195e21c77023b1278e663adc8eaee249dfda2b04a27fb
+ md5: 02be6bc7b72ee5f6808618fa7c9b7682
+ depends:
+ - python
+ - ros-kilted-message-filters
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcpputils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 454766
+ timestamp: 1759314602810
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pose-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 6723efae26e2dde7389354358ace561d8417fae209d51b31036bbc108029a47d
+ md5: cd1bb6e650082bd62294f5d6eef9159f
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 170174
+ timestamp: 1759316676536
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-position-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 39b90155ec635363465eecb648bee613616bcf843b34cea0e31440a1195d468b
+ md5: 36d5dae60c274b2220c6f73641395c60
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-forward-command-controller
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 79827
+ timestamp: 1759317053225
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-pybind11-vendor-3.2.0-np2py312h31f38b3_14.conda
+ sha256: 5db32d7341147306802e0bc7361f9849648296a0a97fb1939c7f7e462ef9f109
+ md5: 8952cb018e2171b9962e6f949c9658ad
+ depends:
+ - pybind11
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23058
+ timestamp: 1759310582303
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-python-orocos-kdl-vendor-0.7.1-np2py312h31f38b3_14.conda
+ sha256: 09d83127d121adddad524cd6d790edc25ebac1664f173b15bcf91715697c1416
+ md5: 90bb257072626aa0912d511dfe17e449
+ depends:
+ - python
+ - python-orocos-kdl
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-pybind11-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python-orocos-kdl >=1.5.1,<1.6.0a0
+ license: BSD-3-Clause
+ size: 27274
+ timestamp: 1759311585704
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-python-qt-binding-2.3.1-np2py312h31f38b3_14.conda
+ sha256: d992b1ad1823336cdf9d4ad48a23fafef48e13a0dbfa82e5c91c2db7f751a1b6
+ md5: f6eee6820faa68fc1536120b6f7d5927
+ depends:
+ - pyqt
+ - pyqt-builder
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.23,<3
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - pyqt >=5.15.11,<5.16.0a0
+ license: BSD-3-Clause
+ size: 60654
+ timestamp: 1759311215788
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-dotgraph-2.9.1-np2py312h31f38b3_14.conda
+ sha256: 9ed77a648f7669e3ed7c8acbfc7c06f57f67652ba2f701ed6c661482bdc73751
+ md5: e95241fb668cfac1f102b3fdddf204ae
+ depends:
+ - pydot
+ - pygraphviz
+ - python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 42823
+ timestamp: 1759311580212
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-2.9.1-np2py312h31f38b3_14.conda
+ sha256: be8610133cb1644d199f323fb0131da7acbadefb87c3b64ba63712932c717b63
+ md5: 1977d04287e3259d0c43844fc8e7f1b4
+ depends:
+ - catkin_pkg
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-ros-workspace
+ - ros-kilted-tango-icons-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - qt-main >=5.15.15,<5.16.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - pyqt >=5.15.11,<5.16.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - xorg-libxext >=1.3.6,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 171777
+ timestamp: 1759311597659
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-cpp-2.9.1-np2py312h31f38b3_14.conda
+ sha256: 887b3c4a471590f46b2f0361f8ffbfd587768a98e1d79b2ce057a683d68096d8
+ md5: 42b57b533db651251d5ccceae4bca0a6
+ depends:
+ - pep517
+ - pyqt-builder
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-qt-gui
+ - ros-kilted-ros-workspace
+ - ros-kilted-tinyxml2-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 510425
+ timestamp: 1759313729844
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-qt-gui-py-common-2.9.1-np2py312h31f38b3_14.conda
+ sha256: 18c4c5d2309feaf87d1510fab391d5885083a7f56e0bc40d1a2ba13a3c1cef3b
+ md5: 9a0ebbf1abf56adb342b3081e9673579
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 39008
+ timestamp: 1759311609841
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-quality-of-service-demo-cpp-0.36.2-np2py312h31f38b3_14.conda
+ sha256: c55529cea1f4b5c7384d0c2b639513b21d9a6027ccabd2bf5483766b0aeb3a0f
+ md5: 2d576ccb11df76b9bd5c929c8052f42a
+ depends:
+ - python
+ - ros-kilted-example-interfaces
+ - ros-kilted-launch-ros
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 589820
+ timestamp: 1759314376324
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-quality-of-service-demo-py-0.36.2-np2py312h31f38b3_14.conda
+ sha256: e6367b67f9ef208fd398183a118f2e445105520af62d1ba1888d21aa80477f5c
+ md5: 31ff9cf6329cca5f97534bba6eadfafc
+ depends:
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 35175
+ timestamp: 1759314139515
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-range-sensor-broadcaster-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 4fc879b7fbbf8e202b91092402f10f5c5dacfb6b1c3dc2d78e21ae75e1242199
+ md5: c3407673316b3cfb73b859a4afd48139
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 149300
+ timestamp: 1759316638334
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-10.1.1-np2py312h31f38b3_14.conda
+ sha256: 83c36157d0d7bcdec4fbf8915093eb3989b054823c4971ccae669292fa143ad0
+ md5: a57680fa1b91a95378d1467ce7d61ac6
+ depends:
+ - python
+ - ros-kilted-libyaml-vendor
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rcl-logging-interface
+ - ros-kilted-rcl-logging-spdlog
+ - ros-kilted-rcl-yaml-param-parser
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-implementation
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-service-msgs
+ - ros-kilted-tracetools
+ - ros-kilted-type-description-interfaces
+ - ros2-distro-mutex 0.12.* kilted_*
+ - yaml
+ - yaml-cpp
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - yaml >=0.2.5,<0.3.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 200523
+ timestamp: 1759313687753
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-action-10.1.1-np2py312h31f38b3_14.conda
+ sha256: 2a577115135723bc208a8a6ab5f42eaa2b9f9a2def00acfb8d1fe408a4fdcb96
+ md5: 40cc99fc1b0f083826f85c8b56ff0fe2
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-rcl
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 83879
+ timestamp: 1759313860578
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 62537f4346b424dabd9a4493c0a9fd2c2f12c33445ee60ceda521be7e28ecfe7
+ md5: 6c1497db693b7df6abdb4d2fd65fce1f
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 579084
+ timestamp: 1759312384207
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-lifecycle-10.1.1-np2py312h31f38b3_14.conda
+ sha256: 90d6214636e0ab169dfbf6db4542ec437b049626273c0204aaa5de8bbd358c6e
+ md5: a0fec3f9a7eef2516125fbed5352f37a
+ depends:
+ - python
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-rcl
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 59315
+ timestamp: 1759313852541
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-logging-interface-3.2.2-np2py312h31f38b3_14.conda
+ sha256: 2d1ab0d2c4cb7ae190c0652bfbca2ee5c5e6fd57ef1c87df386e214c9bcc62b3
+ md5: 401d49cbe96cb00c91b11c42739dee37
+ depends:
+ - python
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 38576
+ timestamp: 1759313373145
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-logging-spdlog-3.2.2-np2py312hb464df2_14.conda
+ sha256: 7f9d6cbb1459bf496c55af3f3e6ddf61469b14131d9a317685dc38481211cb1b
+ md5: 18beeac36e0c2dce0b76a1a79fdb537a
+ depends:
+ - python
+ - ros-kilted-rcl-logging-interface
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-spdlog-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - spdlog
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - spdlog >=1.15.3,<1.16.0a0
+ license: BSD-3-Clause
+ size: 49167
+ timestamp: 1759313585933
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcl-yaml-param-parser-10.1.1-np2py312h31f38b3_14.conda
+ sha256: 6770a250b9457aa76f75011009ce2c180600d3b0cf4aba0042294c51b5861645
+ md5: e4987834771034981b506dedcf83fd57
+ depends:
+ - python
+ - ros-kilted-libyaml-vendor
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - yaml
+ - yaml-cpp
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 54722
+ timestamp: 1759313385515
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-29.5.3-np2py312h31f38b3_14.conda
+ sha256: e9963197be0e90933e9f8943c1c749c18a128ddb2e6d5dffb5ec9186acae08ba
+ md5: acaf6b052abebb2a0eeecd40702c0a48
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-libstatistics-collector
+ - ros-kilted-rcl
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rcl-logging-interface
+ - ros-kilted-rcl-yaml-param-parser
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosgraph-msgs
+ - ros-kilted-rosidl-dynamic-typesupport
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-c
+ - ros-kilted-rosidl-typesupport-cpp
+ - ros-kilted-statistics-msgs
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 1084354
+ timestamp: 1759313921344
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-action-29.5.3-np2py312h31f38b3_14.conda
+ sha256: 6587a5d7c3e19afed6ebc63e2efbbdbdd9047104092eeead19b437b13c649dc2
+ md5: 80b1d3b8b3c48b712294fc0d108e130e
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-rcl
+ - ros-kilted-rcl-action
+ - ros-kilted-rclcpp
+ - ros-kilted-rcpputils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 153908
+ timestamp: 1759314150388
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-components-29.5.3-np2py312h31f38b3_14.conda
+ sha256: 5988f485bdddb92f67b37891ff4d30cfe230e2dccb443653b4ebcdde0aa3ef18
+ md5: 9f3b445afa6a1f868edc17e070d073d4
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-class-loader
+ - ros-kilted-composition-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 140534
+ timestamp: 1759314104972
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclcpp-lifecycle-29.5.3-np2py312h31f38b3_14.conda
+ sha256: bd3a378f85b0b95bd810e4ac3e1bcf789ca8ed312a0731f5a1182761d519dc89
+ md5: ac95792ea5b9776e9df4dc36eea95825
+ depends:
+ - python
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-rcl
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rcl-lifecycle
+ - ros-kilted-rclcpp
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-typesupport-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 131530
+ timestamp: 1759314132222
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rclpy-9.1.1-np2py312h31f38b3_14.conda
+ sha256: ca571ca329980fde35cc48dab9d30e8ea2d758245995c1daa4af469692be713f
+ md5: 04a74a899a0e943164e239b35082492f
+ depends:
+ - python
+ - pyyaml
+ - ros-kilted-action-msgs
+ - ros-kilted-ament-index-python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-rcl
+ - ros-kilted-rcl-action
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rcl-lifecycle
+ - ros-kilted-rcl-logging-interface
+ - ros-kilted-rcl-yaml-param-parser
+ - ros-kilted-rmw
+ - ros-kilted-rmw-implementation
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosgraph-msgs
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rpyutils
+ - ros-kilted-service-msgs
+ - ros-kilted-type-description-interfaces
+ - ros-kilted-unique-identifier-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - typing_extensions
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 743405
+ timestamp: 1759314016573
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcpputils-2.13.5-np2py312h31f38b3_14.conda
+ sha256: dd78b1e8e2edb73838ca910260568a235f7b5d297b61042a21e9f22160c6df8f
+ md5: ba8be7471cd7ece4e51f84d451652843
+ depends:
+ - python
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 80812
+ timestamp: 1759311765109
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rcutils-6.9.8-np2py312h31f38b3_14.conda
+ sha256: a0825c0c3a2d134b9fdd5f30789c3955efd32a099ffd8c81119ed3697110701d
+ md5: fe73cb3f5d64e8506e5681c8b7536580
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 124253
+ timestamp: 1759311585195
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-realtime-tools-4.6.0-np2py312hdba20d8_14.conda
+ sha256: 000407cd91a84b1cd9342cbc42c2bfb706832099872cb09b693e2b78d8dd9184
+ md5: b0846e1362dfeeb022c954a9ab2f42c5
+ depends:
+ - libboost-devel
+ - libcap
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libcap >=2.75,<2.76.0a0
+ - python_abi 3.12.* *_cp312
+ - libboost >=1.86.0,<1.87.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 66707
+ timestamp: 1759314319173
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-resource-retriever-3.7.0-np2py312h31f38b3_14.conda
+ sha256: cb913d25d246820476f2fe22b43339c64e8909d78cbb6cc1bb6f4f0d430deb63
+ md5: 976033a18fa9d61a5f1bd9ac358cdfa1
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-ament-index-python
+ - ros-kilted-libcurl-vendor
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 58503
+ timestamp: 1759313375957
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-7.8.2-np2py312h31f38b3_14.conda
+ sha256: 513b37e999756faa84d0fba3dc9e0a1a86c3f1e2ac2866e3ddbc00e570cfdbd4
+ md5: 9051b564a101bce6d11208d01f373234
+ depends:
+ - python
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-dynamic-typesupport
+ - ros-kilted-rosidl-runtime-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 96430
+ timestamp: 1759311864690
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-connextdds-1.1.0-np2py312h31f38b3_14.conda
+ sha256: 287c875e8adc3827ac2c8303773dd611cbf9e7be82db3fa1563b212094ab8abc
+ md5: a320e663a4022e1c56884783b571db1b
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-rmw-connextdds-common
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 30398
+ timestamp: 1759312710551
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-connextdds-common-1.1.0-np2py312h31f38b3_14.conda
+ sha256: 3e64a034960941173386c1a30581f4ed17357e281a8da00437fdd95c518f71de
+ md5: 9d87ba1272063589a978fe7120ca2962
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-fastcdr
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-dds-common
+ - ros-kilted-rmw-security-common
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros-kilted-rti-connext-dds-cmake-module
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 53679
+ timestamp: 1759312552764
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-cyclonedds-cpp-4.0.2-np2py312h31f38b3_14.conda
+ sha256: 593009e8f88ce2e730160d7837d6207264bd0e4a44ba0797fd81905218b7a86a
+ md5: ae885c4c0d0e549b1b103b1a1a5a974d
+ depends:
+ - python
+ - ros-kilted-cyclonedds
+ - ros-kilted-iceoryx-binding-c
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-dds-common
+ - ros-kilted-rmw-security-common
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 258997
+ timestamp: 1759312558031
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-dds-common-4.0.0-np2py312h31f38b3_14.conda
+ sha256: 284e7a29adb251fa02f4ab75c69e7f4cf7ffd3413e9163e0a9c0bf82fbc541bd
+ md5: 9beeaa6581166b3743df7cbcde690848
+ depends:
+ - python
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-security-common
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 165458
+ timestamp: 1759312301444
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-cpp-9.3.3-np2py312h31f38b3_14.conda
+ sha256: 88e2c0c6f2af606971b1078ba8b88e46bbd032910e947c28ad7ded41f71cddaf
+ md5: 1a7f35022069045ece1a030ea277a136
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-fastcdr
+ - ros-kilted-fastdds
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-dds-common
+ - ros-kilted-rmw-fastrtps-shared-cpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-dynamic-typesupport
+ - ros-kilted-rosidl-dynamic-typesupport-fastrtps
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 150298
+ timestamp: 1759312685640
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-dynamic-cpp-9.3.3-np2py312h31f38b3_14.conda
+ sha256: ae8aebab52a57d95ecaf50dad04f656a69cbe2b257b62692c4e047588adef02a
+ md5: c9ed4e327f4e24e718c3ff58fb4196d6
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-fastcdr
+ - ros-kilted-fastdds
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-dds-common
+ - ros-kilted-rmw-fastrtps-shared-cpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 172028
+ timestamp: 1759312649991
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-fastrtps-shared-cpp-9.3.3-np2py312h31f38b3_14.conda
+ sha256: 061e0b2aab0e743bbc81c086fe2d1b23a49f4188d48ea430dd66aaa90bf48f2c
+ md5: d6324ad302f9083d056baff889e438e1
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-fastcdr
+ - ros-kilted-fastdds
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-dds-common
+ - ros-kilted-rmw-security-common
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-dynamic-typesupport
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros-kilted-tracetools
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 230694
+ timestamp: 1759312507141
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-implementation-3.0.4-np2py312h31f38b3_14.conda
+ sha256: 21e344894056780e6b2237aebbfb9c909d56f4d05321d28ea9bf961eb09b5853
+ md5: 8190cd7bea816f8714fc2a520460b45d
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw-connextdds
+ - ros-kilted-rmw-cyclonedds-cpp
+ - ros-kilted-rmw-fastrtps-cpp
+ - ros-kilted-rmw-fastrtps-dynamic-cpp
+ - ros-kilted-rmw-implementation-cmake
+ - ros-kilted-rmw-zenoh-cpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 53196
+ timestamp: 1759312817411
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-implementation-cmake-7.8.2-np2py312h31f38b3_14.conda
+ sha256: dbdc95732a558080d36089212ab580b98c12ee463b9da2348dc3340a29255fe7
+ md5: 1fe0aab6f05d737a3257abe246940d9b
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 29217
+ timestamp: 1759311542759
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-security-common-7.8.2-np2py312h31f38b3_14.conda
+ sha256: 4646949bf8b3d8aa84c6348e8895a572f6da12c3aa87f009a91281b34baf1105
+ md5: 1b8d1a2484a2afecf9c7eea2e58e55d3
+ depends:
+ - python
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 50388
+ timestamp: 1759311945513
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-test-fixture-0.14.3-np2py312h31f38b3_14.conda
+ sha256: a119e4335309a2cdf91d52a191d600a2dbeb2374e83e2e8743b46aa540eb4d06
+ md5: b354664703515a5bc0989bed94703bc4
+ depends:
+ - python
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 30258
+ timestamp: 1759311952911
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-test-fixture-implementation-0.14.3-np2py312h31f38b3_14.conda
+ sha256: 4cb1ef0a4cb21cf3fec99783d1e9a5f166217bf339190a6367b5457b746c4226
+ md5: bd1dade22b03a76cacaa3f78917eca78
+ depends:
+ - python
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-test-fixture
+ - ros-kilted-rmw-zenoh-cpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rpyutils
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 47808
+ timestamp: 1759313019333
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rmw-zenoh-cpp-0.6.4-np2py312hf7ffe29_14.conda
+ sha256: 37fe130529d1a53b0f7d99943752df9e7df15b6784dded7604d0bc8f2c3d96e2
+ md5: 386f4295bbd9c0bb6ea2f6a9a8760d2a
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-fastcdr
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-test-fixture
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-tracetools
+ - ros-kilted-zenoh-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libzenohc >=1.5.1,<1.5.2.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 331870
+ timestamp: 1759312084081
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-robot-state-publisher-3.4.2-np2py312h31f38b3_14.conda
+ sha256: 5594d113f1d49db669935eabaf1b39e2b205965511ae205cd6296472bbd564a1
+ md5: 339a85dd6459469b4d3fcaec124705d1
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-kdl-parser
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros-kilted-tf2-ros
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 266660
+ timestamp: 1759314983138
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-base-0.12.0-np2py312h31f38b3_14.conda
+ sha256: 49e9f7b673ec59e12ff97777bb02456e352b36301c540a0d6db7eeb8892e91a4
+ md5: 491e4330e88b55aa746aafb6e67ca330
+ depends:
+ - python
+ - ros-kilted-geometry2
+ - ros-kilted-kdl-parser
+ - ros-kilted-robot-state-publisher
+ - ros-kilted-ros-core
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2
+ - ros-kilted-urdf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22223
+ timestamp: 1759318789787
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-core-0.12.0-np2py312h31f38b3_14.conda
+ sha256: 12f4c47e69c1a444e5428c797741d95b7836db1efc816f52bbad76e92e46c7b8
+ md5: f1cbe5f0ba7aba686ebf54905a190a24
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-cmake-auto
+ - ros-kilted-ament-cmake-gmock
+ - ros-kilted-ament-cmake-gtest
+ - ros-kilted-ament-cmake-pytest
+ - ros-kilted-ament-cmake-ros
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-ament-index-python
+ - ros-kilted-ament-lint-auto
+ - ros-kilted-ament-lint-common
+ - ros-kilted-class-loader
+ - ros-kilted-common-interfaces
+ - ros-kilted-launch
+ - ros-kilted-launch-ros
+ - ros-kilted-launch-testing
+ - ros-kilted-launch-testing-ament-cmake
+ - ros-kilted-launch-testing-ros
+ - ros-kilted-launch-xml
+ - ros-kilted-launch-yaml
+ - ros-kilted-pluginlib
+ - ros-kilted-rcl-lifecycle
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rclpy
+ - ros-kilted-ros-environment
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli-common-extensions
+ - ros-kilted-ros2launch
+ - ros-kilted-rosidl-default-generators
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sros2
+ - ros-kilted-sros2-cmake
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 22953
+ timestamp: 1759316704626
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-environment-4.3.1-np2py312h31f38b3_14.conda
+ sha256: 229e716a40732f72571bd2772e504ef7a352f7cadb492f4b6cb18a940dcbce11
+ md5: 34d4e4d796a38ed8e0763f5b2f922794
+ depends:
+ - python
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 21164
+ timestamp: 1759310064778
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros-workspace-1.0.3-np2py312h31f38b3_14.conda
+ sha256: 47409d511530e8a6da7d064b1f796ceafc7408c5ffff85af76fc72451674458e
+ md5: 8ab07224e54e0fe2607c0480902e6db3
+ depends:
+ - python
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 35292
+ timestamp: 1759310053349
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-control-5.6.0-np2py312h31f38b3_14.conda
+ sha256: 848f276c7aaac0c1c92cef4f9601f7036cb753c1f629f2842f8f7b2143dbf413
+ md5: 25e0424393da609e58a7471938966bef
+ depends:
+ - python
+ - ros-kilted-controller-interface
+ - ros-kilted-controller-manager
+ - ros-kilted-controller-manager-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-joint-limits
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2-control-test-assets
+ - ros-kilted-ros2controlcli
+ - ros-kilted-transmission-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 22310
+ timestamp: 1759317118822
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-control-test-assets-5.6.0-np2py312h31f38b3_14.conda
+ sha256: 80c9bd84a72e345ace867396e527d7f1772a2ffc5440fb48181c0837153d8d40
+ md5: 5a6eba97f2917470f585c4786466aebe
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 31126
+ timestamp: 1759310573594
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: d1f20fc930b0f74c13a92a8c8e9c94feacf2cfc8f1253ec8cf0aee5a33341b88
+ md5: fcbdb80aaf205ecf94ff33979c4f9290
+ depends:
+ - python
+ - ros-kilted-ackermann-steering-controller
+ - ros-kilted-admittance-controller
+ - ros-kilted-bicycle-steering-controller
+ - ros-kilted-chained-filter-controller
+ - ros-kilted-diff-drive-controller
+ - ros-kilted-effort-controllers
+ - ros-kilted-force-torque-sensor-broadcaster
+ - ros-kilted-forward-command-controller
+ - ros-kilted-gpio-controllers
+ - ros-kilted-gps-sensor-broadcaster
+ - ros-kilted-imu-sensor-broadcaster
+ - ros-kilted-joint-state-broadcaster
+ - ros-kilted-joint-trajectory-controller
+ - ros-kilted-mecanum-drive-controller
+ - ros-kilted-motion-primitives-controllers
+ - ros-kilted-omni-wheel-drive-controller
+ - ros-kilted-parallel-gripper-controller
+ - ros-kilted-pid-controller
+ - ros-kilted-pose-broadcaster
+ - ros-kilted-position-controllers
+ - ros-kilted-range-sensor-broadcaster
+ - ros-kilted-ros-workspace
+ - ros-kilted-steering-controllers-library
+ - ros-kilted-tricycle-controller
+ - ros-kilted-tricycle-steering-controller
+ - ros-kilted-velocity-controllers
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22957
+ timestamp: 1759317311588
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2action-0.38.1-np2py312h31f38b3_14.conda
+ sha256: b9067769f7253971b95093a0cfa2cdfbe145f59a27d3edc880b53983d416804b
+ md5: 7a1085b37fbcd5a322035bb488f56176
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-ament-index-python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2topic
+ - ros-kilted-rosidl-runtime-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 57007
+ timestamp: 1759314977746
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2bag-0.32.0-np2py312h31f38b3_14.conda
+ sha256: fedd4885765c9977318ecd2a4021f038a3a031971ba4bbfc3046cbde638b8945
+ md5: feee1ae9c5ab92ed51fb01782bbbe27a
+ depends:
+ - python
+ - pyyaml
+ - ros-kilted-ament-index-python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-rosbag2-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 71775
+ timestamp: 1759317840934
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2cli-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 113d6e800fbce2a01d27843624cec8c9f5b9a140258779b6f17303f6ba89273f
+ md5: fc58e3bd42180daa4bd9ef78600a1cee
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - packaging
+ - psutil
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 75047
+ timestamp: 1759314163918
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2cli-common-extensions-0.4.0-np2py312h31f38b3_14.conda
+ sha256: e19b096ce2a91adca387a87b023ee7ed3739fdca69ed8c66b4bcdb9be6909c55
+ md5: c0b46f5d26a13ed98624a39139ecebb1
+ depends:
+ - python
+ - ros-kilted-launch-xml
+ - ros-kilted-launch-yaml
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2action
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2component
+ - ros-kilted-ros2doctor
+ - ros-kilted-ros2interface
+ - ros-kilted-ros2launch
+ - ros-kilted-ros2lifecycle
+ - ros-kilted-ros2multicast
+ - ros-kilted-ros2node
+ - ros-kilted-ros2param
+ - ros-kilted-ros2pkg
+ - ros-kilted-ros2run
+ - ros-kilted-ros2service
+ - ros-kilted-ros2topic
+ - ros-kilted-sros2
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26564
+ timestamp: 1759316348639
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2component-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 21cc4f6a2501c0d19a2a36462e06a386c66f84ca16389cebbbd9c59ea4e783ec
+ md5: a0741c4ed2864e8dfd8d7c3906e65ed8
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-composition-interfaces
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2node
+ - ros-kilted-ros2param
+ - ros-kilted-ros2pkg
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 37952
+ timestamp: 1759315508171
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2controlcli-5.6.0-np2py312h31f38b3_14.conda
+ sha256: afd0a57d42c4131dcbae242e7b4df21a1295efd5eb47bcc2607f6077b16a73d1
+ md5: dbeac9fcad620b1a0bc2e4b4f0df0361
+ depends:
+ - pygraphviz
+ - python
+ - ros-kilted-controller-manager
+ - ros-kilted-controller-manager-msgs
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2node
+ - ros-kilted-ros2param
+ - ros-kilted-rosidl-runtime-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 78311
+ timestamp: 1759316693183
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2doctor-0.38.1-np2py312h31f38b3_14.conda
+ sha256: b84b542a3062b825049ec10788061efa9a427756aaed786e39c62a3efa5c855e
+ md5: f153114836d6bc9c4f4f97bd4208f68b
+ depends:
+ - catkin_pkg
+ - importlib-metadata
+ - psutil
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-environment
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - rosdistro
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 65726
+ timestamp: 1759314660116
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2interface-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 70454087bd839b5bb76494d8b2424ce11a58c0442e929da2a7a8dec1af6c32c6
+ md5: 6d80ae565cbcf8212599138fcd69ea4d
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-rosidl-adapter
+ - ros-kilted-rosidl-runtime-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 46185
+ timestamp: 1759314651668
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2launch-0.28.3-np2py312h31f38b3_14.conda
+ sha256: 902cdcd9d2536c48552ec343243f867d827a849520851728962f843e2f3d87ab
+ md5: 081b54814d43ed836aa18e521a7bf3ae
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-launch
+ - ros-kilted-launch-ros
+ - ros-kilted-launch-xml
+ - ros-kilted-launch-yaml
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2pkg
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 33472
+ timestamp: 1759314971871
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2lifecycle-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 76c32e4c7c15fd3ffb74541a91350c5857972cb8c960ec4e1e3a94337581cba0
+ md5: cb384b0e86e9b7df9bd65b2fc6a73033
+ depends:
+ - python
+ - ros-kilted-lifecycle-msgs
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2node
+ - ros-kilted-ros2service
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 44949
+ timestamp: 1759315260593
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2multicast-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 92b2d24b542c1f1e91d0039f193dd6385d254418ef34e8021b96d2f0a1360bec
+ md5: dfd4a405be14a55530f3269a7150b827
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 25496
+ timestamp: 1759314326771
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2node-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 4e2429e63fe383f3c2a6b489c81927eeaedc88eb99e1c185dc589e0a4dd689d3
+ md5: 79ca25201caf057d5ffb83905860a4e9
+ depends:
+ - python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 42662
+ timestamp: 1759314630459
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2param-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 940fcd981f3664f0953d330136cd9341f86196e6eb462d8874f3ae9313302467
+ md5: 5f5d200cc810e0b4813f65faad515d9d
+ depends:
+ - python
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2node
+ - ros-kilted-ros2service
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49982
+ timestamp: 1759315237495
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2pkg-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 5ec357ddfd8b5c0b360097a0526154dadbdb0b90ce4f5a63d4067c08ecf71806
+ md5: 6582440f68c484f54815384238327172
+ depends:
+ - catkin_pkg
+ - empy
+ - importlib_resources
+ - python
+ - ros-kilted-ament-copyright
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 58004
+ timestamp: 1759314624633
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2run-0.38.1-np2py312h31f38b3_14.conda
+ sha256: d3c16426e2fcb7a75c10fd1b539b5eaaface2d78b3331c1b669916015fa9b414
+ md5: ae7447422ad7c7016e97895f5a53786d
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2pkg
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 25061
+ timestamp: 1759314977818
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2service-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 799248c7bb6e6a4a01855c8feff8e0103d4d11b6eeef7a32e396593e46b874f2
+ md5: 9182c929c71e57b052fe0679b632f765
+ depends:
+ - python
+ - pyyaml
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-ros2topic
+ - ros-kilted-rosidl-runtime-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 51476
+ timestamp: 1759314969338
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-ros2topic-0.38.1-np2py312h31f38b3_14.conda
+ sha256: 9e0812a6c0569daae016b856a1ba877869d68ea5c069d51def954c9330bab3a7
+ md5: f39e593b86d0f66b93078e3b31330be1
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-rosidl-runtime-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 79016
+ timestamp: 1759314616037
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 80c6ebffd2824359548af80e60c406ac6f8c0cf154249e9bc717edf6c7b6c1fe
+ md5: 927bb921645b8e53447c79f7c56e6034
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2bag
+ - ros-kilted-rosbag2-compression
+ - ros-kilted-rosbag2-compression-zstd
+ - ros-kilted-rosbag2-cpp
+ - ros-kilted-rosbag2-py
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-rosbag2-storage-default-plugins
+ - ros-kilted-rosbag2-transport
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 34558
+ timestamp: 1759318699263
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-compression-0.32.0-np2py312h31f38b3_14.conda
+ sha256: c791e2c9eadd83bdd3d842b4cee2b7df73b74923b88a97e0aa4e513b3a2bd92c
+ md5: 4da9cf13d3a3b36627b9045404411c31
+ depends:
+ - python
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-cpp
+ - ros-kilted-rosbag2-storage
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 202401
+ timestamp: 1759316355006
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-compression-zstd-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 794c5469c16129e44382d983489dada706a0177938df1eaf125bddd382690d20
+ md5: 387abfe7574efa1197a1c34c3323c5c6
+ depends:
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-compression
+ - ros-kilted-zstd-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 69523
+ timestamp: 1759316677405
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-cpp-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 2fdf677975f712b103e29976d2298043ab6a5011d9e7ad949e6675ba367177fe
+ md5: b4b5c8f5eda3865ffde921df49e5afa6
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-rmw-implementation
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-cpp
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 352644
+ timestamp: 1759315519657
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-interfaces-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 7a0cf48c240f7e21788c5789e7df4f0ba85a0a1768f6b36b730c4348873b017f
+ md5: 7aa34cba2e71c64376bb9b69b81d185a
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 459395
+ timestamp: 1759312369402
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-py-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 690099fa284f10d831d31191d6d5b40fc73e01b4971ab045c7ae5de85d255918
+ md5: cf14df7f82014de184e6f1e07d836d09
+ depends:
+ - python
+ - ros-kilted-pybind11-vendor
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-compression
+ - ros-kilted-rosbag2-cpp
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-rosbag2-transport
+ - ros-kilted-rpyutils
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 763819
+ timestamp: 1759317475644
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 53c8973d054dc8dbf433b07f26a28e2b10da2e76608029cc40acff60bfa3bd92
+ md5: 813a0956bdef0c27fcd704f9c31e7e5c
+ depends:
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-yaml-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 271942
+ timestamp: 1759314602993
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-default-plugins-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 1027ce367f2687979daf4941c8fc06b022864a60b9ce92e99869f72055d7f265
+ md5: 684de0773cc7e95647bd12dbd0679441
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-storage-mcap
+ - ros-kilted-rosbag2-storage-sqlite3
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 22225
+ timestamp: 1759315246230
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-mcap-0.32.0-np2py312h31f38b3_14.conda
+ sha256: f103085dfd5d7d1ba06f6ad1875a07bb1e86bba94346bef77a11e8abea4e12dd
+ md5: 243fc8c34c83cb204a2a4beb220f9450
+ depends:
+ - python
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-mcap-vendor
+ - ros-kilted-pluginlib
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-yaml-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 195060
+ timestamp: 1759314934071
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-storage-sqlite3-0.32.0-np2py312h31f38b3_14.conda
+ sha256: f86846999d2fd0658521de8d2c43fad6dddfa64018f3fbc15b8c6f5c1104c915
+ md5: b7be939b470f3f544982a7802b5e93cc
+ depends:
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-sqlite3-vendor
+ - ros-kilted-yaml-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 243879
+ timestamp: 1759315008540
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosbag2-transport-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 97e35d6690b7970e25dc7e0b1bf570dd43f871e5d375a0ba8ad99b64f7492b0b
+ md5: 430ed91fc598b4bc48311bdee40a0017
+ depends:
+ - python
+ - ros-kilted-keyboard-handler
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-rclcpp-components
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-compression
+ - ros-kilted-rosbag2-cpp
+ - ros-kilted-rosbag2-interfaces
+ - ros-kilted-rosbag2-storage
+ - ros-kilted-yaml-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 556911
+ timestamp: 1759317082932
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosgraph-msgs-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 5d5b2d9e1740d779334e7e171ad7321b7add88b70e5ec55e2d2eeb197262f417
+ md5: bfe1c4aff98b1815d0a8b17a5954b646
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 69954
+ timestamp: 1759312334166
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-adapter-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 0c83bdafdebe4a83563b9d5d49c1001b53e40746bf4daf5367562bc2ca24bcd6
+ md5: 61eaebbf670e7074d1a3171094996380
+ depends:
+ - empy
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 67544
+ timestamp: 1759311189658
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-cli-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 38d61db007c8327ee95b5241b5fe74f7d0a2c965c23fc812349b6693b9df0355
+ md5: 12fce500177e1e29d403f9a59bee7a49
+ depends:
+ - argcomplete
+ - importlib-metadata
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 46182
+ timestamp: 1759310688725
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-cmake-4.9.5-np2py312h31f38b3_14.conda
+ sha256: a12d7b8d12d0057310f9d021c69d5afdb23472873d557e5c5661d3361aba71de
+ md5: 55a2d21b0706f6f074e19be62290188c
+ depends:
+ - empy
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-pycommon
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 34996
+ timestamp: 1759311796824
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-core-generators-0.3.1-np2py312h31f38b3_14.conda
+ sha256: 67e22fc5b90f053bff2ec7e2f0dbb3618473cd901d14566e5f49b349273492c4
+ md5: 456ad38f45d89837355516ca1e7bcf29
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cmake
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-generator-cpp
+ - ros-kilted-rosidl-generator-py
+ - ros-kilted-rosidl-generator-type-description
+ - ros-kilted-rosidl-typesupport-c
+ - ros-kilted-rosidl-typesupport-cpp
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 30529
+ timestamp: 1759312154247
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-core-runtime-0.3.1-np2py312h31f38b3_14.conda
+ sha256: 9ce6c7c140431faa6aac10616e0a1a640ce1a74e06f92f0d3547750339aae89b
+ md5: f0ab7d0c82c0b589a2a68ae2d7a5e1fa
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-generator-py
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-c
+ - ros-kilted-rosidl-typesupport-cpp
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 29555
+ timestamp: 1759312142546
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-default-generators-1.7.1-np2py312h31f38b3_14.conda
+ sha256: 09eb66284a8e75e176ca6dda64c3045294227ba670e96b012dcec93728528f9d
+ md5: 33cc8799ecf250bf13eefb0d95fd2e70
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-generators
+ - ros-kilted-service-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 30711
+ timestamp: 1759312282465
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-default-runtime-1.7.1-np2py312h31f38b3_14.conda
+ sha256: b62910346237ccec34c378d6da9343c77a361f610500f38dee59321bed5c13a8
+ md5: 6cee4bcbd1d2f7f846a137e2d50b5873
+ depends:
+ - python
+ - ros-kilted-action-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros-kilted-service-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 30142
+ timestamp: 1759312270762
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-dynamic-typesupport-0.3.1-np2py312h31f38b3_14.conda
+ sha256: 8dd0efee75e70518f3b5c0f966facfa1eaffceaaf024ad9676bd1a0968e6eb49
+ md5: c6def2250d3023afd1499afd5c9414b4
+ depends:
+ - python
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 60759
+ timestamp: 1759311815446
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-dynamic-typesupport-fastrtps-0.4.1-np2py312h31f38b3_14.conda
+ sha256: 7826e59c075ccbecd495a3ec4887fbdce110876b315027b50c52f61cb413b119
+ md5: 29b4e77f22add686f679e4a184092dad
+ depends:
+ - python
+ - ros-kilted-fastcdr
+ - ros-kilted-fastdds
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-dynamic-typesupport
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 82157
+ timestamp: 1759311870504
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-c-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 150d840cb43a46e3bf217ef957620ae6917a31dcdfb8db6e594e5d5854287cf9
+ md5: 5e7182bdc7f89ca1bef2f5f4d559b07d
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-cmake
+ - ros-kilted-rosidl-generator-type-description
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 51753
+ timestamp: 1759311851950
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-cpp-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 30d2398b7081c4e16da7294b2728e11a983efad06afebf0e1b9f6a4fd78c0de3
+ md5: e60f2e4555f4fe702c64b758b04cb243
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-cmake
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-generator-type-description
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49944
+ timestamp: 1759311925512
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-py-0.24.1-np2py312h31f38b3_14.conda
+ sha256: 2a993c8ef46feab1f4bbb5e299e0843f426bbb77caf92d2ba4db15279f865c65
+ md5: e70445c927f8695457647fa43136883c
+ depends:
+ - numpy
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-cmake-cppcheck
+ - ros-kilted-ament-cmake-cpplint
+ - ros-kilted-ament-cmake-flake8
+ - ros-kilted-ament-cmake-pep257
+ - ros-kilted-ament-cmake-uncrustify
+ - ros-kilted-ament-index-python
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-typesupport-c
+ - ros-kilted-rosidl-typesupport-interface
+ - ros-kilted-rpyutils
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 59345
+ timestamp: 1759312118277
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-generator-type-description-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 5e06d1b8eabafaf01012559097681f360e301833e00062b5c3b90080e9278a1a
+ md5: a73ff94312a1b4d8ffedd1aab2243328
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-parser
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 45865
+ timestamp: 1759311760230
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-parser-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 43cca8a840ec804c5daec247a373ea6c72085c4eeeef2ab7790c2b238ab61bfa
+ md5: 3f406585a95ff5bf76b9d20a17a3a99d
+ depends:
+ - lark-parser
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-adapter
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 65692
+ timestamp: 1759311571028
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-pycommon-4.9.5-np2py312h31f38b3_14.conda
+ sha256: b517edd258b624483e131c3ab6fd7bc769cc7008bf38f0f6e4b8a17022c295b5
+ md5: bd37bc80a1952f39dec3d0010eeefb09
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-parser
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 26656
+ timestamp: 1759311741952
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-c-4.9.5-np2py312h31f38b3_14.conda
+ sha256: ac9cda7c0bb20febbf53f9b1c8403b9a2e566a192dcfa2a844c362263a6ec499
+ md5: b32db92511c76411e52397aa850027ac
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 82232
+ timestamp: 1759311753527
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-cpp-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 0d687e8bf58dcb0312489b0e90087a6eeeea4b6d4e69863c01bcf1bfab5fc734
+ md5: 45c65a09b707c7b9989440868b27dd2b
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 40757
+ timestamp: 1759311809820
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-runtime-py-0.14.1-np2py312h31f38b3_14.conda
+ sha256: 33402febf6de03991b93d418e6f7bc403832c305b4d78fb7244bbff886e2a8a5
+ md5: 4b3f31d0de081b6bda135a41b93508e5
+ depends:
+ - numpy
+ - python
+ - pyyaml
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-parser
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 46384
+ timestamp: 1759312507444
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-c-3.3.3-np2py312h31f38b3_14.conda
+ sha256: 9759a256878307744906f3399ec505dc3997f242ee11a533812910a0c383be4e
+ md5: 1743ce563643ccfd55689513cbf02a3f
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-typesupport-fastrtps-c
+ - ros-kilted-rosidl-typesupport-interface
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 50295
+ timestamp: 1759312068254
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-cpp-3.3.3-np2py312h31f38b3_14.conda
+ sha256: 9009aa9865364caf6ef6ffae113f5388e5fdbcf9de25ce7852c277d05ac545b4
+ md5: b47eaf214b3ad9bd2a5ba83b653084fa
+ depends:
+ - python
+ - ros-kilted-ament-cmake-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-rcpputils
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-generator-type-description
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-c
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-rosidl-typesupport-interface
+ - ros-kilted-rosidl-typesupport-introspection-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49411
+ timestamp: 1759312112524
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-fastrtps-c-3.8.1-np2py312h31f38b3_14.conda
+ sha256: 44c5e23028e1c70c771bd1ca74f3056b864db681d14a4fa68e6da837b3380baf
+ md5: 71bc651578e4d2d57ffd3095c82ac224
+ depends:
+ - python
+ - ros-kilted-ament-cmake-ros-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-fastcdr
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-fastrtps-cpp
+ - ros-kilted-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 51119
+ timestamp: 1759312041834
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-fastrtps-cpp-3.8.1-np2py312h31f38b3_14.conda
+ sha256: 8a8ba77bde6059afbfb87c9678f587c9cad7f04d9eb6f1426c2247a13288e6cf
+ md5: 0a3400e7ed374883d96ecbdb81ceae64
+ depends:
+ - python
+ - ros-kilted-ament-cmake-ros-core
+ - ros-kilted-ament-index-python
+ - ros-kilted-fastcdr
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-generator-cpp
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 53096
+ timestamp: 1759311999036
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-interface-4.9.5-np2py312h31f38b3_14.conda
+ sha256: 3b3f57645000981297601f39055a19c7435298785d327d088d9908f1217f41c3
+ md5: d4da90f5206cfccc880b41edd12f9675
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 29104
+ timestamp: 1759311219318
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-introspection-c-4.9.5-np2py312h31f38b3_14.conda
+ sha256: b23a92c31665576f21e30e74f5cdb71ca3fe2875654bc5ee9f775f8b937940cd
+ md5: 1c86d6841bbf2196d546267d62fb221a
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-cmake
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-typesupport-interface
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 46605
+ timestamp: 1759311939839
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rosidl-typesupport-introspection-cpp-4.9.5-np2py312h31f38b3_14.conda
+ sha256: d3508457eb30a994959f7b76d9c9e8f45a4247f55728e3ac39377b498a113db1
+ md5: 980e7f5acae739bf1ecb34b87fc0423b
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ament-index-python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-cli
+ - ros-kilted-rosidl-cmake
+ - ros-kilted-rosidl-generator-c
+ - ros-kilted-rosidl-generator-cpp
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-pycommon
+ - ros-kilted-rosidl-runtime-c
+ - ros-kilted-rosidl-runtime-cpp
+ - ros-kilted-rosidl-typesupport-interface
+ - ros-kilted-rosidl-typesupport-introspection-c
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 46903
+ timestamp: 1759312011070
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rpyutils-0.6.3-np2py312h31f38b3_14.conda
+ sha256: 9aa080af0bf516503f496f1b53b2ef1329390af0f55f57928798d436519fdbef
+ md5: 4274ab7f3f4c54f42b4ecefdba8e62f4
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 27149
+ timestamp: 1759310655737
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-action-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 77f7a83188c306421b5f3b048bf8d2a39e82bd0affbe98c4edb5e34da712ea18
+ md5: c5fb0f1bcf30f12d432f34106e49d668
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-msg
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 20406
+ timestamp: 1759315229183
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-bag-2.0.2-np2py312h31f38b3_14.conda
+ sha256: 2f08a4e6ad30982eeb188e198416c4140bc61777a227a663c2a3492ee6ca4f7e
+ md5: d70c540e1e1d1a649aff4408ce5d4ad9
+ depends:
+ - python
+ - pyyaml
+ - ros-kilted-ament-index-python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-python-qt-binding
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2-py
+ - ros-kilted-rosidl-runtime-py
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 135417
+ timestamp: 1759317596261
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-bag-plugins-2.0.2-np2py312h31f38b3_14.conda
+ sha256: 10f14221cd23ef2cc9cc74365f52ca5d5e8bd7a75bfd56d8cfaf46b268fe06fe
+ md5: 7c5bfb9d19b10124fec7106754c2dd9d
+ depends:
+ - pillow
+ - pycairo
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosbag2
+ - ros-kilted-rqt-bag
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-plot
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 50481
+ timestamp: 1759318768823
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-common-plugins-1.2.0-np2py312h31f38b3_14.conda
+ sha256: 5ba3ba8fdaa2bedaa9303f2b148f3eb21c486d94643ced8be87618dde86a399f
+ md5: 85ac88961498425f76c3bf3efd86411d
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-action
+ - ros-kilted-rqt-bag
+ - ros-kilted-rqt-bag-plugins
+ - ros-kilted-rqt-console
+ - ros-kilted-rqt-graph
+ - ros-kilted-rqt-image-view
+ - ros-kilted-rqt-msg
+ - ros-kilted-rqt-plot
+ - ros-kilted-rqt-publisher
+ - ros-kilted-rqt-py-common
+ - ros-kilted-rqt-py-console
+ - ros-kilted-rqt-reconfigure
+ - ros-kilted-rqt-service-caller
+ - ros-kilted-rqt-shell
+ - ros-kilted-rqt-srv
+ - ros-kilted-rqt-topic
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 22907
+ timestamp: 1759319381420
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-console-2.3.1-np2py312h31f38b3_14.conda
+ sha256: 9731791c629f6505575354c5672a5026e948689f14be83436db7cb6e8768940b
+ md5: f5358cbd03a761d3eb8d9bfa91c07493
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 85353
+ timestamp: 1759314690519
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-graph-1.7.1-np2py312h31f38b3_14.conda
+ sha256: f9a35f5c95ac359a436f4d974acf8b45b168725c578a0b477d2732e6dc7b6b21
+ md5: 6a20b76160cbd2960362748433d39cfb
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-dotgraph
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 70262
+ timestamp: 1759314620866
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-1.9.0-np2py312h31f38b3_14.conda
+ sha256: c7b28f990eb6955c0395f7d510d3ac51f312d638d7d63a7b6e3cfee0d980dcd6
+ md5: 9dfc5c264665a9ce7c851b92f4281ce3
+ depends:
+ - catkin_pkg
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 125012
+ timestamp: 1759314138682
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-cpp-1.9.0-np2py312h31f38b3_14.conda
+ sha256: e3572fe6b07a5f9170cf7922ac58573ad267b8f283cf42f3e85304ffa161c3b9
+ md5: 93172a04973cdf9a56757c736ef6b925
+ depends:
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-qt-gui-cpp
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 184336
+ timestamp: 1759314218965
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-gui-py-1.9.0-np2py312h31f38b3_14.conda
+ sha256: c30f44dde0f4b6f47d753091771883524a05dce21a53d889603a81dec02c0578
+ md5: 4017f4952f67c444de4459e85bedc254
+ depends:
+ - python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 23124
+ timestamp: 1759314322615
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-image-view-1.3.3-np2py312h31f38b3_14.conda
+ sha256: 8edaf2539d4a085e4d952bd8da4bd1a75e1421db17aa9c82dcd92742e6ea2f77
+ md5: 954ab59483c9e2e4bcc935b9a5e2f313
+ depends:
+ - python
+ - ros-kilted-cv-bridge
+ - ros-kilted-geometry-msgs
+ - ros-kilted-image-transport
+ - ros-kilted-qt-gui-cpp
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-cpp
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libgl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 295660
+ timestamp: 1759314949758
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-msg-1.6.0-np2py312h31f38b3_14.conda
+ sha256: 9fa86ed997f7010e0b797311ad0e26587c5444c84d5acbf486b5f20b471cb713
+ md5: 97dc5915f4a41e64930973e3b863eebb
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-py
+ - ros-kilted-rqt-console
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 30385
+ timestamp: 1759314957737
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-plot-1.6.3-np2py312h31f38b3_14.conda
+ sha256: 54adfb2691b9b33b1f03150bb9ab5f3fc8054b8e711fdf39f78e1426019b48c6
+ md5: e5863a15f41a360af75a8d7118826c4c
+ depends:
+ - matplotlib-base
+ - numpy
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui-py-common
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-parser
+ - ros-kilted-rosidl-runtime-py
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 68122
+ timestamp: 1759314604032
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-publisher-1.9.0-np2py312h31f38b3_14.conda
+ sha256: e5bb39e5001a56fe992071570597e57241a49987a7eec58fc7d7c186e1f40324
+ md5: 73cb1fc1798ec7dfda9c342030bdc84d
+ depends:
+ - numpy
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui-py-common
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-py
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 44902
+ timestamp: 1759314616534
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-py-common-1.9.0-np2py312h31f38b3_14.conda
+ sha256: f15e4ed55def6f03137e57a24485e81cc89fb119b0b4ad7ee291cd9b3a43287c
+ md5: 41918057dead45486b0f220b7ad31933
+ depends:
+ - python
+ - qt-main
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - qt-main >=5.15.15,<5.16.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - numpy >=1.23,<3
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 89062
+ timestamp: 1759314104538
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-py-console-1.4.0-np2py312h31f38b3_14.conda
+ sha256: e1bbaec43b6022a0f8fdf85f3597aeed711622e334ce04b16d01afb2cd29ce3a
+ md5: 3ffca9ccf0841e4cb483bf05a194a5cb
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui
+ - ros-kilted-qt-gui-py-common
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 27499
+ timestamp: 1759314611673
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-reconfigure-1.7.0-np2py312h31f38b3_14.conda
+ sha256: ad54afbcef7896ab02dbca9c701f35d5766718a2aec2912514cf7255ff2a91cd
+ md5: b1003ed32512f6f09829a6ce03f48062
+ depends:
+ - python
+ - pyyaml
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui-py-common
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-console
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 78341
+ timestamp: 1759314945159
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-service-caller-1.4.0-np2py312h31f38b3_14.conda
+ sha256: 9ef252c6ebd9bb39c95ab20609f6178993e8830e3fde74585aee02aae51e8413
+ md5: a2d35b4502ff9d858d397de24da63291
+ depends:
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 34222
+ timestamp: 1759314602323
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-shell-1.3.1-np2py312h31f38b3_14.conda
+ sha256: b3c6d588f13ae879c06f93571550ded567d5966e3552721a18df4a2ed08baf47
+ md5: 1c2e53a414aa38ca96d29ee06476c3a7
+ depends:
+ - python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-qt-gui
+ - ros-kilted-qt-gui-py-common
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 31254
+ timestamp: 1759314663503
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-srv-1.3.0-np2py312h31f38b3_14.conda
+ sha256: 3fad48812647ed25ae419a6c880024bc6092c3e62bb80bf3d0453ff2c3dc1fc9
+ md5: ced91e5a948af782d6cd084321afd613
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-msg
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 21355
+ timestamp: 1759315224930
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rqt-topic-1.8.1-np2py312h31f38b3_14.conda
+ sha256: af62669ac4dc512e4127d6a7f288285b5139ec8246a3b9061ed7b38b0592cb5e
+ md5: fcfd8b3636dc1514300c52c973d311d8
+ depends:
+ - python
+ - ros-kilted-python-qt-binding
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2topic
+ - ros-kilted-rqt-gui
+ - ros-kilted-rqt-gui-py
+ - ros-kilted-rqt-py-common
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 38630
+ timestamp: 1759314935589
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rsl-1.2.0-np2py312h2cad078_14.conda
+ sha256: 5d508a969f7352ef0eb4ad106e48980f66803b3b89f3713b73028143d0efca84
+ md5: 33705cf7845fe702fe90068597689319
+ depends:
+ - eigen
+ - fmt
+ - python
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros-kilted-tcb-span
+ - ros-kilted-tl-expected
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - fmt >=11.2.0,<11.3.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - graphviz >=13.1.2,<14.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 62354
+ timestamp: 1759314105386
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rti-connext-dds-cmake-module-1.1.0-np2py312h31f38b3_14.conda
+ sha256: 30f4bd38ace26022eaa24d6d3276ed5bca644c9fcf63ffa57c5f349ac1134dc9
+ md5: ae11d140e3ed3205234f3ea03a3fde76
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 31413
+ timestamp: 1759311531229
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rttest-0.18.3-np2py312h31f38b3_14.conda
+ sha256: 5066f44d7658e2023554ce1a87484806e3bf3db870fa4ab0f9b45a2da8e837d1
+ md5: 83de59877587284a0036241d248307ea
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 54033
+ timestamp: 1759311228122
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-assimp-vendor-15.0.6-np2py312h31f38b3_14.conda
+ sha256: 47146c977fc2b4b16ce6b0779b4f3d70d0fbbc05f3fca43bbac2c57c470a3ebe
+ md5: 02cc8fb336c7296bd685043dbcaa6ed3
+ depends:
+ - assimp
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - assimp >=5.4.3,<5.4.4.0a0
+ license: BSD-3-Clause
+ size: 24820
+ timestamp: 1759311129264
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-common-15.0.6-np2py312h31f38b3_14.conda
+ sha256: cfb01e6a8e598fdd7bb4fd93318b7328ee4657c292b37825544e33bfbd953e11
+ md5: 7de2562aea6079920595f195d28f7df9
+ depends:
+ - python
+ - qt-main
+ - ros-kilted-geometry-msgs
+ - ros-kilted-message-filters
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-resource-retriever
+ - ros-kilted-ros-workspace
+ - ros-kilted-rviz-ogre-vendor
+ - ros-kilted-rviz-rendering
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros-kilted-std-srvs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros-kilted-tinyxml2-vendor
+ - ros-kilted-urdf
+ - ros-kilted-yaml-cpp-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: BSD-3-Clause
+ size: 872672
+ timestamp: 1759314972201
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-default-plugins-15.0.6-np2py312h31f38b3_14.conda
+ sha256: 2e26e5f02f1fd4dee20dda6cbd0a16bacce86b49a129e52ec6edbbe3fc63d373
+ md5: 81ffd58d4751369add24162530d24e36
+ depends:
+ - python
+ - qt-main
+ - ros-kilted-geometry-msgs
+ - ros-kilted-gz-math-vendor
+ - ros-kilted-image-transport
+ - ros-kilted-interactive-markers
+ - ros-kilted-laser-geometry
+ - ros-kilted-map-msgs
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-point-cloud-transport
+ - ros-kilted-rclcpp
+ - ros-kilted-resource-retriever
+ - ros-kilted-ros-workspace
+ - ros-kilted-rviz-common
+ - ros-kilted-rviz-ogre-vendor
+ - ros-kilted-rviz-rendering
+ - ros-kilted-rviz-resource-interfaces
+ - ros-kilted-tf2
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-ros
+ - ros-kilted-urdf
+ - ros-kilted-visualization-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - python_abi 3.12.* *_cp312
+ - libopengl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 2304032
+ timestamp: 1759315782395
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-ogre-vendor-15.0.6-np2py312hb5dd976_14.conda
+ sha256: 921c0df5f205784677e944a508ad324616c58abb46eede1af1c6cbab03083b30
+ md5: b7b4de657b5f9937e26c5a30e1567928
+ depends:
+ - assimp
+ - freetype
+ - glew
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxaw
+ - xorg-libxrandr
+ - xorg-xorgproto
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - pugixml >=1.15,<1.16.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - libglu >=9.0.3,<9.1.0a0
+ - libfreetype >=2.14.1
+ - libfreetype6 >=2.14.1
+ - glew >=2.1.0,<2.2.0a0
+ - python_abi 3.12.* *_cp312
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.23,<3
+ - freeimage >=3.18.0,<3.19.0a0
+ - zziplib >=0.13.69,<0.14.0a0
+ - assimp >=5.4.3,<5.4.4.0a0
+ license: BSD-3-Clause
+ size: 5287574
+ timestamp: 1759310893597
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-rendering-15.0.6-np2py312h31f38b3_14.conda
+ sha256: 641e0cf15e4e5f26b47f3333e92b4e45dbc0d559616cb096cdff139a11f4e9e8
+ md5: f4f5fabb4c53a021add6677d34e34523
+ depends:
+ - eigen
+ - python
+ - qt-main
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-eigen3-cmake-module
+ - ros-kilted-resource-retriever
+ - ros-kilted-ros-workspace
+ - ros-kilted-rviz-assimp-vendor
+ - ros-kilted-rviz-ogre-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - libopengl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - python_abi 3.12.* *_cp312
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.23,<3
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - glew >=2.1.0,<2.2.0a0
+ license: BSD-3-Clause
+ size: 940718
+ timestamp: 1759313609249
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz-resource-interfaces-15.0.6-np2py312h31f38b3_14.conda
+ sha256: 2189c4771d5bfc0f0f2908dd0b34ab6638e22e422e2d821d5641c7bb916fedb6
+ md5: bd6a0d08f7f22c5dd98e6f1f3d486137
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 126450
+ timestamp: 1759312300235
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-rviz2-15.0.6-np2py312h31f38b3_14.conda
+ sha256: 10102f02227a8518fda2c9e0849375986fff03f6b675eecdb1db54b5cc9291d4
+ md5: 39aac8a66fcee137a7a04560388b510c
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rviz-common
+ - ros-kilted-rviz-default-plugins
+ - ros-kilted-rviz-ogre-vendor
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ license: BSD-3-Clause
+ size: 77948
+ timestamp: 1759316283890
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdformat-urdf-2.0.1-np2py312h31f38b3_14.conda
+ sha256: baa787af6a994d00582660a0fe9b3fb8ffefa8f29022547f98f1a0bc416e4c7d
+ md5: a83f3c8166d062d53de9a878c2a7e8c6
+ depends:
+ - python
+ - ros-kilted-ament-cmake-ros
+ - ros-kilted-pluginlib
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-sdformat-vendor
+ - ros-kilted-tinyxml2-vendor
+ - ros-kilted-urdf
+ - ros-kilted-urdf-parser-plugin
+ - ros2-distro-mutex 0.12.* kilted_*
+ - urdfdom_headers
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 88037
+ timestamp: 1759313868061
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdformat-vendor-0.2.6-np2py312ha3ea0c0_14.conda
+ sha256: 8359a482c984af86ceb496a5d1f042382081d0fcdfc262749d240a6f30ebe9cc
+ md5: abceaf5af9a61e4c7c86d14386f641ec
+ depends:
+ - pybind11
+ - python
+ - ros-kilted-gz-cmake-vendor
+ - ros-kilted-gz-math-vendor
+ - ros-kilted-gz-tools-vendor
+ - ros-kilted-gz-utils-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-urdfdom
+ - ros2-distro-mutex 0.12.* kilted_*
+ - sdformat15
+ - tinyxml2
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - libsdformat15 >=15.3.0,<16.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 32001
+ timestamp: 1759311820837
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sdl2-vendor-3.3.0-np2py312h31f38b3_14.conda
+ sha256: 9103e4e2ec138eecd67f6d370a16ecbb412a909278236ebc88e12e8131053860
+ md5: 60908b4eb726b66eacc4d0634842057d
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - sdl2
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - sdl2 >=2.32.56,<3.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 28378
+ timestamp: 1759310590309
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sensor-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 3421ea3741f3933c695e450e6e98c75f43dbecff9991312addcb0d63765ed559
+ md5: 64380666a25f8ff034fcb5f8552b66ab
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 549435
+ timestamp: 1759312716758
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sensor-msgs-py-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 0e60856e1945275334f50c24708ac78cfde76c94c6e1850172e04df5e5845ab9
+ md5: 277ccf11f40147a85c6b7024f3a42b3e
+ depends:
+ - numpy
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 30746
+ timestamp: 1759312875115
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-service-msgs-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 819e548ec1d453053ce9a11f89309ca1e9c344719753856c579cca9c4b5ca444
+ md5: 92fcab071a437f8800a55948469178dc
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 77918
+ timestamp: 1759312192999
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-shape-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: be8cc4c23d58640c6c1e731b171f26d48dca6d1dabd44a9db977080f372225a2
+ md5: 4006a5794abaf1517704a671ce6a2111
+ depends:
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 125842
+ timestamp: 1759312692090
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-spdlog-vendor-1.7.0-np2py312hb464df2_14.conda
+ sha256: 5ff496fdb467c065b315674ed386857e13040cf96c236be701c850b40ab40aac
+ md5: 2a5e907b29ef8ef3178a78be2b90d614
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - spdlog
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - spdlog >=1.15.3,<1.16.0a0
+ license: BSD-3-Clause
+ size: 27014
+ timestamp: 1759311547281
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sqlite3-vendor-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 899035fa6dde178f5f23a33a2f236f0ed270d1065d2fdfaee3fa80bb5746485a
+ md5: 2743e777029f92523f38030b9045b81f
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - sqlite
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - libsqlite >=3.50.4,<4.0a0
+ license: BSD-3-Clause
+ size: 24340
+ timestamp: 1759310581538
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sros2-0.15.2-np2py312h31f38b3_14.conda
+ sha256: 4e7d5312e533a3a63bda10b1a22d745d84c15c42b0ff071b540bb461b70d4b3e
+ md5: 3ec489c240f3277b620cdabf46d3feee
+ depends:
+ - argcomplete
+ - cryptography
+ - importlib_resources
+ - lxml
+ - python
+ - ros-kilted-ament-index-python
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 74898
+ timestamp: 1759315253196
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-sros2-cmake-0.15.2-np2py312h31f38b3_14.conda
+ sha256: 8d73aa17e1c15db87dd123eaa146dc74d5ea9137fed537703cc2fc252357b74a
+ md5: 4231a3901a57c56d6c42ca023c3b504e
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-ros2cli
+ - ros-kilted-sros2
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 37153
+ timestamp: 1759315514232
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-statistics-msgs-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 73469bed51f011822c68d58025810d62eb8a3afc0763a2e214e08277cc7cffa0
+ md5: 77efe8be05f46be950b62ad2ff355fe4
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 108110
+ timestamp: 1759312469834
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-std-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: c4cc5571e723c9bb593ca51c543f5fc0da903633f25402f3e5f7992fcbf28da3
+ md5: bef1e68d09246813560469e7c2cc5b3b
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 339331
+ timestamp: 1759312428997
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-std-srvs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 584d8788cacd1c72a004fe8c257755be20b2f51262b6fa576685435dc2117eaa
+ md5: 01e14a02e9fc3724dcb03e7126f029e0
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 168130
+ timestamp: 1759312342620
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-steering-controllers-library-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 2bf06c7856c5c6d7f861b1db1b73af8fe6065963488a347ed5886c015b03588b
+ md5: b634dd601ff224e69cd2a3f2373a85e1
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-generate-parameter-library
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rcpputils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-geometry-msgs
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 298775
+ timestamp: 1759316803333
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-stereo-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 5518360853b03fef83ced1de2de11ea16f5d962970cbcfd7af7ecbca73c95040
+ md5: fa2ce7ae65bd4be6346053632750aa33
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 81006
+ timestamp: 1759312984261
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tango-icons-vendor-0.4.0-np2py312h31f38b3_14.conda
+ sha256: 29f111f3d41610eac254f57c1849c1434ed00ea468a54d9ae7682f051dd25675
+ md5: 018d8ea0f5422702b765bba4eaccf68f
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 26216
+ timestamp: 1759311225487
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tcb-span-1.0.2-np2py312h31f38b3_14.conda
+ sha256: 5a9ac07b69b34587935660bfe5890da932680ad9a7e47785466ae7e5875e7488
+ md5: 9377927fdb83761dbb300cf410f0f79d
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 27817
+ timestamp: 1759310592057
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-teleop-twist-joy-2.6.5-np2py312h31f38b3_14.conda
+ sha256: 04d4492bac3a40b063cd47aaf5f1dece13e7dfb45fc3f85554a95934d3f84248
+ md5: e5ae406efcd5cac336c3850247c8b0fd
+ depends:
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-joy
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 221948
+ timestamp: 1759314627320
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-teleop-twist-keyboard-2.4.1-np2py312h31f38b3_14.conda
+ sha256: f97b9d37b16d52a141c754d20c38c3c110137daa5ac5ba8b687447d90605e4c8
+ md5: f6442af4e57033b4b4cd740654d5ae9d
+ depends:
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 24067
+ timestamp: 1759314105787
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-0.41.2-np2py312h31f38b3_14.conda
+ sha256: 0e82022c58250244fead9fdee101c20ec87cfaeb459a4a532f20a8ae9d878d3b
+ md5: f0bcbace2c659dd37e7de38ed29988fe
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-runtime-cpp
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 135241
+ timestamp: 1759313405626
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-bullet-0.41.2-np2py312h31f38b3_14.conda
+ sha256: 78b52964e35f89acf18b6d10ec41d7d57ead1f08ae04e798b80beb0ff1b3ab9d
+ md5: 7500d06adcc51fd1b5a0795711396404
+ depends:
+ - bullet
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 43718
+ timestamp: 1759314939610
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-eigen-0.41.2-np2py312h31f38b3_14.conda
+ sha256: f47907a22233c1431544a989313a5e573da5f3040db2e623d37c2cdd55e14fda
+ md5: 32305e97b6809bdae24378d3850bf323
+ depends:
+ - eigen
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 45055
+ timestamp: 1759314966081
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-eigen-kdl-0.41.2-np2py312h31f38b3_14.conda
+ sha256: de899e1a275ae37d2b3bf859eef7bf7a4252e2aa6a7ed2cef8a9becf68ee3d63
+ md5: 139cb945ea545055078493aca62fabcf
+ depends:
+ - eigen
+ - python
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 39859
+ timestamp: 1759313647577
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-geometry-msgs-0.41.2-np2py312h31f38b3_14.conda
+ sha256: dd9ce78181cd57a880d7df0334fb0c329e06a7681dd3e10a0161859271367f23
+ md5: bbd1c26df93c03d93937e42b5370cc2c
+ depends:
+ - numpy
+ - python
+ - ros-kilted-geometry-msgs
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros-kilted-tf2-ros-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 57642
+ timestamp: 1759314958338
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-kdl-0.41.2-np2py312h31f38b3_14.conda
+ sha256: da44bfad8f60c26756a57d137221c9574def10fe05c032fde5f9ad0a49eab5dc
+ md5: 7dec5dd5543200e5e6fc62fef685c785
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-orocos-kdl-vendor
+ - ros-kilted-python-orocos-kdl-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros-kilted-tf2-ros-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 46569
+ timestamp: 1759314940647
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-msgs-0.41.2-np2py312h31f38b3_14.conda
+ sha256: cafa456644eb71935ad3c2f1918ec747ad13ad9e58b7d9f418bddd65182ee607
+ md5: ce51ccce8f106e349e665cc2f98ddab4
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 258479
+ timestamp: 1759312673587
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-py-0.41.2-np2py312h31f38b3_14.conda
+ sha256: 36221497e622a668ec22e541613b69bf21a8e557206a0a56730441920c285531
+ md5: d155c3e828d8a5fbf338acae195989f1
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-rpyutils
+ - ros-kilted-tf2
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 55612
+ timestamp: 1759314129362
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-ros-0.41.2-np2py312h31f38b3_14.conda
+ sha256: 8413ab802da172deffffb361f2c15a80693ef0cf24030ec6ad1f6db99f438d01
+ md5: b99fc62a76f4a868e15b13183255ae04
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-message-filters
+ - ros-kilted-rcl-interfaces
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-rclcpp-components
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 467964
+ timestamp: 1759314636321
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-ros-py-0.41.2-np2py312h31f38b3_14.conda
+ sha256: df6143fa14de312f8480c8476afad4c935cdad58aa9e74cb8d0cd113807d2db7
+ md5: eab06e6404bbf90827d57edd1a77fcbc
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros-kilted-tf2-msgs
+ - ros-kilted-tf2-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 48731
+ timestamp: 1759314332236
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-sensor-msgs-0.41.2-np2py312h31f38b3_14.conda
+ sha256: 9619aab5ae6a300278c3e3cc48abe9a771316c20b67d7227f6887aecb4eccd7a
+ md5: 777910072ea90ff4ff648ccc9604d79a
+ depends:
+ - eigen
+ - numpy
+ - python
+ - ros-kilted-eigen3-cmake-module
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-sensor-msgs
+ - ros-kilted-sensor-msgs-py
+ - ros-kilted-std-msgs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-ros
+ - ros-kilted-tf2-ros-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 49820
+ timestamp: 1759315162025
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tf2-tools-0.41.2-np2py312h31f38b3_14.conda
+ sha256: aaedfe2798826f522618f6110a5368a3f6956a5fd4ba919caeecc274d6abe07e
+ md5: e02b0dfe41e6b61a4afbd5c7e482c654
+ depends:
+ - graphviz
+ - python
+ - pyyaml
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-tf2-msgs
+ - ros-kilted-tf2-py
+ - ros-kilted-tf2-ros-py
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 24510
+ timestamp: 1759314709470
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tinyxml2-vendor-0.10.0-np2py312h31f38b3_14.conda
+ sha256: 664a4d0e41a758f6f193de8e9512ca143e7c36e4e7f5a9f5c179393e8baf9a9f
+ md5: d3d4fd3b0961da8dcfefb10e491be400
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - tinyxml2
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 24357
+ timestamp: 1759310551172
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tl-expected-1.0.2-np2py312h31f38b3_14.conda
+ sha256: 2b2edc98f2bf0aab768609d178d4d0d82f579e81e36790b516793c7a053c24e7
+ md5: b1d37693f75aa912a2be67ad2ec6acd6
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 33346
+ timestamp: 1759310587514
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tlsf-0.10.1-np2py312h31f38b3_14.conda
+ sha256: ffe73cc55ecf02072534c13ac9e37ddd0015325d59ef6f4407f3d0e76a601b4b
+ md5: 3dea2803e92958e66e305d4c74a48e09
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 32882
+ timestamp: 1759311223133
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tlsf-cpp-0.18.3-np2py312h31f38b3_14.conda
+ sha256: d4dcc148df052ae9ebac24770bd27b011ea1df02290a0a6c24537bd0b6947539
+ md5: 0080f12a63984a5b8ff0bdf4f1fe6223
+ depends:
+ - python
+ - ros-kilted-ament-cmake
+ - ros-kilted-rclcpp
+ - ros-kilted-rmw
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros-kilted-tlsf
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 184559
+ timestamp: 1759314118930
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-topic-monitor-0.36.2-np2py312h31f38b3_14.conda
+ sha256: 64cac2e4152c0249dbe3b1209237cb06da644653ba3d8d83e13640d9a1cc6f0c
+ md5: 99333adc44f2e25036956bbea1a70858
+ depends:
+ - python
+ - ros-kilted-launch
+ - ros-kilted-launch-ros
+ - ros-kilted-rclpy
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 49466
+ timestamp: 1759314360658
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tracetools-8.6.0-np2py312h31f38b3_14.conda
+ sha256: d5566180b6d0b80437f921482c1326cc19a1317177b1e4401d33eea055ca9517
+ md5: 61a009492f44fa9c8c53ee58e30abe07
+ depends:
+ - lttng-ust
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - lttng-ust >=2.13.9,<2.14.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 75909
+ timestamp: 1759311594080
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-trajectory-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 73258522ce780eb8bddb61655fceebbc1711b19ec9cbe5df38bdcc797898df95
+ md5: 73b5b71f22bcd8994eb80e74edda69d2
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 148617
+ timestamp: 1759312768675
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-transmission-interface-5.6.0-np2py312h31f38b3_14.conda
+ sha256: 41d58703f1e03f6a817799ba690944aa5cd2270674c9090fd1df7a9e0d13f961
+ md5: 75e0bc86bf8ae807bef7f60078fbc86c
+ depends:
+ - fmt
+ - python
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - fmt >=11.2.0,<11.3.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 103747
+ timestamp: 1759315558693
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tricycle-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 757bf08a39ff313b3eb670e2fa9890957eba2336fa02fc2f29d28991d9bfbec1
+ md5: fcbb37a65935381c3ae3287e7f10f885
+ depends:
+ - python
+ - ros-kilted-ackermann-msgs
+ - ros-kilted-backward-ros
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-controller-interface
+ - ros-kilted-geometry-msgs
+ - ros-kilted-hardware-interface
+ - ros-kilted-nav-msgs
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-rcpputils
+ - ros-kilted-realtime-tools
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-tf2
+ - ros-kilted-tf2-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 316770
+ timestamp: 1759316727453
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-tricycle-steering-controller-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 1927daf7dd9adcdef04b279acec02ae58c45a06ee097e167195b13ee8b0f5a7d
+ md5: d85b147250d84ccbf30ca10ce12f2182
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-control-msgs
+ - ros-kilted-controller-interface
+ - ros-kilted-hardware-interface
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-lifecycle
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-srvs
+ - ros-kilted-steering-controllers-library
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ license: BSD-3-Clause
+ size: 104249
+ timestamp: 1759317229240
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-turtlesim-1.9.3-np2py312h31f38b3_14.conda
+ sha256: 3146db12749291de12a0cfe6f6cb30cdf30daba678628b322b218e4a5b388f48
+ md5: b8a53cdf42d5bd1feb8dfd3ed8f19669
+ depends:
+ - python
+ - qt-main
+ - ros-kilted-ament-index-cpp
+ - ros-kilted-geometry-msgs
+ - ros-kilted-rclcpp
+ - ros-kilted-rclcpp-action
+ - ros-kilted-ros-workspace
+ - ros-kilted-std-msgs
+ - ros-kilted-std-srvs
+ - ros-kilted-turtlesim-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - xorg-libx11
+ - xorg-libxext
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgl >=1.7.0,<2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - qt-main >=5.15.15,<5.16.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - xorg-libxext >=1.3.6,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: BSD-3-Clause
+ size: 578321
+ timestamp: 1759314311477
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-turtlesim-msgs-1.9.3-np2py312h31f38b3_14.conda
+ sha256: df71ca41d87a943adf4e058be2cb8ed999503c83ea4e530e2b3ca9a04be6a52d
+ md5: 0d663c27fbe4d2201e8405fda3d85d39
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 354681
+ timestamp: 1759312382218
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-type-description-interfaces-2.3.0-np2py312h31f38b3_14.conda
+ sha256: 5d110f81291d7d35c9f49a4cd12ba8c0a98346dd11f9b7e7cf9fe5cabe02efb7
+ md5: b3170b9c4d7f084ada2f5c0b4feacd89
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros-kilted-service-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 235660
+ timestamp: 1759312231654
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-uncrustify-vendor-3.1.0-np2py312h31f38b3_14.conda
+ sha256: 0eb93b4dd346539ec669030a396229e6c54a2cf425cc0df233ac95b26b2d75ab
+ md5: 3c659b1d43a36fd36507d5a91abb4031
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - uncrustify
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - uncrustify >=0.81.0,<0.82.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 22903
+ timestamp: 1759310568987
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-unique-identifier-msgs-2.7.0-np2py312h31f38b3_14.conda
+ sha256: 86244b9c4c68bb7fa8ef438be36e41ba46865ce5cb71f602b1c42044d1006a6a
+ md5: f52e20f5a1ee97432ae0196447e68a0e
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-core-runtime
+ - ros2-distro-mutex 0.12.* kilted_*
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 72223
+ timestamp: 1759312168628
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdf-2.12.2-np2py312h31f38b3_14.conda
+ sha256: e01ea4a3b15d6047d768a0d425c63a8397c074f65ddaf1aed2ef4ed87bdb4ded
+ md5: 10fc4a3b24552f0106e23a0379b8e932
+ depends:
+ - python
+ - ros-kilted-pluginlib
+ - ros-kilted-rcutils
+ - ros-kilted-ros-workspace
+ - ros-kilted-tinyxml2-vendor
+ - ros-kilted-urdf-parser-plugin
+ - ros-kilted-urdfdom
+ - ros-kilted-urdfdom-headers
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 157992
+ timestamp: 1759313704911
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdf-parser-plugin-2.12.2-np2py312h31f38b3_14.conda
+ sha256: 9f1f097b7f40d5721b63bf43603a3458305207c8a0d8d27bde54298ea6301e83
+ md5: 6dc2127774486b4d274b079d80921037
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros-kilted-urdfdom-headers
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 35339
+ timestamp: 1759313400256
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdfdom-4.0.1-py312h24bf083_14.conda
+ sha256: 41d74d8a275f9900b0467527640675e31e7acc7f0f0f7372611ca07d735e7dd0
+ md5: 9e10c205e7b8be8f7170244d9765c842
+ depends:
+ - console_bridge
+ - python
+ - ros-kilted-console-bridge-vendor
+ - ros-kilted-ros-workspace
+ - ros-kilted-tinyxml2-vendor
+ - ros-kilted-urdfdom-headers
+ - ros2-distro-mutex 0.12.* kilted_*
+ - tinyxml2
+ - urdfdom >=4.0.1,<4.1.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 8043
+ timestamp: 1759311771528
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-urdfdom-headers-1.1.2-py312h24bf083_14.conda
+ sha256: 7ad307e8e5f93ade280789cebd98e4d7b7f9743ed546baa55b081f183125ff7d
+ md5: a54e127dab8ede674732ec3865adeca0
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - urdfdom_headers >=1.1.2,<1.2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ size: 7188
+ timestamp: 1759310088496
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-velocity-controllers-5.7.0-np2py312h31f38b3_14.conda
+ sha256: 7c412d6e3c755f9a73fd47f0265ebfd90abd01035166d1bba41dc8d5adb50803
+ md5: f0dd36c04eed75f64434b05cc09d07b3
+ depends:
+ - python
+ - ros-kilted-backward-ros
+ - ros-kilted-forward-command-controller
+ - ros-kilted-pluginlib
+ - ros-kilted-rclcpp
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 81509
+ timestamp: 1759317156092
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-visualization-msgs-5.5.0-np2py312h31f38b3_14.conda
+ sha256: 3fbe5c4c8cd0aacf5179d030aab6ddcd849823d8730e482457fce0f1bce235c6
+ md5: c000d1bb682daff341c9366522ce0b77
+ depends:
+ - python
+ - ros-kilted-builtin-interfaces
+ - ros-kilted-geometry-msgs
+ - ros-kilted-ros-workspace
+ - ros-kilted-rosidl-default-runtime
+ - ros-kilted-sensor-msgs
+ - ros-kilted-std-msgs
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 376425
+ timestamp: 1759312951613
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-yaml-cpp-vendor-9.1.0-np2py312h31f38b3_14.conda
+ sha256: 8b1e129142a71b6443e221e39a04faee2c26668e380c98e7da1321d8c970fe30
+ md5: 025b593a3d6ce1aaec4f1101dd93bcd7
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - yaml-cpp
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - python_abi 3.12.* *_cp312
+ - numpy >=1.23,<3
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 22965
+ timestamp: 1759310581082
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-zenoh-cpp-vendor-0.6.4-np2py312hf7ffe29_14.conda
+ sha256: b1e69c552768b4e202672b0263a94831c0a62589e9ab0c445db06eae44d899c3
+ md5: 1c6688b6fb616f18386ab55218df67e6
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libzenohc >=1.5.1,<1.5.2.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - __glibc >=2.17
+ license: BSD-3-Clause
+ size: 25381
+ timestamp: 1759310563327
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros-kilted-zstd-vendor-0.32.0-np2py312h31f38b3_14.conda
+ sha256: 3878487f828b0048aea76926396d3916e26302782a44a298190b2e1b72c9d1c9
+ md5: 55c4cc860e07ccb0fb02023b44ecbe53
+ depends:
+ - python
+ - ros-kilted-ros-workspace
+ - ros2-distro-mutex 0.12.* kilted_*
+ - zstd
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - numpy >=1.23,<3
+ - python_abi 3.12.* *_cp312
+ - zstd >=1.5.7,<1.6.0a0
+ - ros2-distro-mutex >=0.12.0,<0.13.0a0
+ license: BSD-3-Clause
+ size: 23808
+ timestamp: 1759310593907
+- conda: https://prefix.dev/robostack-humble/linux-64/ros2-distro-mutex-0.6.0-humble_0.conda
+ sha256: 7634989268abeecfd928b94bce3722b8fcb8ef8cc94f55636153036dd7d93bed
+ md5: 5df036dfe2bb64af00f112c9e1cb7bcd
+ constrains:
+ - libboost 1.86.*
+ - libboost-devel 1.86.*
+ - pcl 1.14.1.*
+ - gazebo 11.*
+ - libprotobuf 5.28.2.*
+ license: BSD-3-Clause
+ size: 2423
+ timestamp: 1736205283672
+- conda: https://prefix.dev/robostack-jazzy/linux-64/ros2-distro-mutex-0.9.0-jazzy_0.conda
+ sha256: 38647c05f3c79ac6175e1c085c57684d51243d4758f508068a09160cc1af32ed
+ md5: d638ddd62625e44916600b44232d9c29
+ constrains:
+ - libboost 1.86.*
+ - libboost-devel 1.86.*
+ - pcl 1.15.0.*
+ - gazebo 11.*
+ - libprotobuf 5.29.3.*
+ - libxml2 2.13.*
+ - vtk 9.4.2.*
+ license: BSD-3-Clause
+ size: 2454
+ timestamp: 1749682529831
+- conda: https://prefix.dev/robostack-kilted/linux-64/ros2-distro-mutex-0.12.0-kilted_14.conda
+ sha256: 56d6559c480829189182818499a65eb453ef59e9d969f2f051471ef2e0afb92e
+ md5: 13e5de7533aa2a21a835572178dedacd
+ constrains:
+ - libboost 1.86.*
+ - libboost-devel 1.86.*
+ - pcl 1.15.0.*
+ - gazebo 11.*
+ - libprotobuf 6.31.1.*
+ - libxml2 2.13.*
+ - vtk 9.4.2.*
+ license: BSD-3-Clause
+ size: 2352
+ timestamp: 1759309976763
+- conda: https://conda.anaconda.org/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda
+ sha256: bff3b2fe7afe35125669ffcb7d6153db78070a753e1e4ac3b3d8d198eb6d6982
+ md5: b7ed380a9088b543e06a4f73985ed03a
+ depends:
+ - catkin_pkg
+ - python >=3.9
+ - pyyaml
+ - rospkg
+ - setuptools
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/rosdistro?source=hash-mapping
+ size: 47691
+ timestamp: 1747826651335
+- conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda
+ sha256: bff3b2fe7afe35125669ffcb7d6153db78070a753e1e4ac3b3d8d198eb6d6982
+ md5: b7ed380a9088b543e06a4f73985ed03a
+ depends:
+ - catkin_pkg
+ - python >=3.9
+ - pyyaml
+ - rospkg
+ - setuptools
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/rosdistro?source=hash-mapping
+ size: 47691
+ timestamp: 1747826651335
+- conda: https://conda.anaconda.org/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda
+ sha256: 236e8b53b0fab599d63f346b0e84fbe9bd8d160e0dd1e591e39f23ff6924941e
+ md5: 80daa4ba1f1944b8ac1f90a66fc9ef27
+ depends:
+ - catkin_pkg
+ - distro
+ - python >=3.9
+ - pyyaml
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/rospkg?source=hash-mapping
+ size: 31293
+ timestamp: 1737835793379
+- conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.1-pyhd8ed1ab_0.conda
+ sha256: 4d930bee9f6a6d0fb7e5c9bb644b2b168787e907014deb49a3e00c0552934447
+ md5: d530f2ffe740578a5ece44b1004067cc
+ depends:
+ - catkin_pkg
+ - distro
+ - python >=3.10
+ - pyyaml
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/rospkg?source=hash-mapping
+ size: 31852
+ timestamp: 1766125246079
+- conda: https://conda.anaconda.org/conda-forge/linux-64/ruby-3.4.4-he7af4c9_0.conda
+ sha256: 352995fc6ca779fa9f66590a8030d4f9d55d5a4d2ec2c39d95ea447dae67fd21
+ md5: 39678cab694b10f4c6472043ea2f3cb4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gdbm >=1.18,<1.19.0a0
+ - gmp >=6.3.0,<7.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.0,<4.0a0
+ - readline >=8.2,<9.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ constrains:
+ - __glibc >=2.17
+ channel: https://fast.prefix.dev/conda-forge
+ track_features:
+ - rb34
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 13053588
+ timestamp: 1748674278558
+- conda: https://prefix.dev/conda-forge/linux-64/ruby-3.4.8-h498564d_0.conda
+ sha256: 2e5fddb76b71217ee81f43a97cdad2fdeaf6e46ca4b51106677f6f30ddee2dfc
+ md5: 10d1bec841bb5ae68b053387d48f7f07
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gdbm >=1.18,<1.19.0a0
+ - gmp >=6.3.0,<7.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.5.4,<4.0a0
+ - readline >=8.3,<9.0a0
+ - yaml >=0.2.5,<0.3.0a0
+ constrains:
+ - __glibc >=2.17
+ track_features:
+ - rb34
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 13095624
+ timestamp: 1765964101082
+- conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py311h8f841c2_0.conda
+ sha256: 6d0902775e3ff96dd1d36ac627e03fe6c0b3d2159bb71e115dd16a1f31693b25
+ md5: 5ec0a1732a05376241e1e4c6d50e0e91
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - numpy <2.5
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 17193126
+ timestamp: 1739791897768
+- conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda
+ sha256: b9faaa024b77a3678a988c5a490f02c4029c0d5903998b585100e05bc7d4ff36
+ md5: 00b999c5f9d01fb633db819d79186bd4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - numpy <2.5
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 17064784
+ timestamp: 1739791925628
+- conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.15.2-py313h86fcf2b_0.conda
+ sha256: c3052b04397f76188611c8d853ac749986874d6a5869292b92ebae7ce093c798
+ md5: ca68acd9febc86448eeed68d0c6c8643
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - numpy <2.5
+ - numpy >=1.21,<3
+ - numpy >=1.23.5
+ - python >=3.13,<3.14.0a0
+ - python_abi 3.13.* *_cp313
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 17233404
+ timestamp: 1739791996980
+- conda: https://prefix.dev/conda-forge/linux-64/scipy-1.17.0-py312h54fa4ab_1.conda
+ sha256: 5b296faf6f5ff90d9ea3f6b16ff38fe2b8fe81c7c45b5e3a78b48887cca881d1
+ md5: 828eb07c4c87c38ed8c6560c25893280
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=14
+ - numpy <2.7
+ - numpy >=1.23,<3
+ - numpy >=1.25.2
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/scipy?source=compressed-mapping
+ size: 16903519
+ timestamp: 1768801007666
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sdformat14-14.5.0-hf3d152e_2.conda
+ sha256: 41f2081b8905d03f17ed4078680d4d3aa32f1b28164c4b2d4704005e657a5f6e
+ md5: 5d0227c2cff6c8a505780fa2b516a317
+ depends:
+ - libsdformat14 14.5.0 hea37092_2
+ - sdformat14-python >=14.5.0,<14.5.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 16490
+ timestamp: 1743981141355
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sdformat14-python-14.5.0-py312h76e88e7_2.conda
+ sha256: 168a6004cf41845f649cecaf65451569a888174453fd587c76758012bb628396
+ md5: 7a98fcb89ee4d103080477a27d58ee9a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gz-math7-python
+ - libgcc >=13
+ - libgz-math7 >=7.5.1,<8.0a0
+ - libsdformat14 14.5.0 hea37092_2
+ - libstdcxx >=13
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 555693
+ timestamp: 1743979347003
+- conda: https://prefix.dev/conda-forge/linux-64/sdformat15-15.3.0-hfd474e3_3.conda
+ sha256: b775ad1b64ea8653891ec76b028211bce1ba23fe23701542e826787b322edcc4
+ md5: 8d9dba9bb6673cccdb6d73627e533737
+ depends:
+ - libsdformat15 ==15.3.0 py312h1f51ce1_3
+ - sdformat15-python >=15.3.0,<15.3.1.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 9229
+ timestamp: 1759340798807
+- conda: https://prefix.dev/conda-forge/linux-64/sdformat15-python-15.3.0-py312he766b8f_3.conda
+ sha256: 697167ae0b742f05d861e26ed68607660186b85d41c24a1dfeee30012b310710
+ md5: c5e57ccf44dd38b34947120e77a23b22
+ depends:
+ - libsdformat15 ==15.3.0 py312h1f51ce1_3
+ - python
+ - gz-math8-python
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python_abi 3.12.* *_cp312
+ - pybind11-abi ==11
+ - libgz-math8 >=8.2.0,<9.0a0
+ - libsdformat15 >=15.3.0,<16.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 671461
+ timestamp: 1759340798807
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda
+ sha256: 7cd82ca1d1989de6ac28e72ba0bfaae1c055278f931b0c7ef51bb1abba3ddd2f
+ md5: 91f8537d64c4d52cbbb2910e8bd61bd2
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - sdl3 >=3.2.10,<4.0a0
+ - libgl >=1.7.0,<2.0a0
+ - libegl >=1.7.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 587053
+ timestamp: 1745799881584
+- conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.56-h54a6638_0.conda
+ sha256: 987ad072939fdd51c92ea8d3544b286bb240aefda329f9b03a51d9b7e777f9de
+ md5: cdd138897d94dc07d99afe7113a07bec
+ depends:
+ - libstdcxx >=14
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libgl >=1.7.0,<2.0a0
+ - sdl3 >=3.2.22,<4.0a0
+ - libegl >=1.7.0,<2.0a0
+ license: Zlib
+ purls: []
+ size: 589145
+ timestamp: 1757842881
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sdl3-3.2.14-he3e324a_0.conda
+ sha256: b55edbcbcbfc7cff671ef15b6a663b91cb2ca59ab285c283d02f29c51de59e9e
+ md5: a750ab1e94750185033ea96eadfc925d
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - dbus >=1.13.6,<2.0a0
+ - libxkbcommon >=1.9.2,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - libudev1 >=257.4
+ - libunwind >=1.6.2,<1.7.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - libusb >=1.0.28,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - libdrm >=2.4.124,<2.5.0a0
+ - xorg-libxscrnsaver >=1.2.4,<2.0a0
+ - liburing >=2.9,<2.10.0a0
+ - libegl >=1.7.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 1939690
+ timestamp: 1747327532502
+- conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.22-h68140b3_0.conda
+ sha256: 789ae811b7b93b01c2300461345027fd1a19a7a404e1b8729f58fbe81a82b3bc
+ md5: ebfddf2601e082193bb550924bbb9744
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - libgcc >=14
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - dbus >=1.16.2,<2.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libudev1 >=257.7
+ - libdrm >=2.4.125,<2.5.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ - libxkbcommon >=1.11.0,<2.0a0
+ - libusb >=1.0.29,<2.0a0
+ - libgl >=1.7.0,<2.0a0
+ - pulseaudio-client >=17.0,<17.1.0a0
+ - xorg-libxscrnsaver >=1.2.4,<2.0a0
+ - libunwind >=1.8.2,<1.9.0a0
+ - wayland >=1.24.0,<2.0a0
+ - liburing >=2.12,<2.13.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: Zlib
+ purls: []
+ size: 1936633
+ timestamp: 1756780211365
+- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda
+ sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863
+ md5: 4de79c071274a53dcaf2a8c749d1499e
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/setuptools?source=hash-mapping
+ size: 748788
+ timestamp: 1748804951958
+- conda: https://prefix.dev/conda-forge/noarch/setuptools-79.0.1-pyhff2d567_0.conda
+ sha256: 5ebc4bb71fbdc8048b08848519150c8d44b8eb18445711d3258c9d402ba87a2c
+ md5: fa6669cc21abd4b7b6c5393b7bc71914
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/setuptools?source=hash-mapping
+ size: 787541
+ timestamp: 1745484086827
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sip-6.10.0-py311hfdbb021_0.conda
+ sha256: 1eae0d5f0152714cdabb5cd3d480080e164b3fb5f7bd8208df7925d8e173d36b
+ md5: 78e5e37d25d5ab01fb5e91b8653b8f6d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - packaging
+ - ply
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - setuptools
+ - tomli
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sip?source=hash-mapping
+ size: 686578
+ timestamp: 1745411313879
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sip-6.10.0-py312h2ec8cdc_0.conda
+ sha256: b5c9f4fa4acc78d1d74d4d6670d2abccc3e028c94d92d25e579ff26eb59d7c0f
+ md5: 85ec3ebe43bcbad66496b95be0f2f895
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - packaging
+ - ply
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - setuptools
+ - tomli
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sip?source=hash-mapping
+ size: 685395
+ timestamp: 1745411325345
+- conda: https://prefix.dev/conda-forge/linux-64/sip-6.10.0-py312h1289d80_1.conda
+ sha256: 65224ec231bb938a720897d75fb76f20a2376bded01a438f5220f6fa43195e4f
+ md5: f96baa9ba899d5d30578675fe28b3473
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - packaging
+ - ply
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - setuptools
+ - tomli
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sip?source=hash-mapping
+ size: 680892
+ timestamp: 1759437964748
+- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
+ name: six
+ version: 1.17.0
+ sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274
+ requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*'
+- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
+ sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db
+ md5: a451d576819089b0d672f18768be0f65
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/six?source=hash-mapping
+ size: 16385
+ timestamp: 1733381032766
+- conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda
+ sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d
+ md5: 3339e3b65d58accf4ca4fb8748ab16b3
+ depends:
+ - python >=3.9
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/six?source=hash-mapping
+ size: 18455
+ timestamp: 1753199211006
+- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
+ sha256: ec91e86eeb2c6bbf09d51351b851e945185d70661d2ada67204c9a6419d282d3
+ md5: 3b3e64af585eadfb52bb90b553db5edf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 42739
+ timestamp: 1733501881851
+- conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_1.conda
+ sha256: 48f3f6a76c34b2cfe80de9ce7f2283ecb55d5ed47367ba91e8bb8104e12b8f11
+ md5: 98b6c9dc80eb87b2519b97bcf7e578dd
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 45829
+ timestamp: 1762948049098
+- conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2
+ md5: 755cf22df8693aa0d1aec1c123fa5863
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/snowballstemmer?source=hash-mapping
+ size: 73009
+ timestamp: 1747749529809
+- conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda
+ sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2
+ md5: 755cf22df8693aa0d1aec1c123fa5863
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/snowballstemmer?source=hash-mapping
+ size: 73009
+ timestamp: 1747749529809
+- conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.14.1-hed91bc2_1.conda
+ sha256: 0c604fe3f78ddb2b612841722bd9b5db24d0484e30ced89fac78c0a3f524dfd6
+ md5: 909188c8979846bac8e586908cf1ca6a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.0.1,<11.1a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 195665
+ timestamp: 1722238295031
+- conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.15.3-h10b92b3_0.conda
+ sha256: bbda0b4676358480798b9f82fc0923e433bcd5efdfc06061f16e8b5cdfdea2ea
+ md5: 227ea525af0489d8fcb030c7467e2957
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.1.4,<11.2.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 195513
+ timestamp: 1746813211417
+- conda: https://prefix.dev/conda-forge/linux-64/spdlog-1.15.3-h6dc744f_1.conda
+ sha256: e5ddcc73dac4c138b763aab4feace6101bdccf39ea4cf599705c9625c70beba0
+ md5: ffeb70e2cedafa9243bf89a20ada4cfe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.2.0,<11.3.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 195618
+ timestamp: 1751348678073
+- conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.50.1-h9eae976_0.conda
+ sha256: 937862e5bb72ef471a1043feab0a847f4b7f3f10bb8df53ecdc9f95767bd0e04
+ md5: e12789602c09a875957c1c78ff47cdf6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libsqlite 3.50.1 hee588c1_0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.2,<9.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Unlicense
+ purls: []
+ size: 899216
+ timestamp: 1749232809030
+- conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.51.2-hbc0de68_0.conda
+ sha256: 65436099fd33e4471348d614c1de9235fdd4e5b7d86a5a12472922e6b6628951
+ md5: a6adeaa8efb007e2e1ab3e45768ea987
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libsqlite 3.51.2 h0c1763c_0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.3,<9.0a0
+ license: blessing
+ purls: []
+ size: 183835
+ timestamp: 1768147980363
+- conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda
+ sha256: df30a9be29f1a8b5a2e314dd5b16ccfbcbd1cc6a4f659340e8bc2bd4de37bc6f
+ md5: 355898d24394b2af353eb96358db9fdd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 2746291
+ timestamp: 1730246036363
+- conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda
+ sha256: fb4b97a3fd259eff4849b2cfe5678ced0c5792b697eb1f7bcd93a4230e90e80e
+ md5: 0096882bd623e6cc09e8bf920fc8fb47
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 2750235
+ timestamp: 1742907589246
+- conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.1.2-hecca717_0.conda
+ sha256: 34e2e9c505cd25dba0a9311eb332381b15147cf599d972322a7c197aedfc8ce2
+ md5: 9859766c658e78fec9afa4a54891d920
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: BSD-2-Clause
+ license_family: BSD
+ purls: []
+ size: 2741200
+ timestamp: 1756086702093
+- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h0157908_18.conda
+ sha256: 69ab5804bdd2e8e493d5709eebff382a72fab3e9af6adf93a237ccf8f7dbd624
+ md5: 460eba7851277ec1fd80a1a24080787a
+ depends:
+ - kernel-headers_linux-64 3.10.0 he073ed8_18
+ - tzdata
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ purls: []
+ size: 15166921
+ timestamp: 1735290488259
+- conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
+ sha256: c47299fe37aebb0fcf674b3be588e67e4afb86225be4b0d452c7eb75c086b851
+ md5: 13dc3adbc692664cd3beabd216434749
+ depends:
+ - __glibc >=2.28
+ - kernel-headers_linux-64 4.18.0 he073ed8_9
+ - tzdata
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 24008591
+ timestamp: 1765578833462
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.1.0-h4ce085d_0.conda
+ sha256: b2819dd77faee0ea1f14774b603db33da44c14f7662982d4da4bbe76ac8a8976
+ md5: f0afd0c7509f6c1b8d77ee64d7ba64b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 179639
+ timestamp: 1743578685131
+- conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.3.0-h8d10470_1.conda
+ sha256: 2e3238234ae094d5a5f7c559410ea8875351b6bac0d9d0e576bf64b732b8029e
+ md5: e3259be3341da4bc06c5b7a78c8bf1bd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libhwloc >=2.12.1,<2.12.2.0a0
+ - libstdcxx >=14
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 181262
+ timestamp: 1762509955687
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2022.1.0-h1f99690_0.conda
+ sha256: 9ca1bfe192f6597089e7159cc6d5e3ab69708a29c96727058f0facd8ed04542e
+ md5: c74ce0b7a1d2e7a38409b0b0a6cd2df8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - tbb 2022.1.0 h4ce085d_0
+ channel: https://fast.prefix.dev/conda-forge
+ purls: []
+ size: 1084864
+ timestamp: 1743578705472
+- conda: https://prefix.dev/conda-forge/linux-64/tbb-devel-2022.3.0-h74b38a2_1.conda
+ sha256: 3c1bf7722f5c82459d3580c8e14eed19b08a83188d1c17aad9cb1e34d5f57339
+ md5: 11d050030e91674285a5daa2e17b1126
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - tbb 2022.3.0 h8d10470_1
+ purls: []
+ size: 1115083
+ timestamp: 1762509972811
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2
+ sha256: d9e3c192c535c06ec139ada7bcd1f12313ebd377208fc8149348e8534229f39e
+ md5: 39dd0757ee71ccd5b120440dce126c37
+ depends:
+ - libgcc-ng >=9.3.0
+ - libstdcxx-ng >=9.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 56535
+ timestamp: 1611562094388
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-10.0.0-h3f2d84a_2.conda
+ sha256: 997162d7585a3453cf5563ca563d645b512699b3ddf64bb28aaa6f3d771e3cb4
+ md5: 4feae0cd8a72cd1ef72b7528730946e5
+ depends:
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 130740
+ timestamp: 1742462199793
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda
+ sha256: 3ae98c2ca54928b2c72dbb4bd8ea229d3c865ad39367d377908294d9fb1e6f2c
+ md5: aeb0b91014ac8c5d468e32b7a5ce8ac2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ purls: []
+ size: 131351
+ timestamp: 1742246125630
+- conda: https://prefix.dev/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda
+ sha256: 3ae98c2ca54928b2c72dbb4bd8ea229d3c865ad39367d377908294d9fb1e6f2c
+ md5: aeb0b91014ac8c5d468e32b7a5ce8ac2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libgcc >=13
+ license: Zlib
+ purls: []
+ size: 131351
+ timestamp: 1742246125630
+- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
+ sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
+ md5: a0116df4f4ed05c303811a837d5b39d8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: TCL
+ license_family: BSD
+ purls: []
+ size: 3285204
+ timestamp: 1748387766691
+- conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
+ sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac
+ md5: cffd3bdd58090148f4cfcd831f4b26ab
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libzlib >=1.3.1,<2.0a0
+ constrains:
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: TCL
+ license_family: BSD
+ purls: []
+ size: 3301196
+ timestamp: 1769460227866
+- conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda
+ sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938
+ md5: b0dd904de08b7db706167240bf37b164
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/toml?source=hash-mapping
+ size: 22132
+ timestamp: 1734091907682
+- conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhcf101f3_3.conda
+ sha256: fd30e43699cb22ab32ff3134d3acf12d6010b5bbaa63293c37076b50009b91f8
+ md5: d0fc809fa4c4d85e959ce4ab6e1de800
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/toml?source=hash-mapping
+ size: 24017
+ timestamp: 1764486833072
+- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
+ sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e
+ md5: ac944244f1fed2eb49bae07193ae8215
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/tomli?source=hash-mapping
+ size: 19167
+ timestamp: 1733256819729
+- conda: https://prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda
+ sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8
+ md5: 72e780e9aa2d0a3295f59b1874e3768b
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/tomli?source=compressed-mapping
+ size: 21453
+ timestamp: 1768146676791
+- conda: https://conda.anaconda.org/conda-forge/noarch/typeguard-4.4.3-pyhd8ed1ab_0.conda
+ sha256: 82ba3fcac0dd777c568bf639d75db6d47ed44eb57b621cf241ab13eea5aa0227
+ md5: dda757df98b7ae2e6cb46e9650dc2240
+ depends:
+ - importlib-metadata >=3.6
+ - python >=3.9
+ - typing-extensions >=4.10.0
+ - typing_extensions >=4.14.0
+ constrains:
+ - pytest >=7
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/typeguard?source=hash-mapping
+ size: 35054
+ timestamp: 1749086876861
+- conda: https://prefix.dev/conda-forge/noarch/typeguard-4.5.0-pyhd8ed1ab_0.conda
+ sha256: 821e23d73e12e99ee5c722120b2c4cf164191adb56fb96a96bd725b2d60d9b10
+ md5: b514a7bd078dcb4520a1aea4d14c5a3a
+ depends:
+ - importlib-metadata >=3.6
+ - python >=3.10
+ - typing-extensions >=4.10.0
+ - typing_extensions >=4.14.0
+ constrains:
+ - pytest >=7
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/typeguard?source=hash-mapping
+ size: 37088
+ timestamp: 1771119690965
+- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.14.0-h32cad80_0.conda
+ sha256: b8cabfa54432b0f124c0af6b6facdf8110892914fa841ac2e80ab65ac52c1ba4
+ md5: a1cdd40fc962e2f7944bc19e01c7e584
+ depends:
+ - typing_extensions ==4.14.0 pyhe01879c_0
+ channel: https://fast.prefix.dev/conda-forge
+ license: PSF-2.0
+ license_family: PSF
+ purls: []
+ size: 90310
+ timestamp: 1748959427551
+- conda: https://prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda
+ sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c
+ md5: edd329d7d3a4ab45dcf905899a7a6115
+ depends:
+ - typing_extensions ==4.15.0 pyhcf101f3_0
+ license: PSF-2.0
+ license_family: PSF
+ purls: []
+ size: 91383
+ timestamp: 1756220668932
+- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.14.0-pyhe01879c_0.conda
+ sha256: 8561db52f278c5716b436da6d4ee5521712a49e8f3c70fcae5350f5ebb4be41c
+ md5: 2adcd9bb86f656d3d43bf84af59a1faf
+ depends:
+ - python >=3.9
+ - python
+ channel: https://fast.prefix.dev/conda-forge
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/typing-extensions?source=hash-mapping
+ size: 50978
+ timestamp: 1748959427551
+- conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda
+ sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731
+ md5: 0caa1af407ecff61170c9437a808404d
+ depends:
+ - python >=3.10
+ - python
+ license: PSF-2.0
+ license_family: PSF
+ purls:
+ - pkg:pypi/typing-extensions?source=hash-mapping
+ size: 51692
+ timestamp: 1756220668932
+- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
+ sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
+ md5: 4222072737ccff51314b5ece9c7d6f5a
+ channel: https://fast.prefix.dev/conda-forge
+ license: LicenseRef-Public-Domain
+ purls: []
+ size: 122968
+ timestamp: 1742727099393
+- conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
+ sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
+ md5: ad659d0a2b3e47e38d829aa8cad2d610
+ license: LicenseRef-Public-Domain
+ purls: []
+ size: 119135
+ timestamp: 1767016325805
+- conda: https://conda.anaconda.org/conda-forge/linux-64/uncrustify-0.74.0-h27087fc_0.tar.bz2
+ sha256: d6f3cf66b1eca558a5e68f5517b37c7be3b931527687ba6c2cb107d4f3e2efb2
+ md5: 98f0d60caa3da9382a26c55d9ebd240d
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only
+ license_family: GPL
+ purls: []
+ size: 746941
+ timestamp: 1647071114396
+- conda: https://conda.anaconda.org/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda
+ sha256: f0b3ad46b173de03c45134b16d7be0b5bdaff344cccb6a4d205850809c1a4dca
+ md5: c2310445798370fe622fc6b03d79a3a4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-only
+ license_family: GPL
+ purls: []
+ size: 650318
+ timestamp: 1747514389910
+- conda: https://prefix.dev/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda
+ sha256: f0b3ad46b173de03c45134b16d7be0b5bdaff344cccb6a4d205850809c1a4dca
+ md5: c2310445798370fe622fc6b03d79a3a4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: GPL-2.0-only
+ license_family: GPL
+ purls: []
+ size: 650318
+ timestamp: 1747514389910
+- conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda
+ sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b
+ md5: 51a12678b609f5794985fda8372b1a49
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/unicodedata2?source=hash-mapping
+ size: 405017
+ timestamp: 1736692662280
+- conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda
+ sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc
+ md5: 617f5d608ff8c28ad546e5d9671cbb95
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/unicodedata2?source=hash-mapping
+ size: 404401
+ timestamp: 1736692621599
+- conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-17.0.1-py312h4c3975b_0.conda
+ sha256: 895bbfe9ee25c98c922799de901387d842d7c01cae45c346879865c6a907f229
+ md5: 0b6c506ec1f272b685240e70a29261b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/unicodedata2?source=compressed-mapping
+ size: 410641
+ timestamp: 1770909099497
+- conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.1-h2e5d1f2_2.conda
+ sha256: e8c256eb6fd862445abc0efb2a38b88993e77edadcdc35536efeb1cb13baae6a
+ md5: c251c3c8818541801841f5c7d69454e9
+ depends:
+ - urdfdom_headers
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=13
+ - libgcc >=13
+ - tinyxml2 >=10.0.0,<10.1.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 118730
+ timestamp: 1742386855177
+- conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom-4.0.1-hae71d53_3.conda
+ sha256: 70b1e7322bf6306de6186e91fb87c15f7ba5c1aeb6d0fd31780e088c42025fc4
+ md5: a7830d1b7ade9d3f8c35191084fe7022
+ depends:
+ - urdfdom_headers
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ - console_bridge >=1.0.2,<1.1.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 118733
+ timestamp: 1743679555211
+- conda: https://prefix.dev/conda-forge/linux-64/urdfdom-4.0.1-h8631160_4.conda
+ sha256: 0bd2dddf5c9f68a75ccf8ce083b99b511b7f2acd12eafb2fbc50270157a1578d
+ md5: 50c945b918f7639e437727b87da16d77
+ depends:
+ - urdfdom_headers >=1.1.2,<2.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libstdcxx >=14
+ - libgcc >=14
+ - console_bridge >=1.0.2,<1.1.0a0
+ - tinyxml2 >=11.0.0,<11.1.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 119237
+ timestamp: 1771238079259
+- conda: https://conda.anaconda.org/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ sha256: 9f4090616ed1cb509bb65f1edb11b23c86d929db0ea3af2bf84277caa4337c40
+ md5: 4872efb515124284f8cee0f957f3edce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 19201
+ timestamp: 1726152409175
+- conda: https://prefix.dev/conda-forge/linux-64/urdfdom_headers-1.1.2-h84d6215_0.conda
+ sha256: 9f4090616ed1cb509bb65f1edb11b23c86d929db0ea3af2bf84277caa4337c40
+ md5: 4872efb515124284f8cee0f957f3edce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 19201
+ timestamp: 1726152409175
+- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
+ name: urllib3
+ version: 2.6.3
+ sha256: bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4
+ requires_dist:
+ - brotli>=1.2.0 ; platform_python_implementation == 'CPython' and extra == 'brotli'
+ - brotlicffi>=1.2.0.0 ; platform_python_implementation != 'CPython' and extra == 'brotli'
+ - h2>=4,<5 ; extra == 'h2'
+ - pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks'
+ - backports-zstd>=1.0.0 ; python_full_version < '3.14' and extra == 'zstd'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda
+ sha256: ec540ff477cd6d209b98f9b201e9c440908ea3a8b62e9e02dd12fcb60fff6d08
+ md5: 9464e297fa2bf08030c65a54342b48c3
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSL-1.0
+ purls: []
+ size: 13447
+ timestamp: 1730672182037
+- conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.09-ha770c72_0.conda
+ sha256: 18f84366d84b83bb4b2a6e0ac4487a5b4ee33c531faa2d822027fddf8225eed5
+ md5: 99884244028fe76046e3914f90d4ad05
+ license: BSL-1.0
+ purls: []
+ size: 14226
+ timestamp: 1767012219987
+- pypi: https://files.pythonhosted.org/packages/42/4b/6cf85b485be7ec29db837ec2a1d8cd68bc1147b1abf23d8636c5bd65b3cc/virtualenv-20.37.0-py3-none-any.whl
+ name: virtualenv
+ version: 20.37.0
+ sha256: 5d3951c32d57232ae3569d4de4cc256c439e045135ebf43518131175d9be435d
+ requires_dist:
+ - distlib>=0.3.7,<1
+ - filelock>=3.24.2,<4 ; python_full_version >= '3.10'
+ - filelock>=3.16.1,<=3.19.1 ; python_full_version < '3.10'
+ - importlib-metadata>=6.6 ; python_full_version < '3.8'
+ - platformdirs>=3.9.1,<5
+ - typing-extensions>=4.13.2 ; python_full_version < '3.11'
+ - furo>=2023.7.26 ; extra == 'docs'
+ - pre-commit-uv>=4.1.4 ; extra == 'docs'
+ - proselint>=0.13 ; extra == 'docs'
+ - sphinx>=7.1.2,!=7.3 ; extra == 'docs'
+ - sphinx-argparse>=0.4 ; extra == 'docs'
+ - sphinx-autodoc-typehints>=3.6.2 ; extra == 'docs'
+ - sphinx-copybutton>=0.5.2 ; extra == 'docs'
+ - sphinx-inline-tabs>=2025.12.21.14 ; extra == 'docs'
+ - sphinxcontrib-mermaid>=2 ; extra == 'docs'
+ - sphinxcontrib-towncrier>=0.2.1a0 ; extra == 'docs'
+ - towncrier>=23.6 ; extra == 'docs'
+ - covdefaults>=2.3 ; extra == 'test'
+ - coverage-enable-subprocess>=1 ; extra == 'test'
+ - coverage>=7.2.7 ; extra == 'test'
+ - flaky>=3.7 ; extra == 'test'
+ - packaging>=23.1 ; extra == 'test'
+ - pytest-env>=0.8.2 ; extra == 'test'
+ - pytest-freezer>=0.4.8 ; (python_full_version >= '3.13' and platform_python_implementation == 'CPython' and sys_platform == 'win32' and extra == 'test') or (platform_python_implementation == 'GraalVM' and extra == 'test') or (platform_python_implementation == 'PyPy' and extra == 'test')
+ - pytest-mock>=3.11.1 ; extra == 'test'
+ - pytest-randomly>=3.12 ; extra == 'test'
+ - pytest-timeout>=2.1 ; extra == 'test'
+ - pytest-xdist>=3.5 ; extra == 'test'
+ - pytest>=7.4 ; extra == 'test'
+ - setuptools>=68 ; extra == 'test'
+ - time-machine>=2.10 ; platform_python_implementation == 'CPython' and extra == 'test'
+ requires_python: '>=3.8'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.3.1-qt_py311h71fb23e_214.conda
+ sha256: 3142f6ccfd17d72e609dd541b5fdfbd245eb4821dcb1a70745829ff1550384db
+ md5: 7f272211494acf53a8279d0306bbf06b
+ depends:
+ - vtk-base 9.3.1 qt_py311h75c0fa1_214
+ - vtk-io-ffmpeg 9.3.1 qt_py311h71fb23e_214
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 23742
+ timestamp: 1736230739164
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.4.2-hc41f6cb_1.conda
+ sha256: e9f554a59de9fc6b8c86643051c77f90bdc735e3c50e5ef1452eb3eff2145768
+ md5: 0bccaaca2691d94d98d3104f323b3cec
+ depends:
+ - eigen
+ - expat
+ - libboost-devel
+ - libgl-devel
+ - liblzma-devel
+ - libopengl-devel
+ - python_abi 3.12.* *_cp312
+ - tbb-devel
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - vtk-io-ffmpeg >=9.4.2,<9.4.3.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 27886
+ timestamp: 1747924200259
+- conda: https://prefix.dev/conda-forge/linux-64/vtk-9.4.2-hf9009d3_4.conda
+ sha256: cfad04c182bceefa91b4ed77fe723d9920d0f2571d6d315594b7e9f87052a2a9
+ md5: 1fe792b86976782b3a91469a6a873dff
+ depends:
+ - eigen
+ - expat
+ - libboost-devel
+ - libgl-devel
+ - liblzma-devel
+ - libopengl-devel
+ - python_abi 3.12.* *_cp312
+ - tbb-devel
+ - vtk-base >=9.4.2,<9.4.3.0a0
+ - vtk-io-ffmpeg >=9.4.2,<9.4.3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 28431
+ timestamp: 1757094858488
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.3.1-qt_py311h75c0fa1_214.conda
+ sha256: 5a7f540122dc9dc38e9bb98ae5e7fbdb8ee7fc980b6b6f5f8253e248448982aa
+ md5: 5b19bf8cad9b88af2d99e1d4a843ee9d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.3,<1.14.4.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglvnd >=1.7.0,<2.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - liblzma >=5.6.3,<6.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.47.2,<4.0a0
+ - libstdcxx >=13
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.5,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.1,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - qt6-main >=6.8.1,<6.9.0a0
+ - tbb >=2021.13.0
+ - tk >=8.6.13,<8.7.0a0
+ - utfcpp
+ - wslink
+ - xorg-libice >=1.1.2,<2.0a0
+ - xorg-libsm >=1.2.5,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxau >=1.0.12,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxt >=1.3.1,<2.0a0
+ - xorg-libxxf86vm >=1.1.6,<2.0a0
+ constrains:
+ - libboost_headers
+ - paraview ==9999999999
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 46612743
+ timestamp: 1736230595075
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.4.2-py312h28cca35_1.conda
+ sha256: da51b776fd80c2e26823739471729e3a4934900569aa07d61862ec7eae731227
+ md5: c637f5bdfd94ac1827b1982f954a1eb9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libglvnd >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libsqlite >=3.49.2,<4.0a0
+ - libstdcxx >=13
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.6.0,<9.7.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.9.0,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ constrains:
+ - paraview ==9999999999
+ - libboost-headers >=1.86.0,<1.87.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/vtk?source=hash-mapping
+ size: 57602232
+ timestamp: 1747923951745
+- conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.4.2-py312h28cca35_1.conda
+ sha256: da51b776fd80c2e26823739471729e3a4934900569aa07d61862ec7eae731227
+ md5: c637f5bdfd94ac1827b1982f954a1eb9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - double-conversion >=3.3.1,<3.4.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - hdf5 >=1.14.6,<1.14.7.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.7.0,<3.0a0
+ - libfreetype >=2.13.3
+ - libfreetype6 >=2.13.3
+ - libgcc >=13
+ - libglvnd >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libjpeg-turbo >=3.1.0,<4.0a0
+ - liblzma >=5.8.1,<6.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.47,<1.7.0a0
+ - libsqlite >=3.49.2,<4.0a0
+ - libstdcxx >=13
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libxml2 >=2.13.8,<2.14.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.10.0,<1.11.0a0
+ - matplotlib-base >=2.0.0
+ - nlohmann_json
+ - numpy
+ - proj >=9.6.0,<9.7.0a0
+ - pugixml >=1.15,<1.16.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.9.0,<6.10.0a0
+ - tbb >=2021.13.0
+ - utfcpp
+ - wslink
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxcursor >=1.2.3,<2.0a0
+ constrains:
+ - paraview ==9999999999
+ - libboost-headers >=1.86.0,<1.87.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/vtk?source=hash-mapping
+ size: 57602232
+ timestamp: 1747923951745
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h71fb23e_214.conda
+ sha256: 7b577813e9df46dbb73bf561dff70d2d8e88eb6ec160efa7d7b2dcf3909518ed
+ md5: e1a9b21002c0749daea31927b5d1b074
+ depends:
+ - ffmpeg >=7.1.0,<8.0a0
+ - vtk-base 9.3.1 qt_py311h75c0fa1_214
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 81563
+ timestamp: 1736230738617
+- conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-he57672f_1.conda
+ sha256: 341fd7a252c2710ce460e77e041034b174aae63592cad4b038cce978f7529e38
+ md5: 7f147dc2141c95d3e852c561c185a323
+ depends:
+ - ffmpeg >=7.1.1,<8.0a0
+ - python_abi 3.12.* *_cp312
+ - vtk-base 9.4.2 py312h28cca35_1
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 90300
+ timestamp: 1747924188375
+- conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-he57672f_1.conda
+ sha256: 341fd7a252c2710ce460e77e041034b174aae63592cad4b038cce978f7529e38
+ md5: 7f147dc2141c95d3e852c561c185a323
+ depends:
+ - ffmpeg >=7.1.1,<8.0a0
+ - python_abi 3.12.* *_cp312
+ - vtk-base 9.4.2 py312h28cca35_1
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 90300
+ timestamp: 1747924188375
+- pypi: https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl
+ name: watchdog
+ version: 6.0.0
+ sha256: 20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2
+ requires_dist:
+ - pyyaml>=3.10 ; extra == 'watchmedo'
+ requires_python: '>=3.9'
+- conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_1.conda
+ sha256: 73d809ec8056c2f08e077f9d779d7f4e4c2b625881cad6af303c33dc1562ea01
+ md5: a37843723437ba75f42c9270ffe800b1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat >=2.7.0,<3.0a0
+ - libffi >=3.4.6,<3.5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 321099
+ timestamp: 1745806602179
+- conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-hd6090a7_1.conda
+ sha256: 3aa04ae8e9521d9b56b562376d944c3e52b69f9d2a0667f77b8953464822e125
+ md5: 035da2e4f5770f036ff704fa17aace24
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat >=2.7.1,<3.0a0
+ - libffi >=3.5.2,<3.6.0a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 329779
+ timestamp: 1761174273487
+- conda: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda
+ sha256: 37b0e03a943c048e143f624c51b329778f36923052092fd938827f8c19a4941d
+ md5: 6db9be3b67190229479780eeeee1b35b
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 138011
+ timestamp: 1749836220507
+- conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.47-hd8ed1ab_0.conda
+ sha256: 9ab2c12053ea8984228dd573114ffc6d63df42c501d59fda3bf3aeb1eaa1d23e
+ md5: 7da1571f560d4ba3343f7f4c48a79c76
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 140476
+ timestamp: 1765821981856
+- conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.2-py312h66e93f0_0.conda
+ sha256: ed3a1700ecc5d38c7e7dc7d2802df1bc1da6ba3d6f6017448b8ded0affb4ae00
+ md5: 669e63af87710f8d52fdec9d4d63b404
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 63590
+ timestamp: 1736869574299
+- conda: https://prefix.dev/conda-forge/linux-64/wrapt-2.1.1-py312h4c3975b_0.conda
+ sha256: 450743011cc1a3a557c3f7c0b65e0de8e3a5474261b05a2209273455f392fff1
+ md5: 8d156d9c38ef7af6eded19dddb71b543
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 87294
+ timestamp: 1770112026776
+- conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda
+ sha256: a3d344dbca9b8c94b84f7428d031e4376397f495bfe8a169adacb8ae87440777
+ md5: 9748c4ed9bb4784914bedf2efcc0ac1f
+ depends:
+ - aiohttp <4
+ - msgpack-python >=1,<2
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/wslink?source=hash-mapping
+ size: 35753
+ timestamp: 1747717971323
+- conda: https://prefix.dev/conda-forge/noarch/wslink-2.5.0-pyhd8ed1ab_0.conda
+ sha256: e9ac3caa3b17bed9bc301a67d3950f84fa37fb34002d2878c46cafb87978401d
+ md5: 8fa415e696acd9af59ce0a4425fd1b38
+ depends:
+ - aiohttp <4
+ - msgpack-python >=1,<2
+ - python >=3.10
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/wslink?source=hash-mapping
+ size: 35839
+ timestamp: 1760984848678
+- conda: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5
+ md5: 6c99772d483f566d59e25037fea2c4b1
+ depends:
+ - libgcc-ng >=12
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 897548
+ timestamp: 1660323080555
+- conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5
+ md5: 6c99772d483f566d59e25037fea2c4b1
+ depends:
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 897548
+ timestamp: 1660323080555
+- conda: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0
+ md5: e7f6ed84d4623d52ee581325c1587a6b
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 3357188
+ timestamp: 1646609687141
+- conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0
+ md5: e7f6ed84d4623d52ee581325c1587a6b
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ purls: []
+ size: 3357188
+ timestamp: 1646609687141
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda
+ sha256: 416aa55d946ce4ab173ab338796564893a2f820e80e04e098ff00c25fb981263
+ md5: 8637c3e5821654d0edf97e2b0404b443
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19965
+ timestamp: 1718843348208
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda
+ sha256: ad8cab7e07e2af268449c2ce855cbb51f43f4664936eff679b1f3862e6e4b01d
+ md5: fdc27cb255a7a2cc73b7919a968b48f0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20772
+ timestamp: 1750436796633
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b
+ md5: eb44b3b6deb1cab08d72cb61686fe64c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.13
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20296
+ timestamp: 1726125844850
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.6-hb03c661_0.conda
+ sha256: c2be9cae786fdb2df7c2387d2db31b285cf90ab3bfabda8fa75a596c3d20fc67
+ md5: 4d1fc190b99912ed557a8236e958c559
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libxcb >=1.13
+ - libxcb >=1.17.0,<2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20829
+ timestamp: 1763366954390
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7
+ md5: a0901183f08b6c7107aab109733a3c91
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 24551
+ timestamp: 1718880534789
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7
+ md5: a0901183f08b6c7107aab109733a3c91
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 24551
+ timestamp: 1718880534789
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69
+ md5: ad748ccca349aec3e91743e08b5e2b50
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14314
+ timestamp: 1718846569232
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69
+ md5: ad748ccca349aec3e91743e08b5e2b50
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14314
+ timestamp: 1718846569232
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df
+ md5: 0e0cbe0564d03a99afd5fd7b362feecd
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 16978
+ timestamp: 1718848865819
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df
+ md5: 0e0cbe0564d03a99afd5fd7b362feecd
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 16978
+ timestamp: 1718848865819
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a
+ md5: 608e0ef8256b81d04456e8d211eee3e8
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 51689
+ timestamp: 1718844051451
+- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a
+ md5: 608e0ef8256b81d04456e8d211eee3e8
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 51689
+ timestamp: 1718844051451
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda
+ sha256: a5d4af601f71805ec67403406e147c48d6bad7aaeae92b0622b7e2396842d3fe
+ md5: 397a013c2dc5145a70737871aaa87e98
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.12,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 392406
+ timestamp: 1749375847832
+- conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.46-hb03c661_0.conda
+ sha256: aa03b49f402959751ccc6e21932d69db96a65a67343765672f7862332aa32834
+ md5: 71ae752a748962161b4740eaff510258
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 396975
+ timestamp: 1759543819846
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b
+ md5: fb901ff28063514abb6046c9ec2c4a45
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 58628
+ timestamp: 1734227592886
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda
+ sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b
+ md5: fb901ff28063514abb6046c9ec2c4a45
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 58628
+ timestamp: 1734227592886
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250
+ md5: 1c74ff8c35dcadf952a16f752ca5aa49
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 27590
+ timestamp: 1741896361728
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda
+ sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250
+ md5: 1c74ff8c35dcadf952a16f752ca5aa49
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.2,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 27590
+ timestamp: 1741896361728
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda
+ sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67
+ md5: db038ce880f100acc74dba10302b5630
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 835896
+ timestamp: 1741901112627
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.13-he1eb515_0.conda
+ sha256: 516d4060139dbb4de49a4dcdc6317a9353fb39ebd47789c14e6fe52de0deee42
+ md5: 861fb6ccbc677bb9a9fb2468430b9c6a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libxcb >=1.17.0,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 839652
+ timestamp: 1770819209719
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda
+ sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038
+ md5: f6ebe2cb3f82ba6c057dde5d9debe4f7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14780
+ timestamp: 1734229004433
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda
+ sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b
+ md5: b2895afaf55bf96a8c8282a2e47a5de0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 15321
+ timestamp: 1762976464266
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda
+ sha256: 105ff923b60286188978d7b3aa159b555e2baf4c736801f62602d4127159f06d
+ md5: 7c0a9bf62d573409d12ad14b362a96e5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxmu >=1.2.1,<2.0a0
+ - xorg-libxpm >=3.5.17,<4.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 307032
+ timestamp: 1727870272246
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda
+ sha256: 105ff923b60286188978d7b3aa159b555e2baf4c736801f62602d4127159f06d
+ md5: 7c0a9bf62d573409d12ad14b362a96e5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxmu >=1.2.1,<2.0a0
+ - xorg-libxpm >=3.5.17,<4.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 307032
+ timestamp: 1727870272246
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f
+ md5: d3c295b50f092ab525ffe3c2aa4b7413
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 13603
+ timestamp: 1727884600744
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.7-hb03c661_0.conda
+ sha256: 048c103000af9541c919deef03ae7c5e9c570ffb4024b42ecb58dbde402e373a
+ md5: f2ba4192d38b6cef2bb2c25029071d90
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxfixes >=6.0.2,<7.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14415
+ timestamp: 1770044404696
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a
+ md5: 2ccd714aa2242315acaf0a67faea780b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 32533
+ timestamp: 1730908305254
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a
+ md5: 2ccd714aa2242315acaf0a67faea780b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 32533
+ timestamp: 1730908305254
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0
+ md5: b5fcc7172d22516e1f965490e65e33a4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 13217
+ timestamp: 1727891438799
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0
+ md5: b5fcc7172d22516e1f965490e65e33a4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 13217
+ timestamp: 1727891438799
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee
+ md5: 8035c64cb77ed555e3f150b7b3972480
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19901
+ timestamp: 1727794976192
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda
+ sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142
+ md5: 1dafce8548e38671bea82e3f5c6ce22f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20591
+ timestamp: 1762976546182
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14
+ md5: febbab7d15033c913d53c7a2c102309d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 50060
+ timestamp: 1727752228921
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.7-hb03c661_0.conda
+ sha256: 79c60fc6acfd3d713d6340d3b4e296836a0f8c51602327b32794625826bd052f
+ md5: 34e54f03dfea3e7a2dcf1453a85f1085
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 50326
+ timestamp: 1769445253162
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda
+ sha256: 2fef37e660985794617716eb915865ce157004a4d567ed35ec16514960ae9271
+ md5: 4bdb303603e9821baf5fe5fdff1dc8f8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 19575
+ timestamp: 1727794961233
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.2-hb03c661_0.conda
+ sha256: 83c4c99d60b8784a611351220452a0a85b080668188dce5dfa394b723d7b64f4
+ md5: ba231da7fccf9ea1e768caf5c7099b84
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 20071
+ timestamp: 1759282564045
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a
+ md5: 17dcc85db3c7886650b8908b183d6876
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 47179
+ timestamp: 1727799254088
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a
+ md5: 17dcc85db3c7886650b8908b183d6876
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 47179
+ timestamp: 1727799254088
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda
+ sha256: 1b9141c027f9d84a9ee5eb642a0c19457c788182a5a73c5a9083860ac5c20a8c
+ md5: 5e2eb9bf77394fc2e5918beefec9f9ab
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 13891
+ timestamp: 1727908521531
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.6-hecca717_0.conda
+ sha256: 3a9da41aac6dca9d3ff1b53ee18b9d314de88add76bafad9ca2287a494abcd86
+ md5: 93f5d4b5c17c8540479ad65f206fea51
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14818
+ timestamp: 1769432261050
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda
+ sha256: 467cba5106e628068487dcbc2ba2dbd6a434e75d752eaf0895086e9fe65e6a8d
+ md5: f35a9a2da717ade815ffa70c0e8bdfbd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 89078
+ timestamp: 1727965853556
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.3.1-hb03c661_0.conda
+ sha256: 2feca3d789b6ad46bd40f71c135cc2f05cb17648a523ffa5f773a0add5bc21fe
+ md5: c68a1319c4e98c0504614f0abc6e8274
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.7,<2.0a0
+ - xorg-libxt >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 90301
+ timestamp: 1769675723651
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxpm-3.5.17-hb9d3cd8_1.conda
+ sha256: 8ce7ae21dcbbb759c6fb9e5ad2a2f2f4e54172adf160ea59e11712598edbb75c
+ md5: f35bec7fface97f67f44ca952fc740b7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gettext
+ - libasprintf >=0.22.5,<1.0a0
+ - libgcc >=13
+ - libgettextpo >=0.22.5,<1.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 64764
+ timestamp: 1727801210327
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxpm-3.5.18-hb03c661_0.conda
+ sha256: 635a3fed88a5e77997ebff4f3595755d027bc21d3dc9bf0cc420331c569df784
+ md5: 1e93b6e9ab969e1ec5bac4021bc44e9b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - gettext
+ - libasprintf >=0.25.1,<1.0a0
+ - libgcc >=14
+ - libgettextpo >=0.25.1,<1.0a0
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxt >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 64726
+ timestamp: 1769445214628
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d
+ md5: 2de7f99d6581a4a7adbff607b5c278ca
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 29599
+ timestamp: 1727794874300
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.5-hb03c661_0.conda
+ sha256: 80ed047a5cb30632c3dc5804c7716131d767089f65877813d4ae855ee5c9d343
+ md5: e192019153591938acf7322b6459d36e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.12,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 30456
+ timestamp: 1769445263457
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1
+ md5: 96d57aba173e878a2089d5638016dc5e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 33005
+ timestamp: 1734229037766
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda
+ sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1
+ md5: 96d57aba173e878a2089d5638016dc5e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 33005
+ timestamp: 1734229037766
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda
+ sha256: 58e8fc1687534124832d22e102f098b5401173212ac69eb9fd96b16a3e2c8cb2
+ md5: 303f7a0e9e0cd7d250bb6b952cecda90
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14412
+ timestamp: 1727899730073
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda
+ sha256: 58e8fc1687534124832d22e102f098b5401173212ac69eb9fd96b16a3e2c8cb2
+ md5: 303f7a0e9e0cd7d250bb6b952cecda90
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 14412
+ timestamp: 1727899730073
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda
+ sha256: c0830fe9fa78d609cd9021f797307e7e0715ef5122be3f784765dad1b4d8a193
+ md5: 9a809ce9f65460195777f2f2116bae02
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 12302
+ timestamp: 1734168591429
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda
+ sha256: c0830fe9fa78d609cd9021f797307e7e0715ef5122be3f784765dad1b4d8a193
+ md5: 9a809ce9f65460195777f2f2116bae02
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 12302
+ timestamp: 1734168591429
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ sha256: a8afba4a55b7b530eb5c8ad89737d60d60bc151a03fbef7a2182461256953f0e
+ md5: 279b0de5f6ba95457190a1c459a64e31
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 379686
+ timestamp: 1731860547604
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ sha256: a8afba4a55b7b530eb5c8ad89737d60d60bc151a03fbef7a2182461256953f0e
+ md5: 279b0de5f6ba95457190a1c459a64e31
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 379686
+ timestamp: 1731860547604
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a
+ md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 32808
+ timestamp: 1727964811275
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a
+ md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 32808
+ timestamp: 1727964811275
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda
+ sha256: 8a4e2ee642f884e6b78c20c0892b85dd9b2a6e64a6044e903297e616be6ca35b
+ md5: 5efa5fa6243a622445fdfd72aee15efa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 17819
+ timestamp: 1734214575628
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.7-hb03c661_0.conda
+ sha256: 64db17baaf36fa03ed8fae105e2e671a7383e22df4077486646f7dbf12842c9f
+ md5: 665d152b9c6e78da404086088077c844
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - xorg-libx11 >=1.8.12,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 18701
+ timestamp: 1769434732453
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-hb9d3cd8_1005.conda
+ sha256: d3189527c5b8e1fea2a2e391012d3e8f794e03bdabe9f4457a0ac4cb8fc7214c
+ md5: 1c08f67e3406550eef135e17263f8154
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 26134
+ timestamp: 1731320782817
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ sha256: 1316680be6edddee0156b86ec1102fc8286f51c1a5440366ed1db596a2dc3731
+ md5: 7c21106b851ec72c037b162c216d8f05
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 565425
+ timestamp: 1726846388217
+- conda: https://prefix.dev/conda-forge/linux-64/xorg-xorgproto-2025.1-hb03c661_0.conda
+ sha256: 7a8c64938428c2bfd016359f9cb3c44f94acc256c6167dbdade9f2a1f5ca7a36
+ md5: aa8d21be4b461ce612d8f5fb791decae
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 570010
+ timestamp: 1766154256151
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda
+ sha256: 802725371682ea06053971db5b4fb7fbbcaee9cb1804ec688f55e51d74660617
+ md5: 68eae977d7d1196d32b636a026dc015d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - liblzma 5.8.1 hb9d3cd8_2
+ - liblzma-devel 5.8.1 hb9d3cd8_2
+ - xz-gpl-tools 5.8.1 hbcc6ac9_2
+ - xz-tools 5.8.1 hb9d3cd8_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later
+ purls: []
+ size: 23987
+ timestamp: 1749230104359
+- conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.2-ha02ee65_0.conda
+ sha256: 6d60b1870bdbbaf098bbc7d69e4f4eccb8a6b5e856c2d0aca3c62c0db97e0863
+ md5: d34b831f6d6a9b014eb7cf65f6329bba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - liblzma 5.8.2 hb03c661_0
+ - liblzma-devel 5.8.2 hb03c661_0
+ - xz-gpl-tools 5.8.2 ha02ee65_0
+ - xz-tools 5.8.2 hb03c661_0
+ license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later
+ purls: []
+ size: 24101
+ timestamp: 1768752698238
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda
+ sha256: 840838dca829ec53f1160f3fca6dbfc43f2388b85f15d3e867e69109b168b87b
+ md5: bf627c16aa26231720af037a2709ab09
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - liblzma 5.8.1 hb9d3cd8_2
+ constrains:
+ - xz 5.8.1.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later
+ purls: []
+ size: 33911
+ timestamp: 1749230090353
+- conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.2-ha02ee65_0.conda
+ sha256: a4876e9fb124665315aedfe96b1a832e2c26312241061d5f990208aaf380da46
+ md5: a159fe1e8200dd67fa88ddea9169d25a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - liblzma 5.8.2 hb03c661_0
+ constrains:
+ - xz 5.8.2.*
+ license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later
+ purls: []
+ size: 33774
+ timestamp: 1768752679459
+- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda
+ sha256: 58034f3fca491075c14e61568ad8b25de00cb3ae479de3e69be6d7ee5d3ace28
+ md5: 1bad2995c8f1c8075c6c331bf96e46fb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - liblzma 5.8.1 hb9d3cd8_2
+ constrains:
+ - xz 5.8.1.*
+ channel: https://fast.prefix.dev/conda-forge
+ license: 0BSD AND LGPL-2.1-or-later
+ purls: []
+ size: 96433
+ timestamp: 1749230076687
+- conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.2-hb03c661_0.conda
+ sha256: 65c8a236b89a4ad24565a986b7c00b8cb2906af52fd9963730c44ea56a9fde9a
+ md5: dfd6129671f782988d665354e7aa269d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - liblzma 5.8.2 hb03c661_0
+ constrains:
+ - xz 5.8.2.*
+ license: 0BSD AND LGPL-2.1-or-later
+ purls: []
+ size: 96093
+ timestamp: 1768752662020
+- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
+ md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
+ depends:
+ - libgcc-ng >=9.4.0
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 89141
+ timestamp: 1641346969816
+- conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda
+ sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad
+ md5: a77f85f77be52ff59391544bfe73390a
+ depends:
+ - libgcc >=14
+ - __glibc >=2.17,<3.0.a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 85189
+ timestamp: 1753484064210
+- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda
+ sha256: 4b0b713a4308864a59d5f0b66ac61b7960151c8022511cdc914c0c0458375eca
+ md5: 92b90f5f7a322e74468bb4909c7354b5
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 223526
+ timestamp: 1745307989800
+- conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda
+ sha256: 4b0b713a4308864a59d5f0b66ac61b7960151c8022511cdc914c0c0458375eca
+ md5: 92b90f5f7a322e74468bb4909c7354b5
+ depends:
+ - libstdcxx >=13
+ - libgcc >=13
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 223526
+ timestamp: 1745307989800
+- conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.20.1-py311h2dc5d0c_0.conda
+ sha256: 9b6cce2794e836a43679d733b8bdbafeed45ff534c338b84d439ed55cd7b2170
+ md5: 18c288aa6aae90e2fd8d1cf01d655e4f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - idna >=2.0
+ - libgcc >=13
+ - multidict >=4.0
+ - propcache >=0.2.1
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/yarl?source=hash-mapping
+ size: 151355
+ timestamp: 1749555157521
+- conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.20.1-py312h178313f_0.conda
+ sha256: f5c2c572423fac9ea74512f96a7c002c81fd2eb260608cfa1edfaeda4d81582e
+ md5: 3b3fa80c71d6a8d0380e9e790f5a4a8a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - idna >=2.0
+ - libgcc >=13
+ - multidict >=4.0
+ - propcache >=0.2.1
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ channel: https://fast.prefix.dev/conda-forge
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/yarl?source=hash-mapping
+ size: 149496
+ timestamp: 1749555225039
+- conda: https://prefix.dev/conda-forge/linux-64/yarl-1.22.0-py312h8a5da7c_0.conda
+ sha256: 6e3f2db09387fc982b5400b842745084825cd2d4621e8278e4af8fb0dc2b55d8
+ md5: 6a3fd177315aaafd4366930d440e4430
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - idna >=2.0
+ - libgcc >=14
+ - multidict >=4.0
+ - propcache >=0.2.1
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/yarl?source=hash-mapping
+ size: 151549
+ timestamp: 1761337128623
+- conda: https://prefix.dev/conda-forge/linux-64/zenoh-rust-abi-1.5.1.1.85.0-h8619998_0.conda
+ sha256: fd9a51a818c9e3f6208d7bdfc64b0393e49ff7a7ad0c102f188bd9d8a4b4d4c8
+ md5: 5484736d4ddd49de688e3cd7a9262238
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ constrains:
+ - __glibc >=2.17
+ license: Apache-2.0 OR EPL-2.0
+ purls: []
+ size: 46881
+ timestamp: 1757026026903
+- pypi: https://files.pythonhosted.org/packages/c1/9f/ce1c5af9afd11fe3521a90441aba48c484f98730c6d833d69ee4387ae2e9/zensical-0.0.23-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ name: zensical
+ version: 0.0.23
+ sha256: 9a3679d6bf6374f503afb74d9f6061da5de83c25922f618042b63a30b16f0389
+ requires_dist:
+ - click>=8.1.8
+ - deepmerge>=2.0
+ - markdown>=3.7
+ - pygments>=2.16
+ - pymdown-extensions>=10.15
+ - pyyaml>=6.0.2
+ - tomli>=2.0 ; python_full_version < '3.11'
+ requires_python: '>=3.10'
+- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda
+ sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad
+ md5: df5e78d904988eb55042c0c97446079f
+ depends:
+ - python >=3.9
+ channel: https://fast.prefix.dev/conda-forge
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/zipp?source=hash-mapping
+ size: 22963
+ timestamp: 1749421737203
+- conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhcf101f3_1.conda
+ sha256: b4533f7d9efc976511a73ef7d4a2473406d7f4c750884be8e8620b0ce70f4dae
+ md5: 30cd29cb87d819caead4d55184c1d115
+ depends:
+ - python >=3.10
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/zipp?source=hash-mapping
+ size: 24194
+ timestamp: 1764460141901
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab
+ md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib 1.3.1 hb9d3cd8_2
+ channel: https://fast.prefix.dev/conda-forge
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 92286
+ timestamp: 1727963153079
+- conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab
+ md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib 1.3.1 hb9d3cd8_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 92286
+ timestamp: 1727963153079
+- conda: https://prefix.dev/conda-forge/linux-64/zlib-ng-2.3.3-hceb46e0_1.conda
+ sha256: ea4e50c465d70236408cb0bfe0115609fd14db1adcd8bd30d8918e0291f8a75f
+ md5: 2aadb0d17215603a82a2a6b0afd9a4cb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libstdcxx >=14
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 122618
+ timestamp: 1770167931827
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda
+ sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb
+ md5: 6432cb5d4ac0046c3ac0a8a0f95842f9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 567578
+ timestamp: 1742433379869
+- conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
+ sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
+ md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 601375
+ timestamp: 1764777111296
+- conda: https://conda.anaconda.org/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda
+ sha256: a7c3ba25f384c7eb30c4f4c2d390f62714e0b4946d315aa852749f927b4b03ff
+ md5: 6d2d107e0fb8bc381acd4e9c68dbeae7
+ depends:
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ channel: https://fast.prefix.dev/conda-forge
+ license: LGPL-2.0-or-later OR MPL-1.1
+ purls: []
+ size: 106915
+ timestamp: 1719242059793
+- conda: https://prefix.dev/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda
+ sha256: a7c3ba25f384c7eb30c4f4c2d390f62714e0b4946d315aa852749f927b4b03ff
+ md5: 6d2d107e0fb8bc381acd4e9c68dbeae7
+ depends:
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later OR MPL-1.1
+ purls: []
+ size: 106915
+ timestamp: 1719242059793
diff --git a/pixi.toml b/pixi.toml
new file mode 100644
index 0000000..b5003c0
--- /dev/null
+++ b/pixi.toml
@@ -0,0 +1,71 @@
+[workspace]
+preview = ["pixi-build"]
+authors = [
+ "Daniel San José Pro <42489409+danielsanjosepro@users.noreply.github.com>"
+]
+channels = ["https://fast.prefix.dev/conda-forge"]
+name = "crisp_py"
+platforms = ["linux-64"]
+
+[activation]
+scripts = ["install/setup.sh"]
+
+[dependencies]
+python = "*"
+compilers = "*"
+cmake = "*"
+pkg-config = "*"
+make = "*"
+ninja = "*"
+pinocchio = ">=3.7.0,<4"
+# pinocchio = ">=3.7.0,<4"
+
+[tasks]
+clean = "rm -rf build install log"
+build = "colcon build --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
+clean-build = [{ task = "clean" }, { task = "build" }]
+source = "source install/setup.sh"
+
+[target.linux.dependencies]
+libgl-devel = "*"
+
+[environments]
+humble = { features = ["humble"] }
+jazzy = { features = ["jazzy"] }
+kilted = { features = ["kilted"] }
+
+# humble
+[feature.humble]
+channels = ["https://prefix.dev/robostack-humble"]
+
+[feature.humble.dependencies]
+ros-humble-desktop = "*"
+colcon-common-extensions = "*"
+ros-humble-ros2-control = "*"
+ros-humble-ros2-controllers = "*"
+
+# jazzy
+[feature.jazzy]
+channels = ["https://prefix.dev/robostack-jazzy"]
+
+[feature.jazzy.dependencies]
+ros-jazzy-desktop = "*"
+colcon-common-extensions = "*"
+ros-jazzy-ros2-control = "*"
+ros-jazzy-ros2-controllers = "*"
+
+# kilted
+[feature.kilted]
+channels = ["https://prefix.dev/robostack-kilted", "https://prefix.dev/conda-forge"]
+
+[feature.kilted.dependencies]
+ros2-distro-mutex = "*"
+ros-kilted-desktop = "*"
+colcon-common-extensions = "*"
+ros-kilted-ros2-control = "*"
+ros-kilted-ros2-controllers = "*"
+fmt = ">=11.2.0,<12"
+
+[pypi-dependencies]
+crisp-controllers = { path = ".", editable = false }
+pre-commit = ">=4.5.1, <5"
diff --git a/pyproject.toml b/pyproject.toml
index f9d16df..76c81a5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
name = "crisp-controllers"
version = "0.1.0"
-description = "Add your description here"
+description = "A collection of ROS2 controllers for the CRISP project."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
diff --git a/src/cartesian_controller.cpp b/src/cartesian_controller.cpp
index 6c7cc93..a7e9568 100644
--- a/src/cartesian_controller.cpp
+++ b/src/cartesian_controller.cpp
@@ -1,27 +1,38 @@
-#include "crisp_controllers/utils/fiters.hpp"
-#include "crisp_controllers/utils/torque_rate_saturation.hpp"
-#include
#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include "pinocchio/algorithm/model.hpp"
#include
+
+#include // NOLINT(build/include_order)
#include
+#include
+#include
+
#include
#include
-#include
+#include
#include
#include
#include
#include
#include
-#include
+
+#include "pinocchio/algorithm/model.hpp"
+
+#include
+#include
+#include
+#include
+#include
+#include "crisp_controllers/utils/fiters.hpp"
+#include "crisp_controllers/utils/torque_rate_saturation.hpp"
+
+#include "crisp_controllers/utils/fiters.hpp"
+#include "crisp_controllers/utils/ros2_version.hpp"
+#include "crisp_controllers/utils/torque_rate_saturation.hpp"
+
+#if HAS_ROS2_CONTROL_INTROSPECTION
+#include
+#endif
namespace crisp_controllers {
@@ -29,7 +40,7 @@ controller_interface::InterfaceConfiguration
CartesianController::command_interface_configuration() const {
controller_interface::InterfaceConfiguration config;
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
- for (const auto &joint_name : params_.joints) {
+ for (const auto & joint_name : params_.joints) {
config.names.push_back(joint_name + "/effort");
}
return config;
@@ -40,59 +51,72 @@ CartesianController::state_interface_configuration() const {
controller_interface::InterfaceConfiguration config;
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
- for (const auto &joint_name : params_.joints) {
+ for (const auto & joint_name : params_.joints) {
config.names.push_back(joint_name + "/position");
}
- for (const auto &joint_name : params_.joints) {
+ for (const auto & joint_name : params_.joints) {
config.names.push_back(joint_name + "/velocity");
}
return config;
}
controller_interface::return_type
-CartesianController::update(const rclcpp::Time &time,
- const rclcpp::Duration & /*period*/) {
-
+CartesianController::update(const rclcpp::Time & time, const rclcpp::Duration & /*period*/) {
size_t num_joints = params_.joints.size();
for (size_t i = 0; i < num_joints; i++) {
-
- // TODO: later it might be better to get this thing prepared in the
+ // TODO(placeholder): later it might be better to get this thing prepared in the
// configuration part (not in the control loop)
auto joint_name = params_.joints[i];
- auto joint_id =
- model_.getJointId(joint_name); // pinocchio joind id might be different
+ auto joint_id = model_.getJointId(joint_name); // pinocchio joind id might be different
auto joint = model_.joints[joint_id];
- /*q[i] = exponential_moving_average(q[i], state_interfaces_[i].get_value(),*/
- /* params_.filter.q);*/
- q[i] = state_interfaces_[i].get_value();
- if (continous_joint_types.count(
- joint.shortname())) { // Then we are handling a continous
- // joint that is SO(2)
+ q_ref[i] = exponential_moving_average(q_ref[i], q_target[i], params_.filter.q_ref);
+
+// Filtering joint position measurement 1 uses previous q, 0 uses new q from measurement.
+// q[i] = exponential_moving_average(q[i], state_interfaces_[i].get_value(), params_.filter.q);
+#if ROS2_VERSION_ABOVE_HUMBLE
+ q[i] = exponential_moving_average(
+ q[i], state_interfaces_[i].get_optional().value_or(q[i]), params_.filter.q);
+#else
+ q[i] = exponential_moving_average(q[i], state_interfaces_[i].get_value(), params_.filter.q);
+#endif
+
+ if (continous_joint_types.count(joint.shortname())) { // Then we are handling a continous
+ // joint that is SO(2)
q_pin[joint.idx_q()] = std::cos(q[i]);
q_pin[joint.idx_q() + 1] = std::sin(q[i]);
} else { // simple revolute joint case
q_pin[joint.idx_q()] = q[i];
}
- /*dq[i] = exponential_moving_average(*/
- /* dq[i], state_interfaces_[num_joints + i].get_value(),*/
- /* params_.filter.dq);*/
- dq[i] = state_interfaces_[num_joints + i].get_value();
+#if ROS2_VERSION_ABOVE_HUMBLE
+ dq[i] = exponential_moving_average(
+ dq[i], state_interfaces_[num_joints + i].get_optional().value_or(dq[i]), params_.filter.dq);
+#else
+ dq[i] = exponential_moving_average(
+ dq[i], state_interfaces_[num_joints + i].get_value(), params_.filter.dq);
+#endif
}
- if (new_target_pose_) {parse_target_pose_(); new_target_pose_ = false;}
- if (new_target_joint_) {parse_target_joint_(); new_target_joint_ = false;}
- if (new_target_wrench_) {parse_target_wrench_(); new_target_wrench_ = false;}
+ if (new_target_pose_) {
+ parse_target_pose_();
+ new_target_pose_ = false;
+ }
+ if (new_target_joint_) {
+ parse_target_joint_();
+ new_target_joint_ = false;
+ }
+ if (new_target_wrench_) {
+ parse_target_wrench_();
+ new_target_wrench_ = false;
+ }
pinocchio::forwardKinematics(model_, data_, q_pin, dq);
pinocchio::updateFramePlacements(model_, data_);
- pinocchio::SE3 new_target_pose =
- pinocchio::SE3(target_orientation_.toRotationMatrix(), target_position_);
-
- target_pose_ = pinocchio::exp6(exponential_moving_average(
- pinocchio::log6(target_pose_), pinocchio::log6(new_target_pose),
- params_.filter.target_pose));
+ desired_position_ =
+ exponential_moving_average(desired_position_, target_position_, params_.filter.target_pose);
+ desired_orientation_ =
+ target_orientation_.slerp(params_.filter.target_pose, desired_orientation_);
/*target_pose_ = pinocchio::SE3(target_orientation_.toRotationMatrix(),
* target_position_);*/
@@ -101,39 +125,40 @@ CartesianController::update(const rclcpp::Time &time,
// We consider translation and rotation separately to avoid unatural screw
// motions
if (params_.use_local_jacobian) {
- error.head(3) =
- end_effector_pose.rotation().transpose() *
- (target_pose_.translation() - end_effector_pose.translation());
- error.tail(3) = pinocchio::log3(end_effector_pose.rotation().transpose() *
- target_pose_.rotation());
+ error.head(3) = end_effector_pose.rotation().transpose() *
+ (desired_position_ - end_effector_pose.translation());
+ error.tail(3) =
+ pinocchio::log3(end_effector_pose.rotation().transpose() * desired_orientation_);
} else {
- error.head(3) =
- target_pose_.translation() - end_effector_pose.translation();
- error.tail(3) = pinocchio::log3(target_pose_.rotation() *
- end_effector_pose.rotation().transpose());
+ error.head(3) = desired_position_ - end_effector_pose.translation();
+ error.tail(3) =
+ pinocchio::log3(desired_orientation_ * end_effector_pose.rotation().transpose());
}
if (params_.limit_error) {
- max_delta_ << params_.task.error_clip.x, params_.task.error_clip.y, params_.task.error_clip.z,
- params_.task.error_clip.rx, params_.task.error_clip.ry, params_.task.error_clip.rz;
+ max_delta_ << params_.task.error_clip.x, params_.task.error_clip.y, params_.task.error_clip.z,
+ params_.task.error_clip.rx, params_.task.error_clip.ry, params_.task.error_clip.rz;
error = error.cwiseMax(-max_delta_).cwiseMin(max_delta_);
}
J.setZero();
auto reference_frame = params_.use_local_jacobian
- ? pinocchio::ReferenceFrame::LOCAL
- : pinocchio::ReferenceFrame::LOCAL_WORLD_ALIGNED;
- pinocchio::computeFrameJacobian(model_, data_, q_pin, end_effector_frame_id,
- reference_frame, J);
+ ? pinocchio::ReferenceFrame::LOCAL
+ : pinocchio::ReferenceFrame::LOCAL_WORLD_ALIGNED;
+ pinocchio::computeFrameJacobian(model_, data_, q_pin, end_effector_frame_id, reference_frame, J);
Eigen::MatrixXd J_pinv(model_.nv, 6);
J_pinv = pseudo_inverse(J, params_.nullspace.regularization);
Eigen::MatrixXd Id_nv = Eigen::MatrixXd::Identity(model_.nv, model_.nv);
+ if (params_.nullspace.projector_type == "dynamic" || params_.use_operational_space) {
+ pinocchio::computeMinverse(model_, data_, q_pin);
+ data_.Minv.triangularView() =
+ data_.Minv.transpose().triangularView();
+ Mx_inv = J * data_.Minv * J.transpose();
+ Mx = pseudo_inverse(Mx_inv);
+ }
if (params_.nullspace.projector_type == "dynamic") {
- pinocchio::computeMinverse(model_, data_, q_pin);
- auto Mx_inv = J * data_.Minv * J.transpose();
- auto Mx = pseudo_inverse(Mx_inv);
auto J_bar = data_.Minv * J.transpose() * Mx;
nullspace_projection = Id_nv - J.transpose() * J_bar.transpose();
} else if (params_.nullspace.projector_type == "kinematic") {
@@ -141,70 +166,67 @@ CartesianController::update(const rclcpp::Time &time,
} else if (params_.nullspace.projector_type == "none") {
nullspace_projection = Eigen::MatrixXd::Identity(model_.nv, model_.nv);
} else {
- RCLCPP_ERROR_STREAM_ONCE(get_node()->get_logger(),
- "Unknown nullspace projector type: "
- << params_.nullspace.projector_type);
+ RCLCPP_ERROR_STREAM_ONCE(
+ get_node()->get_logger(),
+ "Unknown nullspace projector type: " << params_.nullspace.projector_type);
return controller_interface::return_type::ERROR;
}
if (params_.use_operational_space) {
-
- pinocchio::computeMinverse(model_, data_, q_pin);
- auto Mx_inv = J * data_.Minv * J.transpose();
- auto Mx = pseudo_inverse(Mx_inv, params_.operational_space_regularization);
-
tau_task << J.transpose() * Mx * (stiffness * error - damping * (J * dq));
} else {
tau_task << J.transpose() * (stiffness * error - damping * (J * dq));
}
- if (model_.nq != model_.nv || !params_.joint_limit_repulsion.enabled) {
- // Skip joint limit repulsion if disabled or if continuous joints are present (nq != nv)
+ if (model_.nq != model_.nv) {
+ // TODO(placeholder): Then we have some continouts joints, not being handled for now
tau_joint_limits = Eigen::VectorXd::Zero(model_.nv);
} else {
tau_joint_limits = get_joint_limit_torque(
- q, model_.lowerPositionLimit, model_.upperPositionLimit,
- params_.joint_limit_repulsion.safe_range,
- params_.joint_limit_repulsion.max_torque);
+ q,
+ model_.lowerPositionLimit,
+ model_.upperPositionLimit,
+ params_.joint_limit_repulsion.safe_range,
+ params_.joint_limit_repulsion.max_torque);
}
- tau_secondary << nullspace_stiffness * (q_ref - q) +
- nullspace_damping * (dq_ref - dq);
+ tau_secondary << nullspace_stiffness * (q_ref - q) + nullspace_damping * (dq_ref - dq);
tau_nullspace << nullspace_projection * tau_secondary;
- tau_nullspace = tau_nullspace.cwiseMin(params_.nullspace.max_tau)
- .cwiseMax(-params_.nullspace.max_tau);
-
- tau_friction = params_.use_friction ? get_friction(dq, fp1, fp2, fp3)
- : Eigen::VectorXd::Zero(model_.nv);
+ tau_nullspace =
+ tau_nullspace.cwiseMin(params_.nullspace.max_tau).cwiseMax(-params_.nullspace.max_tau);
+ tau_friction =
+ params_.use_friction ? get_friction(dq, fp1, fp2, fp3) : Eigen::VectorXd::Zero(model_.nv);
if (params_.use_coriolis_compensation) {
pinocchio::computeAllTerms(model_, data_, q_pin, dq);
- tau_coriolis =
- pinocchio::computeCoriolisMatrix(model_, data_, q_pin, dq) * dq;
+ tau_coriolis = pinocchio::computeCoriolisMatrix(model_, data_, q_pin, dq) * dq;
} else {
tau_coriolis = Eigen::VectorXd::Zero(model_.nv);
}
tau_gravity = params_.use_gravity_compensation
- ? pinocchio::computeGeneralizedGravity(model_, data_, q_pin)
- : Eigen::VectorXd::Zero(model_.nv);
+ ? pinocchio::computeGeneralizedGravity(model_, data_, q_pin)
+ : Eigen::VectorXd::Zero(model_.nv);
tau_wrench << J.transpose() * target_wrench_;
- tau_d << tau_task + tau_nullspace + tau_friction + tau_coriolis +
- tau_gravity + tau_joint_limits + tau_wrench;
+ tau_d << tau_task + tau_nullspace + tau_friction + tau_coriolis + tau_gravity + tau_joint_limits +
+ tau_wrench;
if (params_.limit_torques) {
tau_d = saturateTorqueRate(tau_d, tau_previous, params_.max_delta_tau);
}
- tau_d = exponential_moving_average(tau_d, tau_previous,
- params_.filter.output_torque);
+ tau_d = exponential_moving_average(tau_d, tau_previous, params_.filter.output_torque);
- if (not params_.stop_commands) {
+ if (!params_.stop_commands) {
for (size_t i = 0; i < num_joints; ++i) {
+#if ROS2_VERSION_ABOVE_HUMBLE
+ (void)command_interfaces_[i].set_value(tau_d[i]);
+#else
command_interfaces_[i].set_value(tau_d[i]);
+#endif
}
}
@@ -219,22 +241,18 @@ CartesianController::update(const rclcpp::Time &time,
return controller_interface::return_type::OK;
}
-
CallbackReturn CartesianController::on_init() {
- params_listener_ =
- std::make_shared(
- get_node());
+ params_listener_ = std::make_shared(get_node());
params_listener_->refresh_dynamic_parameters();
params_ = params_listener_->get_params();
return CallbackReturn::SUCCESS;
}
-CallbackReturn CartesianController::on_configure(
- const rclcpp_lifecycle::State & /*previous_state*/) {
-
- auto parameters_client = std::make_shared(
- get_node(), "robot_state_publisher");
+CallbackReturn
+CartesianController::on_configure(const rclcpp_lifecycle::State & /*previous_state*/) {
+ auto parameters_client =
+ std::make_shared(get_node(), "robot_state_publisher");
parameters_client->wait_for_service();
auto future = parameters_client->get_parameters({"robot_description"});
@@ -244,8 +262,7 @@ CallbackReturn CartesianController::on_configure(
if (!result.empty()) {
robot_description_ = result[0].value_to_string();
} else {
- RCLCPP_ERROR(get_node()->get_logger(),
- "Failed to get robot_description parameter.");
+ RCLCPP_ERROR(get_node()->get_logger(), "Failed to get robot_description parameter.");
return CallbackReturn::ERROR;
}
@@ -254,57 +271,55 @@ CallbackReturn CartesianController::on_configure(
RCLCPP_INFO(get_node()->get_logger(), "Checking available joints in model:");
for (int joint_id = 0; joint_id < raw_model_.njoints; joint_id++) {
- RCLCPP_INFO_STREAM(get_node()->get_logger(),
- "Joint " << joint_id << " with name "
- << raw_model_.names[joint_id] << " is of type "
- << raw_model_.joints[joint_id].shortname());
+ RCLCPP_INFO_STREAM(
+ get_node()->get_logger(),
+ "Joint " << joint_id << " with name " << raw_model_.names[joint_id] << " is of type "
+ << raw_model_.joints[joint_id].shortname());
}
// First we check that the passed joints exist in the kineatic tree
- for (auto &joint : params_.joints) {
- if (not raw_model_.existJointName(joint)) {
- RCLCPP_ERROR_STREAM(get_node()->get_logger(),
- "Failed to configure because "
- << joint
- << " is not part of the kinematic tree but it "
- "has been passed in the parameters.");
+ for (auto & joint : params_.joints) {
+ if (!raw_model_.existJointName(joint)) {
+ RCLCPP_ERROR_STREAM(
+ get_node()->get_logger(),
+ "Failed to configure because " << joint
+ << " is not part of the kinematic tree but it "
+ "has been passed in the parameters.");
return CallbackReturn::ERROR;
}
}
- RCLCPP_INFO(get_node()->get_logger(),
- "All joints passed in the parameters exist in the kinematic tree "
- "of the URDF.");
- RCLCPP_INFO_STREAM(get_node()->get_logger(),
- "Removing the rest of the joints that are not used: ");
+ RCLCPP_INFO(
+ get_node()->get_logger(),
+ "All joints passed in the parameters exist in the kinematic tree "
+ "of the URDF.");
+ RCLCPP_INFO_STREAM(
+ get_node()->get_logger(), "Removing the rest of the joints that are not used: ");
// Now we fix all joints that are not referenced in the tree
std::vector list_of_joints_to_lock_by_id;
- for (auto &joint : raw_model_.names) {
- if (std::find(params_.joints.begin(), params_.joints.end(), joint) ==
- params_.joints.end() and
- joint != "universe") {
+ for (auto & joint : raw_model_.names) {
+ if (
+ std::find(params_.joints.begin(), params_.joints.end(), joint) == params_.joints.end() &&
+ joint != "universe") {
RCLCPP_INFO_STREAM(
- get_node()->get_logger(),
- "Joint " << joint << " is not used, removing it from the model.");
+ get_node()->get_logger(), "Joint " << joint << " is not used, removing it from the model.");
list_of_joints_to_lock_by_id.push_back(raw_model_.getJointId(joint));
}
}
Eigen::VectorXd q_locked = Eigen::VectorXd::Zero(raw_model_.nq);
- model_ = pinocchio::buildReducedModel(raw_model_,
- list_of_joints_to_lock_by_id, q_locked);
+ model_ = pinocchio::buildReducedModel(raw_model_, list_of_joints_to_lock_by_id, q_locked);
data_ = pinocchio::Data(model_);
for (int joint_id = 0; joint_id < model_.njoints; joint_id++) {
if (model_.names[joint_id] == "universe") {
continue;
}
- if (not allowed_joint_types.count(model_.joints[joint_id].shortname())) {
+ if (!allowed_joint_types.count(model_.joints[joint_id].shortname())) {
RCLCPP_ERROR_STREAM(
- get_node()->get_logger(),
- "Joint type "
- << model_.joints[joint_id].shortname() << " is unsupported ("
- << model_.names[joint_id]
- << "), only revolute/continous like joints can be used.");
+ get_node()->get_logger(),
+ "Joint type " << model_.joints[joint_id].shortname() << " is unsupported ("
+ << model_.names[joint_id]
+ << "), only revolute/continous like joints can be used.");
return CallbackReturn::ERROR;
}
}
@@ -314,6 +329,7 @@ CallbackReturn CartesianController::on_configure(
q_pin = Eigen::VectorXd::Zero(model_.nq);
dq = Eigen::VectorXd::Zero(model_.nv);
q_ref = Eigen::VectorXd::Zero(model_.nv);
+ q_target = Eigen::VectorXd::Zero(model_.nv);
dq_ref = Eigen::VectorXd::Zero(model_.nv);
tau_previous = Eigen::VectorXd::Zero(model_.nv);
J = Eigen::MatrixXd::Zero(6, model_.nv);
@@ -336,11 +352,13 @@ CallbackReturn CartesianController::on_configure(
max_allowed_publishers_ = 1;
auto target_pose_callback =
- [this](const std::shared_ptr msg) -> void
- {
+ [this](const std::shared_ptr msg) -> void {
if (!check_topic_publisher_count("target_pose")) {
- RCLCPP_WARN_THROTTLE(get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "Ignoring target_pose message due to multiple publishers detected!");
+ RCLCPP_WARN_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "Ignoring target_pose message due to multiple publishers detected!");
return;
}
target_pose_buffer_.writeFromNonRT(msg);
@@ -348,11 +366,13 @@ CallbackReturn CartesianController::on_configure(
};
auto target_joint_callback =
- [this](const std::shared_ptr msg) -> void
- {
+ [this](const std::shared_ptr msg) -> void {
if (!check_topic_publisher_count("target_joint")) {
- RCLCPP_WARN_THROTTLE(get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "Ignoring target_joint message due to multiple publishers detected!");
+ RCLCPP_WARN_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "Ignoring target_joint message due to multiple publishers detected!");
return;
}
target_joint_buffer_.writeFromNonRT(msg);
@@ -360,11 +380,13 @@ CallbackReturn CartesianController::on_configure(
};
auto target_wrench_callback =
- [this](const std::shared_ptr msg) -> void
- {
+ [this](const std::shared_ptr msg) -> void {
if (!check_topic_publisher_count("target_wrench")) {
- RCLCPP_WARN_THROTTLE(get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "Ignoring target_wrench message due to multiple publishers detected!");
+ RCLCPP_WARN_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "Ignoring target_wrench message due to multiple publishers detected!");
return;
}
target_wrench_buffer_.writeFromNonRT(msg);
@@ -372,14 +394,13 @@ CallbackReturn CartesianController::on_configure(
};
pose_sub_ = get_node()->create_subscription(
- "target_pose", rclcpp::QoS(1),target_pose_callback);
+ "target_pose", rclcpp::QoS(1), target_pose_callback);
joint_sub_ = get_node()->create_subscription(
- "target_joint", rclcpp::QoS(1), target_joint_callback);
+ "target_joint", rclcpp::QoS(1), target_joint_callback);
wrench_sub_ = get_node()->create_subscription(
- "target_wrench", rclcpp::QoS(1), target_wrench_callback);
-
+ "target_wrench", rclcpp::QoS(1), target_wrench_callback);
// Initialize all control vectors with appropriate dimensions
tau_task = Eigen::VectorXd::Zero(model_.nv);
@@ -396,7 +417,8 @@ CallbackReturn CartesianController::on_configure(
target_position_ = Eigen::Vector3d::Zero();
target_orientation_ = Eigen::Quaterniond::Identity();
target_wrench_ = Eigen::VectorXd::Zero(6);
- target_pose_ = pinocchio::SE3::Identity();
+ desired_position_ = Eigen::Vector3d::Zero();
+ desired_orientation_ = Eigen::Quaterniond::Identity();
// Initialize error vector
error = Eigen::VectorXd::Zero(6);
@@ -405,73 +427,104 @@ CallbackReturn CartesianController::on_configure(
// Initialize nullspace projection matrix
nullspace_projection = Eigen::MatrixXd::Identity(model_.nv, model_.nv);
+#if HAS_ROS2_CONTROL_INTROSPECTION
+ if (params_.enable_introspection) {
+ RCLCPP_INFO(get_node()->get_logger(), "Enabling ROS2 Control Introspection for debugging.");
+ this->enable_introspection(true);
+ for (int i = 0; i < tau_task.size(); ++i) {
+ REGISTER_ROS2_CONTROL_INTROSPECTION("tau_task_" + std::to_string(i), &tau_task[i]);
+ REGISTER_ROS2_CONTROL_INTROSPECTION("tau_desired_" + std::to_string(i), &tau_d[i]);
+ }
+ for (int i = 0; i < error.size(); ++i) {
+ REGISTER_ROS2_CONTROL_INTROSPECTION("error_" + std::to_string(i), &error[i]);
+ }
+ REGISTER_ROS2_CONTROL_INTROSPECTION("target_position_x", &target_position_[0]);
+ REGISTER_ROS2_CONTROL_INTROSPECTION("target_position_y", &target_position_[1]);
+ REGISTER_ROS2_CONTROL_INTROSPECTION("target_position_z", &target_position_[2]);
+ for (int i = 0; i < target_orientation_.coeffs().size(); ++i) {
+ REGISTER_ROS2_CONTROL_INTROSPECTION(
+ "target_orientation_" + std::to_string(i), &target_orientation_.coeffs()[i]);
+ }
+ for (int i = 0; i < q_target.size(); ++i) {
+ REGISTER_ROS2_CONTROL_INTROSPECTION("q_target_" + std::to_string(i), &q_target[i]);
+ REGISTER_ROS2_CONTROL_INTROSPECTION("q_ref_" + std::to_string(i), &q_ref[i]);
+ }
+ } else {
+ RCLCPP_INFO(get_node()->get_logger(), "ROS2 Control Introspection is disabled.");
+ }
+#endif
+
RCLCPP_INFO(get_node()->get_logger(), "State interfaces and control vectors initialized.");
return CallbackReturn::SUCCESS;
}
void CartesianController::setStiffnessAndDamping() {
-
stiffness.setZero();
- stiffness.diagonal() << params_.task.k_pos_x, params_.task.k_pos_y,
- params_.task.k_pos_z, params_.task.k_rot_x, params_.task.k_rot_y,
- params_.task.k_rot_z;
+ stiffness.diagonal() << params_.task.k_pos_x, params_.task.k_pos_y, params_.task.k_pos_z,
+ params_.task.k_rot_x, params_.task.k_rot_y, params_.task.k_rot_z;
damping.setZero();
// For each axis, use explicit damping if > 0, otherwise compute from stiffness
- damping.diagonal() <<
- (params_.task.d_pos_x > 0 ? params_.task.d_pos_x : 2.0 * std::sqrt(params_.task.k_pos_x)),
- (params_.task.d_pos_y > 0 ? params_.task.d_pos_y : 2.0 * std::sqrt(params_.task.k_pos_y)),
- (params_.task.d_pos_z > 0 ? params_.task.d_pos_z : 2.0 * std::sqrt(params_.task.k_pos_z)),
- (params_.task.d_rot_x > 0 ? params_.task.d_rot_x : 2.0 * std::sqrt(params_.task.k_rot_x)),
- (params_.task.d_rot_y > 0 ? params_.task.d_rot_y : 2.0 * std::sqrt(params_.task.k_rot_y)),
- (params_.task.d_rot_z > 0 ? params_.task.d_rot_z : 2.0 * std::sqrt(params_.task.k_rot_z));
+ damping.diagonal()
+ << (params_.task.d_pos_x > 0 ? params_.task.d_pos_x : 2.0 * std::sqrt(params_.task.k_pos_x)),
+ (params_.task.d_pos_y > 0 ? params_.task.d_pos_y : 2.0 * std::sqrt(params_.task.k_pos_y)),
+ (params_.task.d_pos_z > 0 ? params_.task.d_pos_z : 2.0 * std::sqrt(params_.task.k_pos_z)),
+ (params_.task.d_rot_x > 0 ? params_.task.d_rot_x : 2.0 * std::sqrt(params_.task.k_rot_x)),
+ (params_.task.d_rot_y > 0 ? params_.task.d_rot_y : 2.0 * std::sqrt(params_.task.k_rot_y)),
+ (params_.task.d_rot_z > 0 ? params_.task.d_rot_z : 2.0 * std::sqrt(params_.task.k_rot_z));
nullspace_stiffness.setZero();
nullspace_damping.setZero();
auto weights = Eigen::VectorXd(model_.nv);
for (size_t i = 0; i < params_.joints.size(); ++i) {
- weights[i] =
- params_.nullspace.weights.joints_map.at(params_.joints.at(i)).value;
+ weights[i] = params_.nullspace.weights.joints_map.at(params_.joints.at(i)).value;
}
nullspace_stiffness.diagonal() << params_.nullspace.stiffness * weights;
- nullspace_damping.diagonal()
- << 2.0 * nullspace_stiffness.diagonal().cwiseSqrt();
+ nullspace_damping.diagonal() << 2.0 * nullspace_stiffness.diagonal().cwiseSqrt();
if (params_.nullspace.damping) {
- nullspace_damping.diagonal() = params_.nullspace.damping * weights;
+ nullspace_damping.diagonal() = params_.nullspace.damping * weights;
} else {
- nullspace_damping.diagonal() = 2.0 * nullspace_stiffness.diagonal().cwiseSqrt();
+ nullspace_damping.diagonal() = 2.0 * nullspace_stiffness.diagonal().cwiseSqrt();
}
}
-CallbackReturn CartesianController::on_activate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+CallbackReturn
+CartesianController::on_activate(const rclcpp_lifecycle::State & /*previous_state*/) {
auto num_joints = params_.joints.size();
for (size_t i = 0; i < num_joints; i++) {
-
- // TODO: later it might be better to get this thing prepared in the
+ // TODO(placeholder): later it might be better to get this thing prepared in the
// configuration part (not in the control loop)
auto joint_name = params_.joints[i];
- auto joint_id =
- model_.getJointId(joint_name); // pinocchio joind id might be different
+ auto joint_id = model_.getJointId(joint_name); // pinocchio joind id might be different
auto joint = model_.joints[joint_id];
+#if ROS2_VERSION_ABOVE_HUMBLE
+ q[i] = state_interfaces_[i].get_optional().value_or(q[i]);
+#else
q[i] = state_interfaces_[i].get_value();
- if (joint.shortname() == "JointModelRZ") { // simple revolute joint case
+#endif
+ if (joint.shortname() == "JointModelRZ") { // simple revolute joint case
q_pin[joint.idx_q()] = q[i];
} else if (continous_joint_types.count(
- joint.shortname())) { // Then we are handling a continous
- // joint that is SO(2)
+ joint.shortname())) { // Then we are handling a continous
+ // joint that is SO(2)
q_pin[joint.idx_q()] = std::cos(q[i]);
q_pin[joint.idx_q() + 1] = std::sin(q[i]);
}
- q_ref[i] = state_interfaces_[i].get_value();
+ q_ref[i] = q[i];
+ q_target[i] = q[i];
+#if ROS2_VERSION_ABOVE_HUMBLE
+ dq[i] = state_interfaces_[num_joints + i].get_optional().value_or(dq[i]);
+ dq_ref[i] = dq[i];
+#else
dq[i] = state_interfaces_[num_joints + i].get_value();
dq_ref[i] = state_interfaces_[num_joints + i].get_value();
+#endif
}
pinocchio::forwardKinematics(model_, data_, q_pin, dq);
@@ -481,33 +534,33 @@ CallbackReturn CartesianController::on_activate(
target_position_ = end_effector_pose.translation();
target_orientation_ = Eigen::Quaterniond(end_effector_pose.rotation());
- target_pose_ =
- pinocchio::SE3(target_orientation_.toRotationMatrix(), target_position_);
+ desired_position_ = target_position_;
+ desired_orientation_ = target_orientation_;
RCLCPP_INFO(get_node()->get_logger(), "Controller activated.");
return CallbackReturn::SUCCESS;
}
controller_interface::CallbackReturn
-CartesianController::on_deactivate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+CartesianController::on_deactivate(const rclcpp_lifecycle::State & /*previous_state*/) {
return CallbackReturn::SUCCESS;
}
void CartesianController::parse_target_pose_() {
auto msg = *target_pose_buffer_.readFromRT();
- target_position_ << msg->pose.position.x, msg->pose.position.y,
- msg->pose.position.z;
- target_orientation_ =
- Eigen::Quaterniond(msg->pose.orientation.w, msg->pose.orientation.x,
- msg->pose.orientation.y, msg->pose.orientation.z);
+ target_position_ << msg->pose.position.x, msg->pose.position.y, msg->pose.position.z;
+ target_orientation_ = Eigen::Quaterniond(
+ msg->pose.orientation.w,
+ msg->pose.orientation.x,
+ msg->pose.orientation.y,
+ msg->pose.orientation.z);
}
void CartesianController::parse_target_joint_() {
auto msg = *target_joint_buffer_.readFromRT();
if (msg->position.size()) {
for (size_t i = 0; i < msg->position.size(); ++i) {
- q_ref[i] = msg->position[i];
+ q_target[i] = msg->position[i];
}
/*filterJointValues(msg->name, msg->position, params_.joints, q_ref);*/
}
@@ -522,155 +575,180 @@ void CartesianController::parse_target_joint_() {
void CartesianController::parse_target_wrench_() {
auto msg = *target_wrench_buffer_.readFromRT();
target_wrench_ << msg->wrench.force.x, msg->wrench.force.y, msg->wrench.force.z,
- msg->wrench.torque.x, msg->wrench.torque.y, msg->wrench.torque.z;
+ msg->wrench.torque.x, msg->wrench.torque.y, msg->wrench.torque.z;
}
-void CartesianController::log_debug_info(const rclcpp::Time &time) {
+void CartesianController::log_debug_info(const rclcpp::Time & time) {
if (!params_.log.enabled) {
return;
}
if (params_.log.robot_state) {
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "nq: " << model_.nq << ", nv: " << model_.nv);
-
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "end_effector_pos" << end_effector_pose.translation());
- /*RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "nq: " << model_.nq << ", nv: " << model_.nv);
+
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "end_effector_pos" << end_effector_pose.translation());
+ /*RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
* *get_node()->get_clock(),*/
- /* 1000, "end_effector_rot" <<
+ /* 1000, "end_effector_rot" <<
* end_effector_pose.rotation());*/
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "q: " << q.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "q_pin: " << q_pin.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "dq: " << dq.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000, "J: " << J);
- }
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "q: " << q.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "q_pin: " << q_pin.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "dq: " << dq.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "J: " << J);
+ }
- if (params_.log.control_values) {
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "error: " << error.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "max_delta: " << max_delta_.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "q_ref: " << q_ref.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "dq_ref: " << dq_ref.transpose());
- }
+ if (params_.log.control_values) {
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "error: " << error.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "max_delta: " << max_delta_.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "q_ref: " << q_ref.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "dq_ref: " << dq_ref.transpose());
+ }
- if (params_.log.controller_parameters) {
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "stiffness: " << stiffness);
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "damping: " << damping);
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "nullspace_stiffness: " << nullspace_stiffness);
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "nullspace_damping: " << nullspace_damping);
- }
+ if (params_.log.controller_parameters) {
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "stiffness: " << stiffness);
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "damping: " << damping);
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "nullspace_stiffness: " << nullspace_stiffness);
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "nullspace_damping: " << nullspace_damping);
+ }
- if (params_.log.limits) {
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "joint_limits: " << model_.lowerPositionLimit.transpose() << ", "
- << model_.upperPositionLimit.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "velocity_limits: " << model_.velocityLimit);
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "effort_limits: " << model_.effortLimit);
- }
+ if (params_.log.limits) {
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "joint_limits: " << model_.lowerPositionLimit.transpose() << ", "
+ << model_.upperPositionLimit.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "velocity_limits: " << model_.velocityLimit);
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "effort_limits: " << model_.effortLimit);
+ }
- if (params_.log.computed_torques) {
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "tau_task: " << tau_task.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "tau_joint_limits: " << tau_joint_limits.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "tau_nullspace: " << tau_nullspace.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "tau_friction: " << tau_friction.transpose());
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "tau_coriolis: " << tau_coriolis.transpose());
- }
+ if (params_.log.computed_torques) {
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "tau_task: " << tau_task.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "tau_joint_limits: " << tau_joint_limits.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "tau_nullspace: " << tau_nullspace.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "tau_friction: " << tau_friction.transpose());
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "tau_coriolis: " << tau_coriolis.transpose());
+ }
- if (params_.log.dynamic_params) {
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "M: " << data_.M);
- /*RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
+ if (params_.log.dynamic_params) {
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "M: " << data_.M);
+ /*RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
* *get_node()->get_clock(),*/
- /* 1000, "Mx: " << Mx);*/
- RCLCPP_INFO_STREAM_THROTTLE(get_node()->get_logger(),
- *get_node()->get_clock(), 1000,
- "Minv: " << data_.Minv);
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 1000,
- "nullspace projector: " << nullspace_projection);
- }
-
- if (params_.log.timing) {
+ /* 1000, "Mx: " << Mx);*/
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(), *get_node()->get_clock(), 1000, "Minv: " << data_.Minv);
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 1000,
+ "nullspace projector: " << nullspace_projection);
+ }
- auto t_end = get_node()->get_clock()->now();
- RCLCPP_INFO_STREAM_THROTTLE(
- get_node()->get_logger(), *get_node()->get_clock(), 2000,
- "Control loop needed: "
- << (t_end.nanoseconds() - time.nanoseconds()) * 1e-6 << " ms");
- }
+ if (params_.log.timing) {
+ auto t_end = get_node()->get_clock()->now();
+ RCLCPP_INFO_STREAM_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 2000,
+ "Control loop needed: " << (t_end.nanoseconds() - time.nanoseconds()) * 1e-6 << " ms");
+ }
}
-bool CartesianController::check_topic_publisher_count(const std::string& topic_name) {
+bool CartesianController::check_topic_publisher_count(const std::string & topic_name) {
auto topic_info = get_node()->get_publishers_info_by_topic(topic_name);
size_t publisher_count = topic_info.size();
-
+
if (publisher_count > max_allowed_publishers_) {
- RCLCPP_WARN_THROTTLE(get_node()->get_logger(), *get_node()->get_clock(), 2000,
- "Topic '%s' has %zu publishers (expected max: %zu). Multiple command sources detected!",
- topic_name.c_str(), publisher_count, max_allowed_publishers_);
-
+ RCLCPP_WARN_THROTTLE(
+ get_node()->get_logger(),
+ *get_node()->get_clock(),
+ 2000,
+ "Topic '%s' has %zu publishers (expected max: %zu). Multiple command sources detected!",
+ topic_name.c_str(),
+ publisher_count,
+ max_allowed_publishers_);
+
if (!multiple_publishers_detected_) {
- RCLCPP_ERROR(get_node()->get_logger(),
- "SAFETY WARNING: Multiple publishers detected on topic '%s'! "
- "Ignoring commands from this topic to prevent conflicting control signals.",
- topic_name.c_str());
+ RCLCPP_ERROR(
+ get_node()->get_logger(),
+ "SAFETY WARNING: Multiple publishers detected on topic '%s'! "
+ "Ignoring commands from this topic to prevent conflicting control signals.",
+ topic_name.c_str());
multiple_publishers_detected_ = true;
}
return false;
}
-
+
if (multiple_publishers_detected_ && publisher_count <= max_allowed_publishers_) {
- RCLCPP_INFO(get_node()->get_logger(),
- "Publisher conflict resolved on topic '%s'. Resuming message processing.",
- topic_name.c_str());
+ RCLCPP_INFO(
+ get_node()->get_logger(),
+ "Publisher conflict resolved on topic '%s'. Resuming message processing.",
+ topic_name.c_str());
multiple_publishers_detected_ = false;
}
-
+
return true;
}
-} // namespace crisp_controllers
+} // namespace crisp_controllers
#include "pluginlib/class_list_macros.hpp"
// NOLINTNEXTLINE
-PLUGINLIB_EXPORT_CLASS(crisp_controllers::CartesianController,
- controller_interface::ControllerInterface)
+PLUGINLIB_EXPORT_CLASS(
+ crisp_controllers::CartesianController, controller_interface::ControllerInterface)
diff --git a/src/cartesian_impedance_controller.yaml b/src/cartesian_controller.yaml
similarity index 94%
rename from src/cartesian_impedance_controller.yaml
rename to src/cartesian_controller.yaml
index dd0d123..a147664 100644
--- a/src/cartesian_impedance_controller.yaml
+++ b/src/cartesian_controller.yaml
@@ -1,4 +1,4 @@
-cartesian_impedance_controller:
+cartesian_controller:
joints:
type: string_array
description: "Names of the joints"
@@ -237,20 +237,26 @@ cartesian_impedance_controller:
bounds<>: [0.1, 1.0]
q:
type: double
- default_value: 1.0
+ default_value: 0.5
description: "Amount of smoothing for the target pose when using the EMA."
validation:
bounds<>: [0.0, 1.0]
dq:
type: double
- default_value: 1.0
+ default_value: 0.5
+ description: "Amount of smoothing for the target pose when using the EMA."
+ validation:
+ bounds<>: [0.0, 1.0]
+ q_ref:
+ type: double
+ default_value: 0.5
description: "Amount of smoothing for the target pose when using the EMA."
validation:
bounds<>: [0.0, 1.0]
output_torque:
type: double
- default_value: 1.0
+ default_value: 0.5
description: "Amount of smoothing for the output torque when using the EMA."
validation:
bounds<>: [0.0, 1.0]
@@ -306,3 +312,8 @@ cartesian_impedance_controller:
type: double_array
default_value: [ 0.039533, 0.025882, -0.04607, 0.036194, 0.026226, -0.021047, 0.0035526]
description: "Friction parameters part 3"
+
+ enable_introspection:
+ type: bool
+ default_value: false
+ description: "Whether or not to enable introspection for this controller. This will allow us to visualize the internal state of the controller in plotjuggler using the introspection topics."
diff --git a/src/pose_broadcaster.cpp b/src/pose_broadcaster.cpp
index a79b332..c09dc39 100644
--- a/src/pose_broadcaster.cpp
+++ b/src/pose_broadcaster.cpp
@@ -1,12 +1,14 @@
-#include
-#include
-
-#include
#include
#include
#include
#include
-#include
+
+#include // NOLINT(build/include_order)
+#include
+#include "crisp_controllers/utils/ros2_version.hpp"
+
+#include
+#include
#include
#include
#include
@@ -27,29 +29,31 @@ controller_interface::InterfaceConfiguration
PoseBroadcaster::state_interface_configuration() const {
controller_interface::InterfaceConfiguration config;
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
- for (const auto &joint_name : params_.joints) {
+ for (const auto & joint_name : params_.joints) {
config.names.push_back(joint_name + "/position");
}
return config;
}
controller_interface::return_type
-PoseBroadcaster::update(const rclcpp::Time &time,
- const rclcpp::Duration &period) {
-
+PoseBroadcaster::update(const rclcpp::Time & time, const rclcpp::Duration & period) {
size_t num_joints = params_.joints.size();
Eigen::VectorXd q_pin = Eigen::VectorXd::Zero(model_.nq);
for (size_t i = 0; i < num_joints; i++) {
-
auto joint_name = params_.joints[i];
auto joint_id = model_.getJointId(joint_name);
auto joint = model_.joints[joint_id];
+#if ROS2_VERSION_ABOVE_HUMBLE
+ q[i] = state_interfaces_[i].get_optional().value_or(q[i]);
+#else
q[i] = state_interfaces_[i].get_value();
- if (continous_joint_types.count(joint.shortname())) { // Then we are handling a continous joint that is SO(2)
+#endif
+ if (continous_joint_types.count(
+ joint.shortname())) { // Then we are handling a continous joint that is SO(2)
q_pin[joint.idx_q()] = std::cos(q[i]);
- q_pin[joint.idx_q()+1] = std::sin(q[i]);
+ q_pin[joint.idx_q() + 1] = std::sin(q[i]);
} else {
q_pin[joint.idx_q()] = q[i];
}
@@ -59,31 +63,34 @@ PoseBroadcaster::update(const rclcpp::Time &time,
pinocchio::updateFramePlacements(model_, data_);
auto current_pose = data_.oMf[end_effector_frame_id];
- auto current_quaternion =
- Eigen::Quaterniond(current_pose.rotation());
+ auto current_quaternion = Eigen::Quaterniond(current_pose.rotation());
// Decide whether to publish the pose or not
publish_elapsed_ = publish_elapsed_ + period;
- bool should_publish = (publish_elapsed_ >= publish_interval_) ||
- (publish_interval_.nanoseconds() == 0);
- if (should_publish && realtime_pose_publisher_)
- {
+ bool should_publish =
+ (publish_elapsed_ >= publish_interval_) || (publish_interval_.nanoseconds() == 0);
+ if (should_publish && realtime_pose_publisher_) {
+ geometry_msgs::msg::PoseStamped pose_msg;
+ pose_msg.header.stamp = time;
+ pose_msg.header.frame_id = params_.base_frame;
+ pose_msg.pose.position.x = current_pose.translation()[0];
+ pose_msg.pose.position.y = current_pose.translation()[1];
+ pose_msg.pose.position.z = current_pose.translation()[2];
+ pose_msg.pose.orientation.x = current_quaternion.x();
+ pose_msg.pose.orientation.y = current_quaternion.y();
+ pose_msg.pose.orientation.z = current_quaternion.z();
+ pose_msg.pose.orientation.w = current_quaternion.w();
+
+#if REALTIME_TOOLS_NEW_API
+ if (realtime_pose_publisher_->try_publish(pose_msg)) {
+#else
if (realtime_pose_publisher_->trylock()) {
- auto & pose_msg = realtime_pose_publisher_->msg_;
- pose_msg.header.stamp = time;
- pose_msg.header.frame_id = params_.base_frame;
- pose_msg.pose.position.x = current_pose.translation()[0];
- pose_msg.pose.position.y = current_pose.translation()[1];
- pose_msg.pose.position.z = current_pose.translation()[2];
- pose_msg.pose.orientation.x = current_quaternion.x();
- pose_msg.pose.orientation.y = current_quaternion.y();
- pose_msg.pose.orientation.z = current_quaternion.z();
- pose_msg.pose.orientation.w = current_quaternion.w();
+ realtime_pose_publisher_->msg_ = pose_msg;
realtime_pose_publisher_->unlockAndPublish();
-
+#endif
publish_elapsed_ = publish_elapsed_ - publish_interval_;
// clamp to publish only 1 time even if missed multiple intervals
- publish_elapsed_ = std::min(publish_elapsed_, publish_interval_);
+ publish_elapsed_ = std::min(publish_elapsed_, publish_interval_);
}
}
@@ -92,19 +99,16 @@ PoseBroadcaster::update(const rclcpp::Time &time,
CallbackReturn PoseBroadcaster::on_init() {
// Initialize parameters
- params_listener_ =
- std::make_shared(get_node());
+ params_listener_ = std::make_shared(get_node());
params_listener_->refresh_dynamic_parameters();
params_ = params_listener_->get_params();
return CallbackReturn::SUCCESS;
}
-CallbackReturn PoseBroadcaster::on_configure(
- const rclcpp_lifecycle::State & /*previous_state*/) {
-
- auto parameters_client = std::make_shared(
- get_node(), "robot_state_publisher");
+CallbackReturn PoseBroadcaster::on_configure(const rclcpp_lifecycle::State & /*previous_state*/) {
+ auto parameters_client =
+ std::make_shared(get_node(), "robot_state_publisher");
parameters_client->wait_for_service();
auto future = parameters_client->get_parameters({"robot_description"});
@@ -114,33 +118,45 @@ CallbackReturn PoseBroadcaster::on_configure(
if (!result.empty()) {
robot_description_ = result[0].value_to_string();
} else {
- RCLCPP_ERROR(get_node()->get_logger(),
- "Failed to get robot_description parameter.");
+ RCLCPP_ERROR(get_node()->get_logger(), "Failed to get robot_description parameter.");
return CallbackReturn::ERROR;
}
pinocchio::Model raw_model_;
pinocchio::urdf::buildModelFromXML(robot_description_, raw_model_);
- RCLCPP_INFO(get_node()->get_logger(), "Checking available joints in model:");
+ RCLCPP_INFO(get_node()->get_logger(), "Checking available joints in model:");
for (int joint_id = 0; joint_id < raw_model_.njoints; joint_id++) {
- RCLCPP_INFO_STREAM(get_node()->get_logger(), "Joint " << joint_id << " with name " << raw_model_.names[joint_id] << " is of type " << raw_model_.joints[joint_id].shortname());
+ RCLCPP_INFO_STREAM(
+ get_node()->get_logger(),
+ "Joint " << joint_id << " with name " << raw_model_.names[joint_id] << " is of type "
+ << raw_model_.joints[joint_id].shortname());
}
// First we check that the passed joints exist in the kineatic tree
- for (auto& joint : params_.joints) {
- if (not raw_model_.existJointName(joint)) {
- RCLCPP_ERROR_STREAM(get_node()->get_logger(), "Failed to configure because " << joint << " is not part of the kinematic tree but it has been passed in the parameters.");
+ for (auto & joint : params_.joints) {
+ if (!raw_model_.existJointName(joint)) {
+ RCLCPP_ERROR_STREAM(
+ get_node()->get_logger(),
+ "Failed to configure because "
+ << joint
+ << " is not part of the kinematic tree but it has been passed in the parameters.");
return CallbackReturn::ERROR;
}
}
- RCLCPP_INFO(get_node()->get_logger(), "All joints passed in the parameters exist in the kinematic tree of the URDF.");
- RCLCPP_INFO_STREAM(get_node()->get_logger(), "Removing the rest of the joints that are not used: ");
+ RCLCPP_INFO(
+ get_node()->get_logger(),
+ "All joints passed in the parameters exist in the kinematic tree of the URDF.");
+ RCLCPP_INFO_STREAM(
+ get_node()->get_logger(), "Removing the rest of the joints that are not used: ");
// Now we fix all joints that are not referenced in the tree
std::vector list_of_joints_to_lock_by_id;
- for (auto& joint : raw_model_.names) {
- if (std::find(params_.joints.begin(), params_.joints.end(), joint) == params_.joints.end() and joint != "universe") {
- RCLCPP_INFO_STREAM(get_node()->get_logger(), "Joint " << joint << " is not used, removing it from the model.");
+ for (auto & joint : raw_model_.names) {
+ if (
+ std::find(params_.joints.begin(), params_.joints.end(), joint) == params_.joints.end() &&
+ joint != "universe") {
+ RCLCPP_INFO_STREAM(
+ get_node()->get_logger(), "Joint " << joint << " is not used, removing it from the model.");
list_of_joints_to_lock_by_id.push_back(raw_model_.getJointId(joint));
}
}
@@ -153,44 +169,47 @@ CallbackReturn PoseBroadcaster::on_configure(
if (model_.names[joint_id] == "universe") {
continue;
}
- if (not allowed_joint_types.count(model_.joints[joint_id].shortname())) {
- RCLCPP_ERROR_STREAM(get_node()->get_logger(), "Joint type " << model_.joints[joint_id].shortname() << " is unsupported (" << model_.names[joint_id] << "), only revolute/continous like joints can be used.");
- return CallbackReturn::ERROR;
- }
+ if (!allowed_joint_types.count(model_.joints[joint_id].shortname())) {
+ RCLCPP_ERROR_STREAM(
+ get_node()->get_logger(),
+ "Joint type " << model_.joints[joint_id].shortname() << " is unsupported ("
+ << model_.names[joint_id]
+ << "), only revolute/continous like joints can be used.");
+ return CallbackReturn::ERROR;
+ }
}
end_effector_frame_id = model_.getFrameId(params_.end_effector_frame);
q = Eigen::VectorXd::Zero(model_.nv);
pose_publisher_ = get_node()->create_publisher(
- "current_pose", rclcpp::SystemDefaultsQoS());
+ "current_pose", rclcpp::SystemDefaultsQoS());
realtime_pose_publisher_ =
- std::make_shared>(
- pose_publisher_);
-
+ std::make_shared>(
+ pose_publisher_);
+
if (params_.publish_frequency > 0.0) {
publish_interval_ = rclcpp::Duration::from_seconds(1.0 / params_.publish_frequency);
} else {
publish_interval_ = rclcpp::Duration(0, 0); // publish every cycle
}
-
+
return CallbackReturn::SUCCESS;
}
-CallbackReturn PoseBroadcaster::on_activate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+CallbackReturn PoseBroadcaster::on_activate(const rclcpp_lifecycle::State & /*previous_state*/) {
// reset publish time accumulation
- publish_elapsed_ = rclcpp::Duration(0, 0);
+ publish_elapsed_ = rclcpp::Duration(0, 0);
return CallbackReturn::SUCCESS;
}
-controller_interface::CallbackReturn PoseBroadcaster::on_deactivate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+controller_interface::CallbackReturn
+PoseBroadcaster::on_deactivate(const rclcpp_lifecycle::State & /*previous_state*/) {
return CallbackReturn::SUCCESS;
}
-} // namespace crisp_controllers
+} // namespace crisp_controllers
#include "pluginlib/class_list_macros.hpp"
// NOLINTNEXTLINE
-PLUGINLIB_EXPORT_CLASS(crisp_controllers::PoseBroadcaster,
- controller_interface::ControllerInterface)
+PLUGINLIB_EXPORT_CLASS(
+ crisp_controllers::PoseBroadcaster, controller_interface::ControllerInterface)
diff --git a/src/torque_feedback_controller.cpp b/src/torque_feedback_controller.cpp
index 2535a8f..cb55c55 100644
--- a/src/torque_feedback_controller.cpp
+++ b/src/torque_feedback_controller.cpp
@@ -1,19 +1,22 @@
+#include
+#include
+#include
+
+// NOLINTBEGIN(build/include_order)
#include
#include
#include
+#include "crisp_controllers/utils/ros2_version.hpp"
-#include
-#include
-#include
-#include
-#include
+#include
+#include
#include
#include
-#include
-#include
#include
#include
-
+#include
+#include
+// NOLINTEND(build/include_order)
namespace crisp_controllers {
@@ -21,7 +24,7 @@ controller_interface::InterfaceConfiguration
TorqueFeedbackController::command_interface_configuration() const {
controller_interface::InterfaceConfiguration config;
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
- for (const auto &joint_name : joint_names_) {
+ for (const auto & joint_name : joint_names_) {
config.names.push_back(joint_name + "/effort");
}
return config;
@@ -31,25 +34,29 @@ controller_interface::InterfaceConfiguration
TorqueFeedbackController::state_interface_configuration() const {
controller_interface::InterfaceConfiguration config;
config.type = controller_interface::interface_configuration_type::INDIVIDUAL;
- for (const auto &joint_name : joint_names_) {
+ for (const auto & joint_name : joint_names_) {
config.names.push_back(joint_name + "/position");
}
- for (const auto &joint_name : joint_names_) {
+ for (const auto & joint_name : joint_names_) {
config.names.push_back(joint_name + "/velocity");
}
- for (const auto &joint_name : joint_names_) {
+ for (const auto & joint_name : joint_names_) {
config.names.push_back(joint_name + "/effort");
}
return config;
}
-controller_interface::return_type
-TorqueFeedbackController::update(const rclcpp::Time & /*time*/,
- const rclcpp::Duration & /*period*/) {
+controller_interface::return_type TorqueFeedbackController::update(
+ const rclcpp::Time & /*time*/, const rclcpp::Duration & /*period*/) {
// Update joint states
for (int i = 0; i < num_joints_; i++) {
+#if ROS2_VERSION_ABOVE_HUMBLE
+ q_[i] = state_interfaces_[i].get_optional().value_or(q_[i]);
+ dq_[i] = state_interfaces_[num_joints_ + i].get_optional().value_or(dq_[i]);
+#else
q_[i] = state_interfaces_[i].get_value();
dq_[i] = state_interfaces_[num_joints_ + i].get_value();
+#endif
}
// Compute forward kinematics and jacobian
@@ -57,8 +64,8 @@ TorqueFeedbackController::update(const rclcpp::Time & /*time*/,
pinocchio::updateFramePlacements(model_, data_);
J_.setZero();
- pinocchio::computeFrameJacobian(model_, data_, q_, end_effector_frame_id_,
- pinocchio::ReferenceFrame::LOCAL, J_);
+ pinocchio::computeFrameJacobian(
+ model_, data_, q_, end_effector_frame_id_, pinocchio::ReferenceFrame::LOCAL, J_);
// Apply threshold to external torques based on vector magnitude
Eigen::VectorXd tau_ext_thresholded = Eigen::VectorXd::Zero(num_joints_);
@@ -69,10 +76,13 @@ TorqueFeedbackController::update(const rclcpp::Time & /*time*/,
// Compute nullspace control to maintain initial joint positions
Eigen::VectorXd q_error = q_ - q_init_;
- double nullspace_damping = params_.nullspace.damping > 0 ? params_.nullspace.damping : 2.0 * sqrt(params_.nullspace.stiffness);
+ double nullspace_damping = params_.nullspace.damping > 0
+ ? params_.nullspace.damping
+ : 2.0 * sqrt(params_.nullspace.stiffness);
- Eigen::VectorXd tau_secondary = -params_.nullspace.stiffness * nullspace_weights_.cwiseProduct(q_error) -
- nullspace_damping * nullspace_weights_.cwiseProduct(dq_);
+ Eigen::VectorXd tau_secondary =
+ -params_.nullspace.stiffness * nullspace_weights_.cwiseProduct(q_error) -
+ nullspace_damping * nullspace_weights_.cwiseProduct(dq_);
// Compute nullspace projection based on projector type
Eigen::MatrixXd Id_nv = Eigen::MatrixXd::Identity(model_.nv, model_.nv);
@@ -88,20 +98,21 @@ TorqueFeedbackController::update(const rclcpp::Time & /*time*/,
} else if (params_.nullspace.projector_type == "none") {
nullspace_projection_ = Id_nv;
} else {
- RCLCPP_ERROR_STREAM_ONCE(get_node()->get_logger(),
- "Unknown nullspace projector type: "
- << params_.nullspace.projector_type);
+ RCLCPP_ERROR_STREAM_ONCE(
+ get_node()->get_logger(),
+ "Unknown nullspace projector type: " << params_.nullspace.projector_type);
return controller_interface::return_type::ERROR;
}
-
+
// Apply nullspace projection
Eigen::VectorXd tau_nullspace = nullspace_projection_ * tau_secondary;
-
+
// Limit nullspace torques
for (int i = 0; i < num_joints_; i++) {
- tau_nullspace[i] = std::max(-params_.nullspace.max_tau, std::min(params_.nullspace.max_tau, tau_nullspace[i]));
+ tau_nullspace[i] =
+ std::max(-params_.nullspace.max_tau, std::min(params_.nullspace.max_tau, tau_nullspace[i]));
}
-
+
auto tau_d = -params_.k_fb * tau_ext_thresholded - params_.kd * dq_;
auto tau_f = get_friction(dq_, friction_fp1_, friction_fp2_, friction_fp3_);
@@ -109,24 +120,27 @@ TorqueFeedbackController::update(const rclcpp::Time & /*time*/,
tau_commanded_ = tau_d + tau_f + tau_nullspace;
for (int i = 0; i < num_joints_; i++) {
+#if ROS2_VERSION_ABOVE_HUMBLE
+ (void)command_interfaces_[i].set_value(tau_commanded_[i]);
+#else
command_interfaces_[i].set_value(tau_commanded_[i]);
+#endif
}
params_listener_->refresh_dynamic_parameters();
params_ = params_listener_->get_params();
-
+
// Update nullspace weights
for (size_t i = 0; i < joint_names_.size(); ++i) {
nullspace_weights_[i] = params_.nullspace.weights.joints_map.at(joint_names_[i]).value;
}
-
+
return controller_interface::return_type::OK;
}
CallbackReturn TorqueFeedbackController::on_init() {
// Initialize parameters
- params_listener_ =
- std::make_shared(get_node());
+ params_listener_ = std::make_shared(get_node());
params_listener_->refresh_dynamic_parameters();
params_ = params_listener_->get_params();
@@ -147,27 +161,28 @@ CallbackReturn TorqueFeedbackController::on_init() {
nullspace_weights_[i] = params_.nullspace.weights.joints_map.at(joint_names_[i]).value;
}
- friction_fp1_ = Eigen::Map(params_.friction.fp1.data(), params_.friction.fp1.size());
- friction_fp2_ = Eigen::Map(params_.friction.fp2.data(), params_.friction.fp2.size());
- friction_fp3_ = Eigen::Map(params_.friction.fp3.data(), params_.friction.fp3.size());
+ friction_fp1_ =
+ Eigen::Map(params_.friction.fp1.data(), params_.friction.fp1.size());
+ friction_fp2_ =
+ Eigen::Map(params_.friction.fp2.data(), params_.friction.fp2.size());
+ friction_fp3_ =
+ Eigen::Map(params_.friction.fp3.data(), params_.friction.fp3.size());
nullspace_projection_ = Eigen::MatrixXd::Identity(num_joints_, num_joints_);
joint_sub_ = get_node()->create_subscription(
- params_.joint_source_topic,
- rclcpp::QoS(1).best_effort().keep_last(1).durability_volatile(),
- std::bind(&TorqueFeedbackController::target_joint_callback_, this,
- std::placeholders::_1));
+ params_.joint_source_topic,
+ rclcpp::QoS(1).best_effort().keep_last(1).durability_volatile(),
+ std::bind(&TorqueFeedbackController::target_joint_callback_, this, std::placeholders::_1));
return CallbackReturn::SUCCESS;
}
-CallbackReturn TorqueFeedbackController::on_configure(
- const rclcpp_lifecycle::State & /*previous_state*/) {
-
+CallbackReturn
+TorqueFeedbackController::on_configure(const rclcpp_lifecycle::State & /*previous_state*/) {
// Get robot description for pinocchio model
- auto parameters_client = std::make_shared(
- get_node(), "robot_state_publisher");
+ auto parameters_client =
+ std::make_shared(get_node(), "robot_state_publisher");
parameters_client->wait_for_service();
auto future = parameters_client->get_parameters({"robot_description"});
@@ -177,79 +192,82 @@ CallbackReturn TorqueFeedbackController::on_configure(
if (!result.empty()) {
robot_description_ = result[0].value_to_string();
} else {
- RCLCPP_ERROR(get_node()->get_logger(),
- "Failed to get robot_description parameter.");
+ RCLCPP_ERROR(get_node()->get_logger(), "Failed to get robot_description parameter.");
return CallbackReturn::ERROR;
}
pinocchio::Model raw_model_;
pinocchio::urdf::buildModelFromXML(robot_description_, raw_model_);
- for (auto &joint : joint_names_) {
- if (not raw_model_.existJointName(joint)) {
- RCLCPP_ERROR_STREAM(get_node()->get_logger(),
- "Failed to configure because "
- << joint
- << " is not part of the kinematic tree but it "
- "has been passed in the parameters.");
+ for (auto & joint : joint_names_) {
+ if (!raw_model_.existJointName(joint)) {
+ RCLCPP_ERROR_STREAM(
+ get_node()->get_logger(),
+ "Failed to configure because " << joint
+ << " is not part of the kinematic tree but it "
+ "has been passed in the parameters.");
return CallbackReturn::ERROR;
}
}
// Remove unused joints from the model
std::vector list_of_joints_to_lock_by_id;
- for (auto &joint : raw_model_.names) {
- if (std::find(joint_names_.begin(), joint_names_.end(), joint) ==
- joint_names_.end() and
- joint != "universe") {
+ for (auto & joint : raw_model_.names) {
+ if (
+ std::find(joint_names_.begin(), joint_names_.end(), joint) == joint_names_.end() &&
+ joint != "universe") {
list_of_joints_to_lock_by_id.push_back(raw_model_.getJointId(joint));
}
}
Eigen::VectorXd q_locked = Eigen::VectorXd::Zero(raw_model_.nq);
- model_ = pinocchio::buildReducedModel(raw_model_,
- list_of_joints_to_lock_by_id, q_locked);
+ model_ = pinocchio::buildReducedModel(raw_model_, list_of_joints_to_lock_by_id, q_locked);
data_ = pinocchio::Data(model_);
- std::set allowed_joint_types = {"JointModelRZ", "JointModelRevoluteUnaligned", "JointModelRX", "JointModelRY"};
+ std::set allowed_joint_types = {
+ "JointModelRZ", "JointModelRevoluteUnaligned", "JointModelRX", "JointModelRY"};
for (int joint_id = 0; joint_id < model_.njoints; joint_id++) {
if (model_.names[joint_id] == "universe") {
continue;
}
- if (not allowed_joint_types.count(model_.joints[joint_id].shortname())) {
+ if (!allowed_joint_types.count(model_.joints[joint_id].shortname())) {
RCLCPP_ERROR_STREAM(
- get_node()->get_logger(),
- "Joint type "
- << model_.joints[joint_id].shortname() << " is unsupported ("
- << model_.names[joint_id]
- << "). Continuous joints are not implemented yet for torque feedback controller. "
- << "Only revolute joints are supported.");
+ get_node()->get_logger(),
+ "Joint type "
+ << model_.joints[joint_id].shortname() << " is unsupported (" << model_.names[joint_id]
+ << "). Continuous joints are not implemented yet for torque feedback controller. "
+ << "Only revolute joints are supported.");
return CallbackReturn::ERROR;
}
}
// Get end-effector frame ID
end_effector_frame_id_ = model_.getFrameId(params_.end_effector_frame);
-
+
// Initialize jacobian matrix
J_ = Eigen::MatrixXd::Zero(6, model_.nv);
-
+
wrench_pub_ = get_node()->create_publisher(
- "~/commanded_wrench", rclcpp::QoS(10));
-
+ "~/commanded_wrench", rclcpp::QoS(10));
+
wrench_timer_ = get_node()->create_wall_timer(
- std::chrono::milliseconds(5),
- std::bind(&TorqueFeedbackController::publish_wrench_callback_, this));
+ std::chrono::milliseconds(5),
+ std::bind(&TorqueFeedbackController::publish_wrench_callback_, this));
return CallbackReturn::SUCCESS;
}
-CallbackReturn TorqueFeedbackController::on_activate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+CallbackReturn
+TorqueFeedbackController::on_activate(const rclcpp_lifecycle::State & /*previous_state*/) {
for (int i = 0; i < num_joints_; i++) {
+#if ROS2_VERSION_ABOVE_HUMBLE
+ q_[i] = state_interfaces_[i].get_optional().value_or(q_[i]);
+ dq_[i] = state_interfaces_[num_joints_ + i].get_optional().value_or(dq_[i]);
+#else
q_[i] = state_interfaces_[i].get_value();
dq_[i] = state_interfaces_[num_joints_ + i].get_value();
+#endif
tau_ext_[i] = 0.0;
q_init_[i] = q_[i];
}
@@ -257,15 +275,15 @@ CallbackReturn TorqueFeedbackController::on_activate(
return CallbackReturn::SUCCESS;
}
-controller_interface::CallbackReturn TorqueFeedbackController::on_deactivate(
- const rclcpp_lifecycle::State & /*previous_state*/) {
+controller_interface::CallbackReturn
+TorqueFeedbackController::on_deactivate(const rclcpp_lifecycle::State & /*previous_state*/) {
return CallbackReturn::SUCCESS;
}
void TorqueFeedbackController::target_joint_callback_(
- const sensor_msgs::msg::JointState::SharedPtr msg) {
+ const sensor_msgs::msg::JointState::SharedPtr msg) {
for (size_t i = 0; i < msg->effort.size(); i++) {
- if ((int)i < num_joints_) {
+ if (static_cast(i) < num_joints_) {
tau_ext_[i] = msg->effort[i];
}
}
@@ -275,25 +293,25 @@ void TorqueFeedbackController::publish_wrench_callback_() {
// Convert joint torques to Cartesian wrench using Jacobian transpose
// F = J^T * tau
Eigen::VectorXd wrench_commanded = J_.transpose() * tau_commanded_;
-
+
// Create and publish wrench message
auto wrench_msg = geometry_msgs::msg::WrenchStamped();
wrench_msg.header.stamp = get_node()->get_clock()->now();
wrench_msg.header.frame_id = params_.end_effector_frame;
-
+
wrench_msg.wrench.force.x = wrench_commanded[0];
wrench_msg.wrench.force.y = wrench_commanded[1];
wrench_msg.wrench.force.z = wrench_commanded[2];
wrench_msg.wrench.torque.x = wrench_commanded[3];
wrench_msg.wrench.torque.y = wrench_commanded[4];
wrench_msg.wrench.torque.z = wrench_commanded[5];
-
+
wrench_pub_->publish(wrench_msg);
}
-} // namespace crisp_controllers
+} // namespace crisp_controllers
#include "pluginlib/class_list_macros.hpp"
// NOLINTNEXTLINE
-PLUGINLIB_EXPORT_CLASS(crisp_controllers::TorqueFeedbackController,
- controller_interface::ControllerInterface)
+PLUGINLIB_EXPORT_CLASS(
+ crisp_controllers::TorqueFeedbackController, controller_interface::ControllerInterface)
diff --git a/src/twist_broadcaster.cpp b/src/twist_broadcaster.cpp
index 51e8fa7..37c46ce 100644
--- a/src/twist_broadcaster.cpp
+++ b/src/twist_broadcaster.cpp
@@ -1,11 +1,13 @@
-#include
-#include
-
-#include
#include
#include
#include
#include
+
+#include // NOLINT(build/include_order)
+#include
+#include "crisp_controllers/utils/ros2_version.hpp"
+
+#include
#include
#include